projects
/
openwrt
/
staging
/
blogic.git
/ commitdiff
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
shortlog
|
log
|
commit
| commitdiff |
tree
raw
|
patch
| inline |
side by side
(parent:
cfef2c6
)
jbd2: use offset_in_page() instead of manual calculation
author
Theodore Ts'o
<
[email protected]
>
Sat, 18 Dec 2010 18:13:40 +0000
(13:13 -0500)
committer
Theodore Ts'o
<
[email protected]
>
Sat, 18 Dec 2010 18:13:40 +0000
(13:13 -0500)
This is a port to jbd2 of a patch which Namhyung Kim <
[email protected]
>
originally made to fs/jbd.
Signed-off-by: "Theodore Ts'o" <
[email protected]
>
fs/jbd2/transaction.c
patch
|
blob
|
history
diff --git
a/fs/jbd2/transaction.c
b/fs/jbd2/transaction.c
index 10b5e3b1ca8b36ce32c1a978bf492fddd2bb9744..80f9b2a3880b1be1af7b9138f5dfdea93ff3a6bd 100644
(file)
--- a/
fs/jbd2/transaction.c
+++ b/
fs/jbd2/transaction.c
@@
-774,7
+774,7
@@
done:
J_EXPECT_JH(jh, buffer_uptodate(jh2bh(jh)),
"Possible IO failure.\n");
page = jh2bh(jh)->b_page;
- offset =
((unsigned long) jh2bh(jh)->b_data) & ~PAGE_MASK
;
+ offset =
offset_in_page(jh2bh(jh)->b_data)
;
source = kmap_atomic(page, KM_USER0);
/* Fire data frozen trigger just before we copy the data */
jbd2_buffer_frozen_trigger(jh, source + offset,