Skip to content

Commit

Permalink
Sync DMU_BACKUP_FEATURE_* flags
Browse files Browse the repository at this point in the history
Flag openzfs#20 was used in OpenZFS as DMU_BACKUP_FEATURE_RESUMING, the
DMU_BACKUP_FEATURE_LARGE_DNODE flag must be shifted to openzfs#21 and
reserved in the  OpenZFS implementation.

Signed-off-by: Brian Behlendorf <behlendorf1@llnl.gov>
  • Loading branch information
behlendorf committed Jun 24, 2016
1 parent 50c957f commit f43b087
Showing 1 changed file with 2 additions and 1 deletion.
3 changes: 2 additions & 1 deletion include/sys/zfs_ioctl.h
Original file line number Diff line number Diff line change
Expand Up @@ -98,7 +98,8 @@ typedef enum drr_headertype {
#define DMU_BACKUP_FEATURE_EMBED_DATA_LZ4 (1<<17)
/* flag #18 is reserved for a Delphix feature */
#define DMU_BACKUP_FEATURE_LARGE_BLOCKS (1<<19)
#define DMU_BACKUP_FEATURE_LARGE_DNODE (1<<20)
/* flag #20 is reserved for a resuming */
#define DMU_BACKUP_FEATURE_LARGE_DNODE (1<<21)

/*
* Mask of all supported backup features
Expand Down

0 comments on commit f43b087

Please sign in to comment.