commit | 0e0bcae3bfb3c88dbe14735fa69d7d88794dc73a | [log] [tgz] |
---|---|---|
author | Steven Whitehouse <swhiteho@redhat.com> | Wed Sep 27 14:45:07 2006 -0400 |
committer | Steven Whitehouse <swhiteho@redhat.com> | Wed Sep 27 14:45:07 2006 -0400 |
tree | cccd335fd1d295d28a345bdcc1c8e0bf5974af47 | |
parent | 7e18c02be7c83a8cfd1319f0117f63509c20aa8e [diff] [blame] |
[GFS2] Fix direct i/o logic in filemap.c We shouldn't mark the file accessed in the case that it wasn't accessed. Signed-off-by: Steven Whitehouse <swhiteho@redhat.com>
diff --git a/mm/filemap.c b/mm/filemap.c index d9bbea1..91a741d 100644 --- a/mm/filemap.c +++ b/mm/filemap.c
@@ -1180,9 +1180,10 @@ if (retval > 0) *ppos = pos + retval; } - file_accessed(filp); - if (retval != 0) + if (likely(retval != 0)) { + file_accessed(flip); goto out; + } } retval = 0;