Merge master.kernel.org:/pub/scm/linux/kernel/git/davem/net-2.6
This commit is contained in:
commit
6b6a93c687
@ -88,7 +88,7 @@ static struct w1_master * w1_alloc_dev(u32 id, int slave_count, int slave_ttl,
|
|||||||
|
|
||||||
dev->groups = 23;
|
dev->groups = 23;
|
||||||
dev->seq = 1;
|
dev->seq = 1;
|
||||||
dev->nls = netlink_kernel_create(NETLINK_NFLOG, NULL);
|
dev->nls = netlink_kernel_create(NETLINK_W1, NULL);
|
||||||
if (!dev->nls) {
|
if (!dev->nls) {
|
||||||
printk(KERN_ERR "Failed to create new netlink socket(%u) for w1 master %s.\n",
|
printk(KERN_ERR "Failed to create new netlink socket(%u) for w1 master %s.\n",
|
||||||
NETLINK_NFLOG, dev->dev.bus_id);
|
NETLINK_NFLOG, dev->dev.bus_id);
|
||||||
|
@ -5,7 +5,7 @@
|
|||||||
#include <linux/types.h>
|
#include <linux/types.h>
|
||||||
|
|
||||||
#define NETLINK_ROUTE 0 /* Routing/device hook */
|
#define NETLINK_ROUTE 0 /* Routing/device hook */
|
||||||
#define NETLINK_SKIP 1 /* Reserved for ENskip */
|
#define NETLINK_W1 1 /* 1-wire subsystem */
|
||||||
#define NETLINK_USERSOCK 2 /* Reserved for user mode socket protocols */
|
#define NETLINK_USERSOCK 2 /* Reserved for user mode socket protocols */
|
||||||
#define NETLINK_FIREWALL 3 /* Firewalling hook */
|
#define NETLINK_FIREWALL 3 /* Firewalling hook */
|
||||||
#define NETLINK_TCPDIAG 4 /* TCP socket monitoring */
|
#define NETLINK_TCPDIAG 4 /* TCP socket monitoring */
|
||||||
|
@ -1123,7 +1123,7 @@ static inline int ip6ip6_register(void)
|
|||||||
|
|
||||||
static inline int ip6ip6_unregister(void)
|
static inline int ip6ip6_unregister(void)
|
||||||
{
|
{
|
||||||
return xfrm6_tunnel_unregister(&ip6ip6_handler);
|
return xfrm6_tunnel_deregister(&ip6ip6_handler);
|
||||||
}
|
}
|
||||||
#else
|
#else
|
||||||
static struct inet6_protocol xfrm6_tunnel_protocol = {
|
static struct inet6_protocol xfrm6_tunnel_protocol = {
|
||||||
|
@ -209,12 +209,14 @@ META_COLLECTOR(int_maclen)
|
|||||||
* Netfilter
|
* Netfilter
|
||||||
**************************************************************************/
|
**************************************************************************/
|
||||||
|
|
||||||
#ifdef CONFIG_NETFILTER
|
|
||||||
META_COLLECTOR(int_nfmark)
|
META_COLLECTOR(int_nfmark)
|
||||||
{
|
{
|
||||||
|
#ifdef CONFIG_NETFILTER
|
||||||
dst->value = skb->nfmark;
|
dst->value = skb->nfmark;
|
||||||
}
|
#else
|
||||||
|
dst->value = 0;
|
||||||
#endif
|
#endif
|
||||||
|
}
|
||||||
|
|
||||||
/**************************************************************************
|
/**************************************************************************
|
||||||
* Traffic Control
|
* Traffic Control
|
||||||
@ -229,15 +231,17 @@ META_COLLECTOR(int_tcindex)
|
|||||||
* Routing
|
* Routing
|
||||||
**************************************************************************/
|
**************************************************************************/
|
||||||
|
|
||||||
#ifdef CONFIG_NET_CLS_ROUTE
|
|
||||||
META_COLLECTOR(int_rtclassid)
|
META_COLLECTOR(int_rtclassid)
|
||||||
{
|
{
|
||||||
if (unlikely(skb->dst == NULL))
|
if (unlikely(skb->dst == NULL))
|
||||||
*err = -1;
|
*err = -1;
|
||||||
else
|
else
|
||||||
|
#ifdef CONFIG_NET_CLS_ROUTE
|
||||||
dst->value = skb->dst->tclassid;
|
dst->value = skb->dst->tclassid;
|
||||||
}
|
#else
|
||||||
|
dst->value = 0;
|
||||||
#endif
|
#endif
|
||||||
|
}
|
||||||
|
|
||||||
META_COLLECTOR(int_rtiif)
|
META_COLLECTOR(int_rtiif)
|
||||||
{
|
{
|
||||||
@ -487,13 +491,9 @@ static struct meta_ops __meta_ops[TCF_META_TYPE_MAX+1][TCF_META_ID_MAX+1] = {
|
|||||||
[META_ID(PKTLEN)] = META_FUNC(int_pktlen),
|
[META_ID(PKTLEN)] = META_FUNC(int_pktlen),
|
||||||
[META_ID(DATALEN)] = META_FUNC(int_datalen),
|
[META_ID(DATALEN)] = META_FUNC(int_datalen),
|
||||||
[META_ID(MACLEN)] = META_FUNC(int_maclen),
|
[META_ID(MACLEN)] = META_FUNC(int_maclen),
|
||||||
#ifdef CONFIG_NETFILTER
|
|
||||||
[META_ID(NFMARK)] = META_FUNC(int_nfmark),
|
[META_ID(NFMARK)] = META_FUNC(int_nfmark),
|
||||||
#endif
|
|
||||||
[META_ID(TCINDEX)] = META_FUNC(int_tcindex),
|
[META_ID(TCINDEX)] = META_FUNC(int_tcindex),
|
||||||
#ifdef CONFIG_NET_CLS_ROUTE
|
|
||||||
[META_ID(RTCLASSID)] = META_FUNC(int_rtclassid),
|
[META_ID(RTCLASSID)] = META_FUNC(int_rtclassid),
|
||||||
#endif
|
|
||||||
[META_ID(RTIIF)] = META_FUNC(int_rtiif),
|
[META_ID(RTIIF)] = META_FUNC(int_rtiif),
|
||||||
[META_ID(SK_FAMILY)] = META_FUNC(int_sk_family),
|
[META_ID(SK_FAMILY)] = META_FUNC(int_sk_family),
|
||||||
[META_ID(SK_STATE)] = META_FUNC(int_sk_state),
|
[META_ID(SK_STATE)] = META_FUNC(int_sk_state),
|
||||||
|
Loading…
Reference in New Issue
Block a user