summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorhunt <hunt>2007-09-13 14:20:03 +0000
committerhunt <hunt>2007-09-13 14:20:03 +0000
commitdbf9815c14749eed31e16262a7b16700750a6615 (patch)
tree2b0d7772dccdbfe67d3a7693c3487409b6e973a7
parenta404007ed22eaad61f3793e932a70d6c7f06e2d4 (diff)
downloadsystemtap-steved-dbf9815c14749eed31e16262a7b16700750a6615.tar.gz
systemtap-steved-dbf9815c14749eed31e16262a7b16700750a6615.tar.xz
systemtap-steved-dbf9815c14749eed31e16262a7b16700750a6615.zip
2007-09-13 Martin Hunt <hunt@redhat.com>
* aux_syscalls.stp: Replace get_user calls with __stp_get_user.
-rw-r--r--tapset/ChangeLog4
-rw-r--r--tapset/aux_syscalls.stp4
2 files changed, 6 insertions, 2 deletions
diff --git a/tapset/ChangeLog b/tapset/ChangeLog
index d1ce0270..c87c89f0 100644
--- a/tapset/ChangeLog
+++ b/tapset/ChangeLog
@@ -1,3 +1,7 @@
+2007-09-13 Martin Hunt <hunt@redhat.com>
+
+ * aux_syscalls.stp: Replace get_user calls with __stp_get_user.
+
2007-09-06 Zhaolei <zhaolei@cn.fujitsu.com>
* aux_syscalls.stp (_stp_sockaddr_str): Fix memory access error
diff --git a/tapset/aux_syscalls.stp b/tapset/aux_syscalls.stp
index b037d67c..ccbea9a3 100644
--- a/tapset/aux_syscalls.stp
+++ b/tapset/aux_syscalls.stp
@@ -628,7 +628,7 @@ function __get_argv:string(a:long, first:long)
argv++;
while (argv != NULL) {
- if (get_user (vstr, argv))
+ if (__stp_get_user (vstr, argv))
break;
if (vstr == NULL)
@@ -686,7 +686,7 @@ function __get_compat_argv:string(a:long, first:long)
argv++;
while (argv != NULL) {
- if (get_user (vstr, argv))
+ if (__stp_get_user (vstr, argv))
break;
if (vstr == NULL)