From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: Received: (qmail 74346 invoked by alias); 24 Aug 2018 13:10:23 -0000 Mailing-List: contact newlib-cvs-help@sourceware.org; run by ezmlm Precedence: bulk List-Id: List-Subscribe: List-Archive: List-Post: List-Help: , Sender: newlib-cvs-owner@sourceware.org Received: (qmail 71981 invoked by uid 10080); 24 Aug 2018 13:10:22 -0000 Date: Fri, 24 Aug 2018 13:10:00 -0000 Message-ID: <20180824131022.71957.qmail@sourceware.org> Content-Type: text/plain; charset="us-ascii" MIME-Version: 1.0 Content-Transfer-Encoding: 7bit From: Sebastian Huber To: newlib-cvs@sourceware.org Subject: [newlib-cygwin] Garbage collect IFCAP_POLLING_NOCOUNT. X-Act-Checkin: newlib-cygwin X-Git-Author: glebius X-Git-Refname: refs/heads/master X-Git-Oldrev: fba31eac2ec4e6874a68a320294be2f7f29485a9 X-Git-Newrev: d93753807555c648d3049489b62d94d1689b4895 X-SW-Source: 2018-q3/txt/msg00071.txt.bz2 https://sourceware.org/git/gitweb.cgi?p=newlib-cygwin.git;h=d93753807555c648d3049489b62d94d1689b4895 commit d93753807555c648d3049489b62d94d1689b4895 Author: glebius Date: Wed Dec 6 23:03:34 2017 +0000 Garbage collect IFCAP_POLLING_NOCOUNT. It wasn't used since very beginning of polling(4). The module always ignored return value from driver polling handler. Diff: --- newlib/libc/sys/rtems/include/net/if.h | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/newlib/libc/sys/rtems/include/net/if.h b/newlib/libc/sys/rtems/include/net/if.h index 463bdf4..b73c9f6 100644 --- a/newlib/libc/sys/rtems/include/net/if.h +++ b/newlib/libc/sys/rtems/include/net/if.h @@ -234,7 +234,7 @@ struct if_data { #define IFCAP_TOE4 0x04000 /* interface can offload TCP */ #define IFCAP_TOE6 0x08000 /* interface can offload TCP6 */ #define IFCAP_VLAN_HWFILTER 0x10000 /* interface hw can filter vlan tag */ -#define IFCAP_POLLING_NOCOUNT 0x20000 /* polling ticks cannot be fragmented */ +/* available 0x20000 */ #define IFCAP_VLAN_HWTSO 0x40000 /* can do IFCAP_TSO on VLANs */ #define IFCAP_LINKSTATE 0x80000 /* the runtime link state is dynamic */ #define IFCAP_NETMAP 0x100000 /* netmap mode supported/enabled */