mirror of https://lore.kernel.org/lkml/
 help / color / mirror / Atom feed
* [PATCH AUTOSEL for 4.9 026/100] r8152: fix the rx early size of RTL8153
@ 2017-12-13  1:57 alexander.levin
  2017-12-13  1:57 ` [PATCH AUTOSEL for 4.9 029/100] pinctrl: st: add irq_request/release_resources callbacks alexander.levin
                   ` (73 more replies)
  0 siblings, 74 replies; 75+ messages in thread
From: alexander.levin @ 2017-12-13  1:57 UTC (permalink / raw)
  To: linux-kernel, stable; +Cc: hayeswang, David S . Miller, alexander.levin

From: hayeswang <hayeswang@realtek.com>

[ Upstream commit b20cb60e2b865638459e6ec82ad3536d3734e555 ]

revert commit a59e6d815226 ("r8152: correct the rx early size") and
fix the rx early size as

	(rx buffer size - rx packet size - rx desc size - alignment) / 4

Signed-off-by: Hayes Wang <hayeswang@realtek.com>
Signed-off-by: David S. Miller <davem@davemloft.net>
Signed-off-by: Sasha Levin <alexander.levin@verizon.com>
---
 drivers/net/usb/r8152.c | 7 ++++---
 1 file changed, 4 insertions(+), 3 deletions(-)

diff --git a/drivers/net/usb/r8152.c b/drivers/net/usb/r8152.c
index 823219cf95ef..5bc0377cdcdd 100644
--- a/drivers/net/usb/r8152.c
+++ b/drivers/net/usb/r8152.c
@@ -32,7 +32,7 @@
 #define NETNEXT_VERSION		"08"
 
 /* Information for net */
-#define NET_VERSION		"8"
+#define NET_VERSION		"9"
 
 #define DRIVER_VERSION		"v1." NETNEXT_VERSION "." NET_VERSION
 #define DRIVER_AUTHOR "Realtek linux nic maintainers <nic_swsd@realtek.com>"
