Re: [PATCH] Re: IFF_LOWER_UP does not fit in ifr_flags
From: David Miller <davem@davemloft.net>
Date: 2009-06-12 03:57:47
Also in:
lkml
From: David Miller <davem@davemloft.net>
Date: 2009-06-12 03:57:47
Also in:
lkml
From: John Dykstra <redacted> Date: Fri, 05 Jun 2009 16:24:07 +0000
On Fri, 2009-05-29 at 20:50 -0700, Andrew Morton wrote:quoted
On Thu, 28 May 2009 14:59:05 +0200 "Fredrik Arnerup" [off-list ref] wrote:quoted
Documentation/networking/operstates.txt (and netdevice(7)) claims that the flags IFF_LOWER_UP, IFF_DORMANT and IFF_ECHO can be read from user space using ioctl() with SIOCGIFFLAGS. Looking in include/linux/if.h however, the flags are returned in a struct ifreq in the field ifr_flags which is declared as a short, while the flags are defined as: #define IFF_LOWER_UP 0x10000 /* driver signals L1 up */ #define IFF_DORMANT 0x20000 /* driver signals dormant */ #define IFF_ECHO 0x40000 /* echo sent packets */[PATCH] net core: Some interface flags not returned by SIOCGIFFLAGS
...
Reported-by: "Fredrik Arnerup" <redacted> Signed-off-by: John Dykstra <redacted>
Applied, thanks!