diff options
author | Bob Peterson | 2008-06-18 18:30:40 +0200 |
---|---|---|
committer | Steven Whitehouse | 2008-06-24 15:17:45 +0200 |
commit | 17c15da00c0e7289375ad57e8fea0c7892b74aa0 (patch) | |
tree | 72390f591711ea6fb0ee50509aa9ccad993f4c69 /fs/gfs2/rgrp.c | |
parent | Merge branch 'hotfixes' of git://git.linux-nfs.org/projects/trondmy/nfs-2.6 (diff) | |
download | kernel-qcow2-linux-17c15da00c0e7289375ad57e8fea0c7892b74aa0.tar.gz kernel-qcow2-linux-17c15da00c0e7289375ad57e8fea0c7892b74aa0.tar.xz kernel-qcow2-linux-17c15da00c0e7289375ad57e8fea0c7892b74aa0.zip |
[GFS2] BUG: unable to handle kernel paging request at ffff81002690e000
This patch fixes bugzilla bug bz448866: gfs2: BUG: unable to
handle kernel paging request at ffff81002690e000.
Signed-off-by: Bob Peterson <rpeterso@redhat.com>
Signed-off-by: Steven Whitehouse <swhiteho@redhat.com>
Diffstat (limited to 'fs/gfs2/rgrp.c')
-rw-r--r-- | fs/gfs2/rgrp.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/fs/gfs2/rgrp.c b/fs/gfs2/rgrp.c index 6387523a3153..3401628d742b 100644 --- a/fs/gfs2/rgrp.c +++ b/fs/gfs2/rgrp.c @@ -195,7 +195,7 @@ ulong_aligned: depending on architecture. I've experimented with several ways of writing this section such as using an else before the goto but this one seems to be the fastest. */ - while ((unsigned char *)plong < end - 1) { + while ((unsigned char *)plong < end - sizeof(unsigned long)) { prefetch(plong + 1); if (((*plong) & LBITMASK) != lskipval) break; |