mirror of https://gitee.com/openkylin/linux.git
Merge master.kernel.org:/pub/scm/linux/kernel/git/davem/net-2.6
This commit is contained in:
commit
92e52b2e82
|
@ -66,8 +66,8 @@
|
||||||
|
|
||||||
#define DRV_MODULE_NAME "tg3"
|
#define DRV_MODULE_NAME "tg3"
|
||||||
#define PFX DRV_MODULE_NAME ": "
|
#define PFX DRV_MODULE_NAME ": "
|
||||||
#define DRV_MODULE_VERSION "3.34"
|
#define DRV_MODULE_VERSION "3.35"
|
||||||
#define DRV_MODULE_RELDATE "July 25, 2005"
|
#define DRV_MODULE_RELDATE "August 6, 2005"
|
||||||
|
|
||||||
#define TG3_DEF_MAC_MODE 0
|
#define TG3_DEF_MAC_MODE 0
|
||||||
#define TG3_DEF_RX_MODE 0
|
#define TG3_DEF_RX_MODE 0
|
||||||
|
@ -10421,6 +10421,12 @@ static int __devinit tg3_init_one(struct pci_dev *pdev,
|
||||||
|
|
||||||
tg3_init_coal(tp);
|
tg3_init_coal(tp);
|
||||||
|
|
||||||
|
/* Now that we have fully setup the chip, save away a snapshot
|
||||||
|
* of the PCI config space. We need to restore this after
|
||||||
|
* GRC_MISC_CFG core clock resets and some resume events.
|
||||||
|
*/
|
||||||
|
pci_save_state(tp->pdev);
|
||||||
|
|
||||||
err = register_netdev(dev);
|
err = register_netdev(dev);
|
||||||
if (err) {
|
if (err) {
|
||||||
printk(KERN_ERR PFX "Cannot register net device, "
|
printk(KERN_ERR PFX "Cannot register net device, "
|
||||||
|
@ -10430,12 +10436,6 @@ static int __devinit tg3_init_one(struct pci_dev *pdev,
|
||||||
|
|
||||||
pci_set_drvdata(pdev, dev);
|
pci_set_drvdata(pdev, dev);
|
||||||
|
|
||||||
/* Now that we have fully setup the chip, save away a snapshot
|
|
||||||
* of the PCI config space. We need to restore this after
|
|
||||||
* GRC_MISC_CFG core clock resets and some resume events.
|
|
||||||
*/
|
|
||||||
pci_save_state(tp->pdev);
|
|
||||||
|
|
||||||
printk(KERN_INFO "%s: Tigon3 [partno(%s) rev %04x PHY(%s)] (PCI%s:%s:%s) %sBaseT Ethernet ",
|
printk(KERN_INFO "%s: Tigon3 [partno(%s) rev %04x PHY(%s)] (PCI%s:%s:%s) %sBaseT Ethernet ",
|
||||||
dev->name,
|
dev->name,
|
||||||
tp->board_part_number,
|
tp->board_part_number,
|
||||||
|
|
|
@ -12,15 +12,13 @@
|
||||||
#define NETLINK_NFLOG 5 /* netfilter/iptables ULOG */
|
#define NETLINK_NFLOG 5 /* netfilter/iptables ULOG */
|
||||||
#define NETLINK_XFRM 6 /* ipsec */
|
#define NETLINK_XFRM 6 /* ipsec */
|
||||||
#define NETLINK_SELINUX 7 /* SELinux event notifications */
|
#define NETLINK_SELINUX 7 /* SELinux event notifications */
|
||||||
#define NETLINK_ARPD 8
|
#define NETLINK_ISCSI 8 /* Open-iSCSI */
|
||||||
#define NETLINK_AUDIT 9 /* auditing */
|
#define NETLINK_AUDIT 9 /* auditing */
|
||||||
#define NETLINK_FIB_LOOKUP 10
|
#define NETLINK_FIB_LOOKUP 10
|
||||||
#define NETLINK_ROUTE6 11 /* af_inet6 route comm channel */
|
|
||||||
#define NETLINK_NETFILTER 12 /* netfilter subsystem */
|
#define NETLINK_NETFILTER 12 /* netfilter subsystem */
|
||||||
#define NETLINK_IP6_FW 13
|
#define NETLINK_IP6_FW 13
|
||||||
#define NETLINK_DNRTMSG 14 /* DECnet routing messages */
|
#define NETLINK_DNRTMSG 14 /* DECnet routing messages */
|
||||||
#define NETLINK_KOBJECT_UEVENT 15 /* Kernel messages to userspace */
|
#define NETLINK_KOBJECT_UEVENT 15 /* Kernel messages to userspace */
|
||||||
#define NETLINK_TAPBASE 16 /* 16 to 31 are ethertap */
|
|
||||||
|
|
||||||
#define MAX_LINKS 32
|
#define MAX_LINKS 32
|
||||||
|
|
||||||
|
|
|
@ -936,8 +936,7 @@ int icmp_rcv(struct sk_buff *skb)
|
||||||
case CHECKSUM_HW:
|
case CHECKSUM_HW:
|
||||||
if (!(u16)csum_fold(skb->csum))
|
if (!(u16)csum_fold(skb->csum))
|
||||||
break;
|
break;
|
||||||
NETDEBUG(if (net_ratelimit())
|
LIMIT_NETDEBUG(printk(KERN_DEBUG "icmp v4 hw csum failure\n"));
|
||||||
printk(KERN_DEBUG "icmp v4 hw csum failure\n"));
|
|
||||||
case CHECKSUM_NONE:
|
case CHECKSUM_NONE:
|
||||||
if ((u16)csum_fold(skb_checksum(skb, 0, skb->len, 0)))
|
if ((u16)csum_fold(skb_checksum(skb, 0, skb->len, 0)))
|
||||||
goto error;
|
goto error;
|
||||||
|
|
|
@ -377,7 +377,7 @@ static struct ipq *ip_frag_create(unsigned hash, struct iphdr *iph, u32 user)
|
||||||
return ip_frag_intern(hash, qp);
|
return ip_frag_intern(hash, qp);
|
||||||
|
|
||||||
out_nomem:
|
out_nomem:
|
||||||
NETDEBUG(if (net_ratelimit()) printk(KERN_ERR "ip_frag_create: no memory left !\n"));
|
LIMIT_NETDEBUG(printk(KERN_ERR "ip_frag_create: no memory left !\n"));
|
||||||
return NULL;
|
return NULL;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
@ -625,10 +625,8 @@ static struct sk_buff *ip_frag_reasm(struct ipq *qp, struct net_device *dev)
|
||||||
return head;
|
return head;
|
||||||
|
|
||||||
out_nomem:
|
out_nomem:
|
||||||
NETDEBUG(if (net_ratelimit())
|
LIMIT_NETDEBUG(printk(KERN_ERR "IP: queue_glue: no memory for gluing "
|
||||||
printk(KERN_ERR
|
"queue %p\n", qp));
|
||||||
"IP: queue_glue: no memory for gluing queue %p\n",
|
|
||||||
qp));
|
|
||||||
goto out_fail;
|
goto out_fail;
|
||||||
out_oversize:
|
out_oversize:
|
||||||
if (net_ratelimit())
|
if (net_ratelimit())
|
||||||
|
|
|
@ -848,6 +848,9 @@ int ip_setsockopt(struct sock *sk, int level, int optname, char __user *optval,
|
||||||
|
|
||||||
case IP_IPSEC_POLICY:
|
case IP_IPSEC_POLICY:
|
||||||
case IP_XFRM_POLICY:
|
case IP_XFRM_POLICY:
|
||||||
|
err = -EPERM;
|
||||||
|
if (!capable(CAP_NET_ADMIN))
|
||||||
|
break;
|
||||||
err = xfrm_user_policy(sk, optname, optval, optlen);
|
err = xfrm_user_policy(sk, optname, optval, optlen);
|
||||||
break;
|
break;
|
||||||
|
|
||||||
|
|
|
@ -1494,10 +1494,9 @@ int tcp_v4_conn_request(struct sock *sk, struct sk_buff *skb)
|
||||||
* to destinations, already remembered
|
* to destinations, already remembered
|
||||||
* to the moment of synflood.
|
* to the moment of synflood.
|
||||||
*/
|
*/
|
||||||
NETDEBUG(if (net_ratelimit()) \
|
LIMIT_NETDEBUG(printk(KERN_DEBUG "TCP: drop open "
|
||||||
printk(KERN_DEBUG "TCP: drop open "
|
|
||||||
"request from %u.%u."
|
"request from %u.%u."
|
||||||
"%u.%u/%u\n", \
|
"%u.%u/%u\n",
|
||||||
NIPQUAD(saddr),
|
NIPQUAD(saddr),
|
||||||
ntohs(skb->h.th->source)));
|
ntohs(skb->h.th->source)));
|
||||||
dst_release(dst);
|
dst_release(dst);
|
||||||
|
@ -1627,8 +1626,7 @@ static int tcp_v4_checksum_init(struct sk_buff *skb)
|
||||||
skb->nh.iph->daddr, skb->csum))
|
skb->nh.iph->daddr, skb->csum))
|
||||||
return 0;
|
return 0;
|
||||||
|
|
||||||
NETDEBUG(if (net_ratelimit())
|
LIMIT_NETDEBUG(printk(KERN_DEBUG "hw tcp v4 csum failed\n"));
|
||||||
printk(KERN_DEBUG "hw tcp v4 csum failed\n"));
|
|
||||||
skb->ip_summed = CHECKSUM_NONE;
|
skb->ip_summed = CHECKSUM_NONE;
|
||||||
}
|
}
|
||||||
if (skb->len <= 76) {
|
if (skb->len <= 76) {
|
||||||
|
|
|
@ -628,7 +628,7 @@ int udp_sendmsg(struct kiocb *iocb, struct sock *sk, struct msghdr *msg,
|
||||||
/* ... which is an evident application bug. --ANK */
|
/* ... which is an evident application bug. --ANK */
|
||||||
release_sock(sk);
|
release_sock(sk);
|
||||||
|
|
||||||
NETDEBUG(if (net_ratelimit()) printk(KERN_DEBUG "udp cork app bug 2\n"));
|
LIMIT_NETDEBUG(printk(KERN_DEBUG "udp cork app bug 2\n"));
|
||||||
err = -EINVAL;
|
err = -EINVAL;
|
||||||
goto out;
|
goto out;
|
||||||
}
|
}
|
||||||
|
@ -693,7 +693,7 @@ static int udp_sendpage(struct sock *sk, struct page *page, int offset,
|
||||||
if (unlikely(!up->pending)) {
|
if (unlikely(!up->pending)) {
|
||||||
release_sock(sk);
|
release_sock(sk);
|
||||||
|
|
||||||
NETDEBUG(if (net_ratelimit()) printk(KERN_DEBUG "udp cork app bug 3\n"));
|
LIMIT_NETDEBUG(printk(KERN_DEBUG "udp cork app bug 3\n"));
|
||||||
return -EINVAL;
|
return -EINVAL;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
@ -1102,7 +1102,7 @@ static int udp_checksum_init(struct sk_buff *skb, struct udphdr *uh,
|
||||||
skb->ip_summed = CHECKSUM_UNNECESSARY;
|
skb->ip_summed = CHECKSUM_UNNECESSARY;
|
||||||
if (!udp_check(uh, ulen, saddr, daddr, skb->csum))
|
if (!udp_check(uh, ulen, saddr, daddr, skb->csum))
|
||||||
return 0;
|
return 0;
|
||||||
NETDEBUG(if (net_ratelimit()) printk(KERN_DEBUG "udp v4 hw csum failure.\n"));
|
LIMIT_NETDEBUG(printk(KERN_DEBUG "udp v4 hw csum failure.\n"));
|
||||||
skb->ip_summed = CHECKSUM_NONE;
|
skb->ip_summed = CHECKSUM_NONE;
|
||||||
}
|
}
|
||||||
if (skb->ip_summed != CHECKSUM_UNNECESSARY)
|
if (skb->ip_summed != CHECKSUM_UNNECESSARY)
|
||||||
|
@ -1181,8 +1181,7 @@ int udp_rcv(struct sk_buff *skb)
|
||||||
return(0);
|
return(0);
|
||||||
|
|
||||||
short_packet:
|
short_packet:
|
||||||
NETDEBUG(if (net_ratelimit())
|
LIMIT_NETDEBUG(printk(KERN_DEBUG "UDP: short packet: From %u.%u.%u.%u:%u %d/%d to %u.%u.%u.%u:%u\n",
|
||||||
printk(KERN_DEBUG "UDP: short packet: From %u.%u.%u.%u:%u %d/%d to %u.%u.%u.%u:%u\n",
|
|
||||||
NIPQUAD(saddr),
|
NIPQUAD(saddr),
|
||||||
ntohs(uh->source),
|
ntohs(uh->source),
|
||||||
ulen,
|
ulen,
|
||||||
|
@ -1199,8 +1198,7 @@ int udp_rcv(struct sk_buff *skb)
|
||||||
* RFC1122: OK. Discards the bad packet silently (as far as
|
* RFC1122: OK. Discards the bad packet silently (as far as
|
||||||
* the network is concerned, anyway) as per 4.1.3.4 (MUST).
|
* the network is concerned, anyway) as per 4.1.3.4 (MUST).
|
||||||
*/
|
*/
|
||||||
NETDEBUG(if (net_ratelimit())
|
LIMIT_NETDEBUG(printk(KERN_DEBUG "UDP: bad checksum. From %d.%d.%d.%d:%d to %d.%d.%d.%d:%d ulen %d\n",
|
||||||
printk(KERN_DEBUG "UDP: bad checksum. From %d.%d.%d.%d:%d to %d.%d.%d.%d:%d ulen %d\n",
|
|
||||||
NIPQUAD(saddr),
|
NIPQUAD(saddr),
|
||||||
ntohs(uh->source),
|
ntohs(uh->source),
|
||||||
NIPQUAD(daddr),
|
NIPQUAD(daddr),
|
||||||
|
|
|
@ -504,6 +504,9 @@ int ipv6_setsockopt(struct sock *sk, int level, int optname,
|
||||||
break;
|
break;
|
||||||
case IPV6_IPSEC_POLICY:
|
case IPV6_IPSEC_POLICY:
|
||||||
case IPV6_XFRM_POLICY:
|
case IPV6_XFRM_POLICY:
|
||||||
|
retv = -EPERM;
|
||||||
|
if (!capable(CAP_NET_ADMIN))
|
||||||
|
break;
|
||||||
retv = xfrm_user_policy(sk, optname, optval, optlen);
|
retv = xfrm_user_policy(sk, optname, optval, optlen);
|
||||||
break;
|
break;
|
||||||
|
|
||||||
|
|
Loading…
Reference in New Issue