Re: PM/hibernate swapfile regression

From: Johannes Weiner
Date: Tue Jul 21 2009 - 17:48:25 EST


On Tue, Jul 21, 2009 at 10:57:21PM +0200, Rafael J. Wysocki wrote:
> On Tuesday 21 July 2009, Alan Jenkins wrote:
> > From 643014ec079610a8b01dfd78c6949c1e8727195b Mon Sep 17 00:00:00 2001
> > From: Alan Jenkins <alan-jenkins@xxxxxxxxxxxxxx>
> > Date: Tue, 21 Jul 2009 10:17:30 +0100
> > Subject: [PATCH] PM/hibernate: replace bdget call with bdcopy (simple atomic_inc of i_count)
> >
> > Create bdcopy(). This function copies an existing reference to a
> > block_device. It is safe to call from any context.
> >
> > Hibernation code wishes to copy a reference to the active swap device.
> > Right now it calls bdget() under a spinlock, but this is wrong because
> > bdget() can sleep. It doesn't need a full bdget() because we already
> > hold a reference to active swap devices (and the spinlock protects
> > against swapoff).
> >
> > Signed-off-by: Alan Jenkins <alan-jenkins@xxxxxxxxxxxxxx>
> > CC: linux-fsdevel@xxxxxxxxxxxxxxx
> > ---
> > fs/block_dev.c | 8 ++++++++
> > include/linux/fs.h | 1 +
> > mm/swapfile.c | 4 ++--
> > 3 files changed, 11 insertions(+), 2 deletions(-)
> >
> > diff --git a/fs/block_dev.c b/fs/block_dev.c
> > index 3a6d4fb..0b04974 100644
> > --- a/fs/block_dev.c
> > +++ b/fs/block_dev.c
> > @@ -564,6 +564,14 @@ struct block_device *bdget(dev_t dev)
> >
> > EXPORT_SYMBOL(bdget);
> >
> > +struct block_device *bdcopy(struct block_device *bdev)
> > +{
> > + atomic_inc(&bdev->bd_inode->i_count);
> > + return bdev;
> > +}
>
> Hmm. If you defined bdcopy() as static inline directly in mm/swapfile.c,
> the patch would be slightly simpler.

Please don't do that.

This helper seems to be generic enough to live next to the rest of the
bd interface, don't you think? swapfile.c is a mess already...

Hannes
--
To unsubscribe from this list: send the line "unsubscribe linux-kernel" in
the body of a message to majordomo@xxxxxxxxxxxxxxx
More majordomo info at http://vger.kernel.org/majordomo-info.html
Please read the FAQ at http://www.tux.org/lkml/