summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authormmason <mmason>2007-06-15 03:46:55 +0000
committermmason <mmason>2007-06-15 03:46:55 +0000
commit4e5724ff0caa7e9b09c149ea69734585611b52b1 (patch)
treede011907c13de74b5e1041bf30f9cf1adffade9c
parentc4a94c1a262c8d2847d681eb60ad9a6c2e692fa7 (diff)
downloadsystemtap-steved-4e5724ff0caa7e9b09c149ea69734585611b52b1.tar.gz
systemtap-steved-4e5724ff0caa7e9b09c149ea69734585611b52b1.tar.xz
systemtap-steved-4e5724ff0caa7e9b09c149ea69734585611b52b1.zip
Removed extra assignment to "size" in socket.aio_write.return
-rw-r--r--tapset/ChangeLog5
-rw-r--r--tapset/socket.stp1
2 files changed, 5 insertions, 1 deletions
diff --git a/tapset/ChangeLog b/tapset/ChangeLog
index 2856be28..05508229 100644
--- a/tapset/ChangeLog
+++ b/tapset/ChangeLog
@@ -1,3 +1,8 @@
+2007-06-14 Mike Mason <mmlnx@us.ibm.com>
+
+ * socket.stp: removed extra assignment to "size" in
+ socket.aio_write.return
+
2007-06-07 Martin Hunt <hunt@redhat.com>
Fallout from PR 3331 fix. Sometimes glibc and the
kernel disagree about signed vs unsigned.
diff --git a/tapset/socket.stp b/tapset/socket.stp
index a661384b..28bac65d 100644
--- a/tapset/socket.stp
+++ b/tapset/socket.stp
@@ -252,7 +252,6 @@ probe socket.aio_write.return = kernel.function ("sock_aio_write").return
name = "socket.aio_write.return"
size = $return
_sock = _get_sock_addr ($iocb->ki_filp)
- size = _get_sock_size ($iov, $nr_segs)
protocol = _sock_prot_num (_sock)
family = _sock_fam_num (_sock)
state = _sock_state_num (_sock)