Commit 90215d74 authored by Dave Chinner's avatar Dave Chinner Committed by Dave Chinner

xfs: convert ptag flags to unsigned.

5.18 w/ std=gnu11 compiled with gcc-5 wants flags stored in unsigned
fields to be unsigned.
Signed-off-by: default avatarDave Chinner <dchinner@redhat.com>
Reviewed-by: default avatarChandan Babu R <chandan.babu@oracle.com>
Signed-off-by: default avatarDave Chinner <david@fromorbit.com>
parent a1033753
...@@ -64,16 +64,16 @@ extern int xfs_errortag_clearall(struct xfs_mount *mp); ...@@ -64,16 +64,16 @@ extern int xfs_errortag_clearall(struct xfs_mount *mp);
* XFS panic tags -- allow a call to xfs_alert_tag() be turned into * XFS panic tags -- allow a call to xfs_alert_tag() be turned into
* a panic by setting xfs_panic_mask in a sysctl. * a panic by setting xfs_panic_mask in a sysctl.
*/ */
#define XFS_NO_PTAG 0 #define XFS_NO_PTAG 0u
#define XFS_PTAG_IFLUSH 0x00000001 #define XFS_PTAG_IFLUSH (1u << 0)
#define XFS_PTAG_LOGRES 0x00000002 #define XFS_PTAG_LOGRES (1u << 1)
#define XFS_PTAG_AILDELETE 0x00000004 #define XFS_PTAG_AILDELETE (1u << 2)
#define XFS_PTAG_ERROR_REPORT 0x00000008 #define XFS_PTAG_ERROR_REPORT (1u << 3)
#define XFS_PTAG_SHUTDOWN_CORRUPT 0x00000010 #define XFS_PTAG_SHUTDOWN_CORRUPT (1u << 4)
#define XFS_PTAG_SHUTDOWN_IOERROR 0x00000020 #define XFS_PTAG_SHUTDOWN_IOERROR (1u << 5)
#define XFS_PTAG_SHUTDOWN_LOGERROR 0x00000040 #define XFS_PTAG_SHUTDOWN_LOGERROR (1u << 6)
#define XFS_PTAG_FSBLOCK_ZERO 0x00000080 #define XFS_PTAG_FSBLOCK_ZERO (1u << 7)
#define XFS_PTAG_VERIFIER_ERROR 0x00000100 #define XFS_PTAG_VERIFIER_ERROR (1u << 8)
#define XFS_PTAG_STRINGS \ #define XFS_PTAG_STRINGS \
{ XFS_NO_PTAG, "none" }, \ { XFS_NO_PTAG, "none" }, \
......
...@@ -62,7 +62,7 @@ define_xfs_printk_level(xfs_debug, KERN_DEBUG); ...@@ -62,7 +62,7 @@ define_xfs_printk_level(xfs_debug, KERN_DEBUG);
void void
xfs_alert_tag( xfs_alert_tag(
const struct xfs_mount *mp, const struct xfs_mount *mp,
int panic_tag, uint32_t panic_tag,
const char *fmt, ...) const char *fmt, ...)
{ {
struct va_format vaf; struct va_format vaf;
......
...@@ -11,7 +11,8 @@ void xfs_emerg(const struct xfs_mount *mp, const char *fmt, ...); ...@@ -11,7 +11,8 @@ void xfs_emerg(const struct xfs_mount *mp, const char *fmt, ...);
extern __printf(2, 3) extern __printf(2, 3)
void xfs_alert(const struct xfs_mount *mp, const char *fmt, ...); void xfs_alert(const struct xfs_mount *mp, const char *fmt, ...);
extern __printf(3, 4) extern __printf(3, 4)
void xfs_alert_tag(const struct xfs_mount *mp, int tag, const char *fmt, ...); void xfs_alert_tag(const struct xfs_mount *mp, uint32_t tag,
const char *fmt, ...);
extern __printf(2, 3) extern __printf(2, 3)
void xfs_crit(const struct xfs_mount *mp, const char *fmt, ...); void xfs_crit(const struct xfs_mount *mp, const char *fmt, ...);
extern __printf(2, 3) extern __printf(2, 3)
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment