diff options
author | James Morris <jmorris@namei.org> | 2008-12-04 01:16:36 -0500 |
---|---|---|
committer | James Morris <jmorris@namei.org> | 2008-12-04 01:16:36 -0500 |
commit | ec98ce480ada787f2cfbd696980ff3564415505b (patch) | |
tree | 1a4d644b38f9f1e4b4e086fde0b195df4a92cf84 /fs/namei.c | |
parent | 3496f92beb9aa99ef21fccc154a36c7698e9c538 (diff) | |
parent | feaf3848a813a106f163013af6fcf6c4bfec92d9 (diff) |
Merge branch 'master' into next
Conflicts:
fs/nfsd/nfs4recover.c
Manually fixed above to use new creds API functions, e.g.
nfs4_save_creds().
Signed-off-by: James Morris <jmorris@namei.org>
Diffstat (limited to 'fs/namei.c')
-rw-r--r-- | fs/namei.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/fs/namei.c b/fs/namei.c index 42d7b7606936..af3783fff1de 100644 --- a/fs/namei.c +++ b/fs/namei.c | |||
@@ -1380,7 +1380,7 @@ static int may_delete(struct inode *dir,struct dentry *victim,int isdir) | |||
1380 | if (IS_APPEND(dir)) | 1380 | if (IS_APPEND(dir)) |
1381 | return -EPERM; | 1381 | return -EPERM; |
1382 | if (check_sticky(dir, victim->d_inode)||IS_APPEND(victim->d_inode)|| | 1382 | if (check_sticky(dir, victim->d_inode)||IS_APPEND(victim->d_inode)|| |
1383 | IS_IMMUTABLE(victim->d_inode)) | 1383 | IS_IMMUTABLE(victim->d_inode) || IS_SWAPFILE(victim->d_inode)) |
1384 | return -EPERM; | 1384 | return -EPERM; |
1385 | if (isdir) { | 1385 | if (isdir) { |
1386 | if (!S_ISDIR(victim->d_inode->i_mode)) | 1386 | if (!S_ISDIR(victim->d_inode->i_mode)) |