From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: Received: (qmail 91948 invoked by alias); 22 May 2017 12:04:35 -0000 Mailing-List: contact newlib-help@sourceware.org; run by ezmlm Precedence: bulk List-Id: List-Subscribe: List-Archive: List-Post: List-Help: , Sender: newlib-owner@sourceware.org Received: (qmail 91915 invoked by uid 89); 22 May 2017 12:04:34 -0000 Authentication-Results: sourceware.org; auth=none X-Virus-Found: No X-Spam-SWARE-Status: No, score=-22.6 required=5.0 tests=AWL,BAYES_20,GIT_PATCH_0,GIT_PATCH_1,GIT_PATCH_2,GIT_PATCH_3,RCVD_IN_DNSWL_NONE,SPF_PASS autolearn=ham version=3.3.2 spammy=sebastian, Sebastian, U*sebastian.huber, sk:sebasti X-HELO: dedi548.your-server.de Received: from dedi548.your-server.de (HELO dedi548.your-server.de) (85.10.215.148) by sourceware.org (qpsmtpd/0.93/v0.84-503-g423c35a) with ESMTP; Mon, 22 May 2017 12:04:32 +0000 Received: from [88.198.220.132] (helo=sslproxy03.your-server.de) by dedi548.your-server.de with esmtpsa (TLSv1.2:DHE-RSA-AES256-GCM-SHA384:256) (Exim 4.85_2) (envelope-from ) id 1dCm4f-0002uH-Tf for newlib@sourceware.org; Mon, 22 May 2017 14:04:33 +0200 Received: from [82.135.62.35] (helo=mail.embedded-brains.de) by sslproxy03.your-server.de with esmtpsa (TLSv1.2:DHE-RSA-AES256-GCM-SHA384:256) (Exim 4.84_2) (envelope-from ) id 1dCm4f-0006u9-Eh for newlib@sourceware.org; Mon, 22 May 2017 14:04:33 +0200 Received: from localhost (localhost.localhost [127.0.0.1]) by mail.embedded-brains.de (Postfix) with ESMTP id 779962A167B for ; Mon, 22 May 2017 14:05:13 +0200 (CEST) Received: from mail.embedded-brains.de ([127.0.0.1]) by localhost (zimbra.eb.localhost [127.0.0.1]) (amavisd-new, port 10032) with ESMTP id wjQu-ONts-ZE for ; Mon, 22 May 2017 14:05:13 +0200 (CEST) Received: from localhost (localhost.localhost [127.0.0.1]) by mail.embedded-brains.de (Postfix) with ESMTP id 1B8CC2A0929 for ; Mon, 22 May 2017 14:05:13 +0200 (CEST) Received: from mail.embedded-brains.de ([127.0.0.1]) by localhost (zimbra.eb.localhost [127.0.0.1]) (amavisd-new, port 10026) with ESMTP id eyaM6ZTRm8er for ; Mon, 22 May 2017 14:05:13 +0200 (CEST) Received: from huber-linux.eb.localhost (unknown [192.168.96.129]) by mail.embedded-brains.de (Postfix) with ESMTP id F3E742A1677 for ; Mon, 22 May 2017 14:05:12 +0200 (CEST) From: Sebastian Huber To: newlib@sourceware.org Subject: [PATCH 3/8] Increase MSIZE for RTEMS Date: Mon, 22 May 2017 12:04:00 -0000 Message-Id: <1495454672-9131-3-git-send-email-sebastian.huber@embedded-brains.de> In-Reply-To: <1495454672-9131-1-git-send-email-sebastian.huber@embedded-brains.de> References: <1495454672-9131-1-git-send-email-sebastian.huber@embedded-brains.de> X-IsSubscribed: yes X-SW-Source: 2017/txt/msg00340.txt.bz2 Increase the MSIZE for RTEMS to be in line with the latest FreeBSD version. The legacy network stack of RTEMS will provides its own definition. Signed-off-by: Sebastian Huber --- newlib/libc/sys/rtems/include/sys/param.h | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/newlib/libc/sys/rtems/include/sys/param.h b/newlib/libc/sys/rtems/include/sys/param.h index 1778ec3..06ef0ec 100644 --- a/newlib/libc/sys/rtems/include/sys/param.h +++ b/newlib/libc/sys/rtems/include/sys/param.h @@ -99,7 +99,7 @@ * MCLBYTES must be no larger than PAGE_SIZE. */ #ifndef MSIZE -#define MSIZE 128 /* size of an mbuf */ +#define MSIZE 256 /* size of an mbuf */ #endif #ifndef MCLSHIFT -- 1.8.4.5