From 35478e0db2b6c2bf559b202fa009a2dd0ce06fb8 Mon Sep 17 00:00:00 2001 From: julian Date: Wed, 15 Aug 2001 23:59:00 +0000 Subject: Don't allocate an entire 1500 byte buffer on the stack. May need more review in light of SMP. MFC after: 2 weeks --- sys/net/if_slvar.h | 1 + 1 file changed, 1 insertion(+) (limited to 'sys/net/if_slvar.h') diff --git a/sys/net/if_slvar.h b/sys/net/if_slvar.h index 9529c81..0abb285 100644 --- a/sys/net/if_slvar.h +++ b/sys/net/if_slvar.h @@ -69,6 +69,7 @@ struct sl_softc { struct callout_handle sc_kahandle; struct slcompress sc_comp; /* tcp compression data */ LIST_ENTRY(sl_softc) sl_next; + u_char *bpfbuf; /* hing buffer for bpf here */ }; /* internal flags */ -- cgit v1.1