All of lore.kernel.org
 help / color / mirror / Atom feed
* [merged] hfs-atomically-read-inode-size.patch removed from -mm tree
@ 2017-02-28 20:52 akpm
  0 siblings, 0 replies; only message in thread
From: akpm @ 2017-02-28 20:52 UTC (permalink / raw)
  To: fabf, mm-commits


The patch titled
     Subject: hfs: atomically read inode size
has been removed from the -mm tree.  Its filename was
     hfs-atomically-read-inode-size.patch

This patch was dropped because it was merged into mainline or a subsystem tree

------------------------------------------------------
From: Fabian Frederick <fabf@skynet.be>
Subject: hfs: atomically read inode size

See i_size_read() comments in include/linux/fs.h

Link: http://lkml.kernel.org/r/20170123175245.3272-1-fabf@skynet.be
Signed-off-by: Fabian Frederick <fabf@skynet.be>
Signed-off-by: Andrew Morton <akpm@linux-foundation.org>
---

 fs/hfs/mdb.c |    2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff -puN fs/hfs/mdb.c~hfs-atomically-read-inode-size fs/hfs/mdb.c
--- a/fs/hfs/mdb.c~hfs-atomically-read-inode-size
+++ a/fs/hfs/mdb.c
@@ -38,7 +38,7 @@ static int hfs_get_last_session(struct s
 
 	/* default values */
 	*start = 0;
-	*size = sb->s_bdev->bd_inode->i_size >> 9;
+	*size = i_size_read(sb->s_bdev->bd_inode) >> 9;
 
 	if (HFS_SB(sb)->session >= 0) {
 		te.cdte_track = HFS_SB(sb)->session;
_

Patches currently in -mm which might be from fabf@skynet.be are



^ permalink raw reply	[flat|nested] only message in thread

only message in thread, other threads:[~2017-02-28 20:52 UTC | newest]

Thread overview: (only message) (download: mbox.gz / follow: Atom feed)
-- links below jump to the message on this page --
2017-02-28 20:52 [merged] hfs-atomically-read-inode-size.patch removed from -mm tree akpm

This is an external index of several public inboxes,
see mirroring instructions on how to clone and mirror
all data and code used by this external index.