Date: Mon, 17 Sep 2007 03:37:16 GMT From: Kip Macy <kmacy@FreeBSD.org> To: Perforce Change Reviews <perforce@freebsd.org> Subject: PERFORCE change 126500 for review Message-ID: <200709170337.l8H3bGgY015195@repoman.freebsd.org>
next in thread | raw e-mail | index | archive | help
http://perforce.freebsd.org/chv.cgi?CH=126500 Change 126500 by kmacy@kmacy_home:ethng on 2007/09/17 03:36:17 check if MINCLSIZE is already defined Affected files ... .. //depot/projects/ethng/src/sys/sys/mbuf.h#5 edit Differences ... ==== //depot/projects/ethng/src/sys/sys/mbuf.h#5 (text+ko) ==== @@ -55,8 +55,10 @@ */ #define MLEN (MSIZE - sizeof(struct m_hdr)) /* normal data len */ #define MHLEN (MLEN - sizeof(struct pkthdr)) /* data len w/pkthdr */ +#define M_MAXCOMPRESS (MHLEN / 2) /* max amount to copy for compression */ +#ifndef MINCLSIZE #define MINCLSIZE (MHLEN + 1) /* smallest amount to put in cluster */ -#define M_MAXCOMPRESS (MHLEN / 2) /* max amount to copy for compression */ +#endif #ifdef _KERNEL /*-
Want to link to this message? Use this URL: <https://mail-archive.FreeBSD.org/cgi/mid.cgi?200709170337.l8H3bGgY015195>
