Groups | Search | Server Info | Keyboard shortcuts | Login | Register [http] [https] [nntp] [nntps]


Groups > linux.kernel > #1247975

[PATCH 2/2] bitops.h: add sign_extend64()

From Martin Kepplinger <martink@posteo.de>
Newsgroups linux.kernel
Subject [PATCH 2/2] bitops.h: add sign_extend64()
Date 2015-10-15 18:30 +0200
Message-ID <qjTzI-3md-15@gated-at.bofh.it> (permalink)
References <qjTzI-3md-11@gated-at.bofh.it>
Organization linux.* mail to news gateway

Show all headers | View raw


Months back, this was discussed, see https://lkml.org/lkml/2015/1/18/289
The result was the 64-bit version being "likely fine", "valuable" and
"correct". The discussion only fell asleep but since there are possible
users, let's add it.

Signed-off-by: Martin Kepplinger <martin.kepplinger@theobroma-systems.com>
---
 include/linux/bitops.h | 11 +++++++++++
 1 file changed, 11 insertions(+)

diff --git a/include/linux/bitops.h b/include/linux/bitops.h
index 2177c01..1672b74 100644
--- a/include/linux/bitops.h
+++ b/include/linux/bitops.h
@@ -173,6 +173,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.4

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

Back to linux.kernel | Previous | Next — Previous in thread | Next in thread | Find similar | Unroll thread


Thread

bitops.h: improve sign extending API Martin Kepplinger <martink@posteo.de> - 2015-10-15 18:30 +0200
  [PATCH 2/2] bitops.h: add sign_extend64() Martin Kepplinger <martink@posteo.de> - 2015-10-15 18:30 +0200
  [PATCH 1/2] bitops.h: Improve sign_extend32()'s documentation Martin Kepplinger <martink@posteo.de> - 2015-10-15 18:30 +0200
    Re: [PATCH 1/2] bitops.h: Improve sign_extend32()'s documentation "George Spelvin" <linux@horizon.com> - 2015-10-15 20:10 +0200

csiph-web