2012-09-05 Joel Sherrill * libc/sys/rtems/machine/param.h: Conditionalize MSIZE so it is correct for old RTEMS TCP/IP stack and new one. Index: libc/sys/rtems/machine/param.h =================================================================== RCS file: /cvs/src/src/newlib/libc/sys/rtems/machine/param.h,v retrieving revision 1.4 diff -u -r1.4 param.h --- libc/sys/rtems/machine/param.h 16 Dec 2009 21:35:51 -0000 1.4 +++ libc/sys/rtems/machine/param.h 5 Sep 2012 19:01:26 -0000 @@ -56,7 +56,12 @@ * of the hardware page size. */ #ifndef MSIZE +/* This increased from the old RTEMS TCP/IP stack to the FreeBSD 8.x one */ +#ifdef __NEW_RTEMS_BSD__ +#define MSIZE 256 /* size of an mbuf */ +#else #define MSIZE 128 /* size of an mbuf */ +#endif #endif /* MSIZE */ #ifndef MCLSHIFT