9p pull request for inclusion in 5.9
- some code cleanup - a couple of static analysis fixes - setattr: try to pick a fid associated with the file rather than the dentry, which might sometimes matter -----BEGIN PGP SIGNATURE----- iQIzBAABCAAdFiEE/IPbcYBuWt0zoYhOq06b7GqY5nAFAl83dvkACgkQq06b7GqY 5nDk4g/+KNpbIFHhDyhCzmZ1WbaUYlZseFm8VBR9dzwOkXCuVl+WQd9ducYlEifT cZ29xmEuom01LhFOs6VzC+IODQq3h1WvEbVRfCSlLEWvfHyPODSDY8mrn+1TdOZL UOOP1wUjaDqmAcBQ4PSDNmj2cONNWPqkgnuyswjsBpabOY/U8FxG9J/QiPfC12zs QoF5800OiuLYS5SefI9kKJ47DkTLpm/aq7/Z1liAxJBzHrguORjg16cssXhWeysD jEMD3pIrsqMDX/vNkAO0DaR8FWvxTFZR1Bza1ylJiUy3K3rLXKfo+42jiCnuo5e9 uhA012RfiCZB3kIsLe5hCPXUWz0MhizaJAPkceHsgUtkuiU2qXyY05HEvS2HHl0s inqR8gRkZ2NhROx1R/0q+Wu2posCBderDwg7Mkzt/7j5Ue3cTIKvbeBxH9iLLaK+ rHp0NbfP6wYN5qKjH1rru1IOmaUCV2HHV6x/alnwaVBfZqg5HYKkzlS7M+5hAbtb niLFXXCtPBGqS+u9w7sruj6utuiJjXBfB1ejaawY+frS41+v3NkHjjUWCH67u8I9 u3pmPpvm5o7gRoRmvmxEdSb+jAYZwLTcbkUhRMHLQOHCBZXtcul41p2BUpoBm0zw 42mlMMMBAjaxtzLlryvACg5lx6x7ykE4pExKAc0dzrzWfgzwEZQ= =hwGq -----END PGP SIGNATURE----- Merge tag '9p-for-5.9-rc1' of git://github.com/martinetd/linux Pull 9p updates from Dominique Martinet: - some code cleanup - a couple of static analysis fixes - setattr: try to pick a fid associated with the file rather than the dentry, which might sometimes matter * tag '9p-for-5.9-rc1' of git://github.com/martinetd/linux: 9p: Remove unneeded cast from memory allocation 9p: remove unused code in 9p net/9p: Fix sparse endian warning in trans_fd.c 9p: Fix memory leak in v9fs_mount 9p: retrieve fid from file when file instance exist.
This commit is contained in:
Коммит
410520d07f
|
@ -500,10 +500,9 @@ void v9fs_session_close(struct v9fs_session_info *v9ses)
|
|||
}
|
||||
|
||||
#ifdef CONFIG_9P_FSCACHE
|
||||
if (v9ses->fscache) {
|
||||
if (v9ses->fscache)
|
||||
v9fs_cache_session_put_cookie(v9ses);
|
||||
kfree(v9ses->cachetag);
|
||||
}
|
||||
kfree(v9ses->cachetag);
|
||||
#endif
|
||||
kfree(v9ses->uname);
|
||||
kfree(v9ses->aname);
|
||||
|
|
|
@ -223,8 +223,7 @@ v9fs_blank_wstat(struct p9_wstat *wstat)
|
|||
struct inode *v9fs_alloc_inode(struct super_block *sb)
|
||||
{
|
||||
struct v9fs_inode *v9inode;
|
||||
v9inode = (struct v9fs_inode *)kmem_cache_alloc(v9fs_inode_cache,
|
||||
GFP_KERNEL);
|
||||
v9inode = kmem_cache_alloc(v9fs_inode_cache, GFP_KERNEL);
|
||||
if (!v9inode)
|
||||
return NULL;
|
||||
#ifdef CONFIG_9P_FSCACHE
|
||||
|
@ -368,59 +367,6 @@ struct inode *v9fs_get_inode(struct super_block *sb, umode_t mode, dev_t rdev)
|
|||
return inode;
|
||||
}
|
||||
|
||||
/*
|
||||
static struct v9fs_fid*
|
||||
v9fs_clone_walk(struct v9fs_session_info *v9ses, u32 fid, struct dentry *dentry)
|
||||
{
|
||||
int err;
|
||||
int nfid;
|
||||
struct v9fs_fid *ret;
|
||||
struct v9fs_fcall *fcall;
|
||||
|
||||
nfid = v9fs_get_idpool(&v9ses->fidpool);
|
||||
if (nfid < 0) {
|
||||
eprintk(KERN_WARNING, "no free fids available\n");
|
||||
return ERR_PTR(-ENOSPC);
|
||||
}
|
||||
|
||||
err = v9fs_t_walk(v9ses, fid, nfid, (char *) dentry->d_name.name,
|
||||
&fcall);
|
||||
|
||||
if (err < 0) {
|
||||
if (fcall && fcall->id == RWALK)
|
||||
goto clunk_fid;
|
||||
|
||||
PRINT_FCALL_ERROR("walk error", fcall);
|
||||
v9fs_put_idpool(nfid, &v9ses->fidpool);
|
||||
goto error;
|
||||
}
|
||||
|
||||
kfree(fcall);
|
||||
fcall = NULL;
|
||||
ret = v9fs_fid_create(v9ses, nfid);
|
||||
if (!ret) {
|
||||
err = -ENOMEM;
|
||||
goto clunk_fid;
|
||||
}
|
||||
|
||||
err = v9fs_fid_insert(ret, dentry);
|
||||
if (err < 0) {
|
||||
v9fs_fid_destroy(ret);
|
||||
goto clunk_fid;
|
||||
}
|
||||
|
||||
return ret;
|
||||
|
||||
clunk_fid:
|
||||
v9fs_t_clunk(v9ses, nfid);
|
||||
|
||||
error:
|
||||
kfree(fcall);
|
||||
return ERR_PTR(err);
|
||||
}
|
||||
*/
|
||||
|
||||
|
||||
/**
|
||||
* v9fs_clear_inode - release an inode
|
||||
* @inode: inode to release
|
||||
|
@ -1090,7 +1036,7 @@ static int v9fs_vfs_setattr(struct dentry *dentry, struct iattr *iattr)
|
|||
{
|
||||
int retval;
|
||||
struct v9fs_session_info *v9ses;
|
||||
struct p9_fid *fid;
|
||||
struct p9_fid *fid = NULL;
|
||||
struct p9_wstat wstat;
|
||||
|
||||
p9_debug(P9_DEBUG_VFS, "\n");
|
||||
|
@ -1100,7 +1046,12 @@ static int v9fs_vfs_setattr(struct dentry *dentry, struct iattr *iattr)
|
|||
|
||||
retval = -EPERM;
|
||||
v9ses = v9fs_dentry2v9ses(dentry);
|
||||
fid = v9fs_fid_lookup(dentry);
|
||||
if (iattr->ia_valid & ATTR_FILE) {
|
||||
fid = iattr->ia_file->private_data;
|
||||
WARN_ON(!fid);
|
||||
}
|
||||
if (!fid)
|
||||
fid = v9fs_fid_lookup(dentry);
|
||||
if(IS_ERR(fid))
|
||||
return PTR_ERR(fid);
|
||||
|
||||
|
|
|
@ -540,7 +540,7 @@ static int v9fs_mapped_iattr_valid(int iattr_valid)
|
|||
int v9fs_vfs_setattr_dotl(struct dentry *dentry, struct iattr *iattr)
|
||||
{
|
||||
int retval;
|
||||
struct p9_fid *fid;
|
||||
struct p9_fid *fid = NULL;
|
||||
struct p9_iattr_dotl p9attr;
|
||||
struct inode *inode = d_inode(dentry);
|
||||
|
||||
|
@ -560,7 +560,12 @@ int v9fs_vfs_setattr_dotl(struct dentry *dentry, struct iattr *iattr)
|
|||
p9attr.mtime_sec = iattr->ia_mtime.tv_sec;
|
||||
p9attr.mtime_nsec = iattr->ia_mtime.tv_nsec;
|
||||
|
||||
fid = v9fs_fid_lookup(dentry);
|
||||
if (iattr->ia_valid & ATTR_FILE) {
|
||||
fid = iattr->ia_file->private_data;
|
||||
WARN_ON(!fid);
|
||||
}
|
||||
if (!fid)
|
||||
fid = v9fs_fid_lookup(dentry);
|
||||
if (IS_ERR(fid))
|
||||
return PTR_ERR(fid);
|
||||
|
||||
|
|
|
@ -950,7 +950,7 @@ static int p9_bind_privport(struct socket *sock)
|
|||
|
||||
memset(&cl, 0, sizeof(cl));
|
||||
cl.sin_family = AF_INET;
|
||||
cl.sin_addr.s_addr = INADDR_ANY;
|
||||
cl.sin_addr.s_addr = htonl(INADDR_ANY);
|
||||
for (port = p9_ipport_resv_max; port >= p9_ipport_resv_min; port--) {
|
||||
cl.sin_port = htons((ushort)port);
|
||||
err = kernel_bind(sock, (struct sockaddr *)&cl, sizeof(cl));
|
||||
|
|
Загрузка…
Ссылка в новой задаче