mm: use rlimit helpers
Make sure compiler won't do weird things with limits. E.g. fetching them
twice may return 2 different values after writable limits are implemented.
I.e. either use rlimit helpers added in
3e10e716ab
("resource: add helpers for
fetching rlimits") or ACCESS_ONCE if not applicable.
Signed-off-by: Jiri Slaby <jslaby@suse.cz>
Signed-off-by: Andrew Morton <akpm@linux-foundation.org>
Signed-off-by: Linus Torvalds <torvalds@linux-foundation.org>
This commit is contained in:
committed by
Linus Torvalds
parent
06f9d8c2b5
commit
59e99e5b97
@@ -1986,7 +1986,7 @@ EXPORT_SYMBOL(iov_iter_single_seg_count);
|
||||
inline int generic_write_checks(struct file *file, loff_t *pos, size_t *count, int isblk)
|
||||
{
|
||||
struct inode *inode = file->f_mapping->host;
|
||||
unsigned long limit = current->signal->rlim[RLIMIT_FSIZE].rlim_cur;
|
||||
unsigned long limit = rlimit(RLIMIT_FSIZE);
|
||||
|
||||
if (unlikely(*pos < 0))
|
||||
return -EINVAL;
|
||||
|
Reference in New Issue
Block a user