aboutsummaryrefslogtreecommitdiffstats
path: root/mm
diff options
context:
space:
mode:
Diffstat (limited to 'mm')
-rw-r--r--mm/shmem.c17
1 files changed, 17 insertions, 0 deletions
diff --git a/mm/shmem.c b/mm/shmem.c
index 3609d31ad0dd..57fd82a5af7a 100644
--- a/mm/shmem.c
+++ b/mm/shmem.c
@@ -149,6 +149,19 @@ static inline void shmem_unacct_size(unsigned long flags, loff_t size)
149 vm_unacct_memory(VM_ACCT(size)); 149 vm_unacct_memory(VM_ACCT(size));
150} 150}
151 151
152static inline int shmem_reacct_size(unsigned long flags,
153 loff_t oldsize, loff_t newsize)
154{
155 if (!(flags & VM_NORESERVE)) {
156 if (VM_ACCT(newsize) > VM_ACCT(oldsize))
157 return security_vm_enough_memory_mm(current->mm,
158 VM_ACCT(newsize) - VM_ACCT(oldsize));
159 else if (VM_ACCT(newsize) < VM_ACCT(oldsize))
160 vm_unacct_memory(VM_ACCT(oldsize) - VM_ACCT(newsize));
161 }
162 return 0;
163}
164
152/* 165/*
153 * ... whereas tmpfs objects are accounted incrementally as 166 * ... whereas tmpfs objects are accounted incrementally as
154 * pages are allocated, in order to allow huge sparse files. 167 * pages are allocated, in order to allow huge sparse files.
@@ -549,6 +562,10 @@ static int shmem_setattr(struct dentry *dentry, struct iattr *attr)
549 loff_t newsize = attr->ia_size; 562 loff_t newsize = attr->ia_size;
550 563
551 if (newsize != oldsize) { 564 if (newsize != oldsize) {
565 error = shmem_reacct_size(SHMEM_I(inode)->flags,
566 oldsize, newsize);
567 if (error)
568 return error;
552 i_size_write(inode, newsize); 569 i_size_write(inode, newsize);
553 inode->i_ctime = inode->i_mtime = CURRENT_TIME; 570 inode->i_ctime = inode->i_mtime = CURRENT_TIME;
554 } 571 }