[<prev] [next>] [<thread-prev] [thread-next>] [day] [month] [year] [list]
Message-Id: <20170207230305.18222-2-f.fainelli@gmail.com>
Date: Tue, 7 Feb 2017 15:02:54 -0800
From: Florian Fainelli <f.fainelli@...il.com>
To: netdev@...r.kernel.org, linux-mips@...ux-mips.org,
linux-nfs@...r.kernel.org, linux-scsi@...r.kernel.org,
linux-usb@...r.kernel.org, linux-wireless@...r.kernel.org,
target-devel@...r.kernel.org
Cc: Russell King <rmk+kernel@...linux.org.uk>,
Andrew Lunn <andrew@...n.ch>,
Anna Schumaker <anna.schumaker@...app.com>,
"David S. Miller" <davem@...emloft.net>,
Derek Chickles <derek.chickles@...iumnetworks.com>,
Felix Manlunas <felix.manlunas@...iumnetworks.com>,
Florian Fainelli <f.fainelli@...il.com>,
"J. Bruce Fields" <bfields@...ldses.org>,
Jeff Layton <jlayton@...chiereds.net>,
Jiri Slaby <jirislaby@...il.com>,
Kalle Valo <kvalo@...eaurora.org>,
"Luis R. Rodriguez" <mcgrof@...not-panic.com>,
Madalin Bucur <madalin.bucur@....com>,
Microchip Linux Driver Support <UNGLinuxDriver@...rochip.com>,
"Nicholas A. Bellinger" <nab@...ux-iscsi.org>,
Nick Kossifidis <mickflemm@...il.com>,
Nicolas Ferre <nicolas.ferre@...el.com>,
Raghu Vatsavayi <raghu.vatsavayi@...iumnetworks.com>,
Ralf Baechle <ralf@...ux-mips.org>,
Satanand Burla <satananda.burla@...iumnetworks.com>,
Thomas Petazzoni <thomas.petazzoni@...e-electrons.com>,
Timur Tabi <timur@...eaurora.org>,
Trond Myklebust <trond.myklebust@...marydata.com>,
Vivien Didelot <vivien.didelot@...oirfairelinux.com>,
Woojung Huh <woojung.huh@...rochip.com>
Subject: [PATCH net-next v2 01/12] net: sunrpc: fix build errors when linux/phy*.h is removed from net/dsa.h
From: Russell King <rmk+kernel@...linux.org.uk>
Removing linux/phy.h from net/dsa.h reveals a build error in the sunrpc
code:
net/sunrpc/xprtrdma/svc_rdma_backchannel.c: In function 'xprt_rdma_bc_put':
net/sunrpc/xprtrdma/svc_rdma_backchannel.c:277:2: error: implicit declaration of function 'module_put' [-Werror=implicit-function-declaration]
net/sunrpc/xprtrdma/svc_rdma_backchannel.c: In function 'xprt_setup_rdma_bc':
net/sunrpc/xprtrdma/svc_rdma_backchannel.c:348:7: error: implicit declaration of function 'try_module_get' [-Werror=implicit-function-declaration]
Fix this by adding linux/module.h to svc_rdma_backchannel.c
Signed-off-by: Russell King <rmk+kernel@...linux.org.uk>
Acked-by: Anna Schumaker <Anna.Schumaker@...app.com>
---
net/sunrpc/xprtrdma/svc_rdma_backchannel.c | 1 +
1 file changed, 1 insertion(+)
diff --git a/net/sunrpc/xprtrdma/svc_rdma_backchannel.c b/net/sunrpc/xprtrdma/svc_rdma_backchannel.c
index 288e35c2d8f4..cb1e48e54eb1 100644
--- a/net/sunrpc/xprtrdma/svc_rdma_backchannel.c
+++ b/net/sunrpc/xprtrdma/svc_rdma_backchannel.c
@@ -4,6 +4,7 @@
* Support for backward direction RPCs on RPC/RDMA (server-side).
*/
+#include <linux/module.h>
#include <linux/sunrpc/svc_rdma.h>
#include "xprt_rdma.h"
--
2.9.3
Powered by blists - more mailing lists