Skip to content
Projects
Groups
Snippets
Help
Loading...
Help
Support
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in
Toggle navigation
L
linux-davinci-2.6.23
Project overview
Project overview
Details
Activity
Releases
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Issues
0
Issues
0
List
Boards
Labels
Milestones
Redmine
Redmine
Merge Requests
0
Merge Requests
0
CI / CD
CI / CD
Pipelines
Jobs
Schedules
Operations
Operations
Metrics
Environments
Analytics
Analytics
CI / CD
Repository
Value Stream
Wiki
Wiki
Snippets
Snippets
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Create a new issue
Jobs
Commits
Issue Boards
Open sidebar
linux
linux-davinci-2.6.23
Commits
05980775
Commit
05980775
authored
May 30, 2006
by
Al Viro
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
[PATCH] mv643xx_eth.c NULL noise removal
Signed-off-by:
Al Viro
<
viro@zeniv.linux.org.uk
>
parent
fbd81976
Changes
1
Show whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
2 additions
and
2 deletions
+2
-2
drivers/net/mv643xx_eth.c
drivers/net/mv643xx_eth.c
+2
-2
No files found.
drivers/net/mv643xx_eth.c
View file @
05980775
...
...
@@ -1098,7 +1098,7 @@ static void eth_tx_fill_frag_descs(struct mv643xx_private *mp,
ETH_TX_ENABLE_INTERRUPT
;
mp
->
tx_skb
[
tx_index
]
=
skb
;
}
else
mp
->
tx_skb
[
tx_index
]
=
0
;
mp
->
tx_skb
[
tx_index
]
=
NULL
;
desc
=
&
mp
->
p_tx_desc_area
[
tx_index
];
desc
->
l4i_chk
=
0
;
...
...
@@ -1134,7 +1134,7 @@ static void eth_tx_submit_descs_for_skb(struct mv643xx_private *mp,
eth_tx_fill_frag_descs
(
mp
,
skb
);
length
=
skb_headlen
(
skb
);
mp
->
tx_skb
[
tx_index
]
=
0
;
mp
->
tx_skb
[
tx_index
]
=
NULL
;
}
else
{
cmd_sts
|=
ETH_ZERO_PADDING
|
ETH_TX_LAST_DESC
|
...
...
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