ramips: ethernet: use own page_frag_cache
authorFelix Fietkau <nbd@nbd.name>
Thu, 12 Jul 2018 15:19:07 +0000 (17:19 +0200)
committerFelix Fietkau <nbd@nbd.name>
Thu, 12 Jul 2018 16:43:53 +0000 (18:43 +0200)
commit0c285bd081da55bd63da18f7596e7107a46bb798
tree944de46cd01150081637eff74fad275a04d13536
parent01df4a2565dd3d9bd7cd8e87ee72b6082369a7a1
ramips: ethernet: use own page_frag_cache

Using the NAPI or netdev frag cache along with other drivers can lead to
32 KiB pages being held for a long time, despite only being used for
very few page fragment.
This can happen if the ethernet driver grabs one or two fragments for rx
ring refill, while other drivers use (and free up) the remaining
fragments. The 32 KiB higher-order page can only be freed once all users
have freed their fragments, which only happens after the rings of all
drivers holding the fragments have wrapped around.

Depending on the traffic patterns, this can waste a lot of memory and
look a lot like a memory leak

Signed-off-by: Felix Fietkau <nbd@nbd.name>
target/linux/ramips/files-4.14/drivers/net/ethernet/mediatek/mtk_eth_soc.c
target/linux/ramips/files-4.14/drivers/net/ethernet/mediatek/mtk_eth_soc.h