aboutsummaryrefslogtreecommitdiff
path: root/sys/net/if_lagg.h
diff options
context:
space:
mode:
authorKip Macy <kmacy@FreeBSD.org>2009-04-16 20:30:28 +0000
committerKip Macy <kmacy@FreeBSD.org>2009-04-16 20:30:28 +0000
commit279aa3d419d5bfaf514ed543ab177852e4c2b013 (patch)
treef09ffe8dbc619e723cdaebdc910a5ed28f73768b /sys/net/if_lagg.h
parentfe6939906918258e6c2cf78df5f5f14d893ec1a0 (diff)
downloadsrc-279aa3d419d5bfaf514ed543ab177852e4c2b013.tar.gz
src-279aa3d419d5bfaf514ed543ab177852e4c2b013.zip
Change if_output to take a struct route as its fourth argument in order
to allow passing a cached struct llentry * down to L2 Reviewed by: rwatson
Notes
Notes: svn path=/head/; revision=191148
Diffstat (limited to 'sys/net/if_lagg.h')
-rw-r--r--sys/net/if_lagg.h2
1 files changed, 1 insertions, 1 deletions
diff --git a/sys/net/if_lagg.h b/sys/net/if_lagg.h
index 2b25118bbab1..896f5b310801 100644
--- a/sys/net/if_lagg.h
+++ b/sys/net/if_lagg.h
@@ -218,7 +218,7 @@ struct lagg_port {
/* Redirected callbacks */
int (*lp_ioctl)(struct ifnet *, u_long, caddr_t);
int (*lp_output)(struct ifnet *, struct mbuf *, struct sockaddr *,
- struct rtentry *);
+ struct route *);
SLIST_ENTRY(lagg_port) lp_entries;
};