diff options
author | Brian Behlendorf <[email protected]> | 2016-04-13 08:55:35 -0700 |
---|---|---|
committer | Brian Behlendorf <[email protected]> | 2016-04-21 09:49:25 -0700 |
commit | da5e151f207ff1bc4972ce74a3a85e442ffd5a03 (patch) | |
tree | 59fcc326b6ad69b36bc9f06bf1dd25a23afee34c /module/zfs/zpl_xattr.c | |
parent | 8fc5674c522e22f0b97e4714bf5410e24d481afa (diff) |
Add pn_alloc()/pn_free() functions
In order to remove the HAVE_PN_UTILS wrappers the pn_alloc() and
pn_free() functions must be implemented. The existing illumos
implementation were used for this purpose.
The `flags` argument which was used in places wrapped by the
HAVE_PN_UTILS condition has beed added back to zfs_remove() and
zfs_link() functions. This removes a small point of divergence
between the ZoL code and upstream.
Signed-off-by: Brian Behlendorf <[email protected]>
Closes #4522
Diffstat (limited to 'module/zfs/zpl_xattr.c')
-rw-r--r-- | module/zfs/zpl_xattr.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/module/zfs/zpl_xattr.c b/module/zfs/zpl_xattr.c index 420091953..e8623384c 100644 --- a/module/zfs/zpl_xattr.c +++ b/module/zfs/zpl_xattr.c @@ -465,7 +465,7 @@ zpl_xattr_set_dir(struct inode *ip, const char *name, const void *value, /* Remove a specific name xattr when value is set to NULL. */ if (value == NULL) { if (xip) - error = -zfs_remove(dxip, (char *)name, cr); + error = -zfs_remove(dxip, (char *)name, cr, 0); goto out; } |