Donate to e Foundation | Murena handsets with /e/OS | Own a part of Murena! Learn more

Commit ea9b5ee3 authored by Linus Torvalds's avatar Linus Torvalds
Browse files
Pull gfs2 fix from Bob Peterson:
 "An additional patch from Andreas Gruenbacher that fixes another
  unfortunate GFS2 regression"

* tag 'gfs2-4.16.rc4.fixes' of git://git.kernel.org/pub/scm/linux/kernel/git/gfs2/linux-gfs2:
  gfs2: Fixes to "Implement iomap for block_map" (2)
parents 69f39c57 3b5da96e
Loading
Loading
Loading
Loading
+0 −3
Original line number Original line Diff line number Diff line
@@ -807,9 +807,6 @@ int gfs2_iomap_begin(struct inode *inode, loff_t pos, loff_t length,
			iomap->length = hole_size(inode, lblock, &mp);
			iomap->length = hole_size(inode, lblock, &mp);
		else
		else
			iomap->length = size - pos;
			iomap->length = size - pos;
	} else {
		if (height <= ip->i_height)
			iomap->length = hole_size(inode, lblock, &mp);
	}
	}
	goto out_release;
	goto out_release;
}
}