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:
da66116
)
ocfs2: fix format warnings in dlm_alloc_pagevec()
author
Mark Fasheh
<mark.fasheh@oracle.com>
Tue, 28 Nov 2006 23:13:18 +0000
(15:13 -0800)
committer
Mark Fasheh
<mark.fasheh@oracle.com>
Sat, 2 Dec 2006 02:26:56 +0000
(18:26 -0800)
Signed-off-by: Mark Fasheh <mark.fasheh@oracle.com>
fs/ocfs2/dlm/dlmdomain.c
patch
|
blob
|
history
diff --git
a/fs/ocfs2/dlm/dlmdomain.c
b/fs/ocfs2/dlm/dlmdomain.c
index 8d1065f8b3bdbaf7ccc5def928c4954ea3bd4a24..f6cdab3a2c6aa4ff6b7309b20a25e00f264a6673 100644
(file)
--- a/
fs/ocfs2/dlm/dlmdomain.c
+++ b/
fs/ocfs2/dlm/dlmdomain.c
@@
-68,7
+68,8
@@
static void **dlm_alloc_pagevec(int pages)
goto out_free;
mlog(0, "Allocated DLM hash pagevec; %d pages (%lu expected), %lu buckets per page\n",
- pages, DLM_HASH_PAGES, (unsigned long)DLM_BUCKETS_PER_PAGE);
+ pages, (unsigned long)DLM_HASH_PAGES,
+ (unsigned long)DLM_BUCKETS_PER_PAGE);
return vec;
out_free:
dlm_free_pagevec(vec, i);