]> sourceware.org Git - systemtap.git/commitdiff
PR13814: Note the relevant kernel commits, and allow >=3.4
authorJosh Stone <jistone@redhat.com>
Wed, 3 Oct 2012 17:56:42 +0000 (10:56 -0700)
committerJosh Stone <jistone@redhat.com>
Wed, 3 Oct 2012 17:56:42 +0000 (10:56 -0700)
staprun/staprun.c

index 36ad1d9c00718260253dd46d2ce0575c8f9472c5..e02a2dd1f04c1b68138cd0fbd8db5dfcc0617b85 100644 (file)
@@ -276,8 +276,9 @@ void disable_kprobes_optimization()
         int rc, fd;
         struct utsname uts;
 
-        /* PR13814; disable this facility for new enough kernels */
-        if ((uname (&uts) == 0) && (strverscmp (uts.release, "3.4") > 0))
+        /* PR13814; disable this facility for new enough kernels, containing
+         * these fix commits: 86b4ce31 46484688 3f33ab1c */
+        if ((uname (&uts) == 0) && (strverscmp (uts.release, "3.4") >= 0))
                 return;
 
         if (getenv ("STAP_PR13193_OVERRIDE"))
This page took 0.026457 seconds and 5 git commands to generate.