svn commit: r354726 - head/sys/net

Bjoern A. Zeeb bz at FreeBSD.org
Fri Nov 15 11:00:03 UTC 2019


Author: bz
Date: Fri Nov 15 11:00:03 2019
New Revision: 354726
URL: https://svnweb.freebsd.org/changeset/base/354726

Log:
  if_llatbl: cleanup
  
  Remove function prototypes which are not needed (no use before function
  definition for these file static functions).
  
  MFC after:	3 weeks
  Sponsored by:	Netflix

Modified:
  head/sys/net/if_llatbl.c

Modified: head/sys/net/if_llatbl.c
==============================================================================
--- head/sys/net/if_llatbl.c	Fri Nov 15 07:01:04 2019	(r354725)
+++ head/sys/net/if_llatbl.c	Fri Nov 15 11:00:03 2019	(r354726)
@@ -80,11 +80,6 @@ RW_SYSINIT(lltable_list_lock, &lltable_list_lock, "llt
 static void lltable_unlink(struct lltable *llt);
 static void llentries_unlink(struct lltable *llt, struct llentries *head);
 
-static void htable_unlink_entry(struct llentry *lle);
-static void htable_link_entry(struct lltable *llt, struct llentry *lle);
-static int htable_foreach_lle(struct lltable *llt, llt_foreach_cb_t *f,
-    void *farg);
-
 /*
  * Dump lle state for a specific address family.
  */


More information about the svn-src-all mailing list