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
nexedi
linux
Commits
201a2451
Commit
201a2451
authored
Jan 16, 2003
by
Scott Feldman
Committed by
Jeff Garzik
Jan 16, 2003
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
[netdrvr e100] fix TxDescriptor bit setting
parent
28382afc
Changes
1
Show whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
8 additions
and
8 deletions
+8
-8
drivers/net/e100/e100_main.c
drivers/net/e100/e100_main.c
+8
-8
No files found.
drivers/net/e100/e100_main.c
View file @
201a2451
...
@@ -135,7 +135,7 @@ static void e100_non_tx_background(unsigned long);
...
@@ -135,7 +135,7 @@ static void e100_non_tx_background(unsigned long);
/* Global Data structures and variables */
/* Global Data structures and variables */
char
e100_copyright
[]
__devinitdata
=
"Copyright (c) 2002 Intel Corporation"
;
char
e100_copyright
[]
__devinitdata
=
"Copyright (c) 2002 Intel Corporation"
;
char
e100_driver_version
[]
=
"2.1.29-k
1
"
;
char
e100_driver_version
[]
=
"2.1.29-k
2
"
;
const
char
*
e100_full_driver_name
=
"Intel(R) PRO/100 Network Driver"
;
const
char
*
e100_full_driver_name
=
"Intel(R) PRO/100 Network Driver"
;
char
e100_short_driver_name
[]
=
"e100"
;
char
e100_short_driver_name
[]
=
"e100"
;
static
int
e100nics
=
0
;
static
int
e100nics
=
0
;
...
@@ -1431,6 +1431,7 @@ e100_setup_tcb_pool(tcb_t *head, unsigned int qlen, struct e100_private *bdp)
...
@@ -1431,6 +1431,7 @@ e100_setup_tcb_pool(tcb_t *head, unsigned int qlen, struct e100_private *bdp)
u32
next_phys
;
/* the next phys addr */
u32
next_phys
;
/* the next phys addr */
u16
txcommand
=
CB_S_BIT
|
CB_TX_SF_BIT
;
u16
txcommand
=
CB_S_BIT
|
CB_TX_SF_BIT
;
bdp
->
tx_count
=
0
;
if
(
bdp
->
flags
&
USE_IPCB
)
{
if
(
bdp
->
flags
&
USE_IPCB
)
{
txcommand
|=
CB_IPCB_TRANSMIT
|
CB_CID_DEFAULT
;
txcommand
|=
CB_IPCB_TRANSMIT
|
CB_CID_DEFAULT
;
}
else
if
(
bdp
->
flags
&
IS_BACHELOR
)
{
}
else
if
(
bdp
->
flags
&
IS_BACHELOR
)
{
...
@@ -1876,10 +1877,8 @@ e100intr(int irq, void *dev_inst, struct pt_regs *regs)
...
@@ -1876,10 +1877,8 @@ e100intr(int irq, void *dev_inst, struct pt_regs *regs)
bdp
->
drv_stats
.
rx_intr_pkts
+=
e100_rx_srv
(
bdp
);
bdp
->
drv_stats
.
rx_intr_pkts
+=
e100_rx_srv
(
bdp
);
/* clean up after tx'ed packets */
/* clean up after tx'ed packets */
if
(
intr_status
&
(
SCB_STATUS_ACK_CNA
|
SCB_STATUS_ACK_CX
))
{
if
(
intr_status
&
(
SCB_STATUS_ACK_CNA
|
SCB_STATUS_ACK_CX
))
bdp
->
tx_count
=
0
;
/* restart tx interrupt batch count */
e100_tx_srv
(
bdp
);
e100_tx_srv
(
bdp
);
}
e100_set_intr_mask
(
bdp
);
e100_set_intr_mask
(
bdp
);
}
}
...
@@ -2187,11 +2186,12 @@ e100_prepare_xmit_buff(struct e100_private *bdp, struct sk_buff *skb)
...
@@ -2187,11 +2186,12 @@ e100_prepare_xmit_buff(struct e100_private *bdp, struct sk_buff *skb)
tcb
->
tcb_thrshld
=
bdp
->
tx_thld
;
tcb
->
tcb_thrshld
=
bdp
->
tx_thld
;
tcb
->
tcb_hdr
.
cb_cmd
|=
__constant_cpu_to_le16
(
CB_S_BIT
);
tcb
->
tcb_hdr
.
cb_cmd
|=
__constant_cpu_to_le16
(
CB_S_BIT
);
/* set the I bit on the modulo tcbs, so we will get an interrupt * to
/* Set I (Interrupt) bit on every (TX_FRAME_CNT)th packet */
* clean things up */
if
(
!
(
++
bdp
->
tx_count
%
TX_FRAME_CNT
))
if
(
!
(
++
bdp
->
tx_count
%
TX_FRAME_CNT
))
{
tcb
->
tcb_hdr
.
cb_cmd
|=
__constant_cpu_to_le16
(
CB_I_BIT
);
tcb
->
tcb_hdr
.
cb_cmd
|=
__constant_cpu_to_le16
(
CB_I_BIT
);
}
else
/* Clear I bit on other packets */
tcb
->
tcb_hdr
.
cb_cmd
&=
~
__constant_cpu_to_le16
(
CB_I_BIT
);
tcb
->
tcb_skb
=
skb
;
tcb
->
tcb_skb
=
skb
;
...
...
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