File tree Expand file tree Collapse file tree 2 files changed +9
-9
lines changed Expand file tree Collapse file tree 2 files changed +9
-9
lines changed Original file line number Diff line number Diff line change 63
63
} \
64
64
)
65
65
66
- /**
67
- * lower_48_bits() - return bits 0-47 of a number
68
- * @n: the number we're accessing
69
- */
70
- static inline u64 lower_48_bits (u64 n )
71
- {
72
- return n & ((1ull << 48 ) - 1 );
73
- }
74
-
75
66
/**
76
67
* upper_32_bits - return bits 32-63 of a number
77
68
* @n: the number we're accessing
Original file line number Diff line number Diff line change @@ -59,6 +59,15 @@ struct crc64_pi_tuple {
59
59
__u8 ref_tag [6 ];
60
60
};
61
61
62
+ /**
63
+ * lower_48_bits() - return bits 0-47 of a number
64
+ * @n: the number we're accessing
65
+ */
66
+ static inline u64 lower_48_bits (u64 n )
67
+ {
68
+ return n & ((1ull << 48 ) - 1 );
69
+ }
70
+
62
71
static inline u64 ext_pi_ref_tag (struct request * rq )
63
72
{
64
73
unsigned int shift = ilog2 (queue_logical_block_size (rq -> q ));
You can’t perform that action at this time.
0 commit comments