mirror of
https://git.kernel.org/pub/scm/linux/kernel/git/torvalds/linux.git
synced 2026-05-05 17:03:47 -04:00
Staging: lustre: llite_lib: Remove unnecessary NULL check
Variable op_data is already tested for NULL value and therefore any
further checks should be removed.
Semantic patch used:
@@ expression E;@@
if(E==NULL) {... return ...;}
- if(E){
...
- }
Signed-off-by: Shivani Bhardwaj <shivanib134@gmail.com>
Signed-off-by: Greg Kroah-Hartman <gregkh@linuxfoundation.org>
This commit is contained in:
committed by
Greg Kroah-Hartman
parent
f5ef08d8f1
commit
83d6b8fee7
@@ -1350,14 +1350,13 @@ int ll_setattr_raw(struct dentry *dentry, struct iattr *attr, bool hsm_import)
|
||||
up_write(&lli->lli_trunc_sem);
|
||||
}
|
||||
out:
|
||||
if (op_data) {
|
||||
if (op_data->op_ioepoch) {
|
||||
rc1 = ll_setattr_done_writing(inode, op_data, mod);
|
||||
if (!rc)
|
||||
rc = rc1;
|
||||
}
|
||||
ll_finish_md_op_data(op_data);
|
||||
if (op_data->op_ioepoch) {
|
||||
rc1 = ll_setattr_done_writing(inode, op_data, mod);
|
||||
if (!rc)
|
||||
rc = rc1;
|
||||
}
|
||||
ll_finish_md_op_data(op_data);
|
||||
|
||||
if (!S_ISDIR(inode->i_mode)) {
|
||||
mutex_lock(&inode->i_mutex);
|
||||
if ((attr->ia_valid & ATTR_SIZE) && !hsm_import)
|
||||
|
||||
Reference in New Issue
Block a user