commit | ad2a8e6078a16d3b61b530f1447110841c36ae56 | [log] [tgz] |
---|---|---|
author | Dan Carpenter <dan.carpenter@oracle.com> | Tue Mar 20 16:58:06 2012 +0000 |
committer | Linus Torvalds <torvalds@linux-foundation.org> | Tue Mar 20 11:14:38 2012 -0700 |
tree | f926ff62ed28c3bec8527a94b0ac5e46556e8e38 | |
parent | 161f7a7161191ab9c2e97f787829ef8dd2b95771 [diff] |
AFS: checking wrong bit in afs_readpages() We should be testing "if (vnode->flags & (1 << 4))" instead of "if (vnode->flags & 4) {". The current test checks if the data was modified instead of deleted. Signed-off-by: Dan Carpenter <dan.carpenter@oracle.com> Signed-off-by: David Howells <dhowells@redhat.com> Signed-off-by: Linus Torvalds <torvalds@linux-foundation.org>