diff options
author | hunt <hunt> | 2007-08-16 13:12:07 +0000 |
---|---|---|
committer | hunt <hunt> | 2007-08-16 13:12:07 +0000 |
commit | 8353d520121fcca1b6697a10d49e23e371ded720 (patch) | |
tree | 99b502dcbf3613dd2a56b9b8b0e286a52398e89f | |
parent | 48c53a66e4ffe18158d6f34f288160570609627e (diff) | |
download | systemtap-steved-8353d520121fcca1b6697a10d49e23e371ded720.tar.gz systemtap-steved-8353d520121fcca1b6697a10d49e23e371ded720.tar.xz systemtap-steved-8353d520121fcca1b6697a10d49e23e371ded720.zip |
2007-08-16 Martin Hunt <hunt@redhat.com>
* aux_syscalls.stp (_sock_family_str):
Add PF_IUCV, PF_RXRPC, PF_TIPC.
From zhaolei@cn.fujitsu.com
Remove PF_UNIX. PF_LOCAL is correct.
-rw-r--r-- | tapset/ChangeLog | 8 | ||||
-rw-r--r-- | tapset/aux_syscalls.stp | 5 |
2 files changed, 11 insertions, 2 deletions
diff --git a/tapset/ChangeLog b/tapset/ChangeLog index a035671a..87c3db0b 100644 --- a/tapset/ChangeLog +++ b/tapset/ChangeLog @@ -1,5 +1,13 @@ 2007-08-16 Martin Hunt <hunt@redhat.com> + * aux_syscalls.stp (_sock_family_str): + Add PF_IUCV, PF_RXRPC, PF_TIPC. + + From zhaolei@cn.fujitsu.com + Remove PF_UNIX. PF_LOCAL is correct. + +2007-08-16 Martin Hunt <hunt@redhat.com> + * aux_syscalls.stp (__get_argv): Add parameter to optionally skip the first argv (argv[0]). (__get_compat_argv): Ditto. diff --git a/tapset/aux_syscalls.stp b/tapset/aux_syscalls.stp index e2c7a432..3009566a 100644 --- a/tapset/aux_syscalls.stp +++ b/tapset/aux_syscalls.stp @@ -1549,7 +1549,6 @@ function _sockopt_level_str(l) { function _sock_family_str(f) { if(f==0) return "PF_UNSPEC" - if(f==1) return "PF_UNIX" if(f==1) return "PF_LOCAL" if(f==2) return "PF_INET" if(f==3) return "PF_AX25" @@ -1575,8 +1574,10 @@ function _sock_family_str(f) { if(f==24) return "PF_PPPOX" if(f==25) return "PF_WANPIPE" if(f==26) return "PF_LLC" + if(f==30) return "PF_TIPC" if(f==31) return "PF_BLUETOOTH" - if(f==32) return "PF_MAX" + if(f==32) return "PF_IUCV" + if(f==33) return "PF_RXRPC" return sprintf("UNKNOWN VALUE: %d", f) } |