a8a466
From 5265f6ea5a6643c5b2aa13e8e4664962251b37ea Mon Sep 17 00:00:00 2001
a8a466
From: Chad Dupuis <chad.dupuis@qlogic.com>
a8a466
Date: Thu, 13 Mar 2014 14:16:40 -0400
a8a466
Subject: [PATCH] qla2xxx: Fix build errors related to invalid print fields on
a8a466
 some architectures.
a8a466
a8a466
Fixes some build warnings such as:
a8a466
drivers/scsi/qla2xxx/qla_attr.c:162:6: warning: format '%lx' expects argument of
a8a466
type 'long unsigned int', but argument 6 has type 'size_t'"
a8a466
and
a8a466
drivers/scsi/qla2xxx/qla_init.c:5198:7: warning: format '%lx' expects argument
a8a466
of type 'long unsigned int', but argument 5 has type 'uint32_t' [-Wformat]
a8a466
a8a466
Signed-off-by: Chad Dupuis <chad.dupuis@qlogic.com>
a8a466
Signed-off-by: Saurav Kashyap <saurav.kashyap@qlogic.com>
a8a466
Signed-off-by: James Bottomley <JBottomley@Parallels.com>
a8a466
---
a8a466
 drivers/scsi/qla2xxx/qla_attr.c |  6 +++---
a8a466
 drivers/scsi/qla2xxx/qla_init.c | 12 ++++++------
a8a466
 2 files changed, 9 insertions(+), 9 deletions(-)
a8a466
a8a466
diff --git a/drivers/scsi/qla2xxx/qla_attr.c b/drivers/scsi/qla2xxx/qla_attr.c
a8a466
index da5ae11..1a976c0 100644
a8a466
--- a/drivers/scsi/qla2xxx/qla_attr.c
a8a466
+++ b/drivers/scsi/qla2xxx/qla_attr.c
a8a466
@@ -159,7 +159,7 @@ qla2x00_sysfs_read_fw_dump_template(struct file *filp, struct kobject *kobj,
a8a466
 		return 0;
a8a466
 
a8a466
 	ql_dbg(ql_dbg_user, vha, 0x70e2,
a8a466
-	    "chunk <- off=%llx count=%lx\n", off, count);
a8a466
+	    "chunk <- off=%llx count=%zx\n", off, count);
a8a466
 	return memory_read_from_buffer(buf, count, &off,
a8a466
 	    ha->fw_dump_template, ha->fw_dump_template_len);
a8a466
 }
a8a466
@@ -200,11 +200,11 @@ qla2x00_sysfs_write_fw_dump_template(struct file *filp, struct kobject *kobj,
a8a466
 	if (off + count > ha->fw_dump_template_len) {
a8a466
 		count = ha->fw_dump_template_len - off;
a8a466
 		ql_dbg(ql_dbg_user, vha, 0x70d3,
a8a466
-		    "chunk -> truncating to %lx bytes.\n", count);
a8a466
+		    "chunk -> truncating to %zx bytes.\n", count);
a8a466
 	}
a8a466
 
a8a466
 	ql_dbg(ql_dbg_user, vha, 0x70d4,
a8a466
-	    "chunk -> off=%llx count=%lx\n", off, count);
a8a466
+	    "chunk -> off=%llx count=%zx\n", off, count);
a8a466
 	memcpy(ha->fw_dump_template + off, buf, count);
a8a466
 
a8a466
 	if (off + count == ha->fw_dump_template_len) {
a8a466
diff --git a/drivers/scsi/qla2xxx/qla_init.c b/drivers/scsi/qla2xxx/qla_init.c
a8a466
index c64ee86..462836c 100644
a8a466
--- a/drivers/scsi/qla2xxx/qla_init.c
a8a466
+++ b/drivers/scsi/qla2xxx/qla_init.c
a8a466
@@ -5452,8 +5452,8 @@ qla24xx_load_risc_flash(scsi_qla_host_t *vha, uint32_t *srisc_addr,
a8a466
 	    "-> template size %x bytes\n", dlen);
a8a466
 	if (dlen > risc_size * sizeof(*dcode)) {
a8a466
 		ql_log(ql_log_warn, vha, 0x0167,
a8a466
-		    "Failed fwdump template exceeds array by %lx bytes\n",
a8a466
-		    dlen - risc_size * sizeof(*dcode));
a8a466
+		    "Failed fwdump template exceeds array by %x bytes\n",
a8a466
+		    (uint32_t)(dlen - risc_size * sizeof(*dcode)));
a8a466
 		goto default_template;
a8a466
 	}
a8a466
 	ha->fw_dump_template_len = dlen;
a8a466
@@ -5719,8 +5719,8 @@ qla24xx_load_risc_blob(scsi_qla_host_t *vha, uint32_t *srisc_addr)
a8a466
 	ha->fw_dump_template_len = 0;
a8a466
 
a8a466
 	ql_dbg(ql_dbg_init, vha, 0x171,
a8a466
-	    "Loading fwdump template from %lx\n",
a8a466
-	    (void *)fwcode - (void *)blob->fw->data);
a8a466
+	    "Loading fwdump template from %x\n",
a8a466
+	    (uint32_t)((void *)fwcode - (void *)blob->fw->data));
a8a466
 	risc_size = be32_to_cpu(fwcode[2]);
a8a466
 	ql_dbg(ql_dbg_init, vha, 0x172,
a8a466
 	    "-> array size %x dwords\n", risc_size);
a8a466
@@ -5754,8 +5754,8 @@ qla24xx_load_risc_blob(scsi_qla_host_t *vha, uint32_t *srisc_addr)
a8a466
 	    "-> template size %x bytes\n", dlen);
a8a466
 	if (dlen > risc_size * sizeof(*fwcode)) {
a8a466
 		ql_log(ql_log_warn, vha, 0x0177,
a8a466
-		    "Failed fwdump template exceeds array by %lx bytes\n",
a8a466
-		    dlen - risc_size * sizeof(*fwcode));
a8a466
+		    "Failed fwdump template exceeds array by %x bytes\n",
a8a466
+		    (uint32_t)(dlen - risc_size * sizeof(*fwcode)));
a8a466
 		goto default_template;
a8a466
 	}
a8a466
 	ha->fw_dump_template_len = dlen;
a8a466
-- 
a8a466
1.8.3.1
a8a466
a8a466
From b9469523631bd376a5f877d4e816f3a81c12b790 Mon Sep 17 00:00:00 2001
a8a466
From: Paul Bolle <pebolle@tiscali.nl>
a8a466
Date: Mon, 30 Jun 2014 16:32:29 +0200
a8a466
Subject: [PATCH] x86: Remove unused variable "polling"
a8a466
a8a466
Compile tested. "polling" is unused since commit f80c5b39b80a
a8a466
("sched/idle, x86: Switch from TS_POLLING to TIF_POLLING_NRFLAG").
a8a466
a8a466
Signed-off-by: Paul Bolle <pebolle@tiscali.nl>
a8a466
Signed-off-by: Peter Zijlstra <peterz@infradead.org>
a8a466
Cc: Jiri Kosina <jkosina@suse.cz>
a8a466
Link: http://lkml.kernel.org/r/1404138749.2978.6.camel@x41
a8a466
Signed-off-by: Ingo Molnar <mingo@kernel.org>
a8a466
---
a8a466
 arch/x86/kernel/apm_32.c | 1 -
a8a466
 1 file changed, 1 deletion(-)
a8a466
a8a466
diff --git a/arch/x86/kernel/apm_32.c b/arch/x86/kernel/apm_32.c
a8a466
index 8fdcec6..66d3b1f 100644
a8a466
--- a/arch/x86/kernel/apm_32.c
a8a466
+++ b/arch/x86/kernel/apm_32.c
a8a466
@@ -841,7 +841,6 @@ static int apm_do_idle(void)
a8a466
 	u32 eax;
a8a466
 	u8 ret = 0;
a8a466
 	int idled = 0;
a8a466
-	int polling;
a8a466
 	int err = 0;
a8a466
 
a8a466
 	if (!need_resched()) {
a8a466
-- 
a8a466
1.8.3.1
a8a466
a8a466
From 75c2e0e53d2fb5df66b8fe162d71930348ac0b96 Mon Sep 17 00:00:00 2001
a8a466
From: John Stultz <john.stultz@linaro.org>
a8a466
Date: Wed, 16 Jul 2014 21:03:56 +0000
a8a466
Subject: [PATCH] ktime: Change ktime_set() to take 64bit seconds value
a8a466
a8a466
In order to support dates past 2038 on 32bit systems, ktime_set()
a8a466
needs to handle 64bit second values.
a8a466
a8a466
[ tglx: Removed the BITS_PER_LONG check ]
a8a466
a8a466
Signed-off-by: John Stultz <john.stultz@linaro.org>
a8a466
Signed-off-by: Thomas Gleixner <tglx@linutronix.de>
a8a466
Signed-off-by: John Stultz <john.stultz@linaro.org>
a8a466
---
a8a466
 include/linux/ktime.h | 7 +++----
a8a466
 1 file changed, 3 insertions(+), 4 deletions(-)
a8a466
a8a466
diff --git a/include/linux/ktime.h b/include/linux/ktime.h
a8a466
index e4e9a9f..6950c96 100644
a8a466
--- a/include/linux/ktime.h
a8a466
+++ b/include/linux/ktime.h
a8a466
@@ -71,13 +71,12 @@ typedef union ktime ktime_t;		/* Kill this */
a8a466
  *
a8a466
  * Return the ktime_t representation of the value
a8a466
  */
a8a466
-static inline ktime_t ktime_set(const long secs, const unsigned long nsecs)
a8a466
+static inline ktime_t ktime_set(const s64 secs, const unsigned long nsecs)
a8a466
 {
a8a466
-#if (BITS_PER_LONG == 64)
a8a466
 	if (unlikely(secs >= KTIME_SEC_MAX))
a8a466
 		return (ktime_t){ .tv64 = KTIME_MAX };
a8a466
-#endif
a8a466
-	return (ktime_t) { .tv64 = (s64)secs * NSEC_PER_SEC + (s64)nsecs };
a8a466
+
a8a466
+	return (ktime_t) { .tv64 = secs * NSEC_PER_SEC + (s64)nsecs };
a8a466
 }
a8a466
 
a8a466
 /* Subtract two ktime_t variables. rem = lhs -rhs: */
a8a466
-- 
a8a466
1.8.3.1
a8a466
a8a466
From 80a667f7ab1beee42b31e263ba4681fdfe00a0b6 Mon Sep 17 00:00:00 2001
a8a466
From: Florian Westphal <fw@strlen.de>
a8a466
Date: Wed, 17 Jun 2015 23:58:28 +0200
a8a466
Subject: [PATCH] netfilter: xtables: fix warnings on 32bit platforms
a8a466
a8a466
On 32bit archs gcc complains due to cast from void* to u64.
a8a466
Add intermediate casts to long to silence these warnings.
a8a466
a8a466
include/linux/netfilter/x_tables.h:376:10: warning: cast from pointer to integer of different size [-Wpointer-to-int-cast]
a8a466
include/linux/netfilter/x_tables.h:384:15: warning: cast to pointer from integer of different size [-Wint-to-pointer-cast]
a8a466
include/linux/netfilter/x_tables.h:391:23: warning: cast to pointer from integer of different size [-Wint-to-pointer-cast]
a8a466
include/linux/netfilter/x_tables.h:400:22: warning: cast to pointer from integer of different size [-Wint-to-pointer-cast]
a8a466
a8a466
Fixes: 71ae0dff02d756e ("netfilter: xtables: use percpu rule counters")
a8a466
Reported-by: kbuild test robot <fengguang.wu@intel.com>
a8a466
Signed-off-by: Florian Westphal <fw@strlen.de>
a8a466
Signed-off-by: Pablo Neira Ayuso <pablo@netfilter.org>
a8a466
---
a8a466
 include/linux/netfilter/x_tables.h | 8 ++++----
a8a466
 1 file changed, 4 insertions(+), 4 deletions(-)
a8a466
a8a466
diff --git a/include/linux/netfilter/x_tables.h b/include/linux/netfilter/x_tables.h
a8a466
index d08f0ed..781b6fe 100644
a8a466
--- a/include/linux/netfilter/x_tables.h
a8a466
+++ b/include/linux/netfilter/x_tables.h
a8a466
@@ -390,7 +390,7 @@ static inline u64 xt_percpu_counter_alloc(void)
a8a466
 		if (res == NULL)
a8a466
 			return (u64) -ENOMEM;
a8a466
 
a8a466
-		return (__force u64) res;
a8a466
+		return (u64) (__force unsigned long) res;
a8a466
 	}
a8a466
 
a8a466
 	return 0;
a8a466
@@ -398,14 +398,14 @@ static inline u64 xt_percpu_counter_alloc(void)
a8a466
 static inline void xt_percpu_counter_free(u64 pcnt)
a8a466
 {
a8a466
 	if (nr_cpu_ids > 1)
a8a466
-		free_percpu((void __percpu *) pcnt);
a8a466
+		free_percpu((void __percpu *) (unsigned long) pcnt);
a8a466
 }
a8a466
 
a8a466
 static inline struct xt_counters *
a8a466
 xt_get_this_cpu_counter(struct xt_counters *cnt)
a8a466
 {
a8a466
 	if (nr_cpu_ids > 1)
a8a466
-		return this_cpu_ptr((void __percpu *) cnt->pcnt);
a8a466
+		return this_cpu_ptr((void __percpu *) (unsigned long) cnt->pcnt);
a8a466
 
a8a466
 	return cnt;
a8a466
 }
a8a466
@@ -414,7 +414,7 @@ static inline struct xt_counters *
a8a466
 xt_get_per_cpu_counter(struct xt_counters *cnt, unsigned int cpu)
a8a466
 {
a8a466
 	if (nr_cpu_ids > 1)
a8a466
-		return per_cpu_ptr((void __percpu *) cnt->pcnt, cpu);
a8a466
+		return per_cpu_ptr((void __percpu *) (unsigned long) cnt->pcnt, cpu);
a8a466
 
a8a466
 	return cnt;
a8a466
 }
a8a466
-- 
a8a466
1.8.3.1
a8a466