mirror of
https://github.com/torvalds/linux.git
synced 2024-11-11 06:31:49 +00:00
iomap: prepare iomap_fiemap for attribute mappings
By bassing through an -ENOENT, similar to the old XFS implementation of FIEMAP_FLAG_XATTR. Signed-off-by: Dave Chinner <dchinner@redhat.com> [hch: split from a larger patch] Signed-off-by: Christoph Hellwig <hch@lst.de> Reviewed-by: Dave Chinner <dchinner@redhat.com> Signed-off-by: Dave Chinner <david@fromorbit.com>
This commit is contained in:
parent
8896b8f609
commit
ac2dc058bc
@ -476,6 +476,9 @@ int iomap_fiemap(struct inode *inode, struct fiemap_extent_info *fi,
|
|||||||
while (len > 0) {
|
while (len > 0) {
|
||||||
ret = iomap_apply(inode, start, len, 0, ops, &ctx,
|
ret = iomap_apply(inode, start, len, 0, ops, &ctx,
|
||||||
iomap_fiemap_actor);
|
iomap_fiemap_actor);
|
||||||
|
/* inode with no (attribute) mapping will give ENOENT */
|
||||||
|
if (ret == -ENOENT)
|
||||||
|
break;
|
||||||
if (ret < 0)
|
if (ret < 0)
|
||||||
return ret;
|
return ret;
|
||||||
if (ret == 0)
|
if (ret == 0)
|
||||||
|
Loading…
Reference in New Issue
Block a user