diff options
Diffstat (limited to 'patches/boot_time_opt/0123-e1000e-increase-pause-and-refresh-time.patch')
-rw-r--r-- | patches/boot_time_opt/0123-e1000e-increase-pause-and-refresh-time.patch | 33 |
1 files changed, 0 insertions, 33 deletions
diff --git a/patches/boot_time_opt/0123-e1000e-increase-pause-and-refresh-time.patch b/patches/boot_time_opt/0123-e1000e-increase-pause-and-refresh-time.patch deleted file mode 100644 index e5f613e..0000000 --- a/patches/boot_time_opt/0123-e1000e-increase-pause-and-refresh-time.patch +++ /dev/null | |||
@@ -1,33 +0,0 @@ | |||
1 | From a5c7b0038c1662ce3a1db76314ba62bca5fae911 Mon Sep 17 00:00:00 2001 | ||
2 | From: Miguel Bernal Marin <miguel.bernal.marin@linux.intel.com> | ||
3 | Date: Mon, 27 Mar 2017 16:01:56 -0600 | ||
4 | Subject: [PATCH 123/126] e1000e: increase pause and refresh time | ||
5 | |||
6 | Suggested-by: Tim Pepper <timothy.c.pepper@linux.intel.com> | ||
7 | Signed-off-by: Miguel Bernal Marin <miguel.bernal.marin@linux.intel.com> | ||
8 | --- | ||
9 | drivers/net/ethernet/intel/e1000e/netdev.c | 4 ++-- | ||
10 | 1 file changed, 2 insertions(+), 2 deletions(-) | ||
11 | |||
12 | diff --git a/drivers/net/ethernet/intel/e1000e/netdev.c b/drivers/net/ethernet/intel/e1000e/netdev.c | ||
13 | index 1b7cf8e2030d..6785e7321f1e 100644 | ||
14 | --- a/drivers/net/ethernet/intel/e1000e/netdev.c | ||
15 | +++ b/drivers/net/ethernet/intel/e1000e/netdev.c | ||
16 | @@ -4058,12 +4058,12 @@ void e1000e_reset(struct e1000_adapter *adapter) | ||
17 | case e1000_pch_lpt: | ||
18 | case e1000_pch_spt: | ||
19 | case e1000_pch_cnp: | ||
20 | - fc->refresh_time = 0x0400; | ||
21 | + fc->refresh_time = 0xFFFF; | ||
22 | + fc->pause_time = 0xFFFF; | ||
23 | |||
24 | if (adapter->netdev->mtu <= ETH_DATA_LEN) { | ||
25 | fc->high_water = 0x05C20; | ||
26 | fc->low_water = 0x05048; | ||
27 | - fc->pause_time = 0x0650; | ||
28 | break; | ||
29 | } | ||
30 | |||
31 | -- | ||
32 | 2.15.0 | ||
33 | |||