2009-03-26 15:33:04

by Greg Banks

[permalink] [raw]
Subject: [PATCH] Fix a build warning about leaking CONFIG_NFSD to userspace.

Fix a build warning about leaking CONFIG_NFSD to userspace.

The nfsd_stats data structure does not need to be available to
userspace; no kernel interface uses it. So move it inside #ifdef
__KERNEL__ and the warning goes away.

Signed-off-by: Greg Banks <[email protected]>
---

include/linux/nfsd/stats.h | 9 +++++----
1 file changed, 5 insertions(+), 4 deletions(-)

Index: bfields/include/linux/nfsd/stats.h
===================================================================
--- bfields.orig/include/linux/nfsd/stats.h
+++ bfields/include/linux/nfsd/stats.h
@@ -11,6 +11,11 @@

#include <linux/nfs4.h>

+/* thread usage wraps very million seconds (approx one fortnight) */
+#define NFSD_USAGE_WRAP (HZ*1000000)
+
+#ifdef __KERNEL__
+
struct nfsd_stats {
unsigned int rchits; /* repcache hits */
unsigned int rcmisses; /* repcache hits */
@@ -35,10 +40,6 @@ struct nfsd_stats {

};

-/* thread usage wraps very million seconds (approx one fortnight) */
-#define NFSD_USAGE_WRAP (HZ*1000000)
-
-#ifdef __KERNEL__

extern struct nfsd_stats nfsdstats;
extern struct svc_stat nfsd_svcstats;


--
Greg Banks, P.Engineer, SGI Australian Software Group.
the brightly coloured sporks of revolution.
I don't speak for SGI.



2009-03-27 23:48:53

by J. Bruce Fields

[permalink] [raw]
Subject: Re: [PATCH] Fix a build warning about leaking CONFIG_NFSD to userspace.

On Fri, Mar 27, 2009 at 02:32:47AM +1100, Greg Banks wrote:
> Fix a build warning about leaking CONFIG_NFSD to userspace.
>
> The nfsd_stats data structure does not need to be available to
> userspace; no kernel interface uses it. So move it inside #ifdef
> __KERNEL__ and the warning goes away.
>
> Signed-off-by: Greg Banks <[email protected]>

Thanks, applied.--b.

> ---
>
> include/linux/nfsd/stats.h | 9 +++++----
> 1 file changed, 5 insertions(+), 4 deletions(-)
>
> Index: bfields/include/linux/nfsd/stats.h
> ===================================================================
> --- bfields.orig/include/linux/nfsd/stats.h
> +++ bfields/include/linux/nfsd/stats.h
> @@ -11,6 +11,11 @@
>
> #include <linux/nfs4.h>
>
> +/* thread usage wraps very million seconds (approx one fortnight) */
> +#define NFSD_USAGE_WRAP (HZ*1000000)
> +
> +#ifdef __KERNEL__
> +
> struct nfsd_stats {
> unsigned int rchits; /* repcache hits */
> unsigned int rcmisses; /* repcache hits */
> @@ -35,10 +40,6 @@ struct nfsd_stats {
>
> };
>
> -/* thread usage wraps very million seconds (approx one fortnight) */
> -#define NFSD_USAGE_WRAP (HZ*1000000)
> -
> -#ifdef __KERNEL__
>
> extern struct nfsd_stats nfsdstats;
> extern struct svc_stat nfsd_svcstats;
>
>
> --
> Greg Banks, P.Engineer, SGI Australian Software Group.
> the brightly coloured sporks of revolution.
> I don't speak for SGI.
>