[PATCH] bitops.h: add sign_extend64() function

From: Martin Kepplinger
Date: Mon Dec 15 2014 - 12:54:50 EST


This adds sign_exten64 to sign extend any signed value shorter than 64 bits
to a s64.

Signed-off-by: Martin Kepplinger <martink@xxxxxxxxx>
Suggested-by: Christoph Muellner <christoph.muellner@xxxxxxxxxxxxxxxxxxxxx>
---
Without looking for it's users yet: This applies on top of it's 8 and 16 bit
friends.

This reminded me of giving credit for the initial idea. At least in one patch
I'd like to have him mentioned.


include/linux/bitops.h | 11 +++++++++++
1 file changed, 11 insertions(+)

diff --git a/include/linux/bitops.h b/include/linux/bitops.h
index 70190f4..9c31680 100644
--- a/include/linux/bitops.h
+++ b/include/linux/bitops.h
@@ -193,6 +193,17 @@ static inline __s32 sign_extend32(__u32 value, int index)
return (__s32)(value << shift) >> shift;
}

+/**
+ * sign_extend64 - sign extend a 64-bit value using specified bit as sign-bit
+ * @value: value to sign extend
+ * @index: 0 based bit index (0<=index<64) to sign bit
+ */
+static inline __s64 sign_extend64(__u64 value, int index)
+{
+ __u8 shift = 63 - index;
+ return (__s64)(value << shift) >> shift;
+}
+
static inline unsigned fls_long(unsigned long l)
{
if (sizeof(l) == 4)
--
2.1.3

--
To unsubscribe from this list: send the line "unsubscribe linux-kernel" in
the body of a message to majordomo@xxxxxxxxxxxxxxx
More majordomo info at http://vger.kernel.org/majordomo-info.html
Please read the FAQ at http://www.tux.org/lkml/