mirror of
https://github.com/adulau/aha.git
synced 2024-12-27 03:06:10 +00:00
alloc_file(): simplify handling of mnt_clone_write() errors
When alloc_file() and init_file() were combined, the error handling of mnt_clone_write() was taken into alloc_file() in a somewhat obfuscated way. Since we don't use the error code for anything except warning, we might as well warn directly without an extra variable. Signed-off-by: Roland Dreier <rolandd@cisco.com> Signed-off-by: Al Viro <viro@zeniv.linux.org.uk>
This commit is contained in:
parent
f7b84a6ba7
commit
385e3ed4f0
1 changed files with 1 additions and 3 deletions
|
@ -186,10 +186,8 @@ struct file *alloc_file(struct path *path, fmode_t mode,
|
||||||
* that we can do debugging checks at __fput()
|
* that we can do debugging checks at __fput()
|
||||||
*/
|
*/
|
||||||
if ((mode & FMODE_WRITE) && !special_file(path->dentry->d_inode->i_mode)) {
|
if ((mode & FMODE_WRITE) && !special_file(path->dentry->d_inode->i_mode)) {
|
||||||
int error = 0;
|
|
||||||
file_take_write(file);
|
file_take_write(file);
|
||||||
error = mnt_clone_write(path->mnt);
|
WARN_ON(mnt_clone_write(path->mnt));
|
||||||
WARN_ON(error);
|
|
||||||
}
|
}
|
||||||
ima_counts_get(file);
|
ima_counts_get(file);
|
||||||
return file;
|
return file;
|
||||||
|
|
Loading…
Reference in a new issue