Staticize two functions not used outside of in_pcb.c: in_pcbremlists() and

db_print_inpcb().

MFC after:	1 month
This commit is contained in:
Robert Watson 2009-05-14 20:59:36 +00:00
parent cec6336717
commit 6d888973c8
Notes: svn2git 2020-12-20 02:59:44 +00:00
svn path=/head/; revision=192116
2 changed files with 4 additions and 9 deletions

View File

@ -120,6 +120,8 @@ int ipport_tcplastcount;
if ((var) < (min)) { (var) = (min); } \
else if ((var) > (max)) { (var) = (max); }
static void in_pcbremlists(struct inpcb *inp);
static int
sysctl_net_ipport_check(SYSCTL_HANDLER_ARGS)
{
@ -1512,7 +1514,7 @@ in_pcbrehash(struct inpcb *inp)
/*
* Remove PCB from various lists.
*/
void
static void
in_pcbremlists(struct inpcb *inp)
{
struct inpcbinfo *pcbinfo = inp->inp_pcbinfo;
@ -1878,7 +1880,7 @@ db_print_inpvflag(u_char inp_vflag)
}
}
void
static void
db_print_inpcb(struct inpcb *inp, const char *name, int indent)
{

View File

@ -501,14 +501,7 @@ int in_getsockaddr(struct socket *so, struct sockaddr **nam);
struct sockaddr *
in_sockaddr(in_port_t port, struct in_addr *addr);
void in_pcbsosetlabel(struct socket *so);
void in_pcbremlists(struct inpcb *inp);
void ipport_tick(void *xtp);
/*
* Debugging routines compiled in when DDB is present.
*/
void db_print_inpcb(struct inpcb *inp, const char *name, int indent);
#endif /* _KERNEL */
#endif /* !_NETINET_IN_PCB_H_ */