mirror of https://gitee.com/openkylin/linux.git
afs: Introduce a file-private data record
Introduce a file-private data record for kAFS and put the key into it rather than storing the key in file->private_data. Signed-off-by: David Howells <dhowells@redhat.com>
This commit is contained in:
parent
83732ec514
commit
215804a992
|
@ -396,7 +396,7 @@ static int afs_dir_iterate(struct inode *dir, struct dir_context *ctx,
|
||||||
*/
|
*/
|
||||||
static int afs_readdir(struct file *file, struct dir_context *ctx)
|
static int afs_readdir(struct file *file, struct dir_context *ctx)
|
||||||
{
|
{
|
||||||
return afs_dir_iterate(file_inode(file), ctx, file->private_data);
|
return afs_dir_iterate(file_inode(file), ctx, afs_file_key(file));
|
||||||
}
|
}
|
||||||
|
|
||||||
/*
|
/*
|
||||||
|
|
|
@ -68,6 +68,7 @@ const struct address_space_operations afs_fs_aops = {
|
||||||
int afs_open(struct inode *inode, struct file *file)
|
int afs_open(struct inode *inode, struct file *file)
|
||||||
{
|
{
|
||||||
struct afs_vnode *vnode = AFS_FS_I(inode);
|
struct afs_vnode *vnode = AFS_FS_I(inode);
|
||||||
|
struct afs_file *af;
|
||||||
struct key *key;
|
struct key *key;
|
||||||
int ret;
|
int ret;
|
||||||
|
|
||||||
|
@ -75,19 +76,32 @@ int afs_open(struct inode *inode, struct file *file)
|
||||||
|
|
||||||
key = afs_request_key(vnode->volume->cell);
|
key = afs_request_key(vnode->volume->cell);
|
||||||
if (IS_ERR(key)) {
|
if (IS_ERR(key)) {
|
||||||
_leave(" = %ld [key]", PTR_ERR(key));
|
ret = PTR_ERR(key);
|
||||||
return PTR_ERR(key);
|
goto error;
|
||||||
|
}
|
||||||
|
|
||||||
|
af = kzalloc(sizeof(*af), GFP_KERNEL);
|
||||||
|
if (!af) {
|
||||||
|
ret = -ENOMEM;
|
||||||
|
goto error_key;
|
||||||
}
|
}
|
||||||
|
|
||||||
ret = afs_validate(vnode, key);
|
ret = afs_validate(vnode, key);
|
||||||
if (ret < 0) {
|
if (ret < 0)
|
||||||
_leave(" = %d [val]", ret);
|
goto error_af;
|
||||||
return ret;
|
|
||||||
}
|
|
||||||
|
|
||||||
file->private_data = key;
|
af->key = key;
|
||||||
|
file->private_data = af;
|
||||||
_leave(" = 0");
|
_leave(" = 0");
|
||||||
return 0;
|
return 0;
|
||||||
|
|
||||||
|
error_af:
|
||||||
|
kfree(af);
|
||||||
|
error_key:
|
||||||
|
key_put(key);
|
||||||
|
error:
|
||||||
|
_leave(" = %d", ret);
|
||||||
|
return ret;
|
||||||
}
|
}
|
||||||
|
|
||||||
/*
|
/*
|
||||||
|
@ -96,10 +110,13 @@ int afs_open(struct inode *inode, struct file *file)
|
||||||
int afs_release(struct inode *inode, struct file *file)
|
int afs_release(struct inode *inode, struct file *file)
|
||||||
{
|
{
|
||||||
struct afs_vnode *vnode = AFS_FS_I(inode);
|
struct afs_vnode *vnode = AFS_FS_I(inode);
|
||||||
|
struct afs_file *af = file->private_data;
|
||||||
|
|
||||||
_enter("{%x:%u},", vnode->fid.vid, vnode->fid.vnode);
|
_enter("{%x:%u},", vnode->fid.vid, vnode->fid.vnode);
|
||||||
|
|
||||||
key_put(file->private_data);
|
file->private_data = NULL;
|
||||||
|
key_put(af->key);
|
||||||
|
kfree(af);
|
||||||
_leave(" = 0");
|
_leave(" = 0");
|
||||||
return 0;
|
return 0;
|
||||||
}
|
}
|
||||||
|
@ -295,7 +312,7 @@ static int afs_readpage(struct file *file, struct page *page)
|
||||||
int ret;
|
int ret;
|
||||||
|
|
||||||
if (file) {
|
if (file) {
|
||||||
key = file->private_data;
|
key = afs_file_key(file);
|
||||||
ASSERT(key != NULL);
|
ASSERT(key != NULL);
|
||||||
ret = afs_page_filler(key, page);
|
ret = afs_page_filler(key, page);
|
||||||
} else {
|
} else {
|
||||||
|
@ -346,7 +363,7 @@ static int afs_readpages_one(struct file *file, struct address_space *mapping,
|
||||||
struct afs_read *req;
|
struct afs_read *req;
|
||||||
struct list_head *p;
|
struct list_head *p;
|
||||||
struct page *first, *page;
|
struct page *first, *page;
|
||||||
struct key *key = file->private_data;
|
struct key *key = afs_file_key(file);
|
||||||
pgoff_t index;
|
pgoff_t index;
|
||||||
int ret, n, i;
|
int ret, n, i;
|
||||||
|
|
||||||
|
@ -442,7 +459,7 @@ static int afs_readpages_one(struct file *file, struct address_space *mapping,
|
||||||
static int afs_readpages(struct file *file, struct address_space *mapping,
|
static int afs_readpages(struct file *file, struct address_space *mapping,
|
||||||
struct list_head *pages, unsigned nr_pages)
|
struct list_head *pages, unsigned nr_pages)
|
||||||
{
|
{
|
||||||
struct key *key = file->private_data;
|
struct key *key = afs_file_key(file);
|
||||||
struct afs_vnode *vnode;
|
struct afs_vnode *vnode;
|
||||||
int ret = 0;
|
int ret = 0;
|
||||||
|
|
||||||
|
|
|
@ -206,7 +206,7 @@ void afs_lock_work(struct work_struct *work)
|
||||||
BUG();
|
BUG();
|
||||||
fl = list_entry(vnode->granted_locks.next,
|
fl = list_entry(vnode->granted_locks.next,
|
||||||
struct file_lock, fl_u.afs.link);
|
struct file_lock, fl_u.afs.link);
|
||||||
key = key_get(fl->fl_file->private_data);
|
key = key_get(afs_file_key(fl->fl_file));
|
||||||
spin_unlock(&vnode->lock);
|
spin_unlock(&vnode->lock);
|
||||||
|
|
||||||
ret = afs_extend_lock(vnode, key);
|
ret = afs_extend_lock(vnode, key);
|
||||||
|
@ -240,7 +240,7 @@ void afs_lock_work(struct work_struct *work)
|
||||||
BUG();
|
BUG();
|
||||||
fl = list_entry(vnode->pending_locks.next,
|
fl = list_entry(vnode->pending_locks.next,
|
||||||
struct file_lock, fl_u.afs.link);
|
struct file_lock, fl_u.afs.link);
|
||||||
key = key_get(fl->fl_file->private_data);
|
key = key_get(afs_file_key(fl->fl_file));
|
||||||
type = (fl->fl_type == F_RDLCK) ?
|
type = (fl->fl_type == F_RDLCK) ?
|
||||||
AFS_LOCK_READ : AFS_LOCK_WRITE;
|
AFS_LOCK_READ : AFS_LOCK_WRITE;
|
||||||
spin_unlock(&vnode->lock);
|
spin_unlock(&vnode->lock);
|
||||||
|
@ -318,7 +318,7 @@ static int afs_do_setlk(struct file *file, struct file_lock *fl)
|
||||||
struct inode *inode = file_inode(file);
|
struct inode *inode = file_inode(file);
|
||||||
struct afs_vnode *vnode = AFS_FS_I(inode);
|
struct afs_vnode *vnode = AFS_FS_I(inode);
|
||||||
afs_lock_type_t type;
|
afs_lock_type_t type;
|
||||||
struct key *key = file->private_data;
|
struct key *key = afs_file_key(file);
|
||||||
int ret;
|
int ret;
|
||||||
|
|
||||||
_enter("{%x:%u},%u", vnode->fid.vid, vnode->fid.vnode, fl->fl_type);
|
_enter("{%x:%u},%u", vnode->fid.vid, vnode->fid.vnode, fl->fl_type);
|
||||||
|
@ -500,7 +500,7 @@ static int afs_do_setlk(struct file *file, struct file_lock *fl)
|
||||||
static int afs_do_unlk(struct file *file, struct file_lock *fl)
|
static int afs_do_unlk(struct file *file, struct file_lock *fl)
|
||||||
{
|
{
|
||||||
struct afs_vnode *vnode = AFS_FS_I(file->f_mapping->host);
|
struct afs_vnode *vnode = AFS_FS_I(file->f_mapping->host);
|
||||||
struct key *key = file->private_data;
|
struct key *key = afs_file_key(file);
|
||||||
int ret;
|
int ret;
|
||||||
|
|
||||||
_enter("{%x:%u},%u", vnode->fid.vid, vnode->fid.vnode, fl->fl_type);
|
_enter("{%x:%u},%u", vnode->fid.vid, vnode->fid.vnode, fl->fl_type);
|
||||||
|
@ -535,7 +535,7 @@ static int afs_do_unlk(struct file *file, struct file_lock *fl)
|
||||||
static int afs_do_getlk(struct file *file, struct file_lock *fl)
|
static int afs_do_getlk(struct file *file, struct file_lock *fl)
|
||||||
{
|
{
|
||||||
struct afs_vnode *vnode = AFS_FS_I(file->f_mapping->host);
|
struct afs_vnode *vnode = AFS_FS_I(file->f_mapping->host);
|
||||||
struct key *key = file->private_data;
|
struct key *key = afs_file_key(file);
|
||||||
int ret, lock_count;
|
int ret, lock_count;
|
||||||
|
|
||||||
_enter("");
|
_enter("");
|
||||||
|
|
|
@ -520,7 +520,7 @@ int afs_setattr(struct dentry *dentry, struct iattr *attr)
|
||||||
}
|
}
|
||||||
|
|
||||||
if (attr->ia_valid & ATTR_FILE) {
|
if (attr->ia_valid & ATTR_FILE) {
|
||||||
key = attr->ia_file->private_data;
|
key = afs_file_key(attr->ia_file);
|
||||||
} else {
|
} else {
|
||||||
key = afs_request_key(vnode->volume->cell);
|
key = afs_request_key(vnode->volume->cell);
|
||||||
if (IS_ERR(key)) {
|
if (IS_ERR(key)) {
|
||||||
|
|
|
@ -138,6 +138,20 @@ struct afs_call_type {
|
||||||
void (*work)(struct work_struct *work);
|
void (*work)(struct work_struct *work);
|
||||||
};
|
};
|
||||||
|
|
||||||
|
/*
|
||||||
|
* AFS open file information record. Pointed to by file->private_data.
|
||||||
|
*/
|
||||||
|
struct afs_file {
|
||||||
|
struct key *key; /* The key this file was opened with */
|
||||||
|
};
|
||||||
|
|
||||||
|
static inline struct key *afs_file_key(struct file *file)
|
||||||
|
{
|
||||||
|
struct afs_file *af = file->private_data;
|
||||||
|
|
||||||
|
return af->key;
|
||||||
|
}
|
||||||
|
|
||||||
/*
|
/*
|
||||||
* Record of an outstanding read operation on a vnode.
|
* Record of an outstanding read operation on a vnode.
|
||||||
*/
|
*/
|
||||||
|
|
|
@ -128,7 +128,7 @@ int afs_write_begin(struct file *file, struct address_space *mapping,
|
||||||
struct afs_writeback *candidate, *wb;
|
struct afs_writeback *candidate, *wb;
|
||||||
struct afs_vnode *vnode = AFS_FS_I(file_inode(file));
|
struct afs_vnode *vnode = AFS_FS_I(file_inode(file));
|
||||||
struct page *page;
|
struct page *page;
|
||||||
struct key *key = file->private_data;
|
struct key *key = afs_file_key(file);
|
||||||
unsigned from = pos & (PAGE_SIZE - 1);
|
unsigned from = pos & (PAGE_SIZE - 1);
|
||||||
unsigned to = from + len;
|
unsigned to = from + len;
|
||||||
pgoff_t index = pos >> PAGE_SHIFT;
|
pgoff_t index = pos >> PAGE_SHIFT;
|
||||||
|
@ -255,7 +255,7 @@ int afs_write_end(struct file *file, struct address_space *mapping,
|
||||||
struct page *page, void *fsdata)
|
struct page *page, void *fsdata)
|
||||||
{
|
{
|
||||||
struct afs_vnode *vnode = AFS_FS_I(file_inode(file));
|
struct afs_vnode *vnode = AFS_FS_I(file_inode(file));
|
||||||
struct key *key = file->private_data;
|
struct key *key = afs_file_key(file);
|
||||||
loff_t i_size, maybe_i_size;
|
loff_t i_size, maybe_i_size;
|
||||||
int ret;
|
int ret;
|
||||||
|
|
||||||
|
|
Loading…
Reference in New Issue