diff options
author | timh <none@none> | 2008-04-27 10:20:38 -0700 |
---|---|---|
committer | timh <none@none> | 2008-04-27 10:20:38 -0700 |
commit | ab04eb8ef60d9dc9614d6cccffc474f24ca1d162 (patch) | |
tree | 361f353d229106ed93d3fa71ef005be8c7ebbc72 /usr/src/uts/common/fs/zfs/sys/dmu.h | |
parent | dc5415b5ee3585f3fb9e8f0a33ea3f5926e13999 (diff) | |
download | illumos-joyent-ab04eb8ef60d9dc9614d6cccffc474f24ca1d162.tar.gz |
6654808 FIGNORECASE lookups in a zfs xattr dir don't provide 'realname' data
6666748 System panic occurred when attempting to view .zfs snapshot directory from CIFS client.
6693201 libzpool needlessly defines u8_textprep_str()
6694236 case-insensitive zfs file system doesn't work when created on sparc and then imported on x86
Diffstat (limited to 'usr/src/uts/common/fs/zfs/sys/dmu.h')
-rw-r--r-- | usr/src/uts/common/fs/zfs/sys/dmu.h | 4 |
1 files changed, 3 insertions, 1 deletions
diff --git a/usr/src/uts/common/fs/zfs/sys/dmu.h b/usr/src/uts/common/fs/zfs/sys/dmu.h index 8391a09e42..ad1fad093e 100644 --- a/usr/src/uts/common/fs/zfs/sys/dmu.h +++ b/usr/src/uts/common/fs/zfs/sys/dmu.h @@ -166,7 +166,7 @@ int dmu_objset_open_ds(struct dsl_dataset *ds, dmu_objset_type_t type, void dmu_objset_close(objset_t *os); int dmu_objset_evict_dbufs(objset_t *os); int dmu_objset_create(const char *name, dmu_objset_type_t type, - objset_t *clone_parent, + objset_t *clone_parent, uint64_t flags, void (*func)(objset_t *os, void *arg, cred_t *cr, dmu_tx_t *tx), void *arg); int dmu_objset_destroy(const char *name); int dmu_snapshots_destroy(char *fsname, char *snapname); @@ -540,6 +540,8 @@ extern dmu_objset_type_t dmu_objset_type(objset_t *os); extern uint64_t dmu_objset_id(objset_t *os); extern int dmu_snapshot_list_next(objset_t *os, int namelen, char *name, uint64_t *id, uint64_t *offp, boolean_t *case_conflict); +extern int dmu_snapshot_realname(objset_t *os, char *name, char *real, + int maxlen, boolean_t *conflict); extern int dmu_dir_list_next(objset_t *os, int namelen, char *name, uint64_t *idp, uint64_t *offp); extern void dmu_objset_set_user(objset_t *os, void *user_ptr); |