aboutsummaryrefslogtreecommitdiffstats
path: root/fs/ocfs2/ocfs2.h
diff options
context:
space:
mode:
Diffstat (limited to 'fs/ocfs2/ocfs2.h')
-rw-r--r--fs/ocfs2/ocfs2.h12
1 files changed, 6 insertions, 6 deletions
diff --git a/fs/ocfs2/ocfs2.h b/fs/ocfs2/ocfs2.h
index e89de9b6e491..da1093039c01 100644
--- a/fs/ocfs2/ocfs2.h
+++ b/fs/ocfs2/ocfs2.h
@@ -357,8 +357,8 @@ static inline int ocfs2_is_soft_readonly(struct ocfs2_super *osb)
357#define OCFS2_RO_ON_INVALID_DINODE(__sb, __di) do { \ 357#define OCFS2_RO_ON_INVALID_DINODE(__sb, __di) do { \
358 typeof(__di) ____di = (__di); \ 358 typeof(__di) ____di = (__di); \
359 ocfs2_error((__sb), \ 359 ocfs2_error((__sb), \
360 "Dinode # %"MLFu64" has bad signature %.*s", \ 360 "Dinode # %llu has bad signature %.*s", \
361 (____di)->i_blkno, 7, \ 361 (unsigned long long)(____di)->i_blkno, 7, \
362 (____di)->i_signature); \ 362 (____di)->i_signature); \
363} while (0); 363} while (0);
364 364
@@ -368,8 +368,8 @@ static inline int ocfs2_is_soft_readonly(struct ocfs2_super *osb)
368#define OCFS2_RO_ON_INVALID_EXTENT_BLOCK(__sb, __eb) do { \ 368#define OCFS2_RO_ON_INVALID_EXTENT_BLOCK(__sb, __eb) do { \
369 typeof(__eb) ____eb = (__eb); \ 369 typeof(__eb) ____eb = (__eb); \
370 ocfs2_error((__sb), \ 370 ocfs2_error((__sb), \
371 "Extent Block # %"MLFu64" has bad signature %.*s", \ 371 "Extent Block # %llu has bad signature %.*s", \
372 (____eb)->h_blkno, 7, \ 372 (unsigned long long)(____eb)->h_blkno, 7, \
373 (____eb)->h_signature); \ 373 (____eb)->h_signature); \
374} while (0); 374} while (0);
375 375
@@ -379,8 +379,8 @@ static inline int ocfs2_is_soft_readonly(struct ocfs2_super *osb)
379#define OCFS2_RO_ON_INVALID_GROUP_DESC(__sb, __gd) do { \ 379#define OCFS2_RO_ON_INVALID_GROUP_DESC(__sb, __gd) do { \
380 typeof(__gd) ____gd = (__gd); \ 380 typeof(__gd) ____gd = (__gd); \
381 ocfs2_error((__sb), \ 381 ocfs2_error((__sb), \
382 "Group Descriptor # %"MLFu64" has bad signature %.*s", \ 382 "Group Descriptor # %llu has bad signature %.*s", \
383 (____gd)->bg_blkno, 7, \ 383 (unsigned long long)(____gd)->bg_blkno, 7, \
384 (____gd)->bg_signature); \ 384 (____gd)->bg_signature); \
385} while (0); 385} while (0);
386 386