diff options
| author | Steve French <sfrench@us.ibm.com> | 2007-11-25 04:53:27 -0500 | 
|---|---|---|
| committer | Steve French <sfrench@us.ibm.com> | 2007-11-25 04:53:27 -0500 | 
| commit | 058250a0d5886b4d96a195ecc7e3a75e2df5e4b1 (patch) | |
| tree | fb67e8f5258c6aa11d4e8c39650e23de7556b38d /fs/ext2/ioctl.c | |
| parent | cea218054ad277d6c126890213afde07b4eb1602 (diff) | |
| parent | 2ffbb8377c7a0713baf6644e285adc27a5654582 (diff) | |
Merge branch 'master' of /pub/scm/linux/kernel/git/torvalds/linux-2.6
Diffstat (limited to 'fs/ext2/ioctl.c')
| -rw-r--r-- | fs/ext2/ioctl.c | 5 | 
1 files changed, 5 insertions, 0 deletions
| diff --git a/fs/ext2/ioctl.c b/fs/ext2/ioctl.c index c2324d5fe4ac..320b2cb3d4d2 100644 --- a/fs/ext2/ioctl.c +++ b/fs/ext2/ioctl.c | |||
| @@ -47,6 +47,11 @@ int ext2_ioctl (struct inode * inode, struct file * filp, unsigned int cmd, | |||
| 47 | flags &= ~EXT2_DIRSYNC_FL; | 47 | flags &= ~EXT2_DIRSYNC_FL; | 
| 48 | 48 | ||
| 49 | mutex_lock(&inode->i_mutex); | 49 | mutex_lock(&inode->i_mutex); | 
| 50 | /* Is it quota file? Do not allow user to mess with it */ | ||
| 51 | if (IS_NOQUOTA(inode)) { | ||
| 52 | mutex_unlock(&inode->i_mutex); | ||
| 53 | return -EPERM; | ||
| 54 | } | ||
| 50 | oldflags = ei->i_flags; | 55 | oldflags = ei->i_flags; | 
| 51 | 56 | ||
| 52 | /* | 57 | /* | 
