2006-03-31 12:30:42 +02:00
|
|
|
/*
|
|
|
|
* High-level sync()-related operations
|
|
|
|
*/
|
|
|
|
|
|
|
|
#include <linux/kernel.h>
|
|
|
|
#include <linux/file.h>
|
|
|
|
#include <linux/fs.h>
|
include cleanup: Update gfp.h and slab.h includes to prepare for breaking implicit slab.h inclusion from percpu.h
percpu.h is included by sched.h and module.h and thus ends up being
included when building most .c files. percpu.h includes slab.h which
in turn includes gfp.h making everything defined by the two files
universally available and complicating inclusion dependencies.
percpu.h -> slab.h dependency is about to be removed. Prepare for
this change by updating users of gfp and slab facilities include those
headers directly instead of assuming availability. As this conversion
needs to touch large number of source files, the following script is
used as the basis of conversion.
http://userweb.kernel.org/~tj/misc/slabh-sweep.py
The script does the followings.
* Scan files for gfp and slab usages and update includes such that
only the necessary includes are there. ie. if only gfp is used,
gfp.h, if slab is used, slab.h.
* When the script inserts a new include, it looks at the include
blocks and try to put the new include such that its order conforms
to its surrounding. It's put in the include block which contains
core kernel includes, in the same order that the rest are ordered -
alphabetical, Christmas tree, rev-Xmas-tree or at the end if there
doesn't seem to be any matching order.
* If the script can't find a place to put a new include (mostly
because the file doesn't have fitting include block), it prints out
an error message indicating which .h file needs to be added to the
file.
The conversion was done in the following steps.
1. The initial automatic conversion of all .c files updated slightly
over 4000 files, deleting around 700 includes and adding ~480 gfp.h
and ~3000 slab.h inclusions. The script emitted errors for ~400
files.
2. Each error was manually checked. Some didn't need the inclusion,
some needed manual addition while adding it to implementation .h or
embedding .c file was more appropriate for others. This step added
inclusions to around 150 files.
3. The script was run again and the output was compared to the edits
from #2 to make sure no file was left behind.
4. Several build tests were done and a couple of problems were fixed.
e.g. lib/decompress_*.c used malloc/free() wrappers around slab
APIs requiring slab.h to be added manually.
5. The script was run on all .h files but without automatically
editing them as sprinkling gfp.h and slab.h inclusions around .h
files could easily lead to inclusion dependency hell. Most gfp.h
inclusion directives were ignored as stuff from gfp.h was usually
wildly available and often used in preprocessor macros. Each
slab.h inclusion directive was examined and added manually as
necessary.
6. percpu.h was updated not to include slab.h.
7. Build test were done on the following configurations and failures
were fixed. CONFIG_GCOV_KERNEL was turned off for all tests (as my
distributed build env didn't work with gcov compiles) and a few
more options had to be turned off depending on archs to make things
build (like ipr on powerpc/64 which failed due to missing writeq).
* x86 and x86_64 UP and SMP allmodconfig and a custom test config.
* powerpc and powerpc64 SMP allmodconfig
* sparc and sparc64 SMP allmodconfig
* ia64 SMP allmodconfig
* s390 SMP allmodconfig
* alpha SMP allmodconfig
* um on x86_64 SMP allmodconfig
8. percpu.h modifications were reverted so that it could be applied as
a separate patch and serve as bisection point.
Given the fact that I had only a couple of failures from tests on step
6, I'm fairly confident about the coverage of this conversion patch.
If there is a breakage, it's likely to be something in one of the arch
headers which should be easily discoverable easily on most builds of
the specific arch.
Signed-off-by: Tejun Heo <tj@kernel.org>
Guess-its-ok-by: Christoph Lameter <cl@linux-foundation.org>
Cc: Ingo Molnar <mingo@redhat.com>
Cc: Lee Schermerhorn <Lee.Schermerhorn@hp.com>
2010-03-24 09:04:11 +01:00
|
|
|
#include <linux/slab.h>
|
2011-11-17 05:57:37 +01:00
|
|
|
#include <linux/export.h>
|
2011-03-10 20:31:30 +01:00
|
|
|
#include <linux/namei.h>
|
2006-10-18 19:55:46 +02:00
|
|
|
#include <linux/sched.h>
|
2006-03-31 12:30:42 +02:00
|
|
|
#include <linux/writeback.h>
|
|
|
|
#include <linux/syscalls.h>
|
|
|
|
#include <linux/linkage.h>
|
|
|
|
#include <linux/pagemap.h>
|
2006-08-29 20:05:54 +02:00
|
|
|
#include <linux/quotaops.h>
|
2010-04-25 08:54:42 +02:00
|
|
|
#include <linux/backing-dev.h>
|
2009-04-27 16:43:48 +02:00
|
|
|
#include "internal.h"
|
2006-03-31 12:30:42 +02:00
|
|
|
|
|
|
|
#define VALID_FLAGS (SYNC_FILE_RANGE_WAIT_BEFORE|SYNC_FILE_RANGE_WRITE| \
|
|
|
|
SYNC_FILE_RANGE_WAIT_AFTER)
|
|
|
|
|
2009-04-27 16:43:52 +02:00
|
|
|
/*
|
2009-09-02 12:34:32 +02:00
|
|
|
* Do the filesystem syncing work. For simple filesystems
|
|
|
|
* writeback_inodes_sb(sb) just dirties buffers with inodes so we have to
|
|
|
|
* submit IO for these buffers via __sync_blockdev(). This also speeds up the
|
|
|
|
* wait == 1 case since in that case write_inode() functions do
|
|
|
|
* sync_dirty_buffer() and thus effectively write one block at a time.
|
2009-04-27 16:43:52 +02:00
|
|
|
*/
|
2014-02-21 11:19:04 +01:00
|
|
|
static int __sync_filesystem(struct super_block *sb, int wait)
|
2009-04-27 16:43:52 +02:00
|
|
|
{
|
2010-02-16 09:44:52 +01:00
|
|
|
if (wait)
|
2014-02-21 11:19:04 +01:00
|
|
|
sync_inodes_sb(sb);
|
2010-02-16 09:44:52 +01:00
|
|
|
else
|
2011-10-08 05:54:10 +02:00
|
|
|
writeback_inodes_sb(sb, WB_REASON_SYNC);
|
2010-02-16 09:44:52 +01:00
|
|
|
|
2009-04-27 16:43:52 +02:00
|
|
|
if (sb->s_op->sync_fs)
|
|
|
|
sb->s_op->sync_fs(sb, wait);
|
|
|
|
return __sync_blockdev(sb->s_bdev, wait);
|
|
|
|
}
|
|
|
|
|
|
|
|
/*
|
|
|
|
* Write out and wait upon all dirty data associated with this
|
|
|
|
* superblock. Filesystem data as well as the underlying block
|
|
|
|
* device. Takes the superblock lock.
|
|
|
|
*/
|
2009-04-27 16:43:53 +02:00
|
|
|
int sync_filesystem(struct super_block *sb)
|
2009-04-27 16:43:52 +02:00
|
|
|
{
|
|
|
|
int ret;
|
|
|
|
|
2009-05-05 15:41:25 +02:00
|
|
|
/*
|
|
|
|
* We need to be protected against the filesystem going from
|
|
|
|
* r/o to r/w or vice versa.
|
|
|
|
*/
|
|
|
|
WARN_ON(!rwsem_is_locked(&sb->s_umount));
|
|
|
|
|
|
|
|
/*
|
|
|
|
* No point in syncing out anything if the filesystem is read-only.
|
|
|
|
*/
|
2017-07-17 09:45:34 +02:00
|
|
|
if (sb_rdonly(sb))
|
2009-05-05 15:41:25 +02:00
|
|
|
return 0;
|
|
|
|
|
2014-02-21 11:19:04 +01:00
|
|
|
ret = __sync_filesystem(sb, 0);
|
2009-04-27 16:43:52 +02:00
|
|
|
if (ret < 0)
|
|
|
|
return ret;
|
2014-02-21 11:19:04 +01:00
|
|
|
return __sync_filesystem(sb, 1);
|
2009-04-27 16:43:52 +02:00
|
|
|
}
|
2014-08-21 12:09:27 +02:00
|
|
|
EXPORT_SYMBOL(sync_filesystem);
|
2009-04-27 16:43:52 +02:00
|
|
|
|
2012-07-03 16:45:30 +02:00
|
|
|
static void sync_inodes_one_sb(struct super_block *sb, void *arg)
|
2010-03-23 11:06:58 +01:00
|
|
|
{
|
2017-07-17 09:45:34 +02:00
|
|
|
if (!sb_rdonly(sb))
|
2014-02-21 11:19:04 +01:00
|
|
|
sync_inodes_sb(sb);
|
2010-03-23 11:06:58 +01:00
|
|
|
}
|
2012-07-03 16:45:30 +02:00
|
|
|
|
|
|
|
static void sync_fs_one_sb(struct super_block *sb, void *arg)
|
|
|
|
{
|
2017-07-17 09:45:34 +02:00
|
|
|
if (!sb_rdonly(sb) && sb->s_op->sync_fs)
|
2012-07-03 16:45:30 +02:00
|
|
|
sb->s_op->sync_fs(sb, *(int *)arg);
|
|
|
|
}
|
|
|
|
|
2012-07-03 16:45:33 +02:00
|
|
|
static void fdatawrite_one_bdev(struct block_device *bdev, void *arg)
|
2012-07-03 16:45:30 +02:00
|
|
|
{
|
2012-07-03 16:45:33 +02:00
|
|
|
filemap_fdatawrite(bdev->bd_inode->i_mapping);
|
2012-07-03 16:45:32 +02:00
|
|
|
}
|
|
|
|
|
2012-07-03 16:45:33 +02:00
|
|
|
static void fdatawait_one_bdev(struct block_device *bdev, void *arg)
|
2012-07-03 16:45:32 +02:00
|
|
|
{
|
2015-11-06 03:47:23 +01:00
|
|
|
/*
|
|
|
|
* We keep the error status of individual mapping so that
|
|
|
|
* applications can catch the writeback error using fsync(2).
|
|
|
|
* See filemap_fdatawait_keep_errors() for details.
|
|
|
|
*/
|
|
|
|
filemap_fdatawait_keep_errors(bdev->bd_inode->i_mapping);
|
2009-04-27 16:43:52 +02:00
|
|
|
}
|
|
|
|
|
2009-07-05 21:08:08 +02:00
|
|
|
/*
|
2012-07-03 16:45:34 +02:00
|
|
|
* Sync everything. We start by waking flusher threads so that most of
|
|
|
|
* writeback runs on all devices in parallel. Then we sync all inodes reliably
|
|
|
|
* which effectively also waits for all flusher threads to finish doing
|
|
|
|
* writeback. At this point all data is on disk so metadata should be stable
|
|
|
|
* and we tell filesystems to sync their metadata via ->sync_fs() calls.
|
|
|
|
* Finally, we writeout all block devices because some filesystems (e.g. ext2)
|
|
|
|
* just write metadata (such as inodes or bitmaps) to block device page cache
|
|
|
|
* and do not sync it on their own in ->sync_fs().
|
2009-07-05 21:08:08 +02:00
|
|
|
*/
|
2009-04-27 16:43:51 +02:00
|
|
|
SYSCALL_DEFINE0(sync)
|
2006-08-29 20:05:54 +02:00
|
|
|
{
|
2012-07-03 16:45:30 +02:00
|
|
|
int nowait = 0, wait = 1;
|
|
|
|
|
2011-10-08 05:54:10 +02:00
|
|
|
wakeup_flusher_threads(0, WB_REASON_SYNC);
|
2014-02-21 11:19:04 +01:00
|
|
|
iterate_supers(sync_inodes_one_sb, NULL);
|
2012-07-03 16:45:34 +02:00
|
|
|
iterate_supers(sync_fs_one_sb, &nowait);
|
2012-07-03 16:45:30 +02:00
|
|
|
iterate_supers(sync_fs_one_sb, &wait);
|
2012-07-03 16:45:33 +02:00
|
|
|
iterate_bdevs(fdatawrite_one_bdev, NULL);
|
|
|
|
iterate_bdevs(fdatawait_one_bdev, NULL);
|
2006-08-29 20:05:54 +02:00
|
|
|
if (unlikely(laptop_mode))
|
|
|
|
laptop_sync_completion();
|
|
|
|
return 0;
|
|
|
|
}
|
|
|
|
|
2009-03-17 09:38:40 +01:00
|
|
|
static void do_sync_work(struct work_struct *work)
|
|
|
|
{
|
2012-07-03 16:45:30 +02:00
|
|
|
int nowait = 0;
|
|
|
|
|
2009-04-27 16:43:51 +02:00
|
|
|
/*
|
|
|
|
* Sync twice to reduce the possibility we skipped some inodes / pages
|
|
|
|
* because they were temporarily locked
|
|
|
|
*/
|
2012-07-03 16:45:30 +02:00
|
|
|
iterate_supers(sync_inodes_one_sb, &nowait);
|
|
|
|
iterate_supers(sync_fs_one_sb, &nowait);
|
2012-07-03 16:45:33 +02:00
|
|
|
iterate_bdevs(fdatawrite_one_bdev, NULL);
|
2012-07-03 16:45:30 +02:00
|
|
|
iterate_supers(sync_inodes_one_sb, &nowait);
|
|
|
|
iterate_supers(sync_fs_one_sb, &nowait);
|
2012-07-03 16:45:33 +02:00
|
|
|
iterate_bdevs(fdatawrite_one_bdev, NULL);
|
2009-04-27 16:43:51 +02:00
|
|
|
printk("Emergency Sync complete\n");
|
2009-03-17 09:38:40 +01:00
|
|
|
kfree(work);
|
|
|
|
}
|
|
|
|
|
2006-08-29 20:05:54 +02:00
|
|
|
void emergency_sync(void)
|
|
|
|
{
|
2009-03-17 09:38:40 +01:00
|
|
|
struct work_struct *work;
|
|
|
|
|
|
|
|
work = kmalloc(sizeof(*work), GFP_ATOMIC);
|
|
|
|
if (work) {
|
|
|
|
INIT_WORK(work, do_sync_work);
|
|
|
|
schedule_work(work);
|
|
|
|
}
|
2006-08-29 20:05:54 +02:00
|
|
|
}
|
|
|
|
|
2011-03-10 20:31:30 +01:00
|
|
|
/*
|
|
|
|
* sync a single super
|
|
|
|
*/
|
|
|
|
SYSCALL_DEFINE1(syncfs, int, fd)
|
|
|
|
{
|
2012-08-28 18:52:22 +02:00
|
|
|
struct fd f = fdget(fd);
|
2011-03-10 20:31:30 +01:00
|
|
|
struct super_block *sb;
|
|
|
|
int ret;
|
|
|
|
|
2012-08-28 18:52:22 +02:00
|
|
|
if (!f.file)
|
2011-03-10 20:31:30 +01:00
|
|
|
return -EBADF;
|
2014-10-31 06:22:04 +01:00
|
|
|
sb = f.file->f_path.dentry->d_sb;
|
2011-03-10 20:31:30 +01:00
|
|
|
|
|
|
|
down_read(&sb->s_umount);
|
|
|
|
ret = sync_filesystem(sb);
|
|
|
|
up_read(&sb->s_umount);
|
|
|
|
|
2012-08-28 18:52:22 +02:00
|
|
|
fdput(f);
|
2011-03-10 20:31:30 +01:00
|
|
|
return ret;
|
|
|
|
}
|
|
|
|
|
2008-12-22 21:11:15 +01:00
|
|
|
/**
|
2009-08-17 19:52:36 +02:00
|
|
|
* vfs_fsync_range - helper to sync a range of data & metadata to disk
|
2008-12-22 21:11:15 +01:00
|
|
|
* @file: file to sync
|
2009-08-17 19:52:36 +02:00
|
|
|
* @start: offset in bytes of the beginning of data range to sync
|
|
|
|
* @end: offset in bytes of the end of data range (inclusive)
|
|
|
|
* @datasync: perform only datasync
|
2008-12-22 21:11:15 +01:00
|
|
|
*
|
2009-08-17 19:52:36 +02:00
|
|
|
* Write back data in range @start..@end and metadata for @file to disk. If
|
|
|
|
* @datasync is set only metadata needed to access modified file data is
|
|
|
|
* written.
|
2008-12-22 21:11:15 +01:00
|
|
|
*/
|
2010-03-22 17:32:25 +01:00
|
|
|
int vfs_fsync_range(struct file *file, loff_t start, loff_t end, int datasync)
|
2006-08-29 20:05:54 +02:00
|
|
|
{
|
2015-02-02 06:37:00 +01:00
|
|
|
struct inode *inode = file->f_mapping->host;
|
|
|
|
|
2013-09-22 22:27:52 +02:00
|
|
|
if (!file->f_op->fsync)
|
2011-07-17 02:44:56 +02:00
|
|
|
return -EINVAL;
|
2015-02-02 06:37:00 +01:00
|
|
|
if (!datasync && (inode->i_state & I_DIRTY_TIME)) {
|
|
|
|
spin_lock(&inode->i_lock);
|
|
|
|
inode->i_state &= ~I_DIRTY_TIME;
|
|
|
|
spin_unlock(&inode->i_lock);
|
|
|
|
mark_inode_dirty_sync(inode);
|
|
|
|
}
|
2017-07-05 21:26:50 +02:00
|
|
|
return file->f_op->fsync(file, start, end, datasync);
|
2006-08-29 20:05:54 +02:00
|
|
|
}
|
2009-08-17 19:52:36 +02:00
|
|
|
EXPORT_SYMBOL(vfs_fsync_range);
|
|
|
|
|
|
|
|
/**
|
|
|
|
* vfs_fsync - perform a fsync or fdatasync on a file
|
|
|
|
* @file: file to sync
|
|
|
|
* @datasync: only perform a fdatasync operation
|
|
|
|
*
|
|
|
|
* Write back data and metadata for @file to disk. If @datasync is
|
|
|
|
* set only metadata needed to access modified file data is written.
|
|
|
|
*/
|
2010-03-22 17:32:25 +01:00
|
|
|
int vfs_fsync(struct file *file, int datasync)
|
2009-08-17 19:52:36 +02:00
|
|
|
{
|
2010-03-22 17:32:25 +01:00
|
|
|
return vfs_fsync_range(file, 0, LLONG_MAX, datasync);
|
2009-08-17 19:52:36 +02:00
|
|
|
}
|
2008-12-22 21:11:15 +01:00
|
|
|
EXPORT_SYMBOL(vfs_fsync);
|
2006-08-29 20:05:54 +02:00
|
|
|
|
2008-12-22 21:11:15 +01:00
|
|
|
static int do_fsync(unsigned int fd, int datasync)
|
2006-08-29 20:05:54 +02:00
|
|
|
{
|
2012-08-28 18:52:22 +02:00
|
|
|
struct fd f = fdget(fd);
|
2006-08-29 20:05:54 +02:00
|
|
|
int ret = -EBADF;
|
|
|
|
|
2012-08-28 18:52:22 +02:00
|
|
|
if (f.file) {
|
|
|
|
ret = vfs_fsync(f.file, datasync);
|
|
|
|
fdput(f);
|
2006-08-29 20:05:54 +02:00
|
|
|
}
|
|
|
|
return ret;
|
|
|
|
}
|
|
|
|
|
2009-01-14 14:14:11 +01:00
|
|
|
SYSCALL_DEFINE1(fsync, unsigned int, fd)
|
2006-08-29 20:05:54 +02:00
|
|
|
{
|
2008-12-22 21:11:15 +01:00
|
|
|
return do_fsync(fd, 0);
|
2006-08-29 20:05:54 +02:00
|
|
|
}
|
|
|
|
|
2009-01-14 14:14:11 +01:00
|
|
|
SYSCALL_DEFINE1(fdatasync, unsigned int, fd)
|
2006-08-29 20:05:54 +02:00
|
|
|
{
|
2008-12-22 21:11:15 +01:00
|
|
|
return do_fsync(fd, 1);
|
2006-08-29 20:05:54 +02:00
|
|
|
}
|
|
|
|
|
2006-03-31 12:30:42 +02:00
|
|
|
/*
|
|
|
|
* sys_sync_file_range() permits finely controlled syncing over a segment of
|
|
|
|
* a file in the range offset .. (offset+nbytes-1) inclusive. If nbytes is
|
|
|
|
* zero then sys_sync_file_range() will operate from offset out to EOF.
|
|
|
|
*
|
|
|
|
* The flag bits are:
|
|
|
|
*
|
|
|
|
* SYNC_FILE_RANGE_WAIT_BEFORE: wait upon writeout of all pages in the range
|
|
|
|
* before performing the write.
|
|
|
|
*
|
|
|
|
* SYNC_FILE_RANGE_WRITE: initiate writeout of all those dirty pages in the
|
2008-07-24 06:27:36 +02:00
|
|
|
* range which are not presently under writeback. Note that this may block for
|
|
|
|
* significant periods due to exhaustion of disk request structures.
|
2006-03-31 12:30:42 +02:00
|
|
|
*
|
|
|
|
* SYNC_FILE_RANGE_WAIT_AFTER: wait upon writeout of all pages in the range
|
|
|
|
* after performing the write.
|
|
|
|
*
|
|
|
|
* Useful combinations of the flag bits are:
|
|
|
|
*
|
|
|
|
* SYNC_FILE_RANGE_WAIT_BEFORE|SYNC_FILE_RANGE_WRITE: ensures that all pages
|
|
|
|
* in the range which were dirty on entry to sys_sync_file_range() are placed
|
|
|
|
* under writeout. This is a start-write-for-data-integrity operation.
|
|
|
|
*
|
|
|
|
* SYNC_FILE_RANGE_WRITE: start writeout of all dirty pages in the range which
|
|
|
|
* are not presently under writeout. This is an asynchronous flush-to-disk
|
|
|
|
* operation. Not suitable for data integrity operations.
|
|
|
|
*
|
|
|
|
* SYNC_FILE_RANGE_WAIT_BEFORE (or SYNC_FILE_RANGE_WAIT_AFTER): wait for
|
|
|
|
* completion of writeout of all pages in the range. This will be used after an
|
|
|
|
* earlier SYNC_FILE_RANGE_WAIT_BEFORE|SYNC_FILE_RANGE_WRITE operation to wait
|
|
|
|
* for that operation to complete and to return the result.
|
|
|
|
*
|
|
|
|
* SYNC_FILE_RANGE_WAIT_BEFORE|SYNC_FILE_RANGE_WRITE|SYNC_FILE_RANGE_WAIT_AFTER:
|
|
|
|
* a traditional sync() operation. This is a write-for-data-integrity operation
|
|
|
|
* which will ensure that all pages in the range which were dirty on entry to
|
|
|
|
* sys_sync_file_range() are committed to disk.
|
|
|
|
*
|
|
|
|
*
|
|
|
|
* SYNC_FILE_RANGE_WAIT_BEFORE and SYNC_FILE_RANGE_WAIT_AFTER will detect any
|
|
|
|
* I/O errors or ENOSPC conditions and will return those to the caller, after
|
|
|
|
* clearing the EIO and ENOSPC flags in the address_space.
|
|
|
|
*
|
|
|
|
* It should be noted that none of these operations write out the file's
|
|
|
|
* metadata. So unless the application is strictly performing overwrites of
|
|
|
|
* already-instantiated disk blocks, there are no guarantees here that the data
|
|
|
|
* will be available after a crash.
|
|
|
|
*/
|
2013-01-21 21:16:58 +01:00
|
|
|
SYSCALL_DEFINE4(sync_file_range, int, fd, loff_t, offset, loff_t, nbytes,
|
|
|
|
unsigned int, flags)
|
2006-03-31 12:30:42 +02:00
|
|
|
{
|
|
|
|
int ret;
|
2012-08-28 18:52:22 +02:00
|
|
|
struct fd f;
|
2009-12-17 14:24:40 +01:00
|
|
|
struct address_space *mapping;
|
2006-03-31 12:30:42 +02:00
|
|
|
loff_t endbyte; /* inclusive */
|
|
|
|
umode_t i_mode;
|
|
|
|
|
|
|
|
ret = -EINVAL;
|
|
|
|
if (flags & ~VALID_FLAGS)
|
|
|
|
goto out;
|
|
|
|
|
|
|
|
endbyte = offset + nbytes;
|
|
|
|
|
|
|
|
if ((s64)offset < 0)
|
|
|
|
goto out;
|
|
|
|
if ((s64)endbyte < 0)
|
|
|
|
goto out;
|
|
|
|
if (endbyte < offset)
|
|
|
|
goto out;
|
|
|
|
|
|
|
|
if (sizeof(pgoff_t) == 4) {
|
mm, fs: get rid of PAGE_CACHE_* and page_cache_{get,release} macros
PAGE_CACHE_{SIZE,SHIFT,MASK,ALIGN} macros were introduced *long* time
ago with promise that one day it will be possible to implement page
cache with bigger chunks than PAGE_SIZE.
This promise never materialized. And unlikely will.
We have many places where PAGE_CACHE_SIZE assumed to be equal to
PAGE_SIZE. And it's constant source of confusion on whether
PAGE_CACHE_* or PAGE_* constant should be used in a particular case,
especially on the border between fs and mm.
Global switching to PAGE_CACHE_SIZE != PAGE_SIZE would cause to much
breakage to be doable.
Let's stop pretending that pages in page cache are special. They are
not.
The changes are pretty straight-forward:
- <foo> << (PAGE_CACHE_SHIFT - PAGE_SHIFT) -> <foo>;
- <foo> >> (PAGE_CACHE_SHIFT - PAGE_SHIFT) -> <foo>;
- PAGE_CACHE_{SIZE,SHIFT,MASK,ALIGN} -> PAGE_{SIZE,SHIFT,MASK,ALIGN};
- page_cache_get() -> get_page();
- page_cache_release() -> put_page();
This patch contains automated changes generated with coccinelle using
script below. For some reason, coccinelle doesn't patch header files.
I've called spatch for them manually.
The only adjustment after coccinelle is revert of changes to
PAGE_CAHCE_ALIGN definition: we are going to drop it later.
There are few places in the code where coccinelle didn't reach. I'll
fix them manually in a separate patch. Comments and documentation also
will be addressed with the separate patch.
virtual patch
@@
expression E;
@@
- E << (PAGE_CACHE_SHIFT - PAGE_SHIFT)
+ E
@@
expression E;
@@
- E >> (PAGE_CACHE_SHIFT - PAGE_SHIFT)
+ E
@@
@@
- PAGE_CACHE_SHIFT
+ PAGE_SHIFT
@@
@@
- PAGE_CACHE_SIZE
+ PAGE_SIZE
@@
@@
- PAGE_CACHE_MASK
+ PAGE_MASK
@@
expression E;
@@
- PAGE_CACHE_ALIGN(E)
+ PAGE_ALIGN(E)
@@
expression E;
@@
- page_cache_get(E)
+ get_page(E)
@@
expression E;
@@
- page_cache_release(E)
+ put_page(E)
Signed-off-by: Kirill A. Shutemov <kirill.shutemov@linux.intel.com>
Acked-by: Michal Hocko <mhocko@suse.com>
Signed-off-by: Linus Torvalds <torvalds@linux-foundation.org>
2016-04-01 14:29:47 +02:00
|
|
|
if (offset >= (0x100000000ULL << PAGE_SHIFT)) {
|
2006-03-31 12:30:42 +02:00
|
|
|
/*
|
|
|
|
* The range starts outside a 32 bit machine's
|
|
|
|
* pagecache addressing capabilities. Let it "succeed"
|
|
|
|
*/
|
|
|
|
ret = 0;
|
|
|
|
goto out;
|
|
|
|
}
|
mm, fs: get rid of PAGE_CACHE_* and page_cache_{get,release} macros
PAGE_CACHE_{SIZE,SHIFT,MASK,ALIGN} macros were introduced *long* time
ago with promise that one day it will be possible to implement page
cache with bigger chunks than PAGE_SIZE.
This promise never materialized. And unlikely will.
We have many places where PAGE_CACHE_SIZE assumed to be equal to
PAGE_SIZE. And it's constant source of confusion on whether
PAGE_CACHE_* or PAGE_* constant should be used in a particular case,
especially on the border between fs and mm.
Global switching to PAGE_CACHE_SIZE != PAGE_SIZE would cause to much
breakage to be doable.
Let's stop pretending that pages in page cache are special. They are
not.
The changes are pretty straight-forward:
- <foo> << (PAGE_CACHE_SHIFT - PAGE_SHIFT) -> <foo>;
- <foo> >> (PAGE_CACHE_SHIFT - PAGE_SHIFT) -> <foo>;
- PAGE_CACHE_{SIZE,SHIFT,MASK,ALIGN} -> PAGE_{SIZE,SHIFT,MASK,ALIGN};
- page_cache_get() -> get_page();
- page_cache_release() -> put_page();
This patch contains automated changes generated with coccinelle using
script below. For some reason, coccinelle doesn't patch header files.
I've called spatch for them manually.
The only adjustment after coccinelle is revert of changes to
PAGE_CAHCE_ALIGN definition: we are going to drop it later.
There are few places in the code where coccinelle didn't reach. I'll
fix them manually in a separate patch. Comments and documentation also
will be addressed with the separate patch.
virtual patch
@@
expression E;
@@
- E << (PAGE_CACHE_SHIFT - PAGE_SHIFT)
+ E
@@
expression E;
@@
- E >> (PAGE_CACHE_SHIFT - PAGE_SHIFT)
+ E
@@
@@
- PAGE_CACHE_SHIFT
+ PAGE_SHIFT
@@
@@
- PAGE_CACHE_SIZE
+ PAGE_SIZE
@@
@@
- PAGE_CACHE_MASK
+ PAGE_MASK
@@
expression E;
@@
- PAGE_CACHE_ALIGN(E)
+ PAGE_ALIGN(E)
@@
expression E;
@@
- page_cache_get(E)
+ get_page(E)
@@
expression E;
@@
- page_cache_release(E)
+ put_page(E)
Signed-off-by: Kirill A. Shutemov <kirill.shutemov@linux.intel.com>
Acked-by: Michal Hocko <mhocko@suse.com>
Signed-off-by: Linus Torvalds <torvalds@linux-foundation.org>
2016-04-01 14:29:47 +02:00
|
|
|
if (endbyte >= (0x100000000ULL << PAGE_SHIFT)) {
|
2006-03-31 12:30:42 +02:00
|
|
|
/*
|
|
|
|
* Out to EOF
|
|
|
|
*/
|
|
|
|
nbytes = 0;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
if (nbytes == 0)
|
[PATCH] writeback: fix range handling
When a writeback_control's `start' and `end' fields are used to
indicate a one-byte-range starting at file offset zero, the required
values of .start=0,.end=0 mean that the ->writepages() implementation
has no way of telling that it is being asked to perform a range
request. Because we're currently overloading (start == 0 && end == 0)
to mean "this is not a write-a-range request".
To make all this sane, the patch changes range of writeback_control.
So caller does: If it is calling ->writepages() to write pages, it
sets range (range_start/end or range_cyclic) always.
And if range_cyclic is true, ->writepages() thinks the range is
cyclic, otherwise it just uses range_start and range_end.
This patch does,
- Add LLONG_MAX, LLONG_MIN, ULLONG_MAX to include/linux/kernel.h
-1 is usually ok for range_end (type is long long). But, if someone did,
range_end += val; range_end is "val - 1"
u64val = range_end >> bits; u64val is "~(0ULL)"
or something, they are wrong. So, this adds LLONG_MAX to avoid nasty
things, and uses LLONG_MAX for range_end.
- All callers of ->writepages() sets range_start/end or range_cyclic.
- Fix updates of ->writeback_index. It seems already bit strange.
If it starts at 0 and ended by check of nr_to_write, this last
index may reduce chance to scan end of file. So, this updates
->writeback_index only if range_cyclic is true or whole-file is
scanned.
Signed-off-by: OGAWA Hirofumi <hirofumi@mail.parknet.co.jp>
Cc: Nathan Scott <nathans@sgi.com>
Cc: Anton Altaparmakov <aia21@cantab.net>
Cc: Steven French <sfrench@us.ibm.com>
Cc: "Vladimir V. Saveliev" <vs@namesys.com>
Signed-off-by: Andrew Morton <akpm@osdl.org>
Signed-off-by: Linus Torvalds <torvalds@osdl.org>
2006-06-23 11:03:26 +02:00
|
|
|
endbyte = LLONG_MAX;
|
2006-03-31 12:30:42 +02:00
|
|
|
else
|
|
|
|
endbyte--; /* inclusive */
|
|
|
|
|
|
|
|
ret = -EBADF;
|
2012-08-28 18:52:22 +02:00
|
|
|
f = fdget(fd);
|
|
|
|
if (!f.file)
|
2006-03-31 12:30:42 +02:00
|
|
|
goto out;
|
|
|
|
|
2013-01-23 23:07:38 +01:00
|
|
|
i_mode = file_inode(f.file)->i_mode;
|
2006-03-31 12:30:42 +02:00
|
|
|
ret = -ESPIPE;
|
|
|
|
if (!S_ISREG(i_mode) && !S_ISBLK(i_mode) && !S_ISDIR(i_mode) &&
|
|
|
|
!S_ISLNK(i_mode))
|
|
|
|
goto out_put;
|
|
|
|
|
2012-08-28 18:52:22 +02:00
|
|
|
mapping = f.file->f_mapping;
|
2009-12-17 14:24:40 +01:00
|
|
|
ret = 0;
|
|
|
|
if (flags & SYNC_FILE_RANGE_WAIT_BEFORE) {
|
2017-07-24 12:22:14 +02:00
|
|
|
ret = file_fdatawait_range(f.file, offset, endbyte);
|
2009-12-17 14:24:40 +01:00
|
|
|
if (ret < 0)
|
|
|
|
goto out_put;
|
|
|
|
}
|
|
|
|
|
|
|
|
if (flags & SYNC_FILE_RANGE_WRITE) {
|
2015-11-07 01:28:55 +01:00
|
|
|
ret = __filemap_fdatawrite_range(mapping, offset, endbyte,
|
|
|
|
WB_SYNC_NONE);
|
2009-12-17 14:24:40 +01:00
|
|
|
if (ret < 0)
|
|
|
|
goto out_put;
|
|
|
|
}
|
|
|
|
|
|
|
|
if (flags & SYNC_FILE_RANGE_WAIT_AFTER)
|
2017-07-24 12:22:14 +02:00
|
|
|
ret = file_fdatawait_range(f.file, offset, endbyte);
|
2009-12-17 14:24:40 +01:00
|
|
|
|
2006-03-31 12:30:42 +02:00
|
|
|
out_put:
|
2012-08-28 18:52:22 +02:00
|
|
|
fdput(f);
|
2006-03-31 12:30:42 +02:00
|
|
|
out:
|
|
|
|
return ret;
|
|
|
|
}
|
|
|
|
|
Introduce fixed sys_sync_file_range2() syscall, implement on PowerPC and ARM
Not all the world is an i386. Many architectures need 64-bit arguments to be
aligned in suitable pairs of registers, and the original
sys_sync_file_range(int, loff_t, loff_t, int) was therefore wasting an
argument register for padding after the first integer. Since we don't
normally have more than 6 arguments for system calls, that left no room for
the final argument on some architectures.
Fix this by introducing sys_sync_file_range2(int, int, loff_t, loff_t) which
all fits nicely. In fact, ARM already had that, but called it
sys_arm_sync_file_range. Move it to fs/sync.c and rename it, then implement
the needed compatibility routine. And stop the missing syscall check from
bitching about the absence of sys_sync_file_range() if we've implemented
sys_sync_file_range2() instead.
Tested on PPC32 and with 32-bit and 64-bit userspace on PPC64.
Signed-off-by: David Woodhouse <dwmw2@infradead.org>
Acked-by: Russell King <rmk+kernel@arm.linux.org.uk>
Cc: Arnd Bergmann <arnd@arndb.de>
Cc: Paul Mackerras <paulus@samba.org>
Signed-off-by: Andrew Morton <akpm@linux-foundation.org>
Signed-off-by: Linus Torvalds <torvalds@linux-foundation.org>
2007-06-27 23:10:09 +02:00
|
|
|
/* It would be nice if people remember that not all the world's an i386
|
|
|
|
when they introduce new system calls */
|
2013-01-21 21:16:58 +01:00
|
|
|
SYSCALL_DEFINE4(sync_file_range2, int, fd, unsigned int, flags,
|
|
|
|
loff_t, offset, loff_t, nbytes)
|
Introduce fixed sys_sync_file_range2() syscall, implement on PowerPC and ARM
Not all the world is an i386. Many architectures need 64-bit arguments to be
aligned in suitable pairs of registers, and the original
sys_sync_file_range(int, loff_t, loff_t, int) was therefore wasting an
argument register for padding after the first integer. Since we don't
normally have more than 6 arguments for system calls, that left no room for
the final argument on some architectures.
Fix this by introducing sys_sync_file_range2(int, int, loff_t, loff_t) which
all fits nicely. In fact, ARM already had that, but called it
sys_arm_sync_file_range. Move it to fs/sync.c and rename it, then implement
the needed compatibility routine. And stop the missing syscall check from
bitching about the absence of sys_sync_file_range() if we've implemented
sys_sync_file_range2() instead.
Tested on PPC32 and with 32-bit and 64-bit userspace on PPC64.
Signed-off-by: David Woodhouse <dwmw2@infradead.org>
Acked-by: Russell King <rmk+kernel@arm.linux.org.uk>
Cc: Arnd Bergmann <arnd@arndb.de>
Cc: Paul Mackerras <paulus@samba.org>
Signed-off-by: Andrew Morton <akpm@linux-foundation.org>
Signed-off-by: Linus Torvalds <torvalds@linux-foundation.org>
2007-06-27 23:10:09 +02:00
|
|
|
{
|
|
|
|
return sys_sync_file_range(fd, offset, nbytes, flags);
|
|
|
|
}
|