lists.openwall.net | lists / announce owl-users owl-dev john-users john-dev passwdqc-users yescrypt popa3d-users / oss-security kernel-hardening musl sabotage tlsify passwords / crypt-dev xvendor / Bugtraq Full-Disclosure linux-kernel linux-netdev linux-ext4 linux-hardening PHC | |
Open Source and information security mailing list archives
| ||
|
Date: Mon, 1 Oct 2007 14:20:47 -0500 From: Scott Wood <scottwood@...escale.com> To: jgarzik@...ox.com Cc: netdev@...r.kernel.org Subject: [PATCH 2/9] fs_enet: Fix build breakage. Commit 4fa57c9ea9f36f9ca852f3a88ca5d2f1aebbc960 ("Make NAPI polling independent of struct net_device objects.") introduced some build breakage in the napi rx function. Signed-off-by: Scott Wood <scottwood@...escale.com> --- drivers/net/fs_enet/fs_enet-main.c | 4 ++-- 1 files changed, 2 insertions(+), 2 deletions(-) diff --git a/drivers/net/fs_enet/fs_enet-main.c b/drivers/net/fs_enet/fs_enet-main.c index 2a1b150..a15345b 100644 --- a/drivers/net/fs_enet/fs_enet-main.c +++ b/drivers/net/fs_enet/fs_enet-main.c @@ -73,8 +73,8 @@ static void fs_set_multicast_list(struct net_device *dev) /* NAPI receive function */ static int fs_enet_rx_napi(struct napi_struct *napi, int budget) { - struct fs_enet_private *fep = container_of(napi, struct fec_enet_private, napi); - struct net_device *dev = fep->dev; + struct fs_enet_private *fep = container_of(napi, struct fs_enet_private, napi); + struct net_device *dev = to_net_dev(fep->dev); const struct fs_platform_info *fpi = fep->fpi; cbd_t *bdp; struct sk_buff *skb, *skbn, *skbt; -- 1.5.3.2 - To unsubscribe from this list: send the line "unsubscribe netdev" in the body of a message to majordomo@...r.kernel.org More majordomo info at http://vger.kernel.org/majordomo-info.html
Powered by blists - more mailing lists