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
eecc0af5
Commit
eecc0af5
authored
Feb 18, 2004
by
Andrew Morton
Committed by
Stephen Hemminger
Feb 18, 2004
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
[PATCH] tulip printk warning fix
Don't assume the size of a dma_addr_t
parent
f16f29b7
Changes
1
Show whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
2 additions
and
2 deletions
+2
-2
drivers/net/tulip/interrupt.c
drivers/net/tulip/interrupt.c
+2
-2
No files found.
drivers/net/tulip/interrupt.c
View file @
eecc0af5
...
@@ -211,10 +211,10 @@ int tulip_poll(struct net_device *dev, int *budget)
...
@@ -211,10 +211,10 @@ int tulip_poll(struct net_device *dev, int *budget)
if
(
tp
->
rx_buffers
[
entry
].
mapping
!=
if
(
tp
->
rx_buffers
[
entry
].
mapping
!=
le32_to_cpu
(
tp
->
rx_ring
[
entry
].
buffer1
))
{
le32_to_cpu
(
tp
->
rx_ring
[
entry
].
buffer1
))
{
printk
(
KERN_ERR
"%s: Internal fault: The skbuff addresses "
printk
(
KERN_ERR
"%s: Internal fault: The skbuff addresses "
"do not match in tulip_rx: %08x vs. %
08
x %p / %p.
\n
"
,
"do not match in tulip_rx: %08x vs. %
ll
x %p / %p.
\n
"
,
dev
->
name
,
dev
->
name
,
le32_to_cpu
(
tp
->
rx_ring
[
entry
].
buffer1
),
le32_to_cpu
(
tp
->
rx_ring
[
entry
].
buffer1
),
tp
->
rx_buffers
[
entry
].
mapping
,
(
unsigned
long
long
)
tp
->
rx_buffers
[
entry
].
mapping
,
skb
->
head
,
temp
);
skb
->
head
,
temp
);
}
}
#endif
#endif
...
...
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