Re: [PATCH net-2.6.25] Cleanup IN_DEV_MFORWARD macro

2007-12-11 Thread David Miller
From: Pavel Emelyanov [EMAIL PROTECTED]
Date: Fri, 07 Dec 2007 19:19:38 +0300

 This is essentially IN_DEV_ANDCONF with proper arguments.
 
 Signed-off-by: Pavel Emelyanov [EMAIL PROTECTED]

Applied, thanks!
--
To unsubscribe from this list: send the line unsubscribe netdev in
the body of a message to [EMAIL PROTECTED]
More majordomo info at  http://vger.kernel.org/majordomo-info.html


[PATCH net-2.6.25] Cleanup IN_DEV_MFORWARD macro

2007-12-07 Thread Pavel Emelyanov
This is essentially IN_DEV_ANDCONF with proper arguments.

Signed-off-by: Pavel Emelyanov [EMAIL PROTECTED]

---

diff --git a/include/linux/inetdevice.h b/include/linux/inetdevice.h
index dd093ea..962a062 100644
--- a/include/linux/inetdevice.h
+++ b/include/linux/inetdevice.h
@@ -78,9 +78,7 @@ static inline void ipv4_devconf_setall(struct in_device 
*in_dev)
(max(IPV4_DEVCONF_ALL(attr), IN_DEV_CONF_GET((in_dev), attr)))
 
 #define IN_DEV_FORWARD(in_dev) IN_DEV_CONF_GET((in_dev), FORWARDING)
-#define IN_DEV_MFORWARD(in_dev)
(IPV4_DEVCONF_ALL(MC_FORWARDING)  \
-IPV4_DEVCONF((in_dev)-cnf, \
- MC_FORWARDING))
+#define IN_DEV_MFORWARD(in_dev)IN_DEV_ANDCONF((in_dev), 
MC_FORWARDING)
 #define IN_DEV_RPFILTER(in_dev)IN_DEV_ANDCONF((in_dev), 
RP_FILTER)
 #define IN_DEV_SOURCE_ROUTE(in_dev)IN_DEV_ANDCONF((in_dev), \
   ACCEPT_SOURCE_ROUTE)
-- 
1.5.3.4

--
To unsubscribe from this list: send the line unsubscribe netdev in
the body of a message to [EMAIL PROTECTED]
More majordomo info at  http://vger.kernel.org/majordomo-info.html


Re: [PATCH net-2.6.25] Cleanup IN_DEV_MFORWARD macro

2007-12-07 Thread Herbert Xu
On Fri, Dec 07, 2007 at 07:19:38PM +0300, Pavel Emelyanov wrote:
 This is essentially IN_DEV_ANDCONF with proper arguments.
 
 Signed-off-by: Pavel Emelyanov [EMAIL PROTECTED]

Acked-by: Herbert Xu [EMAIL PROTECTED]

Thanks Pavel! I must have written that one before writing the
AND macro :)

Cheers,
-- 
Visit Openswan at http://www.openswan.org/
Email: Herbert Xu ~{PmVHI~} [EMAIL PROTECTED]
Home Page: http://gondor.apana.org.au/~herbert/
PGP Key: http://gondor.apana.org.au/~herbert/pubkey.txt
--
To unsubscribe from this list: send the line unsubscribe netdev in
the body of a message to [EMAIL PROTECTED]
More majordomo info at  http://vger.kernel.org/majordomo-info.html