31 lines
791 B
Plaintext
31 lines
791 B
Plaintext
From: Jeff Mahoney <jeffm@suse.com>
|
|
Subject: xfs/dmapi: fix incompatible pointer type warning
|
|
Patch-mainline: Whenever dmapi gets upstream
|
|
|
|
This fixes an incompatible pointer initialization warning.
|
|
|
|
Signed-off-by: Jeff Mahoney <jeffm@suse.com>
|
|
---
|
|
fs/xfs/dmapi/xfs_dm.c | 8 ++++----
|
|
1 file changed, 4 insertions(+), 4 deletions(-)
|
|
|
|
--- a/fs/xfs/dmapi/xfs_dm.c
|
|
+++ b/fs/xfs/dmapi/xfs_dm.c
|
|
@@ -3152,12 +3152,12 @@ STATIC int
|
|
xfs_dm_send_namesp_event(
|
|
dm_eventtype_t event,
|
|
struct xfs_mount *mp,
|
|
- xfs_inode_t *ip1,
|
|
+ struct xfs_inode *ip1,
|
|
dm_right_t vp1_right,
|
|
- xfs_inode_t *ip2,
|
|
+ struct xfs_inode *ip2,
|
|
dm_right_t vp2_right,
|
|
- const char *name1,
|
|
- const char *name2,
|
|
+ const unsigned char *name1,
|
|
+ const unsigned char *name2,
|
|
mode_t mode,
|
|
int retcode,
|
|
int flags)
|