@@ -501,6 +501,8 @@ enum rtl_register_content {
 #define RTL8153_RMS		RTL8153_MAX_PACKET
 #define RTL8152_TX_TIMEOUT	(5 * HZ)
 #define RTL8152_NAPI_WEIGHT	64
+#define rx_reserved_size(x)	((x) + VLAN_ETH_HLEN + CRC_SIZE + \
+				 sizeof(struct rx_desc) + RX_ALIGN)
 
 /* rtl8152 flags */
 enum rtl8152_flags {
@@ -2253,8 +2255,7 @@ static void r8153_set_rx_early_timeout(struct r8152 *tp)
 
 static void r8153_set_rx_early_size(struct r8152 *tp)
 {
-	u32 mtu = tp->netdev->mtu;
-	u32 ocp_data = (agg_buf_sz - mtu - VLAN_ETH_HLEN - VLAN_HLEN) / 8;
+	u32 ocp_data = (agg_buf_sz - rx_reserved_size(tp->netdev->mtu)) / 4;
 
 	ocp_write_word(tp, MCU_TYPE_USB, USB_RX_EARLY_SIZE, ocp_data);
 }
-- 
2.11.0

^ permalink raw reply	[flat|nested] 75+ messages in thread

end of thread, other threads:[~2017-12-13  2:45 UTC | newest]

Thread overview: 75+ messages (download: mbox.gz / follow: Atom feed)
-- links below jump to the message on this page --
2017-12-13  1:57 [PATCH AUTOSEL for 4.9 026/100] r8152: fix the rx early size of RTL8153 alexander.levin
2017-12-13  1:57 ` [PATCH AUTOSEL for 4.9 029/100] pinctrl: st: add irq_request/release_resources callbacks alexander.levin
2017-12-13  1:57 ` [PATCH AUTOSEL for 4.9 028/100] inet: frag: release spinlock before calling icmp_send() alexander.levin
2017-12-13  1:57 ` [PATCH AUTOSEL for 4.9 027/100] tipc: fix nametbl deadlock at tipc_nametbl_unsubscribe alexander.levin
2017-12-13  1:57 ` [PATCH AUTOSEL for 4.9 033/100] KVM: VMX: Fix enable VPID conditions alexander.levin
2017-12-13  1:57 ` [PATCH AUTOSEL for 4.9 034/100] ARM: dts: ti: fix PCI bus dtc warnings alexander.levin
2017-12-13  1:57 ` [PATCH AUTOSEL for 4.9 032/100] KVM: x86: correct async page present tracepoint alexander.levin
2017-12-13  1:57 ` [PATCH AUTOSEL for 4.9 030/100] scsi: lpfc: Fix PT2PT PRLI reject alexander.levin
2017-12-13  1:57 ` [PATCH AUTOSEL for 4.9 031/100] kvm: vmx: Flush TLB when the APIC-access address changes alexander.levin
2017-12-13  1:57 ` [PATCH AUTOSEL for 4.9 037/100] HID: xinmo: fix for out of range for THT 2P arcade controller alexander.levin
2017-12-13  1:57 ` [PATCH AUTOSEL for 4.9 038/100] ASoC: STI: Fix reader substream pointer set alexander.levin
2017-12-13  1:57 ` [PATCH AUTOSEL for 4.9 036/100] i2c: mux: pca954x: Add missing pca9546 definition to chip_desc alexander.levin
2017-12-13  1:57 ` [PATCH AUTOSEL for 4.9 035/100] hwmon: (asus_atk0110) fix uninitialized data access alexander.levin
2017-12-13  1:57 ` [PATCH AUTOSEL for 4.9 040/100] s390/qeth: size calculation outbound buffers alexander.levin
2017-12-13  1:57 ` [PATCH AUTOSEL for 4.9 041/100] s390/qeth: no ETH header for outbound AF_IUCV alexander.levin
2017-12-13  1:57 ` [PATCH AUTOSEL for 4.9 039/100] r8152: prevent the driver from transmitting packets with carrier off alexander.levin
2017-12-13  1:57 ` [PATCH AUTOSEL for 4.9 043/100] i40iw: Receive netdev events post INET_NOTIFIER state alexander.levin
2017-12-13  1:57 ` [PATCH AUTOSEL for 4.9 045/100] infiniband: Fix alignment of mmap cookies to support VIPT caching alexander.levin
2017-12-13  1:57 ` [PATCH AUTOSEL for 4.9 042/100] bna: avoid writing uninitialized data into hw registers alexander.levin
2017-12-13  1:57 ` [PATCH AUTOSEL for 4.9 044/100] IB/core: Protect against self-requeue of a cq work item alexander.levin
2017-12-13  1:57 ` [PATCH AUTOSEL for 4.9 048/100] IB/rxe: double free on error alexander.levin
2017-12-13  1:57 ` [PATCH AUTOSEL for 4.9 050/100] i40e: Do not enable NAPI on q_vectors that have no rings alexander.levin
2017-12-13  1:57 ` [PATCH AUTOSEL for 4.9 047/100] net: Do not allow negative values for busy_read and busy_poll sysctl interfaces alexander.levin
2017-12-13  1:57 ` [PATCH AUTOSEL for 4.9 046/100] nbd: set queue timeout properly alexander.levin
2017-12-13  1:57 ` [PATCH AUTOSEL for 4.9 049/100] IB/rxe: increment msn only when completing a request alexander.levin
2017-12-13  1:57 ` [PATCH AUTOSEL for 4.9 053/100] netfilter: nfnl_cthelper: fix a race when walk the nf_ct_helper_hash table alexander.levin
2017-12-13  1:57 ` [PATCH AUTOSEL for 4.9 051/100] RDMA/iser: Fix possible mr leak on device removal event alexander.levin
2017-12-13  1:57 ` [PATCH AUTOSEL for 4.9 052/100] irda: vlsi_ir: fix check for DMA mapping errors alexander.levin
2017-12-13  1:57 ` [PATCH AUTOSEL for 4.9 057/100] net: ipconfig: fix ic_close_devs() use-after-free alexander.levin
2017-12-13  1:57 ` [PATCH AUTOSEL for 4.9 055/100] ARM: dts: am335x-evmsk: adjust mmc2 param to allow suspend alexander.levin
2017-12-13  1:57 ` [PATCH AUTOSEL for 4.9 056/100] cpufreq: Fix creation of symbolic links to policy directories alexander.levin
2017-12-13  1:57 ` [PATCH AUTOSEL for 4.9 054/100] netfilter: nf_nat_snmp: Fix panic when snmp_trap_helper fails to register alexander.levin
2017-12-13  1:57 ` [PATCH AUTOSEL for 4.9 060/100] virtio_balloon: prevent uninitialized variable use alexander.levin
2017-12-13  1:57 ` [PATCH AUTOSEL for 4.9 058/100] KVM: pci-assign: do not map smm memory slot pages in vt-d page tables alexander.levin
2017-12-13  1:57 ` [PATCH AUTOSEL for 4.9 059/100] virtio-balloon: use actual number of stats for stats queue buffers alexander.levin
2017-12-13  1:57 ` [PATCH AUTOSEL for 4.9 061/100] isdn: kcapi: avoid uninitialized data alexander.levin
2017-12-13  1:57 ` [PATCH AUTOSEL for 4.9 065/100] Btrfs: fix an integer overflow check alexander.levin
2017-12-13  1:57 ` [PATCH AUTOSEL for 4.9 062/100] net: moxa: fix TX overrun memory leak alexander.levin
2017-12-13  1:57 ` [PATCH AUTOSEL for 4.9 063/100] xhci: plat: Register shutdown for xhci_plat alexander.levin
2017-12-13  1:57 ` [PATCH AUTOSEL for 4.9 064/100] netfilter: nfnetlink_queue: fix secctx memory leak alexander.levin
2017-12-13  1:57 ` [PATCH AUTOSEL for 4.9 066/100] ARM: dma-mapping: disallow dma_get_sgtable() for non-kernel managed memory alexander.levin
2017-12-13  1:57 ` [PATCH AUTOSEL for 4.9 067/100] cpuidle: powernv: Pass correct drv->cpumask for registration alexander.levin
2017-12-13  1:57 ` [PATCH AUTOSEL for 4.9 069/100] backlight: pwm_bl: Fix overflow condition alexander.levin
2017-12-13  1:57 ` [PATCH AUTOSEL for 4.9 068/100] bnxt_en: Fix NULL pointer dereference in reopen failure path alexander.levin
2017-12-13  1:57 ` [PATCH AUTOSEL for 4.9 073/100] crypto: crypto4xx - increase context and scatter ring buffer elements alexander.levin
2017-12-13  1:57 ` [PATCH AUTOSEL for 4.9 070/100] crypto: talitos - fix ctr-aes-talitos alexander.levin
2017-12-13  1:57 ` [PATCH AUTOSEL for 4.9 071/100] crypto: talitos - fix AEAD test failures alexander.levin
2017-12-13  1:57 ` [PATCH AUTOSEL for 4.9 072/100] crypto: talitos - fix memory corruption on SEC2 alexander.levin
2017-12-13  1:57 ` [PATCH AUTOSEL for 4.9 075/100] kvm, mm: account kvm related kmem slabs to kmemcg alexander.levin
2017-12-13  1:57 ` [PATCH AUTOSEL for 4.9 076/100] net: phy: at803x: Change error to EINVAL for invalid MAC alexander.levin
2017-12-13  1:57 ` [PATCH AUTOSEL for 4.9 077/100] PCI: Avoid bus reset if bridge itself is broken alexander.levin
2017-12-13  1:57 ` [PATCH AUTOSEL for 4.9 074/100] rtc: pl031: make interrupt optional alexander.levin
2017-12-13  1:57 ` [PATCH AUTOSEL for 4.9 081/100] PM / OPP: Move error message to debug level alexander.levin
2017-12-13  1:57 ` [PATCH AUTOSEL for 4.9 080/100] PCI: Create SR-IOV virtfn/physfn links before attaching driver alexander.levin
2017-12-13  1:57 ` [PATCH AUTOSEL for 4.9 079/100] scsi: mpt3sas: Fix IO error occurs on pulling out a drive from RAID1 volume created on two SATA drive alexander.levin
2017-12-13  1:57 ` [PATCH AUTOSEL for 4.9 078/100] scsi: cxgb4i: fix Tx skb leak alexander.levin
2017-12-13  1:57 ` [PATCH AUTOSEL for 4.9 082/100] igb: check memory allocation failure alexander.levin
2017-12-13  1:57 ` [PATCH AUTOSEL for 4.9 085/100] PCI/AER: Report non-fatal errors only to the affected endpoint alexander.levin
2017-12-13  1:57 ` [PATCH AUTOSEL for 4.9 083/100] ixgbe: fix use of uninitialized padding alexander.levin
2017-12-13  1:57 ` [PATCH AUTOSEL for 4.9 084/100] IB/rxe: check for allocation failure on elem alexander.levin
2017-12-13  1:57 ` [PATCH AUTOSEL for 4.9 087/100] percpu: don't forget to free the temporary struct pcpu_alloc_info alexander.levin
2017-12-13  1:57 ` [PATCH AUTOSEL for 4.9 086/100] tracing: Exclude 'generic fields' from histograms alexander.levin
2017-12-13  1:57 ` [PATCH AUTOSEL for 4.9 089/100] powerpc/xmon: Avoid tripping SMP hardlockup watchdog alexander.levin
2017-12-13  1:57 ` [PATCH AUTOSEL for 4.9 088/100] ASoC: img-parallel-out: Add pm_runtime_get/put to set_fmt callback alexander.levin
2017-12-13  1:57 ` [PATCH AUTOSEL for 4.9 090/100] fm10k: fix mis-ordered parameters in declaration for .ndo_set_vf_bw alexander.levin
2017-12-13  1:57 ` [PATCH AUTOSEL for 4.9 092/100] scsi: lpfc: PLOGI failures during NPIV testing alexander.levin
2017-12-13  1:57 ` [PATCH AUTOSEL for 4.9 093/100] vfio/pci: Virtualize Maximum Payload Size alexander.levin
2017-12-13  1:57 ` [PATCH AUTOSEL for 4.9 091/100] scsi: lpfc: Fix secure firmware updates alexander.levin
2017-12-13  1:57 ` [PATCH AUTOSEL for 4.9 094/100] fm10k: ensure we process SM mbx when processing VF mbx alexander.levin
2017-12-13  1:57 ` [PATCH AUTOSEL for 4.9 095/100] net: ipv6: send NS for DAD when link operationally up alexander.levin
2017-12-13  1:57 ` [PATCH AUTOSEL for 4.9 097/100] clk: sunxi-ng: sun6i: Rename HDMI DDC clock to avoid name collision alexander.levin
2017-12-13  1:57 ` [PATCH AUTOSEL for 4.9 096/100] staging: greybus: light: Release memory obtained by kasprintf alexander.levin
2017-12-13  1:57 ` [PATCH AUTOSEL for 4.9 099/100] rtc: set the alarm to the next expiring timer alexander.levin
2017-12-13  1:57 ` [PATCH AUTOSEL for 4.9 098/100] tcp: fix under-evaluated ssthresh in TCP Vegas alexander.levin
2017-12-13  1:57 ` [PATCH AUTOSEL for 4.9 100/100] cpuidle: fix broadcast control when broadcast can not be entered alexander.levin

This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox

all inboxes | Powered by JetHome®