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 later has no meaning). Looks like we need to do some work here. But note: # zpool create -o compression=on tpool /tmp/tpool property 'compression' is not a valid pool property For compression that doesn't matter too much since it can be set later. The problem we have is similar to this one: # zpool create -o normalization=formC tpool /tmp/tpool property 'normalization' is not a valid pool property # zpool create tpool /tmp/tpool # zfs set normalization=formC tpool cannot set property for 'tpool': 'normalization' is readonly like the normalization property we can only be set at create time. This looks like a generic problem with create time only properties. We need a way to pass any dataset property on via the zpool command to the top dataset so that create time only properties can be set. -- Darren J Moffat _______________________________________________ zfs-discuss mailing list zfs-discuss@opensolaris.org http://mail.opensolaris.org/mailman/listinfo/zfs-discuss