From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: Received: (qmail 21399 invoked by alias); 18 Jul 2007 14:26:14 -0000 Received: (qmail 21345 invoked by uid 48); 18 Jul 2007 14:26:02 -0000 Date: Wed, 18 Jul 2007 14:29:00 -0000 Message-ID: <20070718142602.21344.qmail@sourceware.org> From: "srinivasa at in dot ibm dot com" To: systemtap@sources.redhat.com In-Reply-To: <20070514101657.4500.srinivasa@in.ibm.com> References: <20070514101657.4500.srinivasa@in.ibm.com> Reply-To: sourceware-bugzilla@sourceware.org Subject: [Bug testsuite/4500] Compilation of buildok/task_test.stp fails on ppc64 X-Bugzilla-Reason: AssignedTo 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: 2007-q3/txt/msg00141.txt.bz2 ------- Additional Comments From srinivasa at in dot ibm dot com 2007-07-18 14:26 ------- Implementation of cpu() should be changed from ================================================= function cpu:long () %{ /* pure */ THIS->__retvalue = current->thread_info->cpu; /* smp_processor_id()? */ %} ===================================== to ================================= function cpu:long () %{ /* pure */ THIS->__retvalue = current_thread_info()->cpu; /* smp_processor_id()? */ %} ========================== This solves the problem. Samething has to be done for in all tapsets, which gets information from thread_info. Thanks Srinivasa DS -- http://sourceware.org/bugzilla/show_bug.cgi?id=4500 ------- You are receiving this mail because: ------- You are the assignee for the bug, or are watching the assignee.