RE: [patch V2 11/16] x86/ioperm: Share I/O bitmap if identical

From: David Laight
Date: Thu Nov 14 2019 - 06:02:07 EST


From: Peter Zijlstra
> Sent: 12 November 2019 09:15
...
> > + /*
> > + * If the bitmap is not shared, then nothing can take a refcount as
> > + * current can obviously not fork at the same time. If it's shared
> > + * duplicate it and drop the refcount on the original one.
> > + */
> > + if (refcount_read(&iobm->refcnt) > 1) {
> > + iobm = kmemdup(iobm, sizeof(*iobm), GFP_KERNEL);
> > + if (!iobm)
> > + return -ENOMEM;
> > + io_bitmap_exit();
> refcount_set(&iobm->refcnd, 1);
> > }

What happens if two threads of the same process enter the above
at the same time?
(I've not looked for a lock, but since kmemdup() can sleep I'd suspect there isn't one.)

Also can another thread call fork() - eg while the kmemdup() is sleeping?

David

-
Registered Address Lakeside, Bramley Road, Mount Farm, Milton Keynes, MK1 1PT, UK
Registration No: 1397386 (Wales)