|
@@ -239,7 +239,7 @@ xfs_attr_rmtval_copyout(
|
|
|
xfs_ino_t ino,
|
|
|
int *offset,
|
|
|
int *valuelen,
|
|
|
- char **dst)
|
|
|
+ __uint8_t **dst)
|
|
|
{
|
|
|
char *src = bp->b_addr;
|
|
|
xfs_daddr_t bno = bp->b_bn;
|
|
@@ -286,7 +286,7 @@ xfs_attr_rmtval_copyin(
|
|
|
xfs_ino_t ino,
|
|
|
int *offset,
|
|
|
int *valuelen,
|
|
|
- char **src)
|
|
|
+ __uint8_t **src)
|
|
|
{
|
|
|
char *dst = bp->b_addr;
|
|
|
xfs_daddr_t bno = bp->b_bn;
|
|
@@ -339,7 +339,7 @@ xfs_attr_rmtval_get(
|
|
|
struct xfs_mount *mp = args->dp->i_mount;
|
|
|
struct xfs_buf *bp;
|
|
|
xfs_dablk_t lblkno = args->rmtblkno;
|
|
|
- char *dst = args->value;
|
|
|
+ __uint8_t *dst = args->value;
|
|
|
int valuelen = args->valuelen;
|
|
|
int nmap;
|
|
|
int error;
|
|
@@ -403,7 +403,7 @@ xfs_attr_rmtval_set(
|
|
|
struct xfs_bmbt_irec map;
|
|
|
xfs_dablk_t lblkno;
|
|
|
xfs_fileoff_t lfileoff = 0;
|
|
|
- char *src = args->value;
|
|
|
+ __uint8_t *src = args->value;
|
|
|
int blkcnt;
|
|
|
int valuelen;
|
|
|
int nmap;
|