* [PATCH] igb: Update to 5.3.2.2
@ 2015-08-15 16:46 Matthias Fischer
2015-08-16 5:54 ` Arne Fitzenreiter
0 siblings, 1 reply; 5+ messages in thread
From: Matthias Fischer @ 2015-08-15 16:46 UTC (permalink / raw)
To: development
[-- Attachment #1: Type: text/plain, Size: 1400 bytes --]
Signed-off-by: Matthias Fischer <matthias.fischer(a)ipfire.org>
---
lfs/igb | 6 +++---
1 file changed, 3 insertions(+), 3 deletions(-)
diff --git a/lfs/igb b/lfs/igb
index fa762e0..3e2d7c6 100644
--- a/lfs/igb
+++ b/lfs/igb
@@ -1,7 +1,7 @@
###############################################################################
# #
# IPFire.org - A linux based firewall #
-# Copyright (C) 2007-2014 IPFire Team <info(a)ipfire.org> #
+# Copyright (C) 2007-2015 IPFire Team <info(a)ipfire.org> #
# #
# This program is free software: you can redistribute it and/or modify #
# it under the terms of the GNU General Public License as published by #
@@ -27,7 +27,7 @@ include Config
VERSUFIX = ipfire$(KCFG)
MODPATH = /lib/modules/$(KVER)-$(VERSUFIX)/kernel/drivers/net/ethernet/intel/igb/
-VER = 5.2.9.3
+VER = 5.3.2.2
THISAPP = igb-$(VER)
DL_FILE = $(THISAPP).tar.gz
@@ -43,7 +43,7 @@ objects = $(DL_FILE)
$(DL_FILE) = $(DL_FROM)/$(DL_FILE)
-$(DL_FILE)_MD5 = 814395d3b76090f378002bddecfd2dfc
+$(DL_FILE)_MD5 = 933653f90be9826e756e12248f0d4acd
install : $(TARGET)
--
2.5.0
^ permalink raw reply [flat|nested] 5+ messages in thread
* Re: [PATCH] igb: Update to 5.3.2.2
2015-08-15 16:46 [PATCH] igb: Update to 5.3.2.2 Matthias Fischer
@ 2015-08-16 5:54 ` Arne Fitzenreiter
2015-08-16 7:25 ` Matthias Fischer
2015-08-16 7:32 ` Matthias Fischer
0 siblings, 2 replies; 5+ messages in thread
From: Arne Fitzenreiter @ 2015-08-16 5:54 UTC (permalink / raw)
To: development
[-- Attachment #1: Type: text/plain, Size: 150 bytes --]
Is the MultiQueue mode working with this version?
Currently we not use the igb lfs because the older Version from
backports works with MultiQueue.
^ permalink raw reply [flat|nested] 5+ messages in thread
* Re: [PATCH] igb: Update to 5.3.2.2
2015-08-16 5:54 ` Arne Fitzenreiter
@ 2015-08-16 7:25 ` Matthias Fischer
2015-08-16 7:32 ` Matthias Fischer
1 sibling, 0 replies; 5+ messages in thread
From: Matthias Fischer @ 2015-08-16 7:25 UTC (permalink / raw)
To: development
[-- Attachment #1: Type: text/plain, Size: 1554 bytes --]
Hi,
On 16.08.2015 07:54, Arne Fitzenreiter wrote:
> Is the MultiQueue mode working with this version?
Being rather naive, I just saw that this version was relatively old, had
some "computing time" left on my devel, so I thought: "Why not...?" ;-)
> Currently we not use the igb lfs because the older Version from
> backports works with MultiQueue.
I didn't know that and actually can't test this driver on my system. I
just thought it could be updated.
An excerpt from README - perhaps always the same - leads me to the
assumption that Multiqueue mode perhaps can be enabled (?):
***SNIP***
Multiqueue
----------
In this mode, a separate MSI-X vector is allocated for each queue and
one for "other" interrupts such as link status change and errors. All
interrupts are throttled via interrupt moderation. Interrupt moderation
must be used to avoid interrupt storms while the driver is processing
one interrupt. The moderation value should be at least as large as the
expected time for the driver to process an interrupt. Multiqueue is off
by default.
REQUIREMENTS: MSI-X support is required for Multiqueue. If MSI-X is not
found, the system will fallback to MSI or to Legacy interrupts. This
driver supports multiqueue in kernel versions 2.6.24 and newer. This
driver supports receive multiqueue on all kernels that support MSI-X.
NOTES:
- Do not use MSI-X with the 2.6.19 or 2.6.20 kernels.
- On some kernels a reboot is required to switch between single queue
mode and multiqueue mode or vice-versa.
***SNAP***
Regards
Matthias
^ permalink raw reply [flat|nested] 5+ messages in thread
* Re: [PATCH] igb: Update to 5.3.2.2
2015-08-16 5:54 ` Arne Fitzenreiter
2015-08-16 7:25 ` Matthias Fischer
@ 2015-08-16 7:32 ` Matthias Fischer
2015-08-17 21:24 ` Michael Tremer
1 sibling, 1 reply; 5+ messages in thread
From: Matthias Fischer @ 2015-08-16 7:32 UTC (permalink / raw)
To: development
[-- Attachment #1: Type: text/plain, Size: 485 bytes --]
Hi,
On 16.08.2015 07:54, Arne Fitzenreiter wrote:
> Is the MultiQueue mode working with this version?
'/src/igb.h' says...
***SNIP***
...
/* Interrupt modes, as used by the IntMode paramter */
#define IGB_INT_MODE_LEGACY 0
#define IGB_INT_MODE_MSI 1
#define IGB_INT_MODE_MSIX 2
...
***SNAP***
...so in *my* opinion something *must* be possible...
It seems that this *not* enabled by default, but can be forced.
Regards
Matthias
^ permalink raw reply [flat|nested] 5+ messages in thread
* Re: [PATCH] igb: Update to 5.3.2.2
2015-08-16 7:32 ` Matthias Fischer
@ 2015-08-17 21:24 ` Michael Tremer
0 siblings, 0 replies; 5+ messages in thread
From: Michael Tremer @ 2015-08-17 21:24 UTC (permalink / raw)
To: development
[-- Attachment #1: Type: text/plain, Size: 742 bytes --]
Hi,
this driver is currently not compiled any way.
So I guess merging this does not make any sense until the kernel is
updated, too.
Best,
-Michael
On Sun, 2015-08-16 at 09:32 +0200, Matthias Fischer wrote:
> Hi,
>
> On 16.08.2015 07:54, Arne Fitzenreiter wrote:
> > Is the MultiQueue mode working with this version?
>
> '/src/igb.h' says...
>
> ***SNIP***
> ...
> /* Interrupt modes, as used by the IntMode paramter */
> #define IGB_INT_MODE_LEGACY 0
> #define IGB_INT_MODE_MSI 1
> #define IGB_INT_MODE_MSIX 2
> ...
> ***SNAP***
>
> ...so in *my* opinion something *must* be possible...
>
> It seems that this *not* enabled by default, but can be forced.
>
> Regards
> Matthias
>
[-- Attachment #2: signature.asc --]
[-- Type: application/pgp-signature, Size: 819 bytes --]
^ permalink raw reply [flat|nested] 5+ messages in thread
end of thread, other threads:[~2015-08-17 21:24 UTC | newest]
Thread overview: 5+ messages (download: mbox.gz / follow: Atom feed)
-- links below jump to the message on this page --
2015-08-15 16:46 [PATCH] igb: Update to 5.3.2.2 Matthias Fischer
2015-08-16 5:54 ` Arne Fitzenreiter
2015-08-16 7:25 ` Matthias Fischer
2015-08-16 7:32 ` Matthias Fischer
2015-08-17 21:24 ` Michael Tremer
This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox