Message ID | 20210827094759.f3ab06684bd0.I985181cc00fe017cfe6413d9e1bb720cbe852e6d@changeid (mailing list archive) |
---|---|
State | Accepted |
Commit | 4baf0e0b329874ec5e85480f53851b5f05a7ae58 |
Delegated to: | Netdev Maintainers |
Headers | show |
Series | [net-next] um: vector: adjust to coalesce API changes | expand |
Context | Check | Description |
---|---|---|
netdev/cover_letter | success | Link |
netdev/fixes_present | success | Link |
netdev/patch_count | success | Link |
netdev/tree_selection | success | Clearly marked for net-next |
netdev/subject_prefix | success | Link |
netdev/cc_maintainers | warning | 6 maintainers not CCed: richard@nod.at yang.lee@linux.alibaba.com yangtiezhu@loongson.cn allen.lkml@gmail.com jdike@addtoit.com anton.ivanov@cambridgegreys.com |
netdev/source_inline | success | Was 0 now: 0 |
netdev/verify_signedoff | success | Link |
netdev/module_param | success | Was 0 now: 0 |
netdev/build_32bit | success | Errors and warnings before: 0 this patch: 0 |
netdev/kdoc | success | Errors and warnings before: 0 this patch: 0 |
netdev/verify_fixes | success | Link |
netdev/checkpatch | success | total: 0 errors, 0 warnings, 0 checks, 20 lines checked |
netdev/build_allmodconfig_warn | success | Errors and warnings before: 0 this patch: 0 |
netdev/header_inline | success | Link |
Hello: This patch was applied to netdev/net-next.git (refs/heads/master): On Fri, 27 Aug 2021 09:48:04 +0200 you wrote: > From: Johannes Berg <johannes.berg@intel.com> > > The API changes were propagated to most drivers, but clearly > arch/um/drivers/ was missed, perhaps due to looking only at > the drivers/ folder. Fix that. > > Fixes: f3ccfda19319 ("ethtool: extend coalesce setting uAPI with CQE mode") > Signed-off-by: Johannes Berg <johannes.berg@intel.com> > > [...] Here is the summary with links: - [net-next] um: vector: adjust to coalesce API changes https://git.kernel.org/netdev/net-next/c/4baf0e0b3298 You are awesome, thank you! -- Deet-doot-dot, I am a bot. https://korg.docs.kernel.org/patchwork/pwbot.html
diff --git a/arch/um/drivers/vector_kern.c b/arch/um/drivers/vector_kern.c index d27a2a9faf3e..cde6db184c26 100644 --- a/arch/um/drivers/vector_kern.c +++ b/arch/um/drivers/vector_kern.c @@ -1488,7 +1488,9 @@ static void vector_get_ethtool_stats(struct net_device *dev, } static int vector_get_coalesce(struct net_device *netdev, - struct ethtool_coalesce *ec) + struct ethtool_coalesce *ec, + struct kernel_ethtool_coalesce *kernel_coal, + struct netlink_ext_ack *extack) { struct vector_private *vp = netdev_priv(netdev); @@ -1497,7 +1499,9 @@ static int vector_get_coalesce(struct net_device *netdev, } static int vector_set_coalesce(struct net_device *netdev, - struct ethtool_coalesce *ec) + struct ethtool_coalesce *ec, + struct kernel_ethtool_coalesce *kernel_coal, + struct netlink_ext_ack *extack) { struct vector_private *vp = netdev_priv(netdev);