[zfs-discuss] Setting a dataset create time only property at pool creation time.

2008-01-02 Thread Darren J Moffat
Our test engineer for the ZFS Crypto project discovered that it isn't possible to enable encryption on the top filesystem in a pool - the one that gets created by default. The intent here is that the default top level filesystem gets the encryption property not the pool itself (because the

Re: [zfs-discuss] Setting a dataset create time only property at pool creation time.

2008-01-02 Thread Kalpak Shah
Hi I faced a similar problem when I was adding a property for per-dataset dnode sizes. I got around it by adding a ZPOOL_PROP_DNODE_SIZE and adding the dataset property in dsl_dataset_stats(). That way the root dataset gets the property too. I am not very sure if this is the cleanest solution

Re: [zfs-discuss] Setting a dataset create time only property at pool creation time.

2008-01-02 Thread Darren J Moffat
Kalpak Shah wrote: Hi I faced a similar problem when I was adding a property for per-dataset dnode sizes. I got around it by adding a ZPOOL_PROP_DNODE_SIZE and adding the dataset property in dsl_dataset_stats(). That way the root dataset gets the property too. I am not very sure if this