lists.openwall.net   lists  /  announce  owl-users  owl-dev  john-users  john-dev  passwdqc-users  yescrypt  popa3d-users  /  oss-security  kernel-hardening  musl  sabotage  tlsify  passwords  /  crypt-dev  xvendor  /  Bugtraq  Full-Disclosure  linux-kernel  linux-netdev  linux-ext4  linux-hardening  linux-cve-announce  PHC 
Open Source and information security mailing list archives
 
Hash Suite: Windows password security audit tool. GUI, reports in PDF.
[<prev] [next>] [day] [month] [year] [list]
Date:	Tue, 24 Feb 2009 20:49:21 -0800 (PST)
From:	Justin Chen <jchen@...st41.cup.hp.com>
To:	linux-arch@...r.kernel.org
Cc:	bjorn.helgaas@...com, justin.chen@...com,
	linux-kernel@...r.kernel.org, ysato@...rs.sourceforge.jp
Subject: [PATCH 06/15] bitops: Change the bitmap index from int to unsigned long [h8300]

Change the index to unsigned long in all bitops for [h8300]

Signed-off-by: Justin Chen <justin.chen@...com>
Reviewed-by: Bjorn Helgaas <bjorn.helgaas@...com>
---
 arch/h8300/include/asm/bitops.h |    8 ++++----
 1 file changed, 1 insertion(+), 1 deletion(-)
diff -Nru a/arch/h8300/include/asm/bitops.h b/arch/h8300/include/asm/bitops.h
--- a/arch/h8300/include/asm/bitops.h	2009-02-13 15:31:30.000000000 -0800
+++ b/arch/h8300/include/asm/bitops.h	2009-02-15 18:19:39.771556647 -0800
@@ -43,7 +43,7 @@
 	break;
 
 #define H8300_GEN_BITOP(FNAME,OP)				      \
-static __inline__ void FNAME(int nr, volatile unsigned long* addr)    \
+static __inline__ void FNAME(unsigned long nr, volatile unsigned long* addr) \
 {								      \
 	volatile unsigned char *b_addr;				      \
 	b_addr = (volatile unsigned char *)addr + ((nr >> 3) ^ 3);    \
@@ -79,7 +79,7 @@
 #undef H8300_GEN_BITOP
 #undef H8300_GEN_BITOP_CONST
 
-static __inline__ int test_bit(int nr, const unsigned long* addr)
+static __inline__ int test_bit(unsigned long nr, const unsigned long* addr)
 {
 	return (*((volatile unsigned char *)addr + 
                ((nr >> 3) ^ 3)) & (1UL << (nr & 7))) != 0;
@@ -111,7 +111,7 @@
         break;
 
 #define H8300_GEN_TEST_BITOP(FNNAME,OP)				     \
-static __inline__ int FNNAME(int nr, volatile void * addr)	     \
+static __inline__ int FNNAME(unsigned long nr, volatile void * addr) \
 {								     \
 	int retval = 0;						     \
 	char ccrsave;						     \
@@ -144,7 +144,7 @@
 	return retval;						     \
 }								     \
 								     \
-static __inline__ int __ ## FNNAME(int nr, volatile void * addr)     \
+static __inline__ int __ ## FNNAME(unsigned long nr, volatile void * addr) \
 {								     \
 	int retval = 0;						     \
 	volatile unsigned char *b_addr;				     \
--
To unsubscribe from this list: send the line "unsubscribe linux-kernel" in
the body of a message to majordomo@...r.kernel.org
More majordomo info at  http://vger.kernel.org/majordomo-info.html
Please read the FAQ at  http://www.tux.org/lkml/

Powered by blists - more mailing lists

Powered by Openwall GNU/*/Linux Powered by OpenVZ