netdev.vger.kernel.org archive mirror
 help / color / mirror / Atom feed
* [PATCH 2/3] net: sunrpc: kill unused macros
@ 2010-12-15  6:47 Shan Wei
       [not found] ` <4D086478.7090106-BthXqXjhjHXQFUHtdCDX3A@public.gmane.org>
  0 siblings, 1 reply; 2+ messages in thread
From: Shan Wei @ 2010-12-15  6:47 UTC (permalink / raw)
  To: bfields-uC3wQj2KruNg9hUCZPvPmw, neilb-l3A5Bk7waGM,
	Trond.Myklebust-HgOvQuBEEgTQT0dZR+AlfA,
	steved-H+wXaHxf7aLQT0dZR+AlfA, tj-DgEjT+Ai2ygdnm+yROfE0A
  Cc: David Miller, linux-nfs-u79uwXL29TY76Z2rM5mHXA, Network-Maillist

These macros never be used for several years.


Signed-off-by: Shan Wei <shanwei-BthXqXjhjHXQFUHtdCDX3A@public.gmane.org>
---
 net/sunrpc/auth_gss/svcauth_gss.c |    2 --
 net/sunrpc/svcauth.c              |    1 -
 net/sunrpc/svcauth_unix.c         |    2 --
 3 files changed, 0 insertions(+), 5 deletions(-)

diff --git a/net/sunrpc/auth_gss/svcauth_gss.c b/net/sunrpc/auth_gss/svcauth_gss.c
index dec2a6f..bcdae78 100644
--- a/net/sunrpc/auth_gss/svcauth_gss.c
+++ b/net/sunrpc/auth_gss/svcauth_gss.c
@@ -67,7 +67,6 @@ static int netobj_equal(struct xdr_netobj *a, struct xdr_netobj *b)
 
 #define	RSI_HASHBITS	6
 #define	RSI_HASHMAX	(1<<RSI_HASHBITS)
-#define	RSI_HASHMASK	(RSI_HASHMAX-1)
 
 struct rsi {
 	struct cache_head	h;
@@ -319,7 +318,6 @@ static struct rsi *rsi_update(struct rsi *new, struct rsi *old)
 
 #define	RSC_HASHBITS	10
 #define	RSC_HASHMAX	(1<<RSC_HASHBITS)
-#define	RSC_HASHMASK	(RSC_HASHMAX-1)
 
 #define GSS_SEQ_WIN	128
 
diff --git a/net/sunrpc/svcauth.c b/net/sunrpc/svcauth.c
index 4e9393c..7963569 100644
--- a/net/sunrpc/svcauth.c
+++ b/net/sunrpc/svcauth.c
@@ -118,7 +118,6 @@ EXPORT_SYMBOL_GPL(svc_auth_unregister);
 
 #define	DN_HASHBITS	6
 #define	DN_HASHMAX	(1<<DN_HASHBITS)
-#define	DN_HASHMASK	(DN_HASHMAX-1)
 
 static struct hlist_head	auth_domain_table[DN_HASHMAX];
 static spinlock_t	auth_domain_lock =
diff --git a/net/sunrpc/svcauth_unix.c b/net/sunrpc/svcauth_unix.c
index 560677d..a04ac91 100644
--- a/net/sunrpc/svcauth_unix.c
+++ b/net/sunrpc/svcauth_unix.c
@@ -85,7 +85,6 @@ static void svcauth_unix_domain_release(struct auth_domain *dom)
  */
 #define	IP_HASHBITS	8
 #define	IP_HASHMAX	(1<<IP_HASHBITS)
-#define	IP_HASHMASK	(IP_HASHMAX-1)
 
 struct ip_map {
 	struct cache_head	h;
@@ -497,7 +496,6 @@ svcauth_unix_info_release(struct svc_xprt *xpt)
  */
 #define	GID_HASHBITS	8
 #define	GID_HASHMAX	(1<<GID_HASHBITS)
-#define	GID_HASHMASK	(GID_HASHMAX - 1)
 
 struct unix_gid {
 	struct cache_head	h;
-- 
1.6.3.3
--
To unsubscribe from this list: send the line "unsubscribe linux-nfs" in
the body of a message to majordomo-u79uwXL29TY76Z2rM5mHXA@public.gmane.org
More majordomo info at  http://vger.kernel.org/majordomo-info.html

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

* Re: [PATCH 2/3] net: sunrpc: kill unused macros
       [not found] ` <4D086478.7090106-BthXqXjhjHXQFUHtdCDX3A@public.gmane.org>
