diff options
author | Kip Macy <kmacy@FreeBSD.org> | 2011-09-20 20:27:26 +0000 |
---|---|---|
committer | Kip Macy <kmacy@FreeBSD.org> | 2011-09-20 20:27:26 +0000 |
commit | 1eeb6d97d09e439c7be2cc1f91b6e57d2c5c0573 (patch) | |
tree | 625945282c78f76f0d1956e9853e19ab3d215dc3 /sys/net/if_llatbl.h | |
parent | 3e677ca02cc2c67073879d6032d9ba0d417ea02c (diff) | |
download | src-1eeb6d97d09e439c7be2cc1f91b6e57d2c5c0573.tar.gz src-1eeb6d97d09e439c7be2cc1f91b6e57d2c5c0573.zip |
Make KBI changes required for future MFCing of inpcb rtentry / llentry caching.
Reviewed by: rwatson, bz
Approved by: re (kib)
Notes
Notes:
svn path=/head/; revision=225698
Diffstat (limited to 'sys/net/if_llatbl.h')
-rw-r--r-- | sys/net/if_llatbl.h | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/sys/net/if_llatbl.h b/sys/net/if_llatbl.h index 4b1835332368..2ae27927362d 100644 --- a/sys/net/if_llatbl.h +++ b/sys/net/if_llatbl.h @@ -59,6 +59,7 @@ struct llentry { struct rwlock lle_lock; struct lltable *lle_tbl; struct llentries *lle_head; + void (*lle_free)(struct lltable *, struct llentry *); struct mbuf *la_hold; int la_numheld; /* # of packets currently held */ time_t la_expire; |