xfs: use file_modified() helper
Note that by using the helper, the order of calling file_remove_privs() after file_update_mtime() in xfs_file_aio_write_checks() has changed. Signed-off-by: Amir Goldstein <amir73il@gmail.com> Reviewed-by: Darrick J. Wong <darrick.wong@oracle.com> Signed-off-by: Darrick J. Wong <darrick.wong@oracle.com>
This commit is contained in:
parent
e38f7f53c3
commit
8c3f406c09
|
@ -367,20 +367,7 @@ xfs_file_aio_write_checks(
|
||||||
* lock above. Eventually we should look into a way to avoid
|
* lock above. Eventually we should look into a way to avoid
|
||||||
* the pointless lock roundtrip.
|
* the pointless lock roundtrip.
|
||||||
*/
|
*/
|
||||||
if (likely(!(file->f_mode & FMODE_NOCMTIME))) {
|
return file_modified(file);
|
||||||
error = file_update_time(file);
|
|
||||||
if (error)
|
|
||||||
return error;
|
|
||||||
}
|
|
||||||
|
|
||||||
/*
|
|
||||||
* If we're writing the file then make sure to clear the setuid and
|
|
||||||
* setgid bits if the process is not being run by root. This keeps
|
|
||||||
* people from modifying setuid and setgid binaries.
|
|
||||||
*/
|
|
||||||
if (!IS_NOSEC(inode))
|
|
||||||
return file_remove_privs(file);
|
|
||||||
return 0;
|
|
||||||
}
|
}
|
||||||
|
|
||||||
static int
|
static int
|
||||||
|
|
Loading…
Reference in New Issue