@ 2010-12-15 15:52   ` J. Bruce Fields
  0 siblings, 0 replies; 2+ messages in thread
From: J. Bruce Fields @ 2010-12-15 15:52 UTC (permalink / raw)
  To: Shan Wei
  Cc: neilb-l3A5Bk7waGM, Trond.Myklebust-HgOvQuBEEgTQT0dZR+AlfA,
	steved-H+wXaHxf7aLQT0dZR+AlfA, tj-DgEjT+Ai2ygdnm+yROfE0A,
	David Miller, linux-nfs-u79uwXL29TY76Z2rM5mHXA, Network-Maillist

On Wed, Dec 15, 2010 at 02:47:20PM +0800, Shan Wei wrote:
> These macros never be used for several years.

Applying for 2.6.38.--b.

> 
> 
> Signed-off-by: Shan Wei <shanwei-BthXqXjhjHXQFUHtdCDX3A@public.gmane.org>
> ---
>  net/sunrpc/auth_gss/svcauth_gss.c |    2 --
>  net/sunrpc/svcauth.c              |    1 -
>  net/sunrpc/svcauth_unix.c         |    2 --
>  3 files changed, 0 insertions(+), 5 deletions(-)
> 
> diff --git a/net/sunrpc/auth_gss/svcauth_gss.c b/net/sunrpc/auth_gss/svcauth_gss.c
> index dec2a6f..bcdae78 100644
> --- a/net/sunrpc/auth_gss/svcauth_gss.c
> +++ b/net/sunrpc/auth_gss/svcauth_gss.c
> @@ -67,7 +67,6 @@ static int netobj_equal(struct xdr_netobj *a, struct xdr_netobj *b)
>  
>  #define	RSI_HASHBITS	6
>  #define	RSI_HASHMAX	(1<<RSI_HASHBITS)
> -#define	RSI_HASHMASK	(RSI_HASHMAX-1)
>  
>  struct rsi {
>  	struct cache_head	h;
> @@ -319,7 +318,6 @@ static struct rsi *rsi_update(struct rsi *new, struct rsi *old)
>  
>  #define	RSC_HASHBITS	10
>  #define	RSC_HASHMAX	(1<<RSC_HASHBITS)
> -#define	RSC_HASHMASK	(RSC_HASHMAX-1)
>  
>  #define GSS_SEQ_WIN	128
>  
> diff --git a/net/sunrpc/svcauth.c b/net/sunrpc/svcauth.c
> index 4e9393c..7963569 100644
> --- a/net/sunrpc/svcauth.c
> +++ b/net/sunrpc/svcauth.c
> @@ -118,7 +118,6 @@ EXPORT_SYMBOL_GPL(svc_auth_unregister);
>  
>  #define	DN_HASHBITS	6
>  #define	DN_HASHMAX	(1<<DN_HASHBITS)
> -#define	DN_HASHMASK	(DN_HASHMAX-1)
>  
>  static struct hlist_head	auth_domain_table[DN_HASHMAX];
>  static spinlock_t	auth_domain_lock =
> diff --git a/net/sunrpc/svcauth_unix.c b/net/sunrpc/svcauth_unix.c
> index 560677d..a04ac91 100644
> --- a/net/sunrpc/svcauth_unix.c
> +++ b/net/sunrpc/svcauth_unix.c
> @@ -85,7 +85,6 @@ static void svcauth_unix_domain_release(struct auth_domain *dom)
>   */
>  #define	IP_HASHBITS	8
>  #define	IP_HASHMAX	(1<<IP_HASHBITS)
> -#define	IP_HASHMASK	(IP_HASHMAX-1)
>  
>  struct ip_map {
>  	struct cache_head	h;
> @@ -497,7 +496,6 @@ svcauth_unix_info_release(struct svc_xprt *xpt)
>   */
>  #define	GID_HASHBITS	8
>  #define	GID_HASHMAX	(1<<GID_HASHBITS)
> -#define	GID_HASHMASK	(GID_HASHMAX - 1)
>  
>  struct unix_gid {
>  	struct cache_head	h;
> -- 
> 1.6.3.3
--
To unsubscribe from this list: send the line "unsubscribe linux-nfs" in
the body of a message to majordomo-u79uwXL29TY76Z2rM5mHXA@public.gmane.org
More majordomo info at  http://vger.kernel.org/majordomo-info.html

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

end of thread, other threads:[~2010-12-15 15:52 UTC | newest]

Thread overview: 2+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2010-12-15  6:47 [PATCH 2/3] net: sunrpc: kill unused macros Shan Wei
     [not found] ` <4D086478.7090106-BthXqXjhjHXQFUHtdCDX3A@public.gmane.org>
2010-12-15 15:52   ` J. Bruce Fields

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).