* [ipc] 5769cf63: LTP semget02 TFAILs
@ 2014-01-17 10:24 Fengguang Wu
2014-01-17 13:08 ` Stephen Rothwell
2014-01-17 21:24 ` Andrew Morton
0 siblings, 2 replies; 3+ messages in thread
From: Fengguang Wu @ 2014-01-17 10:24 UTC (permalink / raw)
To: Davidlohr Bueso; +Cc: Stephen Rothwell, LKML
Hi Davidlohr,
We noticed LTP test failures
ltp.msgget02.1.TFAIL
ltp.semget02.2.TFAIL
ltp.semget02.3.TFAIL
and the first bad commit is
commit 5769cf6355d87f63906b3e51887eff7017c39217
Author: Davidlohr Bueso <davidlohr@hp.com>
AuthorDate: Wed Jan 15 16:56:01 2014 +1100
Commit: Stephen Rothwell <sfr@canb.auug.org.au>
CommitDate: Wed Jan 15 16:56:01 2014 +1100
ipc: share ids rwsem when possible in ipcget_public
... and rewrite the function. For scenarios where the key is found and
we end up just doing different routinary checks, we can downgrade the
ids->rwsem and share it among concurrent readers. These checks include
the following, which are all safe to share the lock:
ops->more_checks() >> sem_more_checks(), shm_more_checks()
ipc_check_perms() >> ipcperms(),ops->associate() >> [lsm]_[ipctype]_associate()
Signed-off-by: Davidlohr Bueso <davidlohr@hp.com>
Cc: Aswin Chandramouleeswaran <aswin@hp.com>
Cc: Rik van Riel <riel@redhat.com>
Cc: Manfred Spraul <manfred@colorfullife.com>
Signed-off-by: Andrew Morton <akpm@linux-foundation.org>
ipc/util.c | 60 +++++++++++++++++++++++++++++++++---------------------------
1 file changed, 33 insertions(+), 27 deletions(-)
Thanks,
Fengguang
^ permalink raw reply [flat|nested] 3+ messages in thread* Re: [ipc] 5769cf63: LTP semget02 TFAILs
2014-01-17 10:24 [ipc] 5769cf63: LTP semget02 TFAILs Fengguang Wu
@ 2014-01-17 13:08 ` Stephen Rothwell
2014-01-17 21:24 ` Andrew Morton
1 sibling, 0 replies; 3+ messages in thread
From: Stephen Rothwell @ 2014-01-17 13:08 UTC (permalink / raw)
To: Fengguang Wu; +Cc: Davidlohr Bueso, LKML, Andrew Morton
[-- Attachment #1: Type: text/plain, Size: 1619 bytes --]
[ Just adding Andrew to the cc list ]
On Fri, 17 Jan 2014 18:24:28 +0800 Fengguang Wu <fengguang.wu@intel.com> wrote:
>
> Hi Davidlohr,
>
> We noticed LTP test failures
>
> ltp.msgget02.1.TFAIL
> ltp.semget02.2.TFAIL
> ltp.semget02.3.TFAIL
>
> and the first bad commit is
>
> commit 5769cf6355d87f63906b3e51887eff7017c39217
> Author: Davidlohr Bueso <davidlohr@hp.com>
> AuthorDate: Wed Jan 15 16:56:01 2014 +1100
> Commit: Stephen Rothwell <sfr@canb.auug.org.au>
> CommitDate: Wed Jan 15 16:56:01 2014 +1100
>
> ipc: share ids rwsem when possible in ipcget_public
>
> ... and rewrite the function. For scenarios where the key is found and
> we end up just doing different routinary checks, we can downgrade the
> ids->rwsem and share it among concurrent readers. These checks include
> the following, which are all safe to share the lock:
>
> ops->more_checks() >> sem_more_checks(), shm_more_checks()
> ipc_check_perms() >> ipcperms(),ops->associate() >> [lsm]_[ipctype]_associate()
>
> Signed-off-by: Davidlohr Bueso <davidlohr@hp.com>
> Cc: Aswin Chandramouleeswaran <aswin@hp.com>
> Cc: Rik van Riel <riel@redhat.com>
> Cc: Manfred Spraul <manfred@colorfullife.com>
> Signed-off-by: Andrew Morton <akpm@linux-foundation.org>
>
> ipc/util.c | 60 +++++++++++++++++++++++++++++++++---------------------------
> 1 file changed, 33 insertions(+), 27 deletions(-)
>
> Thanks,
> Fengguang
>
--
Cheers,
Stephen Rothwell sfr@canb.auug.org.au
[-- Attachment #2: Type: application/pgp-signature, Size: 836 bytes --]
^ permalink raw reply [flat|nested] 3+ messages in thread
* Re: [ipc] 5769cf63: LTP semget02 TFAILs
2014-01-17 10:24 [ipc] 5769cf63: LTP semget02 TFAILs Fengguang Wu
2014-01-17 13:08 ` Stephen Rothwell
@ 2014-01-17 21:24 ` Andrew Morton
1 sibling, 0 replies; 3+ messages in thread
From: Andrew Morton @ 2014-01-17 21:24 UTC (permalink / raw)
To: Fengguang Wu; +Cc: Davidlohr Bueso, Stephen Rothwell, LKML, Manfred Spraul
On Fri, 17 Jan 2014 18:24:28 +0800 Fengguang Wu <fengguang.wu@intel.com> wrote:
> Hi Davidlohr,
>
> We noticed LTP test failures
>
> ltp.msgget02.1.TFAIL
> ltp.semget02.2.TFAIL
> ltp.semget02.3.TFAIL
>
> and the first bad commit is
>
> commit 5769cf6355d87f63906b3e51887eff7017c39217
> Author: Davidlohr Bueso <davidlohr@hp.com>
> AuthorDate: Wed Jan 15 16:56:01 2014 +1100
> Commit: Stephen Rothwell <sfr@canb.auug.org.au>
> CommitDate: Wed Jan 15 16:56:01 2014 +1100
>
> ipc: share ids rwsem when possible in ipcget_public
>
Thanks (a lot). I'll disable that patch for now.
^ permalink raw reply [flat|nested] 3+ messages in thread
end of thread, other threads:[~2014-01-17 21:24 UTC | newest]
Thread overview: 3+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2014-01-17 10:24 [ipc] 5769cf63: LTP semget02 TFAILs Fengguang Wu
2014-01-17 13:08 ` Stephen Rothwell
2014-01-17 21:24 ` Andrew Morton
This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox