linux-raid.vger.kernel.org archive mirror
 help / color / mirror / Atom feed
* [PATCH] lib/raid6: fix sparse warnings in recovery functions
@ 2012-05-24  4:54 Jim Kukunas
  2012-05-24  5:15 ` NeilBrown
  0 siblings, 1 reply; 2+ messages in thread
From: Jim Kukunas @ 2012-05-24  4:54 UTC (permalink / raw)
  To: neilb; +Cc: linux-raid, fengguang.wu

Make the recovery functions static to fix the following sparse warnings:

lib/raid6/recov.c:25:6: warning: symbol 'raid6_2data_recov_intx1' was
not declared. Should it be static?
lib/raid6/recov.c:69:6: warning: symbol 'raid6_datap_recov_intx1' was
not declared. Should it be static?
lib/raid6/recov_ssse3.c:22:6: warning: symbol 'raid6_2data_recov_ssse3'
was not declared. Should it be static?
lib/raid6/recov_ssse3.c:197:6: warning: symbol 'raid6_datap_recov_ssse3'
was not declared. Should it be static?

Reported-by: Fengguang Wu <fengguang.wu@intel.com>
Signed-off-by: Jim Kukunas <james.t.kukunas@linux.intel.com>
---
 lib/raid6/recov.c       |    7 ++++---
 lib/raid6/recov_ssse3.c |    7 ++++---
 2 files changed, 8 insertions(+), 6 deletions(-)

diff --git a/lib/raid6/recov.c b/lib/raid6/recov.c
index 1805a5c..a95bccb 100644
--- a/lib/raid6/recov.c
+++ b/lib/raid6/recov.c
@@ -22,8 +22,8 @@
 #include <linux/raid/pq.h>
 
 /* Recover two failed data blocks. */
-void raid6_2data_recov_intx1(int disks, size_t bytes, int faila, int failb,
-		       void **ptrs)
+static void raid6_2data_recov_intx1(int disks, size_t bytes, int faila,
+		int failb, void **ptrs)
 {
 	u8 *p, *q, *dp, *dq;
 	u8 px, qx, db;
@@ -66,7 +66,8 @@ void raid6_2data_recov_intx1(int disks, size_t bytes, int faila, int failb,
 }
 
 /* Recover failure of one data block plus the P block */
-void raid6_datap_recov_intx1(int disks, size_t bytes, int faila, void **ptrs)
+static void raid6_datap_recov_intx1(int disks, size_t bytes, int faila,
+		void **ptrs)
 {
 	u8 *p, *q, *dq;
 	const u8 *qmul;		/* Q multiplier table */
diff --git a/lib/raid6/recov_ssse3.c b/lib/raid6/recov_ssse3.c
index b77266f..ecb0289 100644
--- a/lib/raid6/recov_ssse3.c
+++ b/lib/raid6/recov_ssse3.c
@@ -19,8 +19,8 @@ static int raid6_has_ssse3(void)
 		boot_cpu_has(X86_FEATURE_SSSE3);
 }
 
-void raid6_2data_recov_ssse3(int disks, size_t bytes, int faila, int failb,
-		       void **ptrs)
+static void raid6_2data_recov_ssse3(int disks, size_t bytes, int faila,
+		int failb, void **ptrs)
 {
 	u8 *p, *q, *dp, *dq;
 	const u8 *pbmul;	/* P multiplier table for B data */
@@ -194,7 +194,8 @@ void raid6_2data_recov_ssse3(int disks, size_t bytes, int faila, int failb,
 }
 
 
-void raid6_datap_recov_ssse3(int disks, size_t bytes, int faila, void **ptrs)
+static void raid6_datap_recov_ssse3(int disks, size_t bytes, int faila,
+		void **ptrs)
 {
 	u8 *p, *q, *dq;
 	const u8 *qmul;		/* Q multiplier table */
-- 
1.7.8.6


^ permalink raw reply related	[flat|nested] 2+ messages in thread

* Re: [PATCH] lib/raid6: fix sparse warnings in recovery functions
  2012-05-24  4:54 [PATCH] lib/raid6: fix sparse warnings in recovery functions Jim Kukunas
@ 2012-05-24  5:15 ` NeilBrown
  0 siblings, 0 replies; 2+ messages in thread
From: NeilBrown @ 2012-05-24  5:15 UTC (permalink / raw)
  To: Jim Kukunas; +Cc: linux-raid, fengguang.wu

[-- Attachment #1: Type: text/plain, Size: 2799 bytes --]

On Wed, 23 May 2012 21:54:18 -0700 Jim Kukunas
<james.t.kukunas@linux.intel.com> wrote:

> Make the recovery functions static to fix the following sparse warnings:
> 
> lib/raid6/recov.c:25:6: warning: symbol 'raid6_2data_recov_intx1' was
> not declared. Should it be static?
> lib/raid6/recov.c:69:6: warning: symbol 'raid6_datap_recov_intx1' was
> not declared. Should it be static?
> lib/raid6/recov_ssse3.c:22:6: warning: symbol 'raid6_2data_recov_ssse3'
> was not declared. Should it be static?
> lib/raid6/recov_ssse3.c:197:6: warning: symbol 'raid6_datap_recov_ssse3'
> was not declared. Should it be static?
> 
> Reported-by: Fengguang Wu <fengguang.wu@intel.com>
> Signed-off-by: Jim Kukunas <james.t.kukunas@linux.intel.com>
> ---
>  lib/raid6/recov.c       |    7 ++++---
>  lib/raid6/recov_ssse3.c |    7 ++++---
>  2 files changed, 8 insertions(+), 6 deletions(-)
> 
> diff --git a/lib/raid6/recov.c b/lib/raid6/recov.c
> index 1805a5c..a95bccb 100644
> --- a/lib/raid6/recov.c
> +++ b/lib/raid6/recov.c
> @@ -22,8 +22,8 @@
>  #include <linux/raid/pq.h>
>  
>  /* Recover two failed data blocks. */
> -void raid6_2data_recov_intx1(int disks, size_t bytes, int faila, int failb,
> -		       void **ptrs)
> +static void raid6_2data_recov_intx1(int disks, size_t bytes, int faila,
> +		int failb, void **ptrs)
>  {
>  	u8 *p, *q, *dp, *dq;
>  	u8 px, qx, db;
> @@ -66,7 +66,8 @@ void raid6_2data_recov_intx1(int disks, size_t bytes, int faila, int failb,
>  }
>  
>  /* Recover failure of one data block plus the P block */
> -void raid6_datap_recov_intx1(int disks, size_t bytes, int faila, void **ptrs)
> +static void raid6_datap_recov_intx1(int disks, size_t bytes, int faila,
> +		void **ptrs)
>  {
>  	u8 *p, *q, *dq;
>  	const u8 *qmul;		/* Q multiplier table */
> diff --git a/lib/raid6/recov_ssse3.c b/lib/raid6/recov_ssse3.c
> index b77266f..ecb0289 100644
> --- a/lib/raid6/recov_ssse3.c
> +++ b/lib/raid6/recov_ssse3.c
> @@ -19,8 +19,8 @@ static int raid6_has_ssse3(void)
>  		boot_cpu_has(X86_FEATURE_SSSE3);
>  }
>  
> -void raid6_2data_recov_ssse3(int disks, size_t bytes, int faila, int failb,
> -		       void **ptrs)
> +static void raid6_2data_recov_ssse3(int disks, size_t bytes, int faila,
> +		int failb, void **ptrs)
>  {
>  	u8 *p, *q, *dp, *dq;
>  	const u8 *pbmul;	/* P multiplier table for B data */
> @@ -194,7 +194,8 @@ void raid6_2data_recov_ssse3(int disks, size_t bytes, int faila, int failb,
>  }
>  
>  
> -void raid6_datap_recov_ssse3(int disks, size_t bytes, int faila, void **ptrs)
> +static void raid6_datap_recov_ssse3(int disks, size_t bytes, int faila,
> +		void **ptrs)
>  {
>  	u8 *p, *q, *dq;
>  	const u8 *qmul;		/* Q multiplier table */


Applied, thanks.

NeilBrown


[-- Attachment #2: signature.asc --]
[-- Type: application/pgp-signature, Size: 828 bytes --]

^ permalink raw reply	[flat|nested] 2+ messages in thread

end of thread, other threads:[~2012-05-24  5:15 UTC | newest]

Thread overview: 2+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2012-05-24  4:54 [PATCH] lib/raid6: fix sparse warnings in recovery functions Jim Kukunas
2012-05-24  5:15 ` NeilBrown

This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox;
as well as URLs for NNTP newsgroup(s).