From owner-freebsd-current Sun Jun 23 07:07:19 1996 Return-Path: owner-current Received: (from root@localhost) by freefall.freebsd.org (8.7.5/8.7.3) id HAA28287 for current-outgoing; Sun, 23 Jun 1996 07:07:19 -0700 (PDT) Received: from godzilla.zeta.org.au (godzilla.zeta.org.au [203.2.228.19]) by freefall.freebsd.org (8.7.5/8.7.3) with SMTP id HAA28278 for ; Sun, 23 Jun 1996 07:07:15 -0700 (PDT) Received: (from bde@localhost) by godzilla.zeta.org.au (8.6.12/8.6.9) id AAA10242; Mon, 24 Jun 1996 00:01:54 +1000 Date: Mon, 24 Jun 1996 00:01:54 +1000 From: Bruce Evans Message-Id: <199606231401.AAA10242@godzilla.zeta.org.au> To: bde@freefall.freebsd.org, current@freebsd.org Subject: Re: cvs commit: src/sys/i386/conf LINT Sender: owner-current@freebsd.org X-Loop: FreeBSD.org Precedence: bulk > Modified: sys/i386/conf LINT > Log: > Describe MAXMEM better. Enable it by default. (It's a positive option. > Only negative options in LINT should be enabled.) disabled The definition of MAXMEM involves many potential quoting bugs. As Joerg pointed out, (128*1024) needs to be quoted if it is to be put into the kernel Makefile instead of into opt_machdep.h like it would be if it were merged into -stable. However, quoting it (at least with single quotes) breaks it in opt_machdep.h - the quotes don't get stripped. It should also be defined as (128 * 1024) (to satisfy KNF rules :-), but then the option reader in config(8) would truncate it to (128. Bruce