* [PATCH] Introduce SEEK_DATA/SEEK_HOLE support V8
@ 2012-02-17 13:16 Jeff Liu
2012-02-21 14:56 ` Mark Tinguely
2012-05-09 17:42 ` Mark Tinguely
0 siblings, 2 replies; 6+ messages in thread
From: Jeff Liu @ 2012-02-17 13:16 UTC (permalink / raw)
To: xfs; +Cc: Christoph Hellwig, Ben Myers, Mark Tinguely, Chris Mason
Hello,
This is the revised patch according to Dave's comments for V7.
Changes to V8:
--------------
1. If there is an internal error raised at extent reading routine, just
return it rather than ENXIO.
2. Add the commit message.
3. Remove the for(;;) loop since there is no continuous holes shown even
if create a Petabyte sparse file with hole extent length longer than
32-bit. Thanks Dave for helping verify that!
4. In xfs_seek_data(), s/len/end/, looks 'end' is more meaningful here
to indicate the range of extents mapped.
5. Remove BUG() from xfs_seek_data() since xfs_bmapi_read() have found
any corruption during the lookup, it should not occurred at all.
Any comments are appreciated!
Thanks,
-Jeff
Signed-off-by: Jie Liu <jeff.liu@oracle.com>
---
This patch adds lseek(2) SEEK_DATA/SEEK_HOLE functionality.
fs/xfs/xfs_file.c | 135
++++++++++++++++++++++++++++++++++++++++++++++++++++-
1 files changed, 134 insertions(+), 1 deletions(-)
diff --git a/fs/xfs/xfs_file.c b/fs/xfs/xfs_file.c
index 753ed9b..1b3021c 100644
--- a/fs/xfs/xfs_file.c
+++ b/fs/xfs/xfs_file.c
@@ -1141,8 +1141,141 @@ xfs_vm_page_mkwrite(
return block_page_mkwrite(vma, vmf, xfs_get_blocks);
}
+STATIC loff_t
+xfs_seek_data(
+ struct file *file,
+ loff_t start,
+ u32 type)
+{
+ struct inode *inode = file->f_mapping->host;
+ struct xfs_inode *ip = XFS_I(inode);
+ struct xfs_mount *mp = ip->i_mount;
+ struct xfs_bmbt_irec map[2];
+ int nmap = 2;
+ loff_t uninitialized_var(offset);
+ xfs_fsize_t isize;
+ xfs_fileoff_t fsbno;
+ xfs_filblks_t end;
+ uint lock;
+ int error;
+
+ lock = xfs_ilock_map_shared(ip);
+
+ isize = i_size_read(inode);
+ if (start >= isize) {
+ error = ENXIO;
+ goto out_unlock;
+ }
+
+ fsbno = XFS_B_TO_FSBT(mp, start);
+
+ /*
+ * Try to read extents from the first block indicated
+ * by fsbno to the end block of the file.
+ */
+ end = XFS_B_TO_FSB(mp, isize);
+
+ error = xfs_bmapi_read(ip, fsbno, end - fsbno, map, &nmap,
+ XFS_BMAPI_ENTIRE);
+ if (error)
+ goto out_unlock;
+
+ /*
+ * Treat unwritten extent as data extent since it might
+ * contains dirty data in page cache.
+ */
+ if (map[0].br_startblock != HOLESTARTBLOCK) {
+ offset = max_t(loff_t, start,
+ XFS_FSB_TO_B(mp, map[0].br_startoff));
+ } else {
+ if (nmap == 1) {
+ error = ENXIO;
+ goto out_unlock;
+ }
+
+ offset = max_t(loff_t, start,
+ XFS_FSB_TO_B(mp, map[1].br_startoff));
+ }
+
+ if (offset != file->f_pos)
+ file->f_pos = offset;
+
+out_unlock:
+ xfs_iunlock_map_shared(ip, lock);
+
+ if (error)
+ return -error;
+ return offset;
+}
+
+STATIC loff_t
+xfs_seek_hole(
+ struct file *file,
+ loff_t start,
+ u32 type)
+{
+ struct inode *inode = file->f_mapping->host;
+ struct xfs_inode *ip = XFS_I(inode);
+ struct xfs_mount *mp = ip->i_mount;
+ loff_t uninitialized_var(offset);
+ loff_t holeoff;
+ xfs_fsize_t isize;
+ xfs_fileoff_t fsbno;
+ uint lock;
+ int error;
+
+ lock = xfs_ilock_map_shared(ip);
+
+ isize = i_size_read(inode);
+ if (start >= isize) {
+ error = ENXIO;
+ goto out_unlock;
+ }
+
+ fsbno = XFS_B_TO_FSBT(mp, start);
+ error = xfs_bmap_first_unused(NULL, ip, 1, &fsbno, XFS_DATA_FORK);
+ if (error)
+ goto out_unlock;
+
+ holeoff = XFS_FSB_TO_B(mp, fsbno);
+ if (holeoff <= start)
+ offset = start;
+ else
+ offset = min_t(loff_t, holeoff, isize);
+
+ if (offset != file->f_pos)
+ file->f_pos = offset;
+
+out_unlock:
+ xfs_iunlock_map_shared(ip, lock);
+
+ if (error)
+ return -error;
+ return offset;
+}
+
+STATIC loff_t
+xfs_file_llseek(
+ struct file *file,
+ loff_t offset,
+ int origin)
+{
+ switch (origin) {
+ case SEEK_END:
+ case SEEK_CUR:
+ case SEEK_SET:
+ return generic_file_llseek(file, offset, origin);
+ case SEEK_DATA:
+ return xfs_seek_data(file, offset, origin);
+ case SEEK_HOLE:
+ return xfs_seek_hole(file, offset, origin);
+ default:
+ return -EINVAL;
+ }
+}
+
const struct file_operations xfs_file_operations = {
- .llseek = generic_file_llseek,
+ .llseek = xfs_file_llseek,
.read = do_sync_read,
.write = do_sync_write,
.aio_read = xfs_file_aio_read,
--
1.7.9
_______________________________________________
xfs mailing list
xfs@oss.sgi.com
http://oss.sgi.com/mailman/listinfo/xfs
^ permalink raw reply related [flat|nested] 6+ messages in thread
* Re: [PATCH] Introduce SEEK_DATA/SEEK_HOLE support V8
2012-02-17 13:16 [PATCH] Introduce SEEK_DATA/SEEK_HOLE support V8 Jeff Liu
@ 2012-02-21 14:56 ` Mark Tinguely
2012-02-22 3:05 ` Jeff Liu
2012-05-09 17:42 ` Mark Tinguely
1 sibling, 1 reply; 6+ messages in thread
From: Mark Tinguely @ 2012-02-21 14:56 UTC (permalink / raw)
To: jeff.liu; +Cc: Christoph Hellwig, Ben Myers, Chris Mason, xfs
On 02/17/12 07:16, Jeff Liu wrote:
> Hello,
>
> This is the revised patch according to Dave's comments for V7.
>
> Changes to V8:
> --------------
> 1. If there is an internal error raised at extent reading routine, just
> return it rather than ENXIO.
> 2. Add the commit message.
> 3. Remove the for(;;) loop since there is no continuous holes shown even
> if create a Petabyte sparse file with hole extent length longer than
> 32-bit. Thanks Dave for helping verify that!
> 4. In xfs_seek_data(), s/len/end/, looks 'end' is more meaningful here
> to indicate the range of extents mapped.
> 5. Remove BUG() from xfs_seek_data() since xfs_bmapi_read() have found
> any corruption during the lookup, it should not occurred at all.
>
> Any comments are appreciated!
>
> Thanks,
> -Jeff
>
>
> Signed-off-by: Jie Liu<jeff.liu@oracle.com>
...
> +STATIC loff_t
> +xfs_seek_hole(
...
> +
> + fsbno = XFS_B_TO_FSBT(mp, start);
> + error = xfs_bmap_first_unused(NULL, ip, 1,&fsbno, XFS_DATA_FORK);
> + if (error)
> + goto out_unlock;
> +
> + holeoff = XFS_FSB_TO_B(mp, fsbno);
> + if (holeoff<= start)
> + offset = start;
> + else
> + offset = min_t(loff_t, holeoff, isize);
> +
...
Very Nice. Much more concise.
Can xfs_bmap_first_unused() return something larger than the end of file?
Reviewed-by: Mark Tinguely <tinguely@sgi.com>
_______________________________________________
xfs mailing list
xfs@oss.sgi.com
http://oss.sgi.com/mailman/listinfo/xfs
^ permalink raw reply [flat|nested] 6+ messages in thread
* Re: [PATCH] Introduce SEEK_DATA/SEEK_HOLE support V8
2012-02-21 14:56 ` Mark Tinguely
@ 2012-02-22 3:05 ` Jeff Liu
2012-02-22 14:26 ` Mark Tinguely
0 siblings, 1 reply; 6+ messages in thread
From: Jeff Liu @ 2012-02-22 3:05 UTC (permalink / raw)
To: Mark Tinguely; +Cc: Christoph Hellwig, Ben Myers, Chris Mason, xfs
On 02/21/2012 10:56 PM, Mark Tinguely wrote:
> On 02/17/12 07:16, Jeff Liu wrote:
>> Hello,
>>
>> This is the revised patch according to Dave's comments for V7.
>>
>> Changes to V8:
>> --------------
>> 1. If there is an internal error raised at extent reading routine, just
>> return it rather than ENXIO.
>> 2. Add the commit message.
>> 3. Remove the for(;;) loop since there is no continuous holes shown even
>> if create a Petabyte sparse file with hole extent length longer than
>> 32-bit. Thanks Dave for helping verify that!
>> 4. In xfs_seek_data(), s/len/end/, looks 'end' is more meaningful here
>> to indicate the range of extents mapped.
>> 5. Remove BUG() from xfs_seek_data() since xfs_bmapi_read() have found
>> any corruption during the lookup, it should not occurred at all.
>>
>> Any comments are appreciated!
>>
>> Thanks,
>> -Jeff
>>
>>
>> Signed-off-by: Jie Liu<jeff.liu@oracle.com>
>
> ...
>
>> +STATIC loff_t
>> +xfs_seek_hole(
> ...
>> +
>> + fsbno = XFS_B_TO_FSBT(mp, start);
>> + error = xfs_bmap_first_unused(NULL, ip, 1,&fsbno, XFS_DATA_FORK);
>> + if (error)
>> + goto out_unlock;
>> +
>> + holeoff = XFS_FSB_TO_B(mp, fsbno);
>> + if (holeoff<= start)
>> + offset = start;
>> + else
>> + offset = min_t(loff_t, holeoff, isize);
>> +
>
> ...
>
> Very Nice. Much more concise.
>
> Can xfs_bmap_first_unused() return something larger than the end of file?
I think it could be happen if the file has no holes past the given
offset. In this case, it will return the first block past the end of
file. That is why "min_t()" is used to determine the final value.
Thanks,
-Jeff
>
> Reviewed-by: Mark Tinguely <tinguely@sgi.com>
_______________________________________________
xfs mailing list
xfs@oss.sgi.com
http://oss.sgi.com/mailman/listinfo/xfs
^ permalink raw reply [flat|nested] 6+ messages in thread
* Re: [PATCH] Introduce SEEK_DATA/SEEK_HOLE support V8
2012-02-22 3:05 ` Jeff Liu
@ 2012-02-22 14:26 ` Mark Tinguely
0 siblings, 0 replies; 6+ messages in thread
From: Mark Tinguely @ 2012-02-22 14:26 UTC (permalink / raw)
To: jeff.liu; +Cc: Christoph Hellwig, Ben Myers, Chris Mason, xfs
On 02/21/12 21:05, Jeff Liu wrote:
> On 02/21/2012 10:56 PM, Mark Tinguely wrote:
>
>> On 02/17/12 07:16, Jeff Liu wrote:
>>> Hello,
>>>
>>> This is the revised patch according to Dave's comments for V7.
>>>
>>> Changes to V8:
>>> --------------
>>> 1. If there is an internal error raised at extent reading routine, just
>>> return it rather than ENXIO.
>>> 2. Add the commit message.
>>> 3. Remove the for(;;) loop since there is no continuous holes shown even
>>> if create a Petabyte sparse file with hole extent length longer than
>>> 32-bit. Thanks Dave for helping verify that!
>>> 4. In xfs_seek_data(), s/len/end/, looks 'end' is more meaningful here
>>> to indicate the range of extents mapped.
>>> 5. Remove BUG() from xfs_seek_data() since xfs_bmapi_read() have found
>>> any corruption during the lookup, it should not occurred at all.
>>>
>>> Any comments are appreciated!
>>>
>>> Thanks,
>>> -Jeff
>>>
>>>
>>> Signed-off-by: Jie Liu<jeff.liu@oracle.com>
>>
>> ...
>>
>>> +STATIC loff_t
>>> +xfs_seek_hole(
>> ...
>>> +
>>> + fsbno = XFS_B_TO_FSBT(mp, start);
>>> + error = xfs_bmap_first_unused(NULL, ip, 1,&fsbno, XFS_DATA_FORK);
>>> + if (error)
>>> + goto out_unlock;
>>> +
>>> + holeoff = XFS_FSB_TO_B(mp, fsbno);
>>> + if (holeoff<= start)
>>> + offset = start;
>>> + else
>>> + offset = min_t(loff_t, holeoff, isize);
>>> +
>>
>> ...
>>
>> Very Nice. Much more concise.
>>
>> Can xfs_bmap_first_unused() return something larger than the end of file?
>
> I think it could be happen if the file has no holes past the given
> offset. In this case, it will return the first block past the end of
> file. That is why "min_t()" is used to determine the final value.
>
> Thanks,
> -Jeff
>
>>
>> Reviewed-by: Mark Tinguely<tinguely@sgi.com>
>
>
Okay. Looks good.
--Mark Tinguely.
_______________________________________________
xfs mailing list
xfs@oss.sgi.com
http://oss.sgi.com/mailman/listinfo/xfs
^ permalink raw reply [flat|nested] 6+ messages in thread
* Re: [PATCH] Introduce SEEK_DATA/SEEK_HOLE support V8
2012-02-17 13:16 [PATCH] Introduce SEEK_DATA/SEEK_HOLE support V8 Jeff Liu
2012-02-21 14:56 ` Mark Tinguely
@ 2012-05-09 17:42 ` Mark Tinguely
2012-05-10 2:51 ` Jeff Liu
1 sibling, 1 reply; 6+ messages in thread
From: Mark Tinguely @ 2012-05-09 17:42 UTC (permalink / raw)
To: jeff.liu; +Cc: Christoph Hellwig, Ben Myers, Chris Mason, xfs
On 02/17/12 07:16, Jeff Liu wrote:
> Hello,
>
> This is the revised patch according to Dave's comments for V7.
>
> Changes to V8:
> --------------
> 1. If there is an internal error raised at extent reading routine, just
> return it rather than ENXIO.
> 2. Add the commit message.
> 3. Remove the for(;;) loop since there is no continuous holes shown even
> if create a Petabyte sparse file with hole extent length longer than
> 32-bit. Thanks Dave for helping verify that!
> 4. In xfs_seek_data(), s/len/end/, looks 'end' is more meaningful here
> to indicate the range of extents mapped.
> 5. Remove BUG() from xfs_seek_data() since xfs_bmapi_read() have found
> any corruption during the lookup, it should not occurred at all.
>
> Any comments are appreciated!
>
> Thanks,
> -Jeff
>
>
> Signed-off-by: Jie Liu<jeff.liu@oracle.com>
> ---
> This patch adds lseek(2) SEEK_DATA/SEEK_HOLE functionality.
> +STATIC loff_t
> +xfs_seek_hole(
> + struct file *file,
> + loff_t start,
> + u32 type)
> +{
> + struct inode *inode = file->f_mapping->host;
> + struct xfs_inode *ip = XFS_I(inode);
> + struct xfs_mount *mp = ip->i_mount;
> + loff_t uninitialized_var(offset);
> + loff_t holeoff;
> + xfs_fsize_t isize;
> + xfs_fileoff_t fsbno;
> + uint lock;
> + int error;
> +
> + lock = xfs_ilock_map_shared(ip);
> +
> + isize = i_size_read(inode);
> + if (start>= isize) {
> + error = ENXIO;
> + goto out_unlock;
> + }
> +
> + fsbno = XFS_B_TO_FSBT(mp, start);
> + error = xfs_bmap_first_unused(NULL, ip, 1,&fsbno, XFS_DATA_FORK);
> + if (error)
> + goto out_unlock;
> +
> + holeoff = XFS_FSB_TO_B(mp, fsbno);
> + if (holeoff<= start)
> + offset = start;
> + else
> + offset = min_t(loff_t, holeoff, isize);
> +
> + if (offset != file->f_pos)
> + file->f_pos = offset;
> +
> +out_unlock:
> + xfs_iunlock_map_shared(ip, lock);
> +
> + if (error)
> + return -error;
> + return offset;
> +}
Sorry this got set aside. This is being dusted off for inclusion.
Refresh my memory, do we need a XFS_FORCED_SHUTDOWN test in
xfs_seek_hole()? In the earlier versions it was covered in the
xfs_bmapi_read().
A comment on the min_t() that the xfs_bmap_first_unused() could
return a value bigger than the isize if there are no more holes
may help the forgetful such as myself.
Otherwise it looks good.
Thank-you.
Mark Tinguely <tinguely@sgi.com>
_______________________________________________
xfs mailing list
xfs@oss.sgi.com
http://oss.sgi.com/mailman/listinfo/xfs
^ permalink raw reply [flat|nested] 6+ messages in thread
* Re: [PATCH] Introduce SEEK_DATA/SEEK_HOLE support V8
2012-05-09 17:42 ` Mark Tinguely
@ 2012-05-10 2:51 ` Jeff Liu
0 siblings, 0 replies; 6+ messages in thread
From: Jeff Liu @ 2012-05-10 2:51 UTC (permalink / raw)
To: Mark Tinguely; +Cc: Christoph Hellwig, Ben Myers, Chris Mason, xfs
On 05/10/2012 01:42 AM, Mark Tinguely wrote:
> On 02/17/12 07:16, Jeff Liu wrote:
>> Hello,
>>
>> This is the revised patch according to Dave's comments for V7.
>>
>> Changes to V8:
>> --------------
>> 1. If there is an internal error raised at extent reading routine, just
>> return it rather than ENXIO.
>> 2. Add the commit message.
>> 3. Remove the for(;;) loop since there is no continuous holes shown even
>> if create a Petabyte sparse file with hole extent length longer than
>> 32-bit. Thanks Dave for helping verify that!
>> 4. In xfs_seek_data(), s/len/end/, looks 'end' is more meaningful here
>> to indicate the range of extents mapped.
>> 5. Remove BUG() from xfs_seek_data() since xfs_bmapi_read() have found
>> any corruption during the lookup, it should not occurred at all.
>>
>> Any comments are appreciated!
>>
>> Thanks,
>> -Jeff
>>
>>
>> Signed-off-by: Jie Liu<jeff.liu@oracle.com>
>> ---
>> This patch adds lseek(2) SEEK_DATA/SEEK_HOLE functionality.
>
>> +STATIC loff_t
>> +xfs_seek_hole(
>> + struct file *file,
>> + loff_t start,
>> + u32 type)
>> +{
>> + struct inode *inode = file->f_mapping->host;
>> + struct xfs_inode *ip = XFS_I(inode);
>> + struct xfs_mount *mp = ip->i_mount;
>> + loff_t uninitialized_var(offset);
>> + loff_t holeoff;
>> + xfs_fsize_t isize;
>> + xfs_fileoff_t fsbno;
>> + uint lock;
>> + int error;
>> +
>> + lock = xfs_ilock_map_shared(ip);
>> +
>> + isize = i_size_read(inode);
>> + if (start>= isize) {
>> + error = ENXIO;
>> + goto out_unlock;
>> + }
>> +
>> + fsbno = XFS_B_TO_FSBT(mp, start);
>> + error = xfs_bmap_first_unused(NULL, ip, 1,&fsbno, XFS_DATA_FORK);
>> + if (error)
>> + goto out_unlock;
>> +
>> + holeoff = XFS_FSB_TO_B(mp, fsbno);
>> + if (holeoff<= start)
>> + offset = start;
>> + else
>> + offset = min_t(loff_t, holeoff, isize);
>> +
>> + if (offset != file->f_pos)
>> + file->f_pos = offset;
>> +
>> +out_unlock:
>> + xfs_iunlock_map_shared(ip, lock);
>> +
>> + if (error)
>> + return -error;
>> + return offset;
>> +}
>
> Sorry this got set aside. This is being dusted off for inclusion.
Thanks for picking this up!
>
> Refresh my memory, do we need a XFS_FORCED_SHUTDOWN test in
> xfs_seek_hole()? In the earlier versions it was covered in the
> xfs_bmapi_read().
Yes, definitely.
>
> A comment on the min_t() that the xfs_bmap_first_unused() could
> return a value bigger than the isize if there are no more holes
> may help the forgetful such as myself.
I'll leave a comment for it, it would be helpful to recall the case for
a long period.
Thanks,
-Jeff
>
> Otherwise it looks good.
>
> Thank-you.
>
> Mark Tinguely <tinguely@sgi.com>
>
> _______________________________________________
> xfs mailing list
> xfs@oss.sgi.com
> http://oss.sgi.com/mailman/listinfo/xfs
_______________________________________________
xfs mailing list
xfs@oss.sgi.com
http://oss.sgi.com/mailman/listinfo/xfs
^ permalink raw reply [flat|nested] 6+ messages in thread
end of thread, other threads:[~2012-05-10 2:51 UTC | newest]
Thread overview: 6+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2012-02-17 13:16 [PATCH] Introduce SEEK_DATA/SEEK_HOLE support V8 Jeff Liu
2012-02-21 14:56 ` Mark Tinguely
2012-02-22 3:05 ` Jeff Liu
2012-02-22 14:26 ` Mark Tinguely
2012-05-09 17:42 ` Mark Tinguely
2012-05-10 2:51 ` Jeff Liu
This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox