diff options
author | Jan Engelhardt <jengelh@medozas.de> | 2009-01-21 10:49:16 -0500 |
---|---|---|
committer | Chris Mason <chris.mason@oracle.com> | 2009-01-21 10:49:16 -0500 |
commit | 95029d7d598babf62276d9006e575992b1333ba5 (patch) | |
tree | 1c89db814414ade149a5407c2980be4923d3e39d /fs/btrfs | |
parent | 653249ff9aea51e1ace6bd437389f06e2b84393f (diff) | |
download | linux-3.10-95029d7d598babf62276d9006e575992b1333ba5.tar.gz linux-3.10-95029d7d598babf62276d9006e575992b1333ba5.tar.bz2 linux-3.10-95029d7d598babf62276d9006e575992b1333ba5.zip |
Btrfs: change/remove typedef
Change one typedef to a regular enum, and remove an unused one.
Signed-off-by: Jan Engelhardt <jengelh@medozas.de>
Signed-off-by: Chris Mason <chris.mason@oracle.com>
Diffstat (limited to 'fs/btrfs')
-rw-r--r-- | fs/btrfs/ctree.h | 10 |
1 files changed, 2 insertions, 8 deletions
diff --git a/fs/btrfs/ctree.h b/fs/btrfs/ctree.h index eee060f8811..e1fec636f37 100644 --- a/fs/btrfs/ctree.h +++ b/fs/btrfs/ctree.h @@ -454,17 +454,11 @@ struct btrfs_timespec { __le32 nsec; } __attribute__ ((__packed__)); -typedef enum { +enum btrfs_compression_type { BTRFS_COMPRESS_NONE = 0, BTRFS_COMPRESS_ZLIB = 1, BTRFS_COMPRESS_LAST = 2, -} btrfs_compression_type; - -/* we don't understand any encryption methods right now */ -typedef enum { - BTRFS_ENCRYPTION_NONE = 0, - BTRFS_ENCRYPTION_LAST = 1, -} btrfs_encryption_type; +}; struct btrfs_inode_item { /* nfs style generation number */ |