Skip to content

Commit

Permalink
---
Browse files Browse the repository at this point in the history
yaml
---
r: 181795
b: refs/heads/master
c: 046ea75
h: refs/heads/master
i:
  181793: b7d260f
  181791: eb9712e
v: v3
  • Loading branch information
Dave Chinner committed Jan 19, 2010
1 parent f4f5e90 commit 3d882e2
Show file tree
Hide file tree
Showing 3 changed files with 7 additions and 4 deletions.
2 changes: 1 addition & 1 deletion [refs]
Original file line number Diff line number Diff line change
@@ -1,2 +1,2 @@
---
refs/heads/master: e2bcd936eb95d0019ca5e05f9fdd27e770ddded1
refs/heads/master: 046ea753130fc51d885835458bf8c1d84765b9ac
3 changes: 2 additions & 1 deletion trunk/fs/xfs/xfs_mount.h
Original file line number Diff line number Diff line change
Expand Up @@ -78,7 +78,8 @@ typedef int (*xfs_send_destroy_t)(struct xfs_inode *, dm_right_t);
typedef int (*xfs_send_namesp_t)(dm_eventtype_t, struct xfs_mount *,
struct xfs_inode *, dm_right_t,
struct xfs_inode *, dm_right_t,
const char *, const char *, mode_t, int, int);
const unsigned char *, const unsigned char *,
mode_t, int, int);
typedef int (*xfs_send_mount_t)(struct xfs_mount *, dm_right_t,
char *, char *);
typedef void (*xfs_send_unmount_t)(struct xfs_mount *, struct xfs_inode *,
Expand Down
6 changes: 4 additions & 2 deletions trunk/fs/xfs/xfs_vnodeops.c
Original file line number Diff line number Diff line change
Expand Up @@ -2199,7 +2199,8 @@ xfs_symlink(
if (DM_EVENT_ENABLED(dp, DM_EVENT_SYMLINK)) {
error = XFS_SEND_NAMESP(mp, DM_EVENT_SYMLINK, dp,
DM_RIGHT_NULL, NULL, DM_RIGHT_NULL,
link_name->name, target_path, 0, 0, 0);
link_name->name,
(unsigned char *)target_path, 0, 0, 0);
if (error)
return error;
}
Expand Down Expand Up @@ -2395,7 +2396,8 @@ xfs_symlink(
dp, DM_RIGHT_NULL,
error ? NULL : ip,
DM_RIGHT_NULL, link_name->name,
target_path, 0, error, 0);
(unsigned char *)target_path,
0, error, 0);
}

if (!error)
Expand Down

0 comments on commit 3d882e2

Please sign in to comment.