mirror of
https://github.com/torvalds/linux.git
synced 2024-11-11 22:51:42 +00:00
9p: Check for NULL fid in v9fs_dir_release()
NULL fid should be handled in cases where we endup calling v9fs_dir_release() before even we instantiate the fid in filp. Signed-off-by: Venkateswararao Jujjuri <jvrao@linux.vnet.ibm.com> Signed-off-by: Eric Van Hensbergen <ericvh@gmail.com>
This commit is contained in:
parent
5c25f347a7
commit
62726a7ab3
@ -292,8 +292,10 @@ int v9fs_dir_release(struct inode *inode, struct file *filp)
|
||||
|
||||
fid = filp->private_data;
|
||||
P9_DPRINTK(P9_DEBUG_VFS,
|
||||
"inode: %p filp: %p fid: %d\n", inode, filp, fid->fid);
|
||||
"v9fs_dir_release: inode: %p filp: %p fid: %d\n",
|
||||
inode, filp, fid ? fid->fid : -1);
|
||||
filemap_write_and_wait(inode->i_mapping);
|
||||
if (fid)
|
||||
p9_client_clunk(fid);
|
||||
return 0;
|
||||
}
|
||||
|
Loading…
Reference in New Issue
Block a user