diff options
author | Dave Chinner <dchinner@redhat.com> | 2022-04-21 02:47:25 +0200 |
---|---|---|
committer | Dave Chinner <david@fromorbit.com> | 2022-04-21 02:47:25 +0200 |
commit | 90215d74987159fdd7a6d800256ba1d2a9b0dca8 (patch) | |
tree | fde1acdd69556a85fe63d3398b7d7d509b666f1f /fs/xfs/xfs_message.h | |
parent | xfs: convert inode lock flags to unsigned. (diff) | |
download | linux-90215d74987159fdd7a6d800256ba1d2a9b0dca8.tar.xz linux-90215d74987159fdd7a6d800256ba1d2a9b0dca8.zip |
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: Dave Chinner <dchinner@redhat.com>
Reviewed-by: Chandan Babu R <chandan.babu@oracle.com>
Signed-off-by: Dave Chinner <david@fromorbit.com>
Diffstat (limited to 'fs/xfs/xfs_message.h')
-rw-r--r-- | fs/xfs/xfs_message.h | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/fs/xfs/xfs_message.h b/fs/xfs/xfs_message.h index bb9860ec9a93..dee98e9ccc3d 100644 --- a/fs/xfs/xfs_message.h +++ b/fs/xfs/xfs_message.h @@ -11,7 +11,8 @@ void xfs_emerg(const struct xfs_mount *mp, const char *fmt, ...); extern __printf(2, 3) void xfs_alert(const struct xfs_mount *mp, const char *fmt, ...); 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) void xfs_crit(const struct xfs_mount *mp, const char *fmt, ...); extern __printf(2, 3) |