Merge commit 'refs/top-bases/linux-zfs-branch' into linux-zfs-branch
This commit is contained in:
commit
0aedc56844
|
@ -535,6 +535,15 @@ extern int zfs_iscsi_perm_check(libzfs_handle_t *, char *, ucred_t *);
|
||||||
extern int zfs_deleg_share_nfs(libzfs_handle_t *, char *, char *,
|
extern int zfs_deleg_share_nfs(libzfs_handle_t *, char *, char *,
|
||||||
void *, void *, int, zfs_share_op_t);
|
void *, void *, int, zfs_share_op_t);
|
||||||
|
|
||||||
|
/*
|
||||||
|
* When dealing with nvlists, verify() is extremely useful
|
||||||
|
*/
|
||||||
|
#ifdef NDEBUG
|
||||||
|
#define verify(EX) ((void)(EX))
|
||||||
|
#else
|
||||||
|
#define verify(EX) assert(EX)
|
||||||
|
#endif
|
||||||
|
|
||||||
/*
|
/*
|
||||||
* Utility function to convert a number to a human-readable form.
|
* Utility function to convert a number to a human-readable form.
|
||||||
*/
|
*/
|
||||||
|
|
Loading…
Reference in New Issue