diff options
author | Pavel Machek <pavel@suse.cz> | 2008-07-24 00:27:36 -0400 |
---|---|---|
committer | Linus Torvalds <torvalds@linux-foundation.org> | 2008-07-24 13:47:17 -0400 |
commit | cce770815869e9209171d819dfde89bcc738ab62 (patch) | |
tree | 1a78a7d57ae8c429df15bed31275a3424b305eb5 /fs/sync.c | |
parent | bcd78e49613c41b5bed96fa288e983876f286a59 (diff) |
SYNC_FILE_RANGE_WRITE may and will block. Document that.
[akpm@linux-foundation.org: fix comment text]
Signed-off-by: Pavel Machek <pavel@suse.cz>
Signed-off-by: Andrew Morton <akpm@linux-foundation.org>
Signed-off-by: Linus Torvalds <torvalds@linux-foundation.org>
Diffstat (limited to 'fs/sync.c')
-rw-r--r-- | fs/sync.c | 3 |
1 files changed, 2 insertions, 1 deletions
@@ -139,7 +139,8 @@ asmlinkage long sys_fdatasync(unsigned int fd) | |||
139 | * before performing the write. | 139 | * before performing the write. |
140 | * | 140 | * |
141 | * SYNC_FILE_RANGE_WRITE: initiate writeout of all those dirty pages in the | 141 | * SYNC_FILE_RANGE_WRITE: initiate writeout of all those dirty pages in the |
142 | * range which are not presently under writeback. | 142 | * range which are not presently under writeback. Note that this may block for |
143 | * significant periods due to exhaustion of disk request structures. | ||
143 | * | 144 | * |
144 | * SYNC_FILE_RANGE_WAIT_AFTER: wait upon writeout of all pages in the range | 145 | * SYNC_FILE_RANGE_WAIT_AFTER: wait upon writeout of all pages in the range |
145 | * after performing the write. | 146 | * after performing the write. |