summaryrefslogtreecommitdiffstats
path: root/tapset
diff options
context:
space:
mode:
authorSteve Dickson <steved@redhat.com>2008-08-08 11:58:08 -0400
committerSteve Dickson <steved@redhat.com>2008-08-08 11:58:08 -0400
commitfa37f09c5b2faa0fd15ab24eaa08cac9d506419c (patch)
treef375efdd1ed0f899141bbe75ed00c8824171357e /tapset
parent6e668bfb18b75b4825bdc51ee8573512b971e204 (diff)
downloadsystemtap-fa37f09c5b2faa0fd15ab24eaa08cac9d506419c.tar.gz
systemtap-fa37f09c5b2faa0fd15ab24eaa08cac9d506419c.tar.xz
systemtap-fa37f09c5b2faa0fd15ab24eaa08cac9d506419c.zip
Updated KERNEL_VERSION in file2name
Signed-off-by: Steve Dickson <steved@redhat.com>
Diffstat (limited to 'tapset')
-rw-r--r--tapset/fs.stp2
1 files changed, 1 insertions, 1 deletions
diff --git a/tapset/fs.stp b/tapset/fs.stp
index a6ba788..85956e9 100644
--- a/tapset/fs.stp
+++ b/tapset/fs.stp
@@ -10,7 +10,7 @@ function file2name:string(filep:long)
%{
char *start = NULL, buf[MAXSTRINGLEN];
struct file *file = (struct file *)(long) kread(&(THIS->filep));
-#if LINUX_VERSION_CODE < KERNEL_VERSION(2,6,27)
+#if LINUX_VERSION_CODE < KERNEL_VERSION(2,6,26)
struct dentry *dentry = NULL;
struct vfsmount *mnt = NULL;