summaryrefslogtreecommitdiff
path: root/include/linux/hiddev.h
diff options
context:
space:
mode:
authorSaeed Mahameed <saeedm@nvidia.com>2025-06-16 17:14:40 +0300
committerJakub Kicinski <kuba@kernel.org>2025-06-17 18:34:13 -0700
commit46bcce5dfd330c233e59cd5efd7eb43f049b0a82 (patch)
tree5c9d3a42fc3ad0114339a6e4ea821792f2ecb0b5 /include/linux/hiddev.h
parentb2588ea40ec9472688289c1a644627c0f4a1f33f (diff)
downloadkernel-46bcce5dfd330c233e59cd5efd7eb43f049b0a82.tar.gz
net/mlx5e: Support ethtool tcp-data-split settings
In mlx5, tcp header-data split requires HW GRO to be on. Enabling it fails when HW GRO is off. mlx5e_fix_features now keeps HW GRO on when tcp data split is enabled. Finally, when tcp data split is disabled, features are updated to maybe remove the forced HW GRO. Signed-off-by: Saeed Mahameed <saeedm@nvidia.com> Signed-off-by: Cosmin Ratiu <cratiu@nvidia.com> Reviewed-by: Dragos Tatulea <dtatulea@nvidia.com> Reviewed-by: Tariq Toukan <tariqt@nvidia.com> Signed-off-by: Mark Bloch <mbloch@nvidia.com> Link: https://patch.msgid.link/20250616141441.1243044-12-mbloch@nvidia.com Signed-off-by: Jakub Kicinski <kuba@kernel.org>
Diffstat (limited to 'include/linux/hiddev.h')
0 files changed, 0 insertions, 0 deletions
ude/asm-sparc64/pci.h?h=linux-6.12.y&id=f6d0f9ea55277a49ef6c86a768acec021451b139'>[SPARC]: Provide pci_device_to_OF_node() just like powerpc.David S. Miller Signed-off-by: David S. Miller <davem@davemloft.net> 2006-12-01PCI: Use pci_generic_prep_mwi on sparc64Matthew Wilcox The setting of the CACHE_LINE_SIZE register in sparc64's pci initialisation code isn't quite adequate as the device may have incompatible requirements. The generic code tests for this, so switch sparc64 over to using it. Since sparc64 has different L1 cache line size and PCI cache line size, it would need to override the generic code like i386 and ia64 do. We know what the cache line size is at compile time though, so introduce a new optional constant PCI_CACHE_LINE_BYTES. Signed-off-by: Matthew Wilcox <matthew@wil.cx> Signed-off-by: David Miller <davem@davemloft.net> Acked-by: Jeff Garzik <jeff@garzik.org> Signed-off-by: Greg Kroah-Hartman <gregkh@suse.de> 2006-05-23[SPARC64]: Respect gfp_t argument to dma_alloc_coherent().David S. Miller Using asm-generic/dma-mapping.h does not work because pushing the call down to pci_alloc_coherent() causes the gfp_t argument of dma_alloc_coherent() to be ignored. Fix this by implementing things directly, and adding a gfp_t argument we can use in the internal call down to the PCI DMA implementation of pci_alloc_coherent(). This fixes massive memory corruption when using the sound driver layer, which passes things like __GFP_COMP down into these routines and (correctly) expects that to work. Signed-off-by: David S. Miller <davem@davemloft.net>