| version 1.83, 2003/06/29 22:31:30 |
version 1.84, 2003/07/02 20:07:45 |
| Line 77 __KERNEL_RCSID(0, "$NetBSD$"); |
|
| Line 77 __KERNEL_RCSID(0, "$NetBSD$"); |
|
| #include "opt_sock_counters.h" |
#include "opt_sock_counters.h" |
| #include "opt_sosend_loan.h" |
#include "opt_sosend_loan.h" |
| #include "opt_mbuftrace.h" |
#include "opt_mbuftrace.h" |
| |
#include "opt_somaxkva.h" |
| |
|
| #include <sys/param.h> |
#include <sys/param.h> |
| #include <sys/systm.h> |
#include <sys/systm.h> |
| Line 147 int use_sosend_loan = 1; |
|
| Line 148 int use_sosend_loan = 1; |
|
| |
|
| struct mbuf *so_pendfree; |
struct mbuf *so_pendfree; |
| |
|
| int somaxkva = 16 * 1024 * 1024; |
#ifndef SOMAXKVA |
| |
#define SOMAXKVA (16 * 1024 * 1024) |
| |
#endif |
| |
int somaxkva = SOMAXKVA; |
| int socurkva; |
int socurkva; |
| int sokvawaiters; |
int sokvawaiters; |
| |
|