Login
[x]
Log in using an account from:
Fedora Account System
Red Hat Associate
Red Hat Customer
Or login using a Red Hat Bugzilla account
Forgot Password
Login:
Hide Forgot
Create an Account
Red Hat Bugzilla – Attachment 873096 Details for
Bug 1069028
ixgbevf prematurely strips VLAN tags
[?]
New
Simple Search
Advanced Search
My Links
Browse
Requests
Reports
Current State
Search
Tabular reports
Graphical reports
Duplicates
Other Reports
User Changes
Plotly Reports
Bug Status
Bug Severity
Non-Defaults
|
Product Dashboard
Help
Page Help!
Bug Writing Guidelines
What's new
Browser Support Policy
5.0.4.rh83 Release notes
FAQ
Guides index
User guide
Web Services
Contact
Legal
This site requires JavaScript to be enabled to function correctly, please enable it.
[patch]
Revised approach to fix
fix3.patch (text/plain), 780 bytes, created by
David Gibson
on 2014-03-11 12:11:38 UTC
(
hide
)
Description:
Revised approach to fix
Filename:
MIME Type:
Creator:
David Gibson
Created:
2014-03-11 12:11:38 UTC
Size:
780 bytes
patch
obsolete
>diff --git a/Makefile b/Makefile >index 90a04c7..aeb0468 100644 >--- a/Makefile >+++ b/Makefile >@@ -1,7 +1,7 @@ > VERSION = 2 > PATCHLEVEL = 6 > SUBLEVEL = 32 >-EXTRAVERSION = >+EXTRAVERSION = bz1069028 > NAME = Man-Eating Seals of Antiquity > RHEL_MAJOR = 6 > RHEL_MINOR = 5 >diff --git a/drivers/net/ixgbevf/ixgbevf_main.c b/drivers/net/ixgbevf/ixgbevf_main.c >index 56b3946..5229d64 100644 >--- a/drivers/net/ixgbevf/ixgbevf_main.c >+++ b/drivers/net/ixgbevf/ixgbevf_main.c >@@ -295,8 +295,12 @@ static void ixgbevf_receive_skb(struct ixgbevf_q_vector *q_vector, > tag, skb); > else > napi_gro_receive(&q_vector->napi, skb); >- } else >- netif_rx(skb); >+ } else { >+ if (adapter->vlgrp && is_vlan) >+ vlan_hwaccel_rx(skb, adapter->vlgrp, tag); >+ else >+ netif_rx(skb); >+ } > } > > /**
You cannot view the attachment while viewing its details because your browser does not support IFRAMEs.
View the attachment on a separate page
.
View Attachment As Diff
View Attachment As Raw
Actions:
View
|
Diff
Attachments on
bug 1069028
:
869940
|
870927
|
873096
|
873098
|
873936
|
873949
|
874080