From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: Received: (qmail 12151 invoked by alias); 15 Sep 2008 20:14:34 -0000 Received: (qmail 12142 invoked by uid 22791); 15 Sep 2008 20:14:34 -0000 X-Spam-Status: No, hits=-1.9 required=5.0 tests=AWL,BAYES_00,KAM_MX,SPF_HELO_PASS,SPF_PASS X-Spam-Check-By: sourceware.org Received: from mx2.redhat.com (HELO mx2.redhat.com) (66.187.237.31) by sourceware.org (qpsmtpd/0.31) with ESMTP; Mon, 15 Sep 2008 20:13:58 +0000 Received: from int-mx2.corp.redhat.com (int-mx2.corp.redhat.com [172.16.27.26]) by mx2.redhat.com (8.13.8/8.13.8) with ESMTP id m8FKDLZi018461 for ; Mon, 15 Sep 2008 16:13:41 -0400 Received: from ns3.rdu.redhat.com (ns3.rdu.redhat.com [10.11.255.199]) by int-mx2.corp.redhat.com (8.13.1/8.13.1) with ESMTP id m8FKDA6A023206 for ; Mon, 15 Sep 2008 16:13:10 -0400 Received: from [10.32.4.164] (vpn-4-164.str.redhat.com [10.32.4.164]) by ns3.rdu.redhat.com (8.13.8/8.13.8) with ESMTP id m8FKD86t001081 for ; Mon, 15 Sep 2008 16:13:09 -0400 Subject: Fixing some 2.6.27 detection problems From: Mark Wielaard To: systemtap@sourceware.org Content-Type: text/plain Date: Mon, 15 Sep 2008 20:14:00 -0000 Message-Id: <1221509587.3280.29.camel@dijkstra.wildebeest.org> Mime-Version: 1.0 Content-Transfer-Encoding: 7bit X-Scanned-By: MIMEDefang 2.58 on 172.16.27.26 Mailing-List: contact systemtap-help@sourceware.org; run by ezmlm Precedence: bulk List-Id: List-Subscribe: List-Post: List-Help: , Sender: systemtap-owner@sourceware.org X-SW-Source: 2008-q3/txt/msg00663.txt.bz2 Hi, I just committed a patch to correct some 2.6.27 detection problems. Basically the test was kernel_v > "2.6.26" (or kernel_v <= "2.6.26") and should have been kernel_v >= "2.6.27" (or kernel_v < "2.6.27"). Otherwise a kernel like 2.6.26.5 would be misdiagnosed. This fixes a lot of testsuite failures for me. Unfortunately I don't have a 2.6.27 test kernel around, so if someone who has could make sure things work there also correctly that would be appreciated. Thanks, Mark commit fc22e8a361f3c19dcb048dc5f245565164b9d829 Author: Mark Wielaard Date: Mon Sep 15 21:17:59 2008 +0200 Fix 2.6.27 detection.