Donate to e Foundation | Murena handsets with /e/OS | Own a part of Murena! Learn more

Commit fb44519d authored by Anton Blanchard's avatar Anton Blanchard Committed by Jeff Kirsher
Browse files

ixgbe: Reduce memory consumption with larger page sizes



The ixgbe driver allocates pages for its receive rings. It currently
uses 512 pages, regardless of page size. During receive handling it
adds the unused part of the page back into the rx ring, avoiding the
need for a new allocation.

On a ppc64 box with 64 threads and 64kB pages, we end up with
512 entries * 64 rx queues * 64kB = 2GB memory used. Even more of a
concern is that we use up 2GB of IOMMU space in order to map all this
memory.

The driver makes a number of decisions based on if PAGE_SIZE is less
than 8kB, so use this as the breakpoint and only allocate 128 entries
on 8kB or larger page sizes.

Signed-off-by: default avatarAnton Blanchard <anton@samba.org>
Tested-by: default avatarPhil Schmitt <phillip.j.schmitt@intel.com>
Signed-off-by: default avatarJeff Kirsher <jeffrey.t.kirsher@intel.com>
parent a71fc313
Loading
Loading
Loading
Loading
+4 −0
Original line number Original line Diff line number Diff line
@@ -67,7 +67,11 @@
#define IXGBE_MAX_TXD			   4096
#define IXGBE_MAX_TXD			   4096
#define IXGBE_MIN_TXD			     64
#define IXGBE_MIN_TXD			     64


#if (PAGE_SIZE < 8192)
#define IXGBE_DEFAULT_RXD		    512
#define IXGBE_DEFAULT_RXD		    512
#else
#define IXGBE_DEFAULT_RXD		    128
#endif
#define IXGBE_MAX_RXD			   4096
#define IXGBE_MAX_RXD			   4096
#define IXGBE_MIN_RXD			     64
#define IXGBE_MIN_RXD			     64