loop(4): make interface methods static

This commit is contained in:
Gleb Smirnoff 2022-09-05 10:29:10 -07:00
parent 0773b44e82
commit ddc0ed5836

View File

@ -90,8 +90,8 @@
CSUM_IP_CHECKED | CSUM_IP_VALID | \ CSUM_IP_CHECKED | CSUM_IP_VALID | \
CSUM_SCTP_VALID) CSUM_SCTP_VALID)
int loioctl(struct ifnet *, u_long, caddr_t); static int loioctl(struct ifnet *, u_long, caddr_t);
int looutput(struct ifnet *ifp, struct mbuf *m, static int looutput(struct ifnet *ifp, struct mbuf *m,
const struct sockaddr *dst, struct route *ro); const struct sockaddr *dst, struct route *ro);
static int lo_clone_create(struct if_clone *, int, caddr_t); static int lo_clone_create(struct if_clone *, int, caddr_t);
static void lo_clone_destroy(struct ifnet *); static void lo_clone_destroy(struct ifnet *);
@ -200,7 +200,7 @@ static moduledata_t loop_mod = {
DECLARE_MODULE(if_lo, loop_mod, SI_SUB_PROTO_IFATTACHDOMAIN, SI_ORDER_ANY); DECLARE_MODULE(if_lo, loop_mod, SI_SUB_PROTO_IFATTACHDOMAIN, SI_ORDER_ANY);
int static int
looutput(struct ifnet *ifp, struct mbuf *m, const struct sockaddr *dst, looutput(struct ifnet *ifp, struct mbuf *m, const struct sockaddr *dst,
struct route *ro) struct route *ro)
{ {
@ -369,8 +369,7 @@ if_simloop(struct ifnet *ifp, struct mbuf *m, int af, int hlen)
/* /*
* Process an ioctl request. * Process an ioctl request.
*/ */
/* ARGSUSED */ static int
int
loioctl(struct ifnet *ifp, u_long cmd, caddr_t data) loioctl(struct ifnet *ifp, u_long cmd, caddr_t data)
{ {
struct ifreq *ifr = (struct ifreq *)data; struct ifreq *ifr = (struct ifreq *)data;