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
82f1fc07
Commit
82f1fc07
authored
Jan 10, 2003
by
Alan Cox
Committed by
Linus Torvalds
Jan 10, 2003
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
[PATCH] padto - fix fmv18xusing skb_padto
parent
dec03d92
Changes
1
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
9 additions
and
1 deletion
+9
-1
drivers/net/fmv18x.c
drivers/net/fmv18x.c
+9
-1
No files found.
drivers/net/fmv18x.c
View file @
82f1fc07
...
...
@@ -366,7 +366,7 @@ static int net_send_packet(struct sk_buff *skb, struct net_device *dev)
{
struct
net_local
*
lp
=
dev
->
priv
;
int
ioaddr
=
dev
->
base_addr
;
short
length
=
ETH_ZLEN
<
skb
->
len
?
skb
->
len
:
ETH_ZLEN
;
short
length
=
skb
->
len
;
unsigned
char
*
buf
=
skb
->
data
;
unsigned
long
flags
;
...
...
@@ -378,6 +378,14 @@ static int net_send_packet(struct sk_buff *skb, struct net_device *dev)
dev
->
name
,
length
);
return
1
;
}
if
(
length
<
ETH_ZLEN
)
{
skb
=
skb_padto
(
skb
,
ETH_ZLEN
);
if
(
skb
==
NULL
)
return
0
;
length
=
ETH_ZLEN
;
}
if
(
net_debug
>
4
)
printk
(
"%s: Transmitting a packet of length %lu.
\n
"
,
dev
->
name
,
(
unsigned
long
)
skb
->
len
);
...
...
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