Skip to content
GitLab
Explore
Sign in
Primary navigation
Search or go to…
Project
X
x86
Manage
Activity
Members
Plan
Wiki
Code
Repository
Branches
Commits
Tags
Repository graph
Compare revisions
Snippets
Deploy
Releases
Package Registry
Container Registry
Model registry
Operate
Terraform modules
Analyze
Contributor analytics
Repository analytics
Model experiments
Help
Help
Support
GitLab documentation
Compare GitLab plans
Community forum
Contribute to GitLab
Provide feedback
Keyboard shortcuts
?
Snippets
Groups
Projects
Show more breadcrumbs
CodeLinaro
la
kernel
x86
Commits
c223a078
Commit
c223a078
authored
10 years ago
by
David S. Miller
Browse files
Options
Downloads
Patches
Plain Diff
virtio_net: Support netdev_ops->ndo_xmit_flush()
Signed-off-by:
David S. Miller
<
davem@davemloft.net
>
parent
c1ebf46c
No related branches found
Branches containing commit
No related tags found
Tags containing commit
No related merge requests found
Changes
1
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
drivers/net/virtio_net.c
+9
-1
9 additions, 1 deletion
drivers/net/virtio_net.c
with
9 additions
and
1 deletion
drivers/net/virtio_net.c
+
9
−
1
View file @
c223a078
...
...
@@ -934,7 +934,6 @@ static netdev_tx_t start_xmit(struct sk_buff *skb, struct net_device *dev)
dev_kfree_skb_any
(
skb
);
return
NETDEV_TX_OK
;
}
virtqueue_kick
(
sq
->
vq
);
/* Don't wait up for transmitted skbs to be freed. */
skb_orphan
(
skb
);
...
...
@@ -957,6 +956,14 @@ static netdev_tx_t start_xmit(struct sk_buff *skb, struct net_device *dev)
return
NETDEV_TX_OK
;
}
static
void
xmit_flush
(
struct
net_device
*
dev
,
u16
qnum
)
{
struct
virtnet_info
*
vi
=
netdev_priv
(
dev
);
struct
send_queue
*
sq
=
&
vi
->
sq
[
qnum
];
virtqueue_kick
(
sq
->
vq
);
}
/*
* Send command via the control virtqueue and check status. Commands
* supported by the hypervisor, as indicated by feature bits, should
...
...
@@ -1386,6 +1393,7 @@ static const struct net_device_ops virtnet_netdev = {
.
ndo_open
=
virtnet_open
,
.
ndo_stop
=
virtnet_close
,
.
ndo_start_xmit
=
start_xmit
,
.
ndo_xmit_flush
=
xmit_flush
,
.
ndo_validate_addr
=
eth_validate_addr
,
.
ndo_set_mac_address
=
virtnet_set_mac_address
,
.
ndo_set_rx_mode
=
virtnet_set_rx_mode
,
...
...
This diff is collapsed.
Click to expand it.
Preview
0%
Loading
Try again
or
attach a new file
.
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Save comment
Cancel
Please
register
or
sign in
to comment