| To: | Alex Elder <aelder@xxxxxxx> |
|---|---|
| Subject: | Re: [PATCH 2/8] xfsprogs: unconditionally drop used buffer reference |
| From: | Christoph Hellwig <hch@xxxxxxxxxxxxx> |
| Date: | Sun, 13 Nov 2011 06:59:40 -0500 |
| Cc: | xfs@xxxxxxxxxxx |
| In-reply-to: | <f4640a738a62150c745c843b92c5d143ad1cb155.1320955675.git.aelder@xxxxxxx> |
| References: | <3ed89446f6dc1231ec1de712f242522052952b7e.1320955675.git.aelder@xxxxxxx> <f4640a738a62150c745c843b92c5d143ad1cb155.1320955675.git.aelder@xxxxxxx> |
| User-agent: | Mutt/1.5.21 (2010-09-15) |
On Thu, Nov 10, 2011 at 02:35:12PM -0600, Alex Elder wrote: > In libxfs_mount(), after reading the last block in the log device, > the buffer is released by a call to libxfs_putbuf(). But it's done > only if bp is non-null. It always will be non-null at this point, > so just make the call unconditionally. > > Also touch up a misleading indent. > > Signed-off-by: Alex Elder <aelder@xxxxxxx> > --- > libxfs/init.c | 5 ++--- > 1 files changed, 2 insertions(+), 3 deletions(-) > > diff --git a/libxfs/init.c b/libxfs/init.c > index 08fc584..ba44c9b 100644 > --- a/libxfs/init.c > +++ b/libxfs/init.c > @@ -743,15 +743,14 @@ libxfs_mount( > if (!(flags & LIBXFS_MOUNT_DEBUGGER)) > return NULL; > } > - if (bp) > - libxfs_putbuf(bp); > + libxfs_putbuf(bp); > } This one isn't correct. If LIBXFS_MOUNT_DEBUGGER is set we still get through to here. |
| Previous by Date: | Re: xfstests/071 FAIL with XFS Assertion, Christoph Hellwig |
|---|---|
| Next by Date: | Re: [PATCH 3/8] xfsprogs: xfs_repair: don't set the root inode pointer, Christoph Hellwig |
| Previous by Thread: | [PATCH 2/8] xfsprogs: unconditionally drop used buffer reference, Alex Elder |
| Next by Thread: | [PATCH 5/8] xfsprogs: Drop root inode refrerence in libxfs_umount(), Alex Elder |
| Indexes: | [Date] [Thread] [Top] [All Lists] |