From owner-cvs-sys Sun Jul 27 23:19:41 1997 Return-Path: Received: (from root@localhost) by hub.freebsd.org (8.8.5/8.8.5) id XAA12605 for cvs-sys-outgoing; Sun, 27 Jul 1997 23:19:41 -0700 (PDT) Received: from godzilla.zeta.org.au (godzilla.zeta.org.au [203.2.228.19]) by hub.freebsd.org (8.8.5/8.8.5) with ESMTP id XAA12591; Sun, 27 Jul 1997 23:19:17 -0700 (PDT) Received: (from bde@localhost) by godzilla.zeta.org.au (8.8.5/8.6.9) id QAA04170; Mon, 28 Jul 1997 16:13:36 +1000 Date: Mon, 28 Jul 1997 16:13:36 +1000 From: Bruce Evans Message-Id: <199707280613.QAA04170@godzilla.zeta.org.au> To: ache@FreeBSD.ORG, cvs-all@FreeBSD.ORG, cvs-committers@FreeBSD.ORG, cvs-sys@FreeBSD.ORG Subject: Re: cvs commit: src/sys/net if_sl.c Sender: owner-cvs-sys@FreeBSD.ORG X-Loop: FreeBSD.org Precedence: bulk >ache 1997/07/27 12:28:28 PDT > > Modified files: > sys/net if_sl.c > Log: > Move tmpnc struct out of stack, too large > Suggested by: bde It is also too large for static allocation (4K). Why not use malloc()? Bruce