[<prev] [next>] [<thread-prev] [thread-next>] [day] [month] [year] [list]
Message-Id: <dbd74447-b3e2-6bcf-2d8b-717b403bdf11@linux.ibm.com>
Date: Tue, 21 Aug 2018 11:50:43 +0530
From: Ravi Bangoria <ravi.bangoria@...ux.ibm.com>
To: Song Liu <liu.song.a23@...il.com>
Cc: Srikar Dronamraju <srikar@...ux.vnet.ibm.com>,
Oleg Nesterov <oleg@...hat.com>,
Steven Rostedt <rostedt@...dmis.org>, mhiramat@...nel.org,
Peter Zijlstra <peterz@...radead.org>, mingo@...hat.com,
acme@...nel.org, alexander.shishkin@...ux.intel.com,
jolsa@...hat.com, namhyung@...nel.org,
open list <linux-kernel@...r.kernel.org>,
ananth@...ux.vnet.ibm.com,
Alexis Berlemont <alexis.berlemont@...il.com>,
naveen.n.rao@...ux.vnet.ibm.com,
linux-arm-kernel@...ts.infradead.org, linux-mips@...ux-mips.org,
linux@...linux.org.uk, ralf@...ux-mips.org, paul.burton@...s.com,
Ravi Bangoria <ravi.bangoria@...ux.ibm.com>
Subject: Re: [PATCH v9 0/4] Uprobes: Support SDT markers having reference
count (semaphore)
Hi Song,
On 08/21/2018 10:53 AM, Ravi Bangoria wrote:
> Hi Song,
>
>> However, if I start a.out AFTER enabling the uprobe, there is something wrong:
>>
>> root@...t-test:~# ~/a.out
>> 11
>> semaphore 0 <<< this should be non-zero, as the uprobe is already enabled
In this testcase, semaphore variable is stored into .bss:
$ nm test | grep semaphore
0000000010010c5e B semaphore
$ readelf -SW ./test | grep "data\|bss"
[22] .data PROGBITS 0000000010010c58 000c58 000004 00 WA 0 0 1
[23] .bss NOBITS 0000000010010c5c 000c5c 000004 00 WA 0 0 2
I'm not so sure but I guess .bss data initialization happens after
calling uprobe_mmap() and thus you are seeing semaphore as 0.
To verify this, if I force to save semaphore into data section by
assigning non-zero value to it:
volatile short semaphore = 1
$ nm test | grep semaphore
0000000010010c5c D semaphore
$ readelf -SW ./test | grep "data\|bss"
[22] .data PROGBITS 0000000010010c58 000c58 000006 00 WA 0 0 2
[23] .bss NOBITS 0000000010010c5e 000c5e 000002 00 WA 0 0 1
increment/decrement works fine.
Ravi
Powered by blists - more mailing lists