diff options
Diffstat (limited to 'fs/btrfs/hash.h')
| -rw-r--r-- | fs/btrfs/hash.h | 10 |
1 files changed, 10 insertions, 0 deletions
diff --git a/fs/btrfs/hash.h b/fs/btrfs/hash.h index db2ff9773b99..1d982812ab67 100644 --- a/fs/btrfs/hash.h +++ b/fs/btrfs/hash.h | |||
| @@ -24,4 +24,14 @@ static inline u64 btrfs_name_hash(const char *name, int len) | |||
| 24 | { | 24 | { |
| 25 | return crc32c((u32)~1, name, len); | 25 | return crc32c((u32)~1, name, len); |
| 26 | } | 26 | } |
| 27 | |||
| 28 | /* | ||
| 29 | * Figure the key offset of an extended inode ref | ||
| 30 | */ | ||
| 31 | static inline u64 btrfs_extref_hash(u64 parent_objectid, const char *name, | ||
| 32 | int len) | ||
| 33 | { | ||
| 34 | return (u64) crc32c(parent_objectid, name, len); | ||
| 35 | } | ||
| 36 | |||
| 27 | #endif | 37 | #endif |
