2019-05-28 18:57:16 +02:00
|
|
|
// SPDX-License-Identifier: GPL-2.0-only
|
2006-01-19 02:43:02 +01:00
|
|
|
/*
|
|
|
|
* linux/fs/9p/vfs_addr.c
|
|
|
|
*
|
|
|
|
* This file contians vfs address (mmap) ops for 9P2000.
|
|
|
|
*
|
|
|
|
* Copyright (C) 2005 by Eric Van Hensbergen <ericvh@gmail.com>
|
|
|
|
* Copyright (C) 2002 by Ron Minnich <rminnich@lanl.gov>
|
|
|
|
*/
|
|
|
|
|
|
|
|
#include <linux/module.h>
|
|
|
|
#include <linux/errno.h>
|
|
|
|
#include <linux/fs.h>
|
|
|
|
#include <linux/file.h>
|
|
|
|
#include <linux/stat.h>
|
|
|
|
#include <linux/string.h>
|
|
|
|
#include <linux/inet.h>
|
|
|
|
#include <linux/pagemap.h>
|
|
|
|
#include <linux/idr.h>
|
Detach sched.h from mm.h
First thing mm.h does is including sched.h solely for can_do_mlock() inline
function which has "current" dereference inside. By dealing with can_do_mlock()
mm.h can be detached from sched.h which is good. See below, why.
This patch
a) removes unconditional inclusion of sched.h from mm.h
b) makes can_do_mlock() normal function in mm/mlock.c
c) exports can_do_mlock() to not break compilation
d) adds sched.h inclusions back to files that were getting it indirectly.
e) adds less bloated headers to some files (asm/signal.h, jiffies.h) that were
getting them indirectly
Net result is:
a) mm.h users would get less code to open, read, preprocess, parse, ... if
they don't need sched.h
b) sched.h stops being dependency for significant number of files:
on x86_64 allmodconfig touching sched.h results in recompile of 4083 files,
after patch it's only 3744 (-8.3%).
Cross-compile tested on
all arm defconfigs, all mips defconfigs, all powerpc defconfigs,
alpha alpha-up
arm
i386 i386-up i386-defconfig i386-allnoconfig
ia64 ia64-up
m68k
mips
parisc parisc-up
powerpc powerpc-up
s390 s390-up
sparc sparc-up
sparc64 sparc64-up
um-x86_64
x86_64 x86_64-up x86_64-defconfig x86_64-allnoconfig
as well as my two usual configs.
Signed-off-by: Alexey Dobriyan <adobriyan@gmail.com>
Signed-off-by: Linus Torvalds <torvalds@linux-foundation.org>
2007-05-20 23:22:52 +02:00
|
|
|
#include <linux/sched.h>
|
2015-02-22 17:58:50 +01:00
|
|
|
#include <linux/uio.h>
|
2016-11-01 14:40:13 +01:00
|
|
|
#include <linux/bvec.h>
|
2007-07-11 00:57:28 +02:00
|
|
|
#include <net/9p/9p.h>
|
|
|
|
#include <net/9p/client.h>
|
2006-01-19 02:43:02 +01:00
|
|
|
|
|
|
|
#include "v9fs.h"
|
|
|
|
#include "v9fs_vfs.h"
|
2009-09-23 20:00:27 +02:00
|
|
|
#include "cache.h"
|
2011-02-28 12:33:58 +01:00
|
|
|
#include "fid.h"
|
2006-01-19 02:43:02 +01:00
|
|
|
|
|
|
|
/**
|
2011-02-28 12:33:58 +01:00
|
|
|
* v9fs_fid_readpage - read an entire page in from 9P
|
2006-01-19 02:43:02 +01:00
|
|
|
*
|
2011-02-28 12:33:58 +01:00
|
|
|
* @fid: fid being read
|
2006-01-19 02:43:02 +01:00
|
|
|
* @page: structure to page
|
|
|
|
*
|
|
|
|
*/
|
2011-02-28 12:33:58 +01:00
|
|
|
static int v9fs_fid_readpage(struct p9_fid *fid, struct page *page)
|
2006-01-19 02:43:02 +01:00
|
|
|
{
|
2015-04-02 05:42:28 +02:00
|
|
|
struct inode *inode = page->mapping->host;
|
|
|
|
struct bio_vec bvec = {.bv_page = page, .bv_len = PAGE_SIZE};
|
|
|
|
struct iov_iter to;
|
|
|
|
int retval, err;
|
2007-02-11 20:21:39 +01:00
|
|
|
|
2011-11-28 19:40:46 +01:00
|
|
|
p9_debug(P9_DEBUG_VFS, "\n");
|
2009-09-23 20:00:27 +02:00
|
|
|
|
|
|
|
BUG_ON(!PageLocked(page));
|
|
|
|
|
|
|
|
retval = v9fs_readpage_from_fscache(inode, page);
|
|
|
|
if (retval == 0)
|
|
|
|
return retval;
|
|
|
|
|
2018-10-20 01:57:56 +02:00
|
|
|
iov_iter_bvec(&to, READ, &bvec, 1, PAGE_SIZE);
|
2006-01-19 02:43:02 +01:00
|
|
|
|
2015-04-02 05:42:28 +02:00
|
|
|
retval = p9_client_read(fid, page_offset(page), &to, &err);
|
|
|
|
if (err) {
|
2009-09-23 20:00:27 +02:00
|
|
|
v9fs_uncache_page(inode, page);
|
2015-04-02 05:42:28 +02:00
|
|
|
retval = err;
|
2007-07-11 00:57:28 +02:00
|
|
|
goto done;
|
2009-09-23 20:00:27 +02:00
|
|
|
}
|
2006-01-19 02:43:02 +01:00
|
|
|
|
2015-04-02 05:42:28 +02:00
|
|
|
zero_user(page, retval, PAGE_SIZE - retval);
|
2006-01-19 02:43:02 +01:00
|
|
|
flush_dcache_page(page);
|
|
|
|
SetPageUptodate(page);
|
2009-09-23 20:00:27 +02:00
|
|
|
|
|
|
|
v9fs_readpage_to_fscache(inode, page);
|
2006-01-19 02:43:02 +01:00
|
|
|
retval = 0;
|
|
|
|
|
2007-07-11 00:57:28 +02:00
|
|
|
done:
|
2006-01-19 02:43:02 +01:00
|
|
|
unlock_page(page);
|
|
|
|
return retval;
|
|
|
|
}
|
|
|
|
|
2011-02-28 12:33:58 +01:00
|
|
|
/**
|
|
|
|
* v9fs_vfs_readpage - read an entire page in from 9P
|
|
|
|
*
|
|
|
|
* @filp: file being read
|
|
|
|
* @page: structure to page
|
|
|
|
*
|
|
|
|
*/
|
|
|
|
|
|
|
|
static int v9fs_vfs_readpage(struct file *filp, struct page *page)
|
|
|
|
{
|
|
|
|
return v9fs_fid_readpage(filp->private_data, page);
|
|
|
|
}
|
|
|
|
|
2009-09-23 20:00:27 +02:00
|
|
|
/**
|
|
|
|
* v9fs_vfs_readpages - read a set of pages from 9P
|
|
|
|
*
|
|
|
|
* @filp: file being read
|
|
|
|
* @mapping: the address space
|
|
|
|
* @pages: list of pages to read
|
|
|
|
* @nr_pages: count of pages to read
|
|
|
|
*
|
|
|
|
*/
|
|
|
|
|
|
|
|
static int v9fs_vfs_readpages(struct file *filp, struct address_space *mapping,
|
|
|
|
struct list_head *pages, unsigned nr_pages)
|
|
|
|
{
|
|
|
|
int ret = 0;
|
|
|
|
struct inode *inode;
|
|
|
|
|
|
|
|
inode = mapping->host;
|
2011-11-28 19:40:46 +01:00
|
|
|
p9_debug(P9_DEBUG_VFS, "inode: %p file: %p\n", inode, filp);
|
2009-09-23 20:00:27 +02:00
|
|
|
|
|
|
|
ret = v9fs_readpages_from_fscache(inode, mapping, pages, &nr_pages);
|
|
|
|
if (ret == 0)
|
|
|
|
return ret;
|
|
|
|
|
|
|
|
ret = read_cache_pages(mapping, pages, (void *)v9fs_vfs_readpage, filp);
|
2011-11-28 19:40:46 +01:00
|
|
|
p9_debug(P9_DEBUG_VFS, " = %d\n", ret);
|
2009-09-23 20:00:27 +02:00
|
|
|
return ret;
|
|
|
|
}
|
|
|
|
|
|
|
|
/**
|
|
|
|
* v9fs_release_page - release the private state associated with a page
|
|
|
|
*
|
|
|
|
* Returns 1 if the page can be released, false otherwise.
|
|
|
|
*/
|
|
|
|
|
|
|
|
static int v9fs_release_page(struct page *page, gfp_t gfp)
|
|
|
|
{
|
|
|
|
if (PagePrivate(page))
|
|
|
|
return 0;
|
|
|
|
return v9fs_fscache_release_page(page, gfp);
|
|
|
|
}
|
|
|
|
|
|
|
|
/**
|
|
|
|
* v9fs_invalidate_page - Invalidate a page completely or partially
|
|
|
|
*
|
|
|
|
* @page: structure to page
|
|
|
|
* @offset: offset in the page
|
|
|
|
*/
|
|
|
|
|
2013-05-22 05:17:23 +02:00
|
|
|
static void v9fs_invalidate_page(struct page *page, unsigned int offset,
|
|
|
|
unsigned int length)
|
2009-09-23 20:00:27 +02:00
|
|
|
{
|
2011-02-28 12:33:58 +01:00
|
|
|
/*
|
|
|
|
* If called with zero offset, we should release
|
|
|
|
* the private state assocated with the page
|
|
|
|
*/
|
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 == 0 && length == PAGE_SIZE)
|
2009-09-23 20:00:27 +02:00
|
|
|
v9fs_fscache_invalidate_page(page);
|
|
|
|
}
|
|
|
|
|
2011-02-28 12:33:58 +01:00
|
|
|
static int v9fs_vfs_writepage_locked(struct page *page)
|
|
|
|
{
|
|
|
|
struct inode *inode = page->mapping->host;
|
2015-04-02 03:54:42 +02:00
|
|
|
struct v9fs_inode *v9inode = V9FS_I(inode);
|
|
|
|
loff_t size = i_size_read(inode);
|
|
|
|
struct iov_iter from;
|
|
|
|
struct bio_vec bvec;
|
|
|
|
int err, len;
|
2011-02-28 12:33:58 +01:00
|
|
|
|
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 (page->index == size >> PAGE_SHIFT)
|
|
|
|
len = size & ~PAGE_MASK;
|
2011-02-28 12:33:58 +01:00
|
|
|
else
|
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
|
|
|
len = PAGE_SIZE;
|
2011-02-28 12:33:58 +01:00
|
|
|
|
2015-04-02 03:54:42 +02:00
|
|
|
bvec.bv_page = page;
|
|
|
|
bvec.bv_offset = 0;
|
|
|
|
bvec.bv_len = len;
|
2018-10-20 01:57:56 +02:00
|
|
|
iov_iter_bvec(&from, WRITE, &bvec, 1, len);
|
2011-02-28 12:33:58 +01:00
|
|
|
|
2011-02-28 12:34:03 +01:00
|
|
|
/* We should have writeback_fid always set */
|
|
|
|
BUG_ON(!v9inode->writeback_fid);
|
2011-02-28 12:33:58 +01:00
|
|
|
|
2015-04-02 03:54:42 +02:00
|
|
|
set_page_writeback(page);
|
|
|
|
|
|
|
|
p9_client_write(v9inode->writeback_fid, page_offset(page), &from, &err);
|
2011-02-28 12:33:58 +01:00
|
|
|
|
|
|
|
end_page_writeback(page);
|
2015-04-02 03:54:42 +02:00
|
|
|
return err;
|
2011-02-28 12:33:58 +01:00
|
|
|
}
|
|
|
|
|
|
|
|
static int v9fs_vfs_writepage(struct page *page, struct writeback_control *wbc)
|
|
|
|
{
|
|
|
|
int retval;
|
|
|
|
|
2014-01-10 13:44:09 +01:00
|
|
|
p9_debug(P9_DEBUG_VFS, "page %p\n", page);
|
|
|
|
|
2011-02-28 12:33:58 +01:00
|
|
|
retval = v9fs_vfs_writepage_locked(page);
|
|
|
|
if (retval < 0) {
|
|
|
|
if (retval == -EAGAIN) {
|
|
|
|
redirty_page_for_writepage(wbc, page);
|
|
|
|
retval = 0;
|
|
|
|
} else {
|
|
|
|
SetPageError(page);
|
|
|
|
mapping_set_error(page->mapping, retval);
|
|
|
|
}
|
|
|
|
} else
|
|
|
|
retval = 0;
|
|
|
|
|
|
|
|
unlock_page(page);
|
|
|
|
return retval;
|
|
|
|
}
|
|
|
|
|
2009-09-23 20:00:27 +02:00
|
|
|
/**
|
|
|
|
* v9fs_launder_page - Writeback a dirty page
|
|
|
|
* Returns 0 on success.
|
|
|
|
*/
|
|
|
|
|
|
|
|
static int v9fs_launder_page(struct page *page)
|
|
|
|
{
|
2011-02-28 12:33:58 +01:00
|
|
|
int retval;
|
2011-02-28 12:33:56 +01:00
|
|
|
struct inode *inode = page->mapping->host;
|
2011-02-28 12:33:58 +01:00
|
|
|
|
2011-02-28 12:33:56 +01:00
|
|
|
v9fs_fscache_wait_on_page_write(inode, page);
|
2011-02-28 12:33:58 +01:00
|
|
|
if (clear_page_dirty_for_io(page)) {
|
|
|
|
retval = v9fs_vfs_writepage_locked(page);
|
|
|
|
if (retval)
|
|
|
|
return retval;
|
|
|
|
}
|
2009-09-23 20:00:27 +02:00
|
|
|
return 0;
|
|
|
|
}
|
|
|
|
|
2010-08-24 17:43:28 +02:00
|
|
|
/**
|
|
|
|
* v9fs_direct_IO - 9P address space operation for direct I/O
|
|
|
|
* @iocb: target I/O control block
|
|
|
|
*
|
|
|
|
* The presence of v9fs_direct_IO() in the address space ops vector
|
|
|
|
* allowes open() O_DIRECT flags which would have failed otherwise.
|
|
|
|
*
|
|
|
|
* In the non-cached mode, we shunt off direct read and write requests before
|
|
|
|
* the VFS gets them, so this method should never be called.
|
|
|
|
*
|
|
|
|
* Direct IO is not 'yet' supported in the cached mode. Hence when
|
|
|
|
* this routine is called through generic_file_aio_read(), the read/write fails
|
|
|
|
* with an error.
|
|
|
|
*
|
|
|
|
*/
|
2011-02-28 12:34:04 +01:00
|
|
|
static ssize_t
|
2016-04-07 17:51:58 +02:00
|
|
|
v9fs_direct_IO(struct kiocb *iocb, struct iov_iter *iter)
|
2010-08-24 17:43:28 +02:00
|
|
|
{
|
2015-04-02 04:32:23 +02:00
|
|
|
struct file *file = iocb->ki_filp;
|
2016-04-07 17:51:58 +02:00
|
|
|
loff_t pos = iocb->ki_pos;
|
2015-04-02 05:49:24 +02:00
|
|
|
ssize_t n;
|
|
|
|
int err = 0;
|
2015-03-16 12:33:52 +01:00
|
|
|
if (iov_iter_rw(iter) == WRITE) {
|
2015-04-02 05:49:24 +02:00
|
|
|
n = p9_client_write(file->private_data, pos, iter, &err);
|
|
|
|
if (n) {
|
2015-04-02 04:32:23 +02:00
|
|
|
struct inode *inode = file_inode(file);
|
|
|
|
loff_t i_size = i_size_read(inode);
|
2015-04-02 05:49:24 +02:00
|
|
|
if (pos + n > i_size)
|
|
|
|
inode_add_bytes(inode, pos + n - i_size);
|
2015-04-02 04:32:23 +02:00
|
|
|
}
|
2015-04-02 05:49:24 +02:00
|
|
|
} else {
|
|
|
|
n = p9_client_read(file->private_data, pos, iter, &err);
|
2015-04-02 04:32:23 +02:00
|
|
|
}
|
2015-04-02 05:49:24 +02:00
|
|
|
return n ? n : err;
|
2010-08-24 17:43:28 +02:00
|
|
|
}
|
2011-02-28 12:33:58 +01:00
|
|
|
|
|
|
|
static int v9fs_write_begin(struct file *filp, struct address_space *mapping,
|
|
|
|
loff_t pos, unsigned len, unsigned flags,
|
|
|
|
struct page **pagep, void **fsdata)
|
|
|
|
{
|
|
|
|
int retval = 0;
|
|
|
|
struct page *page;
|
2011-02-28 12:34:03 +01:00
|
|
|
struct v9fs_inode *v9inode;
|
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
|
|
|
pgoff_t index = pos >> PAGE_SHIFT;
|
2011-02-28 12:33:58 +01:00
|
|
|
struct inode *inode = mapping->host;
|
|
|
|
|
2014-01-10 13:44:09 +01:00
|
|
|
|
|
|
|
p9_debug(P9_DEBUG_VFS, "filp %p, mapping %p\n", filp, mapping);
|
|
|
|
|
2011-02-28 12:34:03 +01:00
|
|
|
v9inode = V9FS_I(inode);
|
2011-02-28 12:33:58 +01:00
|
|
|
start:
|
|
|
|
page = grab_cache_page_write_begin(mapping, index, flags);
|
|
|
|
if (!page) {
|
|
|
|
retval = -ENOMEM;
|
|
|
|
goto out;
|
|
|
|
}
|
2011-02-28 12:34:03 +01:00
|
|
|
BUG_ON(!v9inode->writeback_fid);
|
2011-02-28 12:33:58 +01:00
|
|
|
if (PageUptodate(page))
|
|
|
|
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 (len == PAGE_SIZE)
|
2011-02-28 12:33:58 +01:00
|
|
|
goto out;
|
|
|
|
|
2011-02-28 12:34:03 +01:00
|
|
|
retval = v9fs_fid_readpage(v9inode->writeback_fid, page);
|
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
|
|
|
put_page(page);
|
2011-02-28 12:33:58 +01:00
|
|
|
if (!retval)
|
|
|
|
goto start;
|
|
|
|
out:
|
|
|
|
*pagep = page;
|
|
|
|
return retval;
|
|
|
|
}
|
|
|
|
|
|
|
|
static int v9fs_write_end(struct file *filp, struct address_space *mapping,
|
|
|
|
loff_t pos, unsigned len, unsigned copied,
|
|
|
|
struct page *page, void *fsdata)
|
|
|
|
{
|
|
|
|
loff_t last_pos = pos + copied;
|
|
|
|
struct inode *inode = page->mapping->host;
|
|
|
|
|
2014-01-10 13:44:09 +01:00
|
|
|
p9_debug(P9_DEBUG_VFS, "filp %p, mapping %p\n", filp, mapping);
|
|
|
|
|
2017-04-10 20:46:51 +02:00
|
|
|
if (!PageUptodate(page)) {
|
|
|
|
if (unlikely(copied < len)) {
|
|
|
|
copied = 0;
|
|
|
|
goto out;
|
|
|
|
} else if (len == PAGE_SIZE) {
|
|
|
|
SetPageUptodate(page);
|
|
|
|
}
|
2011-02-28 12:33:58 +01:00
|
|
|
}
|
|
|
|
/*
|
|
|
|
* No need to use i_size_read() here, the i_size
|
|
|
|
* cannot change under us because we hold the i_mutex.
|
|
|
|
*/
|
|
|
|
if (last_pos > inode->i_size) {
|
|
|
|
inode_add_bytes(inode, last_pos - inode->i_size);
|
|
|
|
i_size_write(inode, last_pos);
|
|
|
|
}
|
|
|
|
set_page_dirty(page);
|
2016-08-30 02:56:35 +02:00
|
|
|
out:
|
2011-02-28 12:33:58 +01:00
|
|
|
unlock_page(page);
|
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
|
|
|
put_page(page);
|
2011-02-28 12:33:58 +01:00
|
|
|
|
|
|
|
return copied;
|
|
|
|
}
|
|
|
|
|
|
|
|
|
2006-06-28 13:26:44 +02:00
|
|
|
const struct address_space_operations v9fs_addr_operations = {
|
2011-02-28 12:33:58 +01:00
|
|
|
.readpage = v9fs_vfs_readpage,
|
|
|
|
.readpages = v9fs_vfs_readpages,
|
|
|
|
.set_page_dirty = __set_page_dirty_nobuffers,
|
|
|
|
.writepage = v9fs_vfs_writepage,
|
|
|
|
.write_begin = v9fs_write_begin,
|
|
|
|
.write_end = v9fs_write_end,
|
|
|
|
.releasepage = v9fs_release_page,
|
|
|
|
.invalidatepage = v9fs_invalidate_page,
|
|
|
|
.launder_page = v9fs_launder_page,
|
|
|
|
.direct_IO = v9fs_direct_IO,
|
2006-01-19 02:43:02 +01:00
|
|
|
};
|