Skip to content
Projects
Groups
Snippets
Help
Loading...
Help
Support
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in / Register
Toggle navigation
L
linux
Project overview
Project overview
Details
Activity
Releases
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Issues
0
Issues
0
List
Boards
Labels
Milestones
Merge Requests
0
Merge Requests
0
Analytics
Analytics
Repository
Value Stream
Wiki
Wiki
Snippets
Snippets
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Create a new issue
Commits
Issue Boards
Open sidebar
Kirill Smelkov
linux
Commits
ab3fc403
Commit
ab3fc403
authored
May 23, 2005
by
Linus Torvalds
Browse files
Options
Browse Files
Download
Plain Diff
Merge of
rsync://rsync.kernel.org/pub/scm/linux/kernel/git/davem/net-2.6.git/
parents
f10d20c1
d1faeaeb
Changes
8
Show whitespace changes
Inline
Side-by-side
Showing
8 changed files
with
25 additions
and
40 deletions
+25
-40
crypto/internal.h
crypto/internal.h
+1
-1
drivers/net/tg3.c
drivers/net/tg3.c
+5
-3
include/linux/if_tr.h
include/linux/if_tr.h
+15
-24
include/linux/net.h
include/linux/net.h
+0
-1
include/linux/netdevice.h
include/linux/netdevice.h
+1
-1
include/linux/pci_ids.h
include/linux/pci_ids.h
+1
-0
net/ipv4/tcp_input.c
net/ipv4/tcp_input.c
+1
-10
net/ipv6/xfrm6_output.c
net/ipv6/xfrm6_output.c
+1
-0
No files found.
crypto/internal.h
View file @
ab3fc403
...
...
@@ -38,7 +38,7 @@ static inline void crypto_kunmap(void *vaddr, int out)
static
inline
void
crypto_yield
(
struct
crypto_tfm
*
tfm
)
{
if
(
!
in_
softirq
())
if
(
!
in_
atomic
())
cond_resched
();
}
...
...
drivers/net/tg3.c
View file @
ab3fc403
...
...
@@ -61,8 +61,8 @@
#define DRV_MODULE_NAME "tg3"
#define PFX DRV_MODULE_NAME ": "
#define DRV_MODULE_VERSION "3.2
7
"
#define DRV_MODULE_RELDATE "May
5
, 2005"
#define DRV_MODULE_VERSION "3.2
9
"
#define DRV_MODULE_RELDATE "May
23
, 2005"
#define TG3_DEF_MAC_MODE 0
#define TG3_DEF_RX_MODE 0
...
...
@@ -206,6 +206,8 @@ static struct pci_device_id tg3_pci_tbl[] = {
PCI_ANY_ID
,
PCI_ANY_ID
,
0
,
0
,
0UL
},
{
PCI_VENDOR_ID_BROADCOM
,
PCI_DEVICE_ID_TIGON3_5752
,
PCI_ANY_ID
,
PCI_ANY_ID
,
0
,
0
,
0UL
},
{
PCI_VENDOR_ID_BROADCOM
,
PCI_DEVICE_ID_TIGON3_5752M
,
PCI_ANY_ID
,
PCI_ANY_ID
,
0
,
0
,
0UL
},
{
PCI_VENDOR_ID_BROADCOM
,
PCI_DEVICE_ID_TIGON3_5753
,
PCI_ANY_ID
,
PCI_ANY_ID
,
0
,
0
,
0UL
},
{
PCI_VENDOR_ID_BROADCOM
,
PCI_DEVICE_ID_TIGON3_5753M
,
...
...
@@ -8994,7 +8996,7 @@ static int __devinit tg3_do_test_dma(struct tg3 *tp, u32 *buf, dma_addr_t buf_dm
return
ret
;
}
#define TEST_BUFFER_SIZE 0x
4
00
#define TEST_BUFFER_SIZE 0x
20
00
static
int
__devinit
tg3_test_dma
(
struct
tg3
*
tp
)
{
...
...
include/linux/if_tr.h
View file @
ab3fc403
...
...
@@ -19,20 +19,12 @@
#ifndef _LINUX_IF_TR_H
#define _LINUX_IF_TR_H
/* IEEE 802.5 Token-Ring magic constants. The frame sizes omit the preamble
and FCS/CRC (frame check sequence). */
#define TR_ALEN
6
/* Octets in one ethernet addr
*/
#define TR_ALEN
6
/* Octets in one token-ring addr
*/
#define TR_HLEN (sizeof(struct trh_hdr)+sizeof(struct trllc))
#define AC 0x10
#define LLC_FRAME 0x40
#if 0
#define ETH_HLEN 14 /* Total octets in header. */
#define ETH_ZLEN 60 /* Min. octets in frame sans FCS */
#define ETH_DATA_LEN 1500 /* Max. octets in payload */
#define ETH_FRAME_LEN 1514 /* Max. octets in frame sans FCS */
#endif
/* LLC and SNAP constants */
#define EXTENDED_SAP 0xAA
...
...
@@ -96,7 +88,6 @@ struct tr_statistics {
};
/* source routing stuff */
#define TR_RII 0x80
#define TR_RCF_DIR_BIT 0x80
#define TR_RCF_LEN_MASK 0x1f00
...
...
include/linux/net.h
View file @
ab3fc403
...
...
@@ -101,7 +101,6 @@ enum sock_type {
* @sk: internal networking protocol agnostic socket representation
* @wait: wait queue for several uses
* @type: socket type (%SOCK_STREAM, etc)
* @passcred: credentials (used only in Unix Sockets (aka PF_LOCAL))
*/
struct
socket
{
socket_state
state
;
...
...
include/linux/netdevice.h
View file @
ab3fc403
...
...
@@ -503,7 +503,7 @@ static inline void *netdev_priv(struct net_device *dev)
#define SET_NETDEV_DEV(net, pdev) ((net)->class_dev.dev = (pdev))
struct
packet_type
{
unsigned
short
type
;
/* This is really htons(ether_type). */
__be16
type
;
/* This is really htons(ether_type). */
struct
net_device
*
dev
;
/* NULL is wildcarded here */
int
(
*
func
)
(
struct
sk_buff
*
,
struct
net_device
*
,
struct
packet_type
*
);
...
...
include/linux/pci_ids.h
View file @
ab3fc403
...
...
@@ -2064,6 +2064,7 @@
#define PCI_VENDOR_ID_BROADCOM 0x14e4
#define PCI_DEVICE_ID_TIGON3_5752 0x1600
#define PCI_DEVICE_ID_TIGON3_5752M 0x1601
#define PCI_DEVICE_ID_TIGON3_5700 0x1644
#define PCI_DEVICE_ID_TIGON3_5701 0x1645
#define PCI_DEVICE_ID_TIGON3_5702 0x1646
...
...
net/ipv4/tcp_input.c
View file @
ab3fc403
...
...
@@ -4355,16 +4355,7 @@ int tcp_rcv_established(struct sock *sk, struct sk_buff *skb,
goto
no_ack
;
}
if
(
eaten
)
{
if
(
tcp_in_quickack_mode
(
tp
))
{
tcp_send_ack
(
sk
);
}
else
{
tcp_send_delayed_ack
(
sk
);
}
}
else
{
__tcp_ack_snd_check
(
sk
,
0
);
}
no_ack:
if
(
eaten
)
__kfree_skb
(
skb
);
...
...
net/ipv6/xfrm6_output.c
View file @
ab3fc403
...
...
@@ -84,6 +84,7 @@ static int xfrm6_tunnel_check_size(struct sk_buff *skb)
mtu
=
IPV6_MIN_MTU
;
if
(
skb
->
len
>
mtu
)
{
skb
->
dev
=
dst
->
dev
;
icmpv6_send
(
skb
,
ICMPV6_PKT_TOOBIG
,
0
,
mtu
,
skb
->
dev
);
ret
=
-
EMSGSIZE
;
}
...
...
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment