* Re: Refactor Netlink connector?
From: Thomas Graf @ 2006-05-31 13:06 UTC (permalink / raw)
To: jamal
Cc: Stephen Smalley, David S. Miller, netdev, Evgeniy Polyakov,
James Morris
In-Reply-To: <1149078055.5462.55.camel@jzny2>
* jamal <hadi@cyberus.ca> 2006-05-31 08:20
> The challenge is how to inform SELinux of these permissions.
> The access limit could be done by putting a SELinux hook at the time the
> skb gets to the generic netlink code?
> Note: There's actually two things that can be classified for access
> control, the genl family as well as the ops.
We already have the flag GENL_ADMIN_PERM which when set for a
struct genl_ops calls security_netlink_recv(). It's not as
fine grained as it could be though. The point is that adding
fine grained SELinux support is no problem and even easier than
for casual netlink families.
> This is even further granularity that opens a whole new can of worms.
I agree, the advantage is that the genetlink code already takes
care of validating the attributes, all we have to do is allow
genetlink families to provide a policy.
> BTW, I abused the term "attribute" in my other email to James. In that
> context it means metadata for the command and in the above case it means
> the "T" in TLV. Despite that they are strongly related, just that
> the packet offsets are different and the checks are for different
> things: SELinux policy is a simple accept/deny based on some policy
> (provisioned in user space??) and nla_policy is richer with a range
> check for sanity reasons as opposed to access control and then
> accept/deny.
Right, the important point is that for genetlink we already have
a point where we peek at the attributes and adding a hook is
trivial unlike for other netlink families where they'd have to be
spread in the code.
^ permalink raw reply
* Re: Question about tcp hash function tcp_hashfn()
From: Evgeniy Polyakov @ 2006-05-31 13:06 UTC (permalink / raw)
To: David Miller, draghuram, linux-kernel, netdev; +Cc: Brian F. G. Bidulock
In-Reply-To: <20060531110459.GA20551@2ka.mipt.ru>
On Wed, May 31, 2006 at 03:04:59PM +0400, Evgeniy Polyakov (johnpol@2ka.mipt.ru) wrote:
> On Wed, May 31, 2006 at 02:58:18PM +0400, Evgeniy Polyakov (johnpol@2ka.mipt.ru) wrote:
> > On Wed, May 31, 2006 at 03:51:24AM -0600, Brian F. G. Bidulock (bidulock@openss7.org) wrote:
> > > Evgeniy,
> > >
> > > On Wed, 31 May 2006, Evgeniy Polyakov wrote:
> > > > 2. Compared Jenkins hash with XOR hash used in TCP socket selection code.
> > > > http://tservice.net.ru/~s0mbre/blog/2006/05/14#2006_05_14
> > >
> > > Two problems with the comparison:
> > >
> > > Port numbers can be collected into a 32 bit register in network
> > > byte order directly from the TCP packet without taking two 16 bit
> > > values and shifting and or'ing them.
> >
> > They are.
> >
> > u32 ports;
> >
> > ports = lport;
> > ports <<= 16;
> > ports |= fport;
>
> Using network or host byte order does not affect hash distribution,
> that shifting was coded to simulate other types of mixing ports,
> which actually never showed different results.
>
> > > Worse: he folded the jenkins algorith result with
> > >
> > > h ^= h >> 16;
> > > h ^= h >> 8;
> > >
> > > Destroying the coverage of the function.
> >
> > It was done to simulate socket code which uses the same folding.
> > Leaving 32bit space is just wrong, consider hash table size with that
> > index.
Btw, that probably requires some clarification.
Since hash table size is definitely less than returned hash value, so
higher bits are removed, for that case above folding is done both in
XOR hash and my test case.
It is possible to just remove higher bits, but fairly ditributed parts
being xored produce still fairly distributed value.
--
Evgeniy Polyakov
^ permalink raw reply
* Re: Refactor Netlink connector?
From: Thomas Graf @ 2006-05-31 13:09 UTC (permalink / raw)
To: jamal; +Cc: James Morris, johnpol, netdev, sds, David Miller
In-Reply-To: <1149076803.5462.36.camel@jzny2>
* jamal <hadi@cyberus.ca> 2006-05-31 08:00
> We could start by just adding a check for NETLINK_GENERIC in your table
> (as is done generally for other netlink families/protocols with SELinux)
> and then do the fine-grained stuff. I think that checking for attributes
> instead of types will need to be generic for all of netlink.
I'm not sure I perfectly understand the check we're heading for, is the
goal to check whether unknown/forbidden attribute types are being
provided by userspace, i.e. compare the provided attribute types against
a list of allowed attribute types maybe in combination with a list of
required permissions for certain attributes?
^ permalink raw reply
* Re: Refactor Netlink connector?
From: jamal @ 2006-05-31 13:22 UTC (permalink / raw)
To: Thomas Graf
Cc: James Morris, Evgeniy Polyakov, netdev, David S. Miller,
Stephen Smalley
In-Reply-To: <20060531130649.GD7844@postel.suug.ch>
On Wed, 2006-31-05 at 15:06 +0200, Thomas Graf wrote:
> * jamal <hadi@cyberus.ca> 2006-05-31 08:20
> > The challenge is how to inform SELinux of these permissions.
> > The access limit could be done by putting a SELinux hook at the time the
> > skb gets to the generic netlink code?
> > Note: There's actually two things that can be classified for access
> > control, the genl family as well as the ops.
>
> We already have the flag GENL_ADMIN_PERM which when set for a
> struct genl_ops calls security_netlink_recv(). It's not as
> fine grained as it could be though.
To also answer your other email:
Look at security/selinux/nlmsgtab.c for example for NETLINK_ROUTE
and compare with NETLINK_GENERIC to see the hole. I was suggesting if
we started by just adding checks for NETLINK_GENERIC first in those
tables (currently lacking), that would be a good start.
> The point is that adding
> fine grained SELinux support is no problem and even easier than
> for casual netlink families.
>
indeed. And it would be the first to check for a lot more fine graining
than exists today.
If you look at security/selinux/nlmsgtab.c (after we add checks for
NETLINK_GENERIC) then it seems hard to just "hardcode" all commands and
families/ids in there because the idea is people could even be doing
this via modules. Not sure if that made sense.
> the important point is that for genetlink we already have
> a point where we peek at the attributes and adding a hook is
> trivial unlike for other netlink families where they'd have to be
> spread in the code.
nod.
cheers,
jamal
^ permalink raw reply
* Re: 2.6.17-rc4: netfilter LOG messages truncated via NETCONSOLE
From: Patrick McHardy @ 2006-05-31 14:57 UTC (permalink / raw)
To: Frank van Maarseveen; +Cc: linux-kernel, Kernel Netdev Mailing List
In-Reply-To: <20060531094626.GA23156@janus>
[-- Attachment #1: Type: text/plain, Size: 3581 bytes --]
Frank van Maarseveen wrote:
> I have two machines named "porvoo" and "espoo". The first one
> has netconsole configured to send kernel messages to UDP port 514
> (a.k.a. syslog) on the other machine.
>
> Somewhere between 2.6.13.2 and 2.6.17-rc4 there is a regression causing
> the netconsole messages which originate from netfilter to be truncated
> right after the MAC addresses. For example, /var/log/messages on the
> sending machine says:
>
> May 31 09:28:11 porvoo kernel: IN=eth0 OUT= MAC=00:12:3f:85:9f:92:00:04:9a:a0:1d:d1:08:00 SRC=192.168.100.30 DST=172.17.1.113 LEN=60 TOS=0x00 PREC=0x00 TTL=54 ID=51496 DF PROTO=TCP SPT=50868 DPT=22 WINDOW=5840 RES=0x00 SYN URGP=0
>
> but netconsole messages captured in /var/log/messages on the receiving
> machine:
>
> May 31 09:28:11 porvoo IN=eth0 OUT=
> May 31 09:28:11 porvoo MAC=
> May 31 09:28:11 porvoo 00:
> May 31 09:28:11 porvoo 12:
> May 31 09:28:11 porvoo 3f:
> May 31 09:28:11 porvoo 85:
> May 31 09:28:11 porvoo 9f:
> May 31 09:28:11 porvoo 92:
> May 31 09:28:11 porvoo 00:
> May 31 09:28:11 porvoo 04:
> May 31 09:28:11 porvoo 9a:
> May 31 09:28:11 porvoo a0:
> May 31 09:28:11 porvoo 1d:
> May 31 09:28:11 porvoo d1:
> May 31 09:28:11 porvoo 08:
> May 31 09:28:11 porvoo 00
> May 31 09:49:06 espoo -- MARK --
>
> I ran a tcpdump on the sending machine to verify(?) what goes out but in
> that case the 2.6.17-rc4 kernel starts to report "protocol 0000 is buggy":
>
> May 31 11:00:49 porvoo kernel: device eth0 entered promiscuous mode
> May 31 11:03:31 porvoo kernel: IN=eth0 OUT= MAC=00:12:3f:85:9f:92:00:12:3f:85:17:52:08:00 SRC=172.17.1.64 DST=172.17.1.113 LEN=60 TOS=0x00 PREC=0x00 TTL=64 ID=60618 DF PROTO=TCP SPT=34984 DPT=21212 WINDOW=5840 RES=0x00 SYN URGP=0
> May 31 11:03:31 porvoo kernel: protocol 0000 is buggy, dev eth0
> May 31 11:03:31 porvoo last message repeated 9 times
>
> the netconsole output captured on the receiving machine:
>
> May 31 11:00:49 porvoo device eth0 entered promiscuous mode
> May 31 11:03:31 porvoo protocol 0000 is buggy, dev eth0
> May 31 11:03:31 porvoo IN=eth0 OUT=
> May 31 11:03:31 porvoo protocol 0000 is buggy, dev eth0
> May 31 11:03:31 porvoo MAC=
> May 31 11:03:31 porvoo protocol 0000 is buggy, dev eth0
> May 31 11:03:31 porvoo 00:
> May 31 11:03:31 porvoo protocol 0000 is buggy, dev eth0
> May 31 11:03:31 porvoo 12:
> May 31 11:03:31 porvoo protocol 0000 is buggy, dev eth0
> May 31 11:03:31 porvoo 3f:
> May 31 11:03:31 porvoo protocol 0000 is buggy, dev eth0
> May 31 11:03:31 porvoo 85:
> May 31 11:03:31 porvoo protocol 0000 is buggy, dev eth0
> May 31 11:03:31 porvoo 9f:
> May 31 11:03:31 porvoo protocol 0000 is buggy, dev eth0
> May 31 11:03:31 porvoo 92:
> May 31 11:03:31 porvoo protocol 0000 is buggy, dev eth0
> May 31 11:03:31 porvoo 00:
> May 31 11:03:31 porvoo protocol 0000 is buggy, dev eth0
> May 31 11:03:31 porvoo 12:
> May 31 11:03:31 porvoo 3f:
> May 31 11:03:31 porvoo 85:
> May 31 11:03:31 porvoo 17:
> May 31 11:03:31 porvoo 52:
> May 31 11:03:31 porvoo 08:
> May 31 11:03:31 porvoo 00
>
> again 9 packets are missing and there are 9 "protocol 0000 is buggy"
> messages. Netfilter has almost everything configured. IPv6 is left out
> everywhere. Above has been produced using this rule on the netconsole
> sending machine:
>
> iptables -I INPUT -p tcp -s espoo --dport 21212 -j LOG
The message means that there was recursion and netpoll fell back
to dev_queue_xmit This patch should fix the "protocol is buggy"
messages, netpoll didn't set skb->nh.raw. Please try if it also
makes the other problem go away.
[-- Attachment #2: x --]
[-- Type: text/plain, Size: 452 bytes --]
diff --git a/net/core/netpoll.c b/net/core/netpoll.c
index e8e05ce..7a4787c 100644
--- a/net/core/netpoll.c
+++ b/net/core/netpoll.c
@@ -329,7 +329,7 @@ void netpoll_send_udp(struct netpoll *np
udph->len = htons(udp_len);
udph->check = 0;
- iph = (struct iphdr *)skb_push(skb, sizeof(*iph));
+ skb->nh.iph = iph = (struct iphdr *)skb_push(skb, sizeof(*iph));
/* iph->version = 4; iph->ihl = 5; */
put_unaligned(0x45, (unsigned char *)iph);
^ permalink raw reply related
* Re: [PATCH] au1000_eth.c Power Management, driver registration and module support
From: Sergei Shtylyov @ 2006-05-31 15:01 UTC (permalink / raw)
To: Rodolfo Giometti; +Cc: jgarzik, netdev, Linux-MIPS, Jordan Crouse
In-Reply-To: <20060502150914.GE20543@gundam.enneenne.com>
Hello.
Rodolfo Giometti wrote:
> here:
> http://ftp.enneenne.com/pub/misc/au1100-patches/linux/patch-au1000_eth-pm-and-registration
> the new version of my patch for au1000_eth.c who should implement:
> Also, as suggested by Sergei it:
>
> * uses physical addresses and not KSEG1-based virtual anymore and
> claims/releases the 4-byte MAC enable registers:
>
> wwpc:~# cat /proc/iomem
> 10500000-1050ffff : eth-base
> 10520000-10520003 : eth-mac
>
> * assigns to the Ethernet ports two consecutive MAC addresses:
>
> - dev->dev_addr[4] += 0x10;
> + ((unsigned long) macen_addr);
> + memcpy(ndev->dev_addr, au1000_mac_addr, sizeof(au1000_mac_addr));
> + ndev->dev_addr[5] += 0x01;
>
> Ciao,
Now that this is merged, Rodolfo's patch should probably preempt mine...
but it looks like something was lost during the transition: I failed to see
where SYS_PINFUNC register is actually read (the comment mentioning this was
retained :-) to check whether Ethernet port 1 is enabled (its pins are shared
w/GPIO)...
> Rodolfo
WBR, Sergei
^ permalink raw reply
* Re: [PATCH] au1000_eth.c Power Management, driver registration and module support
From: Rodolfo Giometti @ 2006-05-31 15:21 UTC (permalink / raw)
To: Sergei Shtylyov; +Cc: jgarzik, netdev, Linux-MIPS, Jordan Crouse
In-Reply-To: <447DAFAE.10503@ru.mvista.com>
[-- Attachment #1: Type: text/plain, Size: 1337 bytes --]
On Wed, May 31, 2006 at 07:01:02PM +0400, Sergei Shtylyov wrote:
>
> Now that this is merged, Rodolfo's patch should probably preempt mine...
> but it looks like something was lost during the transition: I failed to see
> where SYS_PINFUNC register is actually read (the comment mentioning this
> was retained :-) to check whether Ethernet port 1 is enabled (its pins are
> shared w/GPIO)...
You are right! Maybe something like this may fix the problem:
diff --git a/drivers/net/au1000_eth.c b/drivers/net/au1000_eth.c
index 341fdc4..8a6427e 100644
--- a/drivers/net/au1000_eth.c
+++ b/drivers/net/au1000_eth.c
@@ -2149,6 +2149,9 @@ static int au1000_drv_probe(struct devic
void *base_addr, *macen_addr;
int irq, ret;
+ if (pdev->id == 1 && (au_readl(SYS_PINFUNC) & SYS_PF_NI2) != 0)
+ return -ENODEV;
+
/* Get the resource info */
res = platform_get_resource_byname(pdev, IORESOURCE_MEM, "eth-base");
if (!res) {
Ciao,
Rodolfo
--
GNU/Linux Solutions e-mail: giometti@enneenne.com
Linux Device Driver giometti@gnudd.com
Embedded Systems giometti@linux.it
UNIX programming phone: +39 349 2432127
[-- Attachment #2: Digital signature --]
[-- Type: application/pgp-signature, Size: 189 bytes --]
^ permalink raw reply
* Re: Refactor Netlink connector?
From: James Morris @ 2006-05-31 15:42 UTC (permalink / raw)
To: jamal
Cc: Thomas Graf, Evgeniy Polyakov, netdev, David S. Miller,
Stephen Smalley
In-Reply-To: <1149081752.5462.98.camel@jzny2>
On Wed, 31 May 2006, jamal wrote:
> To also answer your other email:
> Look at security/selinux/nlmsgtab.c for example for NETLINK_ROUTE
> and compare with NETLINK_GENERIC to see the hole. I was suggesting if
> we started by just adding checks for NETLINK_GENERIC first in those
> tables (currently lacking), that would be a good start.
They're currently mediated as a generic netlink socket type at a higher
level: they're not unmediated, just not fine grained enough to know what
kind of message is being sent.
--
James Morris
<jmorris@namei.org>
^ permalink raw reply
* Re: 2.6.17-rc4: netfilter LOG messages truncated via NETCONSOLE
From: Frank van Maarseveen @ 2006-05-31 16:06 UTC (permalink / raw)
To: Patrick McHardy; +Cc: linux-kernel, Kernel Netdev Mailing List
In-Reply-To: <447DAEC9.3050003@trash.net>
On Wed, May 31, 2006 at 04:57:13PM +0200, Patrick McHardy wrote:
> Frank van Maarseveen wrote:
> > I have two machines named "porvoo" and "espoo". The first one
> > has netconsole configured to send kernel messages to UDP port 514
> > (a.k.a. syslog) on the other machine.
> >
> > Somewhere between 2.6.13.2 and 2.6.17-rc4 there is a regression causing
> > the netconsole messages which originate from netfilter to be truncated
> > right after the MAC addresses. For example, /var/log/messages on the
> > sending machine says:
> >
> > May 31 09:28:11 porvoo kernel: IN=eth0 OUT= MAC=00:12:3f:85:9f:92:00:04:9a:a0:1d:d1:08:00 SRC=192.168.100.30 DST=172.17.1.113 LEN=60 TOS=0x00 PREC=0x00 TTL=54 ID=51496 DF PROTO=TCP SPT=50868 DPT=22 WINDOW=5840 RES=0x00 SYN URGP=0
> >
> > but netconsole messages captured in /var/log/messages on the receiving
> > machine:
> >
> > May 31 09:28:11 porvoo IN=eth0 OUT=
> > May 31 09:28:11 porvoo MAC=
> > May 31 09:28:11 porvoo 00:
> > May 31 09:28:11 porvoo 12:
> > May 31 09:28:11 porvoo 3f:
> > May 31 09:28:11 porvoo 85:
> > May 31 09:28:11 porvoo 9f:
> > May 31 09:28:11 porvoo 92:
> > May 31 09:28:11 porvoo 00:
> > May 31 09:28:11 porvoo 04:
> > May 31 09:28:11 porvoo 9a:
> > May 31 09:28:11 porvoo a0:
> > May 31 09:28:11 porvoo 1d:
> > May 31 09:28:11 porvoo d1:
> > May 31 09:28:11 porvoo 08:
> > May 31 09:28:11 porvoo 00
> > May 31 09:49:06 espoo -- MARK --
> >
> > I ran a tcpdump on the sending machine to verify(?) what goes out but in
> > that case the 2.6.17-rc4 kernel starts to report "protocol 0000 is buggy":
[...]
>
>
> The message means that there was recursion and netpoll fell back
> to dev_queue_xmit This patch should fix the "protocol is buggy"
> messages, netpoll didn't set skb->nh.raw. Please try if it also
> makes the other problem go away.
"protocol 0000 is buggy" is gone. The other problem is still there.
--
Frank
^ permalink raw reply
* Re: 2.6.17-rc4: netfilter LOG messages truncated via NETCONSOLE
From: Patrick McHardy @ 2006-05-31 16:36 UTC (permalink / raw)
To: Frank van Maarseveen; +Cc: linux-kernel, Kernel Netdev Mailing List
In-Reply-To: <20060531160611.GA25637@janus>
[-- Attachment #1: Type: text/plain, Size: 720 bytes --]
Frank van Maarseveen wrote:
> On Wed, May 31, 2006 at 04:57:13PM +0200, Patrick McHardy wrote:
>
>>The message means that there was recursion and netpoll fell back
>>to dev_queue_xmit This patch should fix the "protocol is buggy"
>>messages, netpoll didn't set skb->nh.raw. Please try if it also
>>makes the other problem go away.
>
>
> "protocol 0000 is buggy" is gone. The other problem is still there.
The messages might get dropped when the output queue is full.
Does one of the drop counters shown by "ip -s link list"
and "tc -s -d qdisc show" increase (the other counts might also
give some clues)? Otherwise please apply the attached patch
(should fix tcpdump, last patch was incomplete) and post a dump.
[-- Attachment #2: x --]
[-- Type: text/plain, Size: 739 bytes --]
diff --git a/net/core/netpoll.c b/net/core/netpoll.c
index e8e05ce..05ed18d 100644
--- a/net/core/netpoll.c
+++ b/net/core/netpoll.c
@@ -329,7 +329,7 @@ void netpoll_send_udp(struct netpoll *np
udph->len = htons(udp_len);
udph->check = 0;
- iph = (struct iphdr *)skb_push(skb, sizeof(*iph));
+ skb->nh.iph = iph = (struct iphdr *)skb_push(skb, sizeof(*iph));
/* iph->version = 4; iph->ihl = 5; */
put_unaligned(0x45, (unsigned char *)iph);
@@ -346,7 +346,7 @@ void netpoll_send_udp(struct netpoll *np
eth = (struct ethhdr *) skb_push(skb, ETH_HLEN);
- eth->h_proto = htons(ETH_P_IP);
+ eth->h_proto = skb->protocol = htons(ETH_P_IP);
memcpy(eth->h_source, np->local_mac, 6);
memcpy(eth->h_dest, np->remote_mac, 6);
^ permalink raw reply related
* TCP connection hang problem with 2.6.16.16, e1000.
From: Ben Greear @ 2006-05-31 16:45 UTC (permalink / raw)
To: NetDev
[-- Attachment #1: Type: text/plain, Size: 2322 bytes --]
Kernel is 2.6.16.16 with my patches, including a patch to the
e1000. I also rebuilt a fresh kernel with only the attached
send-to-self patch. I see the hang, but there was no OOM messages,
probably because the machine was freshly rebooted and had plenty
of buffers available. I will try to reproduce this with some other
NICs next...
I am running 2 TCP connections between two ports of a pro/1000 NIC with
fiber interfaces. Both connections are trying to send 200Mbps in both
directions. Each write to the socket is 5000 bytes. MTU is 1500.
After maybe 10 seconds, I see out-of-memory errors on the console and
then the connections hang and send no more traffic. However, the
NICs are still showing ~215kpps. According to ethereal, these are
duplicate acks.
0.928361 172.1.5.169 -> 172.1.5.168 TCP [TCP Dup ACK 4#1389] 33020 > 33019
[ACK] Seq=4294967208 Ack=32 Win=23 Len=0 TSV=1278643133 TSER=1278356385
0.928618 172.1.5.169 -> 172.1.5.168 TCP [TCP Dup ACK 2#1300] 33018 > 33017
[ACK] Seq=0 Ack=0 Win=538 Len=0 TSV=1278643133 TSER=1278338974
0.928858 172.1.5.169 -> 172.1.5.168 TCP [TCP Dup ACK 4#1390] 33020 > 33019
[ACK] Seq=4294967208 Ack=32 Win=23 Len=0 TSV=1278643134 TSER=1278356385
0.929190 172.1.5.169 -> 172.1.5.168 TCP [TCP Dup ACK 2#1301] 33018 > 33017
[ACK] Seq=0 Ack=0 Win=538 Len=0 TSV=1278643134 TSER=1278338974
0.929461 172.1.5.169 -> 172.1.5.168 TCP [TCP Dup ACK 2#1302] 33018 > 33017
[ACK] Seq=0 Ack=0 Win=538 Len=0 TSV=1278643134 TSER=1278338974
0.929716 172.1.5.169 -> 172.1.5.168 TCP [TCP Dup ACK 4#1391] 33020 > 33019
[ACK] Seq=4294967208 Ack=32 Win=23 Len=0 TSV=1278643134 TSER=1278356385
107215 packets dropped
Stopping the TCP connection does not appear to immediately fix the problem:
The connections are in the FIN_WAIT1 state and the dup acks continue to flow.
ifdown/ifup after stopping the connections seems to clear the problem.
I saw no more OOM messages with TOE disabled, but the connection still
hangs.
The OOM related console messages are attached.
The problem also happens when no OOM messages are printed, but it runs slightly
longer (maybe 15-20 seconds).
I suspect that a dropped packet or packets is somehow the problem.
Thanks,
Ben
--
Ben Greear <greearb@candelatech.com>
Candela Technologies Inc http://www.candelatech.com
[-- Attachment #2: messages --]
[-- Type: text/plain, Size: 78185 bytes --]
May 28 04:02:06 xeon-dt syslogd 1.4.1: restart.
May 30 11:54:40 xeon-dt kernel: e1000: eth4: e1000_watchdog_task: NIC Link is Up 100 Mbps Full Duplex
May 30 11:54:43 xeon-dt kernel: e1000: eth3: e1000_watchdog_task: NIC Link is Up 100 Mbps Full Duplex
May 30 12:33:54 xeon-dt kernel: e1000: eth4: e1000_watchdog_task: NIC Link is Down
May 30 12:33:54 xeon-dt kernel: e1000: eth3: e1000_watchdog_task: NIC Link is Down
May 30 12:33:58 xeon-dt kernel: e1000: eth3: e1000_watchdog_task: NIC Link is Up 100 Mbps Full Duplex
May 30 12:33:58 xeon-dt kernel: e1000: eth4: e1000_watchdog_task: NIC Link is Up 100 Mbps Full Duplex
May 30 12:52:57 xeon-dt kernel: e1000: eth4: e1000_watchdog_task: NIC Link is Down
May 30 12:52:57 xeon-dt kernel: e1000: eth3: e1000_watchdog_task: NIC Link is Down
May 31 08:07:00 xeon-dt kernel: irqbalance: page allocation failure. order:1, mode:0x20
May 31 08:07:00 xeon-dt kernel: [<78147393>] __alloc_pages+0x1d8/0x2b8
May 31 08:07:00 xeon-dt kernel: [<7815c525>] kmem_getpages+0x2f/0x8c
May 31 08:07:00 xeon-dt kernel: [<7815d297>] cache_grow+0xb1/0x14e
May 31 08:07:00 xeon-dt kernel: [<7815d48e>] cache_alloc_refill+0x15a/0x206
May 31 08:07:00 xeon-dt kernel: [<7815d7c5>] __kmalloc+0x68/0x80
May 31 08:07:00 xeon-dt kernel: [<782b3ba2>] __alloc_skb+0x4c/0xf6
May 31 08:07:00 xeon-dt kernel: [<782e63af>] tcp_collapse+0xe9/0x34e
May 31 08:07:00 xeon-dt kernel: [<782e6726>] tcp_prune_queue+0x97/0x1db
May 31 08:07:00 xeon-dt kernel: [<782e5e5e>] tcp_data_queue+0x2ba/0x722
May 31 08:07:00 xeon-dt kernel: [<7831af17>] _read_lock+0x24/0x8c
May 31 08:07:00 xeon-dt kernel: [<782e6eb7>] tcp_rcv_established+0x1dc/0x6cf
May 31 08:07:01 xeon-dt kernel: [<782ee2b8>] tcp_v4_do_rcv+0xe5/0xea
May 31 08:07:01 xeon-dt kernel: [<782eea45>] tcp_v4_rcv+0x788/0x9b0
May 31 08:07:01 xeon-dt kernel: [<78141615>] handle_IRQ_event+0x26/0x59
May 31 08:07:01 xeon-dt kernel: [<782d48fe>] ip_local_deliver+0x109/0x287
May 31 08:07:02 xeon-dt kernel: [<782d4d1f>] ip_rcv+0x2a3/0x577
May 31 08:07:02 xeon-dt kernel: [<f898c6c2>] e1000_alloc_rx_buffers+0x22a/0x418 [e1000]
May 31 08:07:02 xeon-dt kernel: [<782ee9bc>] tcp_v4_rcv+0x6ff/0x9b0
May 31 08:07:02 xeon-dt kernel: [<782b9841>] netif_receive_skb+0x2b8/0x36d
May 31 08:07:02 xeon-dt kernel: [<f898bb26>] e1000_clean_rx_irq+0x1cb/0x5c6 [e1000]
May 31 08:07:02 xeon-dt kernel: [<78125460>] getnstimeofday+0x10/0x2a
May 31 08:07:02 xeon-dt kernel: [<f898b546>] e1000_clean+0xa6/0x18d [e1000]
May 31 08:07:02 xeon-dt kernel: [<782b9a92>] net_rx_action+0x99/0x1ae
May 31 08:07:03 xeon-dt kernel: [<78125733>] __do_softirq+0xbb/0xd0
May 31 08:07:03 xeon-dt kernel: [<78125790>] do_softirq+0x48/0x4a
May 31 08:07:03 xeon-dt kernel: [<78125879>] irq_exit+0x42/0x44
May 31 08:07:04 xeon-dt kernel: [<781050e7>] do_IRQ+0x37/0x62
May 31 08:07:04 xeon-dt kernel: [<781036ba>] common_interrupt+0x1a/0x20
May 31 08:07:04 xeon-dt kernel: [<781d007b>] as_get_io_context+0x15/0x33
May 31 08:07:04 xeon-dt kernel: [<7831adfb>] _spin_lock+0x4e/0x8e
May 31 08:07:04 xeon-dt kernel: [<7817808f>] d_rehash+0x4b/0x7a
May 31 08:07:05 xeon-dt kernel: [<78196900>] proc_lookup+0x83/0xb9
May 31 08:07:05 xeon-dt kernel: [<78193bea>] proc_root_lookup+0x19/0x47
May 31 08:07:05 xeon-dt kernel: [<7816db17>] real_lookup+0xb5/0xd1
May 31 08:07:05 xeon-dt kernel: [<7816dd93>] do_lookup+0x85/0x90
May 31 08:07:05 xeon-dt kernel: [<7816de86>] __link_path_walk+0xe8/0xc6f
May 31 08:07:05 xeon-dt kernel: [<7831b18a>] _spin_unlock+0xf/0x23
May 31 08:07:05 xeon-dt kernel: [<f898b750>] e1000_clean_tx_irq+0x123/0x32e [e1000]
May 31 08:07:05 xeon-dt kernel: [<f898bba4>] e1000_clean_rx_irq+0x249/0x5c6 [e1000]
May 31 08:07:05 xeon-dt kernel: [<7816ea54>] link_path_walk+0x47/0xc4
May 31 08:07:05 xeon-dt kernel: [<78155eb6>] free_pages_and_swap_cache+0x54/0x75
May 31 08:07:05 xeon-dt kernel: [<7816135b>] get_empty_filp+0x77/0x15d
May 31 08:07:05 xeon-dt kernel: [<7816edf5>] do_path_lookup+0x124/0x26f
May 31 08:07:05 xeon-dt kernel: [<7816efa8>] __path_lookup_intent_open+0x50/0x90
May 31 08:07:05 xeon-dt kernel: [<7816f84d>] open_namei+0xcb/0x631
May 31 08:07:05 xeon-dt kernel: [<7814e658>] unmap_vmas+0xff/0x245
May 31 08:07:05 xeon-dt kernel: [<7815f853>] do_filp_open+0x2e/0x4d
May 31 08:07:06 xeon-dt kernel: [<78155eb6>] free_pages_and_swap_cache+0x54/0x75
May 31 08:07:06 xeon-dt kernel: [<7815fb65>] do_sys_open+0x3e/0xb2
May 31 08:07:06 xeon-dt kernel: [<7815fbf5>] sys_open+0x1c/0x20
May 31 08:07:06 xeon-dt kernel: [<78102c93>] sysenter_past_esp+0x54/0x75
May 31 08:07:06 xeon-dt kernel: Mem-info:
May 31 08:07:06 xeon-dt kernel: DMA per-cpu:
May 31 08:07:06 xeon-dt kernel: cpu 0 hot: high 0, batch 1 used:0
May 31 08:07:06 xeon-dt kernel: cpu 0 cold: high 0, batch 1 used:0
May 31 08:07:06 xeon-dt kernel: cpu 1 hot: high 0, batch 1 used:0
May 31 08:07:06 xeon-dt kernel: cpu 1 cold: high 0, batch 1 used:0
May 31 08:07:06 xeon-dt kernel: cpu 2 hot: high 0, batch 1 used:0
May 31 08:07:06 xeon-dt kernel: cpu 2 cold: high 0, batch 1 used:0
May 31 08:07:06 xeon-dt kernel: cpu 3 hot: high 0, batch 1 used:0
May 31 08:07:06 xeon-dt kernel: cpu 3 cold: high 0, batch 1 used:0
May 31 08:07:06 xeon-dt kernel: DMA32 per-cpu: empty
May 31 08:07:06 xeon-dt kernel: Normal per-cpu:
May 31 08:07:06 xeon-dt kernel: cpu 0 hot: high 186, batch 31 used:183
May 31 08:07:06 xeon-dt kernel: cpu 0 cold: high 62, batch 15 used:47
May 31 08:07:06 xeon-dt kernel: cpu 1 hot: high 186, batch 31 used:51
May 31 08:07:06 xeon-dt kernel: cpu 1 cold: high 62, batch 15 used:33
May 31 08:07:06 xeon-dt kernel: cpu 2 hot: high 186, batch 31 used:167
May 31 08:07:06 xeon-dt kernel: cpu 2 cold: high 62, batch 15 used:52
May 31 08:07:06 xeon-dt kernel: cpu 3 hot: high 186, batch 31 used:23
May 31 08:07:06 xeon-dt kernel: cpu 3 cold: high 62, batch 15 used:14
May 31 08:07:06 xeon-dt kernel: HighMem per-cpu: empty
May 31 08:07:06 xeon-dt kernel: Free pages: 39080kB (0kB HighMem)
May 31 08:07:06 xeon-dt kernel: Active:141705 inactive:50502 dirty:96 writeback:0 unstable:0 free:9770 slab:311263 mapped:13115 pagetables:231
May 31 08:07:06 xeon-dt kernel: DMA free:8144kB min:44kB low:52kB high:64kB active:348kB inactive:0kB present:16384kB pages_scanned:510 all_unreclaimable? yes
May 31 08:07:06 xeon-dt kernel: lowmem_reserve[]: 0 0 2031 2031
May 31 08:07:06 xeon-dt kernel: DMA32 free:0kB min:0kB low:0kB high:0kB active:0kB inactive:0kB present:0kB pages_scanned:0 all_unreclaimable? no
May 31 08:07:06 xeon-dt kernel: lowmem_reserve[]: 0 0 2031 2031
May 31 08:07:06 xeon-dt kernel: Normal free:30936kB min:5744kB low:7180kB high:8616kB active:566472kB inactive:202008kB present:2080704kB pages_scanned:7 all_unreclaimable? no
May 31 08:07:06 xeon-dt kernel: lowmem_reserve[]: 0 0 0 0
May 31 08:07:06 xeon-dt kernel: HighMem free:0kB min:128kB low:128kB high:128kB active:0kB inactive:0kB present:0kB pages_scanned:0 all_unreclaimable? no
May 31 08:07:06 xeon-dt kernel: lowmem_reserve[]: 0 0 0 0
May 31 08:07:06 xeon-dt kernel: DMA: 0*4kB 0*8kB 1*16kB 0*32kB 1*64kB 1*128kB 1*256kB 1*512kB 1*1024kB 1*2048kB 1*4096kB = 8144kB
May 31 08:07:06 xeon-dt kernel: DMA32: empty
May 31 08:07:06 xeon-dt kernel: Normal: 6654*4kB 406*8kB 1*16kB 1*32kB 0*64kB 0*128kB 0*256kB 0*512kB 1*1024kB 0*2048kB 0*4096kB = 30936kB
May 31 08:07:06 xeon-dt kernel: HighMem: empty
May 31 08:07:06 xeon-dt kernel: Swap cache: add 0, delete 0, find 0/0, race 0+0
May 31 08:07:06 xeon-dt kernel: Free swap = 2040244kB
May 31 08:07:06 xeon-dt kernel: Total swap = 2040244kB
May 31 08:07:06 xeon-dt kernel: Free swap: 2040244kB
May 31 08:07:06 xeon-dt kernel: 524272 pages of RAM
May 31 08:07:06 xeon-dt kernel: 0 pages of HIGHMEM
May 31 08:07:06 xeon-dt kernel: 7484 reserved pages
May 31 08:07:06 xeon-dt kernel: 157201 pages shared
May 31 08:07:06 xeon-dt kernel: 0 pages swap cached
May 31 08:07:06 xeon-dt kernel: 96 pages dirty
May 31 08:07:06 xeon-dt kernel: 0 pages writeback
May 31 08:07:06 xeon-dt kernel: 13115 pages mapped
May 31 08:07:06 xeon-dt kernel: 311263 pages slab
May 31 08:07:06 xeon-dt kernel: 231 pages pagetables
May 31 08:07:06 xeon-dt kernel: swapper: page allocation failure. order:1, mode:0x20
May 31 08:07:06 xeon-dt kernel: [<78147393>] __alloc_pages+0x1d8/0x2b8
May 31 08:07:06 xeon-dt kernel: [<7815c525>] kmem_getpages+0x2f/0x8c
May 31 08:07:06 xeon-dt kernel: [<7815d297>] cache_grow+0xb1/0x14e
May 31 08:07:06 xeon-dt kernel: [<7815d48e>] cache_alloc_refill+0x15a/0x206
May 31 08:07:06 xeon-dt kernel: [<7815d7c5>] __kmalloc+0x68/0x80
May 31 08:07:06 xeon-dt kernel: [<782b3ba2>] __alloc_skb+0x4c/0xf6
May 31 08:07:06 xeon-dt kernel: [<782e63af>] tcp_collapse+0xe9/0x34e
May 31 08:07:06 xeon-dt kernel: [<782e6726>] tcp_prune_queue+0x97/0x1db
May 31 08:07:06 xeon-dt kernel: [<782e5e5e>] tcp_data_queue+0x2ba/0x722
May 31 08:07:06 xeon-dt kernel: [<7831af17>] _read_lock+0x24/0x8c
May 31 08:07:06 xeon-dt kernel: [<782e6eb7>] tcp_rcv_established+0x1dc/0x6cf
May 31 08:07:06 xeon-dt kernel: [<782ee2b8>] tcp_v4_do_rcv+0xe5/0xea
May 31 08:07:06 xeon-dt kernel: [<782eea45>] tcp_v4_rcv+0x788/0x9b0
May 31 08:07:06 xeon-dt kernel: [<7815d312>] cache_grow+0x12c/0x14e
May 31 08:07:06 xeon-dt kernel: [<782d48fe>] ip_local_deliver+0x109/0x287
May 31 08:07:06 xeon-dt kernel: [<782d4d1f>] ip_rcv+0x2a3/0x577
May 31 08:07:06 xeon-dt kernel: [<f898c6c2>] e1000_alloc_rx_buffers+0x22a/0x418 [e1000]
May 31 08:07:06 xeon-dt kernel: [<782b9841>] netif_receive_skb+0x2b8/0x36d
May 31 08:07:06 xeon-dt kernel: [<f898bb26>] e1000_clean_rx_irq+0x1cb/0x5c6 [e1000]
May 31 08:07:06 xeon-dt kernel: [<78125460>] getnstimeofday+0x10/0x2a
May 31 08:07:06 xeon-dt kernel: [<f898b546>] e1000_clean+0xa6/0x18d [e1000]
May 31 08:07:06 xeon-dt kernel: [<782b9a92>] net_rx_action+0x99/0x1ae
May 31 08:07:06 xeon-dt kernel: [<78125733>] __do_softirq+0xbb/0xd0
May 31 08:07:06 xeon-dt kernel: [<78125790>] do_softirq+0x48/0x4a
May 31 08:07:06 xeon-dt kernel: [<78125879>] irq_exit+0x42/0x44
May 31 08:07:06 xeon-dt kernel: [<781050e7>] do_IRQ+0x37/0x62
May 31 08:07:06 xeon-dt kernel: [<78100cca>] default_idle+0x0/0x52
May 31 08:07:06 xeon-dt kernel: [<781036ba>] common_interrupt+0x1a/0x20
May 31 08:07:06 xeon-dt kernel: [<78100cca>] default_idle+0x0/0x52
May 31 08:07:06 xeon-dt kernel: [<78100cfd>] default_idle+0x33/0x52
May 31 08:07:06 xeon-dt kernel: [<78100d9e>] cpu_idle+0x6e/0x9f
May 31 08:07:06 xeon-dt kernel: Mem-info:
May 31 08:07:06 xeon-dt kernel: DMA per-cpu:
May 31 08:07:06 xeon-dt kernel: cpu 0 hot: high 0, batch 1 used:0
May 31 08:07:06 xeon-dt kernel: cpu 0 cold: high 0, batch 1 used:0
May 31 08:07:06 xeon-dt kernel: cpu 1 hot: high 0, batch 1 used:0
May 31 08:07:06 xeon-dt kernel: cpu 1 cold: high 0, batch 1 used:0
May 31 08:07:06 xeon-dt kernel: cpu 2 hot: high 0, batch 1 used:0
May 31 08:07:06 xeon-dt kernel: cpu 2 cold: high 0, batch 1 used:0
May 31 08:07:06 xeon-dt kernel: cpu 3 hot: high 0, batch 1 used:0
May 31 08:07:06 xeon-dt kernel: cpu 3 cold: high 0, batch 1 used:0
May 31 08:07:06 xeon-dt kernel: DMA32 per-cpu: empty
May 31 08:07:06 xeon-dt kernel: Normal per-cpu:
May 31 08:07:06 xeon-dt kernel: cpu 0 hot: high 186, batch 31 used:18
May 31 08:07:06 xeon-dt kernel: cpu 0 cold: high 62, batch 15 used:47
May 31 08:07:06 xeon-dt kernel: cpu 1 hot: high 186, batch 31 used:3
May 31 08:07:06 xeon-dt kernel: cpu 1 cold: high 62, batch 15 used:33
May 31 08:07:06 xeon-dt kernel: cpu 2 hot: high 186, batch 31 used:177
May 31 08:07:06 xeon-dt kernel: cpu 2 cold: high 62, batch 15 used:52
May 31 08:07:06 xeon-dt kernel: cpu 3 hot: high 186, batch 31 used:9
May 31 08:07:06 xeon-dt kernel: cpu 3 cold: high 62, batch 15 used:14
May 31 08:07:06 xeon-dt kernel: HighMem per-cpu: empty
May 31 08:07:06 xeon-dt kernel: Free pages: 32536kB (0kB HighMem)
May 31 08:07:06 xeon-dt kernel: Active:141711 inactive:50496 dirty:97 writeback:1 unstable:0 free:8134 slab:312584 mapped:13115 pagetables:231
May 31 08:07:06 xeon-dt kernel: DMA free:8144kB min:44kB low:52kB high:64kB active:348kB inactive:0kB present:16384kB pages_scanned:510 all_unreclaimable? yes
May 31 08:07:06 xeon-dt kernel: lowmem_reserve[]: 0 0 2031 2031
May 31 08:07:06 xeon-dt kernel: DMA32 free:0kB min:0kB low:0kB high:0kB active:0kB inactive:0kB present:0kB pages_scanned:0 all_unreclaimable? no
May 31 08:07:06 xeon-dt kernel: lowmem_reserve[]: 0 0 2031 2031
May 31 08:07:06 xeon-dt kernel: Normal free:24392kB min:5744kB low:7180kB high:8616kB active:566496kB inactive:201984kB present:2080704kB pages_scanned:0 all_unreclaimable? no
May 31 08:07:06 xeon-dt kernel: lowmem_reserve[]: 0 0 0 0
May 31 08:07:06 xeon-dt kernel: HighMem free:0kB min:128kB low:128kB high:128kB active:0kB inactive:0kB present:0kB pages_scanned:0 all_unreclaimable? no
May 31 08:07:06 xeon-dt kernel: lowmem_reserve[]: 0 0 0 0
May 31 08:07:06 xeon-dt kernel: DMA: 0*4kB 0*8kB 1*16kB 0*32kB 1*64kB 1*128kB 1*256kB 1*512kB 1*1024kB 1*2048kB 1*4096kB = 8144kB
May 31 08:07:06 xeon-dt kernel: DMA32: empty
May 31 08:07:06 xeon-dt kernel: Normal: 5828*4kB 1*8kB 1*16kB 1*32kB 0*64kB 0*128kB 0*256kB 0*512kB 1*1024kB 0*2048kB 0*4096kB = 24392kB
May 31 08:07:06 xeon-dt kernel: HighMem: empty
May 31 08:07:07 xeon-dt kernel: Swap cache: add 0, delete 0, find 0/0, race 0+0
May 31 08:07:07 xeon-dt kernel: Free swap = 2040244kB
May 31 08:07:07 xeon-dt kernel: Total swap = 2040244kB
May 31 08:07:07 xeon-dt kernel: Free swap: 2040244kB
May 31 08:07:07 xeon-dt kernel: 524272 pages of RAM
May 31 08:07:07 xeon-dt kernel: 0 pages of HIGHMEM
May 31 08:07:07 xeon-dt kernel: 7484 reserved pages
May 31 08:07:07 xeon-dt kernel: 157201 pages shared
May 31 08:07:07 xeon-dt kernel: 0 pages swap cached
May 31 08:07:07 xeon-dt kernel: 97 pages dirty
May 31 08:07:07 xeon-dt kernel: 1 pages writeback
May 31 08:07:07 xeon-dt kernel: 13115 pages mapped
May 31 08:07:07 xeon-dt kernel: 312584 pages slab
May 31 08:07:07 xeon-dt kernel: 231 pages pagetables
May 31 08:07:07 xeon-dt kernel: swapper: page allocation failure. order:1, mode:0x20
May 31 08:07:07 xeon-dt kernel: [<78147393>] __alloc_pages+0x1d8/0x2b8
May 31 08:07:07 xeon-dt kernel: [<7815c525>] kmem_getpages+0x2f/0x8c
May 31 08:07:07 xeon-dt kernel: [<7815d297>] cache_grow+0xb1/0x14e
May 31 08:07:07 xeon-dt kernel: [<7815d48e>] cache_alloc_refill+0x15a/0x206
May 31 08:07:07 xeon-dt kernel: [<7815d7c5>] __kmalloc+0x68/0x80
May 31 08:07:07 xeon-dt kernel: [<782b3ba2>] __alloc_skb+0x4c/0xf6
May 31 08:07:07 xeon-dt kernel: [<782e63af>] tcp_collapse+0xe9/0x34e
May 31 08:07:07 xeon-dt kernel: [<782e6726>] tcp_prune_queue+0x97/0x1db
May 31 08:07:07 xeon-dt kernel: [<782e5e5e>] tcp_data_queue+0x2ba/0x722
May 31 08:07:07 xeon-dt kernel: [<7831af17>] _read_lock+0x24/0x8c
May 31 08:07:07 xeon-dt kernel: [<782e6eb7>] tcp_rcv_established+0x1dc/0x6cf
May 31 08:07:07 xeon-dt kernel: [<7831b18a>] _spin_unlock+0xf/0x23
May 31 08:07:07 xeon-dt kernel: [<782ee2b8>] tcp_v4_do_rcv+0xe5/0xea
May 31 08:07:07 xeon-dt kernel: [<782eea45>] tcp_v4_rcv+0x788/0x9b0
May 31 08:07:07 xeon-dt kernel: [<782b3ba2>] __alloc_skb+0x4c/0xf6
May 31 08:07:07 xeon-dt kernel: [<782d48fe>] ip_local_deliver+0x109/0x287
May 31 08:07:07 xeon-dt kernel: [<782d4d1f>] ip_rcv+0x2a3/0x577
May 31 08:07:07 xeon-dt kernel: [<f898b750>] e1000_clean_tx_irq+0x123/0x32e [e1000]
May 31 08:07:07 xeon-dt kernel: [<f898bba4>] e1000_clean_rx_irq+0x249/0x5c6 [e1000]
May 31 08:07:07 xeon-dt kernel: [<f898c6c2>] e1000_alloc_rx_buffers+0x22a/0x418 [e1000]
May 31 08:07:07 xeon-dt kernel: [<782b9841>] netif_receive_skb+0x2b8/0x36d
May 31 08:07:07 xeon-dt kernel: [<f898bb26>] e1000_clean_rx_irq+0x1cb/0x5c6 [e1000]
May 31 08:07:07 xeon-dt kernel: [<f898b546>] e1000_clean+0xa6/0x18d [e1000]
May 31 08:07:07 xeon-dt kernel: [<782b9a92>] net_rx_action+0x99/0x1ae
May 31 08:07:07 xeon-dt kernel: [<78125733>] __do_softirq+0xbb/0xd0
May 31 08:07:07 xeon-dt kernel: [<78125790>] do_softirq+0x48/0x4a
May 31 08:07:07 xeon-dt kernel: [<78125879>] irq_exit+0x42/0x44
May 31 08:07:07 xeon-dt kernel: [<781050e7>] do_IRQ+0x37/0x62
May 31 08:07:07 xeon-dt kernel: [<78100cca>] default_idle+0x0/0x52
May 31 08:07:07 xeon-dt kernel: [<781036ba>] common_interrupt+0x1a/0x20
May 31 08:07:07 xeon-dt kernel: [<78100cca>] default_idle+0x0/0x52
May 31 08:07:07 xeon-dt kernel: [<78100cfd>] default_idle+0x33/0x52
May 31 08:07:07 xeon-dt kernel: [<78100d9e>] cpu_idle+0x6e/0x9f
May 31 08:07:07 xeon-dt kernel: [<7841a7ed>] start_kernel+0x181/0x1bd
May 31 08:07:07 xeon-dt kernel: [<7841a283>] unknown_bootoption+0x0/0x1a0
May 31 08:07:07 xeon-dt kernel: Mem-info:
May 31 08:07:07 xeon-dt kernel: DMA per-cpu:
May 31 08:07:07 xeon-dt kernel: cpu 0 hot: high 0, batch 1 used:0
May 31 08:07:07 xeon-dt kernel: cpu 0 cold: high 0, batch 1 used:0
May 31 08:07:07 xeon-dt kernel: cpu 1 hot: high 0, batch 1 used:0
May 31 08:07:07 xeon-dt kernel: cpu 1 cold: high 0, batch 1 used:0
May 31 08:07:07 xeon-dt kernel: cpu 2 hot: high 0, batch 1 used:0
May 31 08:07:07 xeon-dt kernel: cpu 2 cold: high 0, batch 1 used:0
May 31 08:07:07 xeon-dt kernel: cpu 3 hot: high 0, batch 1 used:0
May 31 08:07:07 xeon-dt kernel: cpu 3 cold: high 0, batch 1 used:0
May 31 08:07:07 xeon-dt kernel: DMA32 per-cpu: empty
May 31 08:07:07 xeon-dt kernel: Normal per-cpu:
May 31 08:07:07 xeon-dt kernel: cpu 0 hot: high 186, batch 31 used:163
May 31 08:07:07 xeon-dt kernel: cpu 0 cold: high 62, batch 15 used:47
May 31 08:07:07 xeon-dt kernel: cpu 1 hot: high 186, batch 31 used:35
May 31 08:07:07 xeon-dt kernel: cpu 1 cold: high 62, batch 15 used:33
May 31 08:07:07 xeon-dt kernel: cpu 2 hot: high 186, batch 31 used:120
May 31 08:07:07 xeon-dt kernel: cpu 2 cold: high 62, batch 15 used:59
May 31 08:07:07 xeon-dt kernel: cpu 3 hot: high 186, batch 31 used:9
May 31 08:07:07 xeon-dt kernel: cpu 3 cold: high 62, batch 15 used:14
May 31 08:07:07 xeon-dt kernel: HighMem per-cpu: empty
May 31 08:07:07 xeon-dt kernel: Free pages: 70496kB (0kB HighMem)
May 31 08:07:07 xeon-dt kernel: Active:127541 inactive:54939 dirty:97 writeback:0 unstable:0 free:17624 slab:312881 mapped:13115 pagetables:231
May 31 08:07:07 xeon-dt kernel: DMA free:8144kB min:44kB low:52kB high:64kB active:348kB inactive:0kB present:16384kB pages_scanned:680 all_unreclaimable? yes
May 31 08:07:07 xeon-dt kernel: lowmem_reserve[]: 0 0 2031 2031
May 31 08:07:07 xeon-dt kernel: DMA32 free:0kB min:0kB low:0kB high:0kB active:0kB inactive:0kB present:0kB pages_scanned:0 all_unreclaimable? no
May 31 08:07:07 xeon-dt kernel: lowmem_reserve[]: 0 0 2031 2031
May 31 08:07:07 xeon-dt kernel: Normal free:62352kB min:5744kB low:7180kB high:8616kB active:509816kB inactive:219756kB present:2080704kB pages_scanned:0 all_unreclaimable? no
May 31 08:07:07 xeon-dt kernel: lowmem_reserve[]: 0 0 0 0
May 31 08:07:07 xeon-dt kernel: HighMem free:0kB min:128kB low:128kB high:128kB active:0kB inactive:0kB present:0kB pages_scanned:0 all_unreclaimable? no
May 31 08:07:07 xeon-dt kernel: lowmem_reserve[]: 0 0 0 0
May 31 08:07:07 xeon-dt kernel: DMA: 0*4kB 0*8kB 1*16kB 0*32kB 1*64kB 1*128kB 1*256kB 1*512kB 1*1024kB 1*2048kB 1*4096kB = 8144kB
May 31 08:07:07 xeon-dt kernel: DMA32: empty
May 31 08:07:07 xeon-dt kernel: Normal: 14506*4kB 389*8kB 10*16kB 1*32kB 0*64kB 0*128kB 0*256kB 0*512kB 1*1024kB 0*2048kB 0*4096kB = 62352kB
May 31 08:07:07 xeon-dt kernel: HighMem: empty
May 31 08:07:07 xeon-dt kernel: Swap cache: add 0, delete 0, find 0/0, race 0+0
May 31 08:07:07 xeon-dt kernel: Free swap = 2040244kB
May 31 08:07:07 xeon-dt kernel: Total swap = 2040244kB
May 31 08:07:07 xeon-dt kernel: Free swap: 2040244kB
May 31 08:07:07 xeon-dt kernel: 524272 pages of RAM
May 31 08:07:07 xeon-dt kernel: 0 pages of HIGHMEM
May 31 08:07:07 xeon-dt kernel: 7484 reserved pages
May 31 08:07:07 xeon-dt kernel: 155073 pages shared
May 31 08:07:07 xeon-dt kernel: 0 pages swap cached
May 31 08:07:07 xeon-dt kernel: 97 pages dirty
May 31 08:07:07 xeon-dt kernel: 0 pages writeback
May 31 08:07:07 xeon-dt kernel: 13115 pages mapped
May 31 08:07:07 xeon-dt kernel: 312881 pages slab
May 31 08:07:07 xeon-dt kernel: 231 pages pagetables
May 31 08:07:07 xeon-dt kernel: kswapd0: page allocation failure. order:1, mode:0x20
May 31 08:07:07 xeon-dt kernel: [<78147393>] __alloc_pages+0x1d8/0x2b8
May 31 08:07:07 xeon-dt kernel: [<7815c525>] kmem_getpages+0x2f/0x8c
May 31 08:07:07 xeon-dt kernel: [<7815d297>] cache_grow+0xb1/0x14e
May 31 08:07:07 xeon-dt kernel: [<7815d48e>] cache_alloc_refill+0x15a/0x206
May 31 08:07:07 xeon-dt kernel: [<7815d7c5>] __kmalloc+0x68/0x80
May 31 08:07:07 xeon-dt kernel: [<782b3ba2>] __alloc_skb+0x4c/0xf6
May 31 08:07:07 xeon-dt kernel: [<782e63af>] tcp_collapse+0xe9/0x34e
May 31 08:07:07 xeon-dt kernel: [<782e6726>] tcp_prune_queue+0x97/0x1db
May 31 08:07:07 xeon-dt kernel: [<782e5e5e>] tcp_data_queue+0x2ba/0x722
May 31 08:07:07 xeon-dt kernel: [<782e6eb7>] tcp_rcv_established+0x1dc/0x6cf
May 31 08:07:07 xeon-dt kernel: [<782e6edf>] tcp_rcv_established+0x204/0x6cf
May 31 08:07:07 xeon-dt kernel: [<782ee2b8>] tcp_v4_do_rcv+0xe5/0xea
May 31 08:07:07 xeon-dt kernel: [<782eea45>] tcp_v4_rcv+0x788/0x9b0
May 31 08:07:07 xeon-dt kernel: [<7831b18a>] _spin_unlock+0xf/0x23
May 31 08:07:07 xeon-dt kernel: [<782ee9bc>] tcp_v4_rcv+0x6ff/0x9b0
May 31 08:07:07 xeon-dt kernel: [<782d48fe>] ip_local_deliver+0x109/0x287
May 31 08:07:07 xeon-dt kernel: [<782d4d1f>] ip_rcv+0x2a3/0x577
May 31 08:07:07 xeon-dt kernel: [<782b9841>] netif_receive_skb+0x2b8/0x36d
May 31 08:07:07 xeon-dt kernel: [<782b3eab>] __kfree_skb+0x4d/0x102
May 31 08:07:08 xeon-dt kernel: [<f898bb26>] e1000_clean_rx_irq+0x1cb/0x5c6 [e1000]
May 31 08:07:08 xeon-dt kernel: [<781060cf>] do_gettimeofday+0x1c/0xb8
May 31 08:07:08 xeon-dt kernel: [<f898b546>] e1000_clean+0xa6/0x18d [e1000]
May 31 08:07:08 xeon-dt kernel: [<782b9a92>] net_rx_action+0x99/0x1ae
May 31 08:07:08 xeon-dt kernel: [<78125733>] __do_softirq+0xbb/0xd0
May 31 08:07:08 xeon-dt kernel: [<78125790>] do_softirq+0x48/0x4a
May 31 08:07:08 xeon-dt kernel: [<78125879>] irq_exit+0x42/0x44
May 31 08:07:08 xeon-dt kernel: [<781050e7>] do_IRQ+0x37/0x62
May 31 08:07:08 xeon-dt kernel: [<781036ba>] common_interrupt+0x1a/0x20
May 31 08:07:08 xeon-dt kernel: [<781036ba>] common_interrupt+0x1a/0x20
May 31 08:07:08 xeon-dt kernel: [<7831007b>] skb_cow_data+0x8a/0x245
May 31 08:07:08 xeon-dt kernel: [<78176e61>] dentry_iput+0x48/0xb9
May 31 08:07:08 xeon-dt kernel: [<7831add1>] _spin_lock+0x24/0x8e
May 31 08:07:08 xeon-dt kernel: [<78177376>] prune_dcache+0xc6/0x120
May 31 08:07:08 xeon-dt kernel: [<781776ee>] shrink_dcache_memory+0x14/0x37
May 31 08:07:08 xeon-dt kernel: [<7814ad72>] shrink_slab+0x16b/0x1c0
May 31 08:07:08 xeon-dt kernel: [<7814881d>] throttle_vm_writeout+0x1e/0x5d
May 31 08:07:08 xeon-dt kernel: [<7814c05b>] balance_pgdat+0x2a1/0x375
May 31 08:07:08 xeon-dt kernel: [<7814c210>] kswapd+0xe1/0x100
May 31 08:07:08 xeon-dt kernel: [<7813346a>] autoremove_wake_function+0x0/0x43
May 31 08:07:08 xeon-dt kernel: [<78102bca>] ret_from_fork+0x6/0x14
May 31 08:07:08 xeon-dt kernel: [<7813346a>] autoremove_wake_function+0x0/0x43
May 31 08:07:08 xeon-dt kernel: [<7814c12f>] kswapd+0x0/0x100
May 31 08:07:08 xeon-dt kernel: [<78101109>] kernel_thread_helper+0x5/0xb
May 31 08:07:08 xeon-dt kernel: Mem-info:
May 31 08:07:08 xeon-dt kernel: DMA per-cpu:
May 31 08:07:08 xeon-dt kernel: cpu 0 hot: high 0, batch 1 used:0
May 31 08:07:08 xeon-dt kernel: cpu 0 cold: high 0, batch 1 used:0
May 31 08:07:08 xeon-dt kernel: cpu 1 hot: high 0, batch 1 used:0
May 31 08:07:08 xeon-dt kernel: cpu 1 cold: high 0, batch 1 used:0
May 31 08:07:08 xeon-dt kernel: cpu 2 hot: high 0, batch 1 used:0
May 31 08:07:08 xeon-dt kernel: cpu 2 cold: high 0, batch 1 used:0
May 31 08:07:08 xeon-dt kernel: cpu 3 hot: high 0, batch 1 used:0
May 31 08:07:08 xeon-dt kernel: cpu 3 cold: high 0, batch 1 used:0
May 31 08:07:08 xeon-dt kernel: DMA32 per-cpu: empty
May 31 08:07:08 xeon-dt kernel: Normal per-cpu:
May 31 08:07:08 xeon-dt kernel: cpu 0 hot: high 186, batch 31 used:100
May 31 08:07:08 xeon-dt kernel: cpu 0 cold: high 62, batch 15 used:47
May 31 08:07:08 xeon-dt kernel: cpu 1 hot: high 186, batch 31 used:30
May 31 08:07:08 xeon-dt kernel: cpu 1 cold: high 62, batch 15 used:33
May 31 08:07:08 xeon-dt kernel: cpu 2 hot: high 186, batch 31 used:166
May 31 08:07:08 xeon-dt kernel: cpu 2 cold: high 62, batch 15 used:52
May 31 08:07:08 xeon-dt kernel: cpu 3 hot: high 186, batch 31 used:3
May 31 08:07:08 xeon-dt kernel: cpu 3 cold: high 62, batch 15 used:14
May 31 08:07:08 xeon-dt kernel: HighMem per-cpu: empty
May 31 08:07:08 xeon-dt kernel: Free pages: 69708kB (0kB HighMem)
May 31 08:07:08 xeon-dt kernel: Active:127352 inactive:55000 dirty:97 writeback:0 unstable:0 free:17427 slab:312954 mapped:13115 pagetables:231
May 31 08:07:08 xeon-dt kernel: DMA free:8144kB min:44kB low:52kB high:64kB active:348kB inactive:0kB present:16384kB pages_scanned:680 all_unreclaimable? yes
May 31 08:07:08 xeon-dt kernel: lowmem_reserve[]: 0 0 2031 2031
May 31 08:07:08 xeon-dt kernel: DMA32 free:0kB min:0kB low:0kB high:0kB active:0kB inactive:0kB present:0kB pages_scanned:0 all_unreclaimable? no
May 31 08:07:08 xeon-dt kernel: lowmem_reserve[]: 0 0 2031 2031
May 31 08:07:08 xeon-dt kernel: Normal free:61564kB min:5744kB low:7180kB high:8616kB active:509060kB inactive:220000kB present:2080704kB pages_scanned:0 all_unreclaimable? no
May 31 08:07:08 xeon-dt kernel: lowmem_reserve[]: 0 0 0 0
May 31 08:07:08 xeon-dt kernel: HighMem free:0kB min:128kB low:128kB high:128kB active:0kB inactive:0kB present:0kB pages_scanned:0 all_unreclaimable? no
May 31 08:07:08 xeon-dt kernel: lowmem_reserve[]: 0 0 0 0
May 31 08:07:08 xeon-dt kernel: DMA: 0*4kB 0*8kB 1*16kB 0*32kB 1*64kB 1*128kB 1*256kB 1*512kB 1*1024kB 1*2048kB 1*4096kB = 8144kB
May 31 08:07:08 xeon-dt kernel: DMA32: empty
May 31 08:07:08 xeon-dt kernel: Normal: 15121*4kB 1*8kB 1*16kB 1*32kB 0*64kB 0*128kB 0*256kB 0*512kB 1*1024kB 0*2048kB 0*4096kB = 61564kB
May 31 08:07:08 xeon-dt kernel: HighMem: empty
May 31 08:07:08 xeon-dt kernel: Swap cache: add 0, delete 0, find 0/0, race 0+0
May 31 08:07:08 xeon-dt kernel: Free swap = 2040244kB
May 31 08:07:08 xeon-dt kernel: Total swap = 2040244kB
May 31 08:07:08 xeon-dt kernel: Free swap: 2040244kB
May 31 08:07:08 xeon-dt kernel: 524272 pages of RAM
May 31 08:07:08 xeon-dt kernel: 0 pages of HIGHMEM
May 31 08:07:08 xeon-dt kernel: 7484 reserved pages
May 31 08:07:08 xeon-dt kernel: 155088 pages shared
May 31 08:07:08 xeon-dt kernel: 0 pages swap cached
May 31 08:07:09 xeon-dt kernel: 97 pages dirty
May 31 08:07:09 xeon-dt kernel: 0 pages writeback
May 31 08:07:09 xeon-dt kernel: 13115 pages mapped
May 31 08:07:09 xeon-dt kernel: 312954 pages slab
May 31 08:07:09 xeon-dt kernel: 231 pages pagetables
May 31 08:07:09 xeon-dt kernel: events/2: page allocation failure. order:1, mode:0x20
May 31 08:07:09 xeon-dt kernel: [<78147393>] __alloc_pages+0x1d8/0x2b8
May 31 08:07:09 xeon-dt kernel: [<7815c525>] kmem_getpages+0x2f/0x8c
May 31 08:07:09 xeon-dt kernel: [<7815d297>] cache_grow+0xb1/0x14e
May 31 08:07:09 xeon-dt kernel: [<7815d48e>] cache_alloc_refill+0x15a/0x206
May 31 08:07:09 xeon-dt kernel: [<7815d7c5>] __kmalloc+0x68/0x80
May 31 08:07:09 xeon-dt kernel: [<782b3ba2>] __alloc_skb+0x4c/0xf6
May 31 08:07:09 xeon-dt kernel: [<782e63af>] tcp_collapse+0xe9/0x34e
May 31 08:07:09 xeon-dt kernel: [<782e6726>] tcp_prune_queue+0x97/0x1db
May 31 08:07:09 xeon-dt kernel: [<782e5e5e>] tcp_data_queue+0x2ba/0x722
May 31 08:07:09 xeon-dt kernel: [<7831af17>] _read_lock+0x24/0x8c
May 31 08:07:09 xeon-dt kernel: [<782e6eb7>] tcp_rcv_established+0x1dc/0x6cf
May 31 08:07:09 xeon-dt kernel: [<782ee2b8>] tcp_v4_do_rcv+0xe5/0xea
May 31 08:07:09 xeon-dt kernel: [<782eea45>] tcp_v4_rcv+0x788/0x9b0
May 31 08:07:09 xeon-dt kernel: [<7831b18a>] _spin_unlock+0xf/0x23
May 31 08:07:09 xeon-dt kernel: [<7815d455>] cache_alloc_refill+0x121/0x206
May 31 08:07:09 xeon-dt kernel: [<782d48fe>] ip_local_deliver+0x109/0x287
May 31 08:07:09 xeon-dt kernel: [<782d4d1f>] ip_rcv+0x2a3/0x577
May 31 08:07:09 xeon-dt kernel: [<782b9841>] netif_receive_skb+0x2b8/0x36d
May 31 08:07:09 xeon-dt kernel: [<f898bb26>] e1000_clean_rx_irq+0x1cb/0x5c6 [e1000]
May 31 08:07:09 xeon-dt kernel: [<781060cf>] do_gettimeofday+0x1c/0xb8
May 31 08:07:09 xeon-dt kernel: [<f898b546>] e1000_clean+0xa6/0x18d [e1000]
May 31 08:07:09 xeon-dt kernel: [<782b9a92>] net_rx_action+0x99/0x1ae
May 31 08:07:09 xeon-dt kernel: [<78125733>] __do_softirq+0xbb/0xd0
May 31 08:07:09 xeon-dt kernel: [<78125790>] do_softirq+0x48/0x4a
May 31 08:07:09 xeon-dt kernel: [<78125879>] irq_exit+0x42/0x44
May 31 08:07:09 xeon-dt kernel: [<781050e7>] do_IRQ+0x37/0x62
May 31 08:07:09 xeon-dt kernel: [<781036ba>] common_interrupt+0x1a/0x20
May 31 08:07:09 xeon-dt kernel: [<7831b219>] _spin_unlock_irq+0xb/0x24
May 31 08:07:09 xeon-dt kernel: [<7815df70>] cache_reap+0x11c/0x1a0
May 31 08:07:09 xeon-dt kernel: [<7812fa8a>] run_workqueue+0x71/0xe5
May 31 08:07:09 xeon-dt kernel: [<7815de54>] cache_reap+0x0/0x1a0
May 31 08:07:09 xeon-dt kernel: [<7812fc12>] worker_thread+0x114/0x136
May 31 08:07:09 xeon-dt kernel: [<7811b16d>] default_wake_function+0x0/0xc
May 31 08:07:09 xeon-dt kernel: [<7811b16d>] default_wake_function+0x0/0xc
May 31 08:07:09 xeon-dt kernel: [<7812fafe>] worker_thread+0x0/0x136
May 31 08:07:09 xeon-dt kernel: [<78132f0e>] kthread+0x9c/0xa1
May 31 08:07:09 xeon-dt kernel: [<78132e72>] kthread+0x0/0xa1
May 31 08:07:09 xeon-dt kernel: [<78101109>] kernel_thread_helper+0x5/0xb
May 31 08:07:09 xeon-dt kernel: Mem-info:
May 31 08:07:09 xeon-dt kernel: DMA per-cpu:
May 31 08:07:09 xeon-dt kernel: cpu 0 hot: high 0, batch 1 used:0
May 31 08:07:10 xeon-dt kernel: cpu 0 cold: high 0, batch 1 used:0
May 31 08:07:10 xeon-dt kernel: cpu 1 hot: high 0, batch 1 used:0
May 31 08:07:10 xeon-dt kernel: cpu 1 cold: high 0, batch 1 used:0
May 31 08:07:10 xeon-dt kernel: cpu 2 hot: high 0, batch 1 used:0
May 31 08:07:10 xeon-dt kernel: cpu 2 cold: high 0, batch 1 used:0
May 31 08:07:10 xeon-dt kernel: cpu 3 hot: high 0, batch 1 used:0
May 31 08:07:10 xeon-dt kernel: cpu 3 cold: high 0, batch 1 used:0
May 31 08:07:10 xeon-dt kernel: DMA32 per-cpu: empty
May 31 08:07:10 xeon-dt kernel: Normal per-cpu:
May 31 08:07:10 xeon-dt kernel: cpu 0 hot: high 186, batch 31 used:34
May 31 08:07:10 xeon-dt kernel: cpu 0 cold: high 62, batch 15 used:47
May 31 08:07:10 xeon-dt kernel: cpu 1 hot: high 186, batch 31 used:5
May 31 08:07:10 xeon-dt kernel: cpu 1 cold: high 62, batch 15 used:33
May 31 08:07:10 xeon-dt kernel: cpu 2 hot: high 186, batch 31 used:69
May 31 08:07:10 xeon-dt kernel: cpu 2 cold: high 62, batch 15 used:52
May 31 08:07:10 xeon-dt kernel: cpu 3 hot: high 186, batch 31 used:180
May 31 08:07:10 xeon-dt kernel: cpu 3 cold: high 62, batch 15 used:55
May 31 08:07:10 xeon-dt kernel: HighMem per-cpu: empty
May 31 08:07:10 xeon-dt kernel: Free pages: 90752kB (0kB HighMem)
May 31 08:07:10 xeon-dt kernel: Active:119806 inactive:57132 dirty:48 writeback:0 unstable:0 free:22688 slab:312671 mapped:13115 pagetables:231
May 31 08:07:10 xeon-dt kernel: DMA free:8144kB min:44kB low:52kB high:64kB active:348kB inactive:0kB present:16384kB pages_scanned:748 all_unreclaimable? yes
May 31 08:07:10 xeon-dt kernel: lowmem_reserve[]: 0 0 2031 2031
May 31 08:07:10 xeon-dt kernel: DMA32 free:0kB min:0kB low:0kB high:0kB active:0kB inactive:0kB present:0kB pages_scanned:0 all_unreclaimable? no
May 31 08:07:10 xeon-dt kernel: lowmem_reserve[]: 0 0 2031 2031
May 31 08:07:10 xeon-dt kernel: Normal free:82608kB min:5744kB low:7180kB high:8616kB active:478876kB inactive:228528kB present:2080704kB pages_scanned:26 all_unreclaimable? no
May 31 08:07:10 xeon-dt kernel: lowmem_reserve[]: 0 0 0 0
May 31 08:07:10 xeon-dt kernel: HighMem free:0kB min:128kB low:128kB high:128kB active:0kB inactive:0kB present:0kB pages_scanned:0 all_unreclaimable? no
May 31 08:07:10 xeon-dt kernel: lowmem_reserve[]: 0 0 0 0
May 31 08:07:10 xeon-dt kernel: DMA: 0*4kB 0*8kB 1*16kB 0*32kB 1*64kB 1*128kB 1*256kB 1*512kB 1*1024kB 1*2048kB 1*4096kB = 8144kB
May 31 08:07:10 xeon-dt kernel: DMA32: empty
May 31 08:07:10 xeon-dt kernel: Normal: 19568*4kB 282*8kB 26*16kB 18*32kB 1*64kB 0*128kB 0*256kB 0*512kB 1*1024kB 0*2048kB 0*4096kB = 82608kB
May 31 08:07:10 xeon-dt kernel: HighMem: empty
May 31 08:07:10 xeon-dt kernel: Swap cache: add 0, delete 0, find 0/0, race 0+0
May 31 08:07:10 xeon-dt kernel: Free swap = 2040244kB
May 31 08:07:10 xeon-dt kernel: Total swap = 2040244kB
May 31 08:07:10 xeon-dt kernel: Free swap: 2040244kB
May 31 08:07:10 xeon-dt kernel: 524272 pages of RAM
May 31 08:07:10 xeon-dt kernel: 0 pages of HIGHMEM
May 31 08:07:10 xeon-dt kernel: 7484 reserved pages
May 31 08:07:10 xeon-dt kernel: 153733 pages shared
May 31 08:07:10 xeon-dt kernel: 0 pages swap cached
May 31 08:07:10 xeon-dt kernel: 48 pages dirty
May 31 08:07:10 xeon-dt kernel: 0 pages writeback
May 31 08:07:10 xeon-dt kernel: 13115 pages mapped
May 31 08:07:10 xeon-dt kernel: 312671 pages slab
May 31 08:07:10 xeon-dt kernel: 231 pages pagetables
May 31 08:07:10 xeon-dt kernel: swapper: page allocation failure. order:1, mode:0x20
May 31 08:07:10 xeon-dt kernel: [<78147393>] __alloc_pages+0x1d8/0x2b8
May 31 08:07:10 xeon-dt kernel: [<7815c525>] kmem_getpages+0x2f/0x8c
May 31 08:07:10 xeon-dt kernel: [<7815d297>] cache_grow+0xb1/0x14e
May 31 08:07:10 xeon-dt kernel: [<7815d48e>] cache_alloc_refill+0x15a/0x206
May 31 08:07:10 xeon-dt kernel: [<7815d7c5>] __kmalloc+0x68/0x80
May 31 08:07:10 xeon-dt kernel: [<782b3ba2>] __alloc_skb+0x4c/0xf6
May 31 08:07:10 xeon-dt kernel: [<782e63af>] tcp_collapse+0xe9/0x34e
May 31 08:07:10 xeon-dt kernel: [<782e6726>] tcp_prune_queue+0x97/0x1db
May 31 08:07:10 xeon-dt kernel: [<782e5e5e>] tcp_data_queue+0x2ba/0x722
May 31 08:07:10 xeon-dt kernel: [<782e6eb7>] tcp_rcv_established+0x1dc/0x6cf
May 31 08:07:10 xeon-dt kernel: [<782ee2b8>] tcp_v4_do_rcv+0xe5/0xea
May 31 08:07:10 xeon-dt kernel: [<782eea45>] tcp_v4_rcv+0x788/0x9b0
May 31 08:07:10 xeon-dt kernel: [<782d48fe>] ip_local_deliver+0x109/0x287
May 31 08:07:10 xeon-dt kernel: [<782d4d1f>] ip_rcv+0x2a3/0x577
May 31 08:07:10 xeon-dt kernel: [<78141701>] __do_IRQ+0xb9/0xec
May 31 08:07:10 xeon-dt kernel: [<78125842>] irq_exit+0xb/0x44
May 31 08:07:10 xeon-dt kernel: [<782b9841>] netif_receive_skb+0x2b8/0x36d
May 31 08:07:10 xeon-dt kernel: [<f898bb26>] e1000_clean_rx_irq+0x1cb/0x5c6 [e1000]
May 31 08:07:10 xeon-dt kernel: [<78125460>] getnstimeofday+0x10/0x2a
May 31 08:07:10 xeon-dt kernel: [<f898b546>] e1000_clean+0xa6/0x18d [e1000]
May 31 08:07:10 xeon-dt kernel: [<782b9a92>] net_rx_action+0x99/0x1ae
May 31 08:07:10 xeon-dt kernel: [<78125733>] __do_softirq+0xbb/0xd0
May 31 08:07:10 xeon-dt kernel: [<78125790>] do_softirq+0x48/0x4a
May 31 08:07:10 xeon-dt kernel: [<78125879>] irq_exit+0x42/0x44
May 31 08:07:10 xeon-dt kernel: [<78100cca>] default_idle+0x0/0x52
May 31 08:07:10 xeon-dt kernel: [<78103748>] apic_timer_interrupt+0x1c/0x24
May 31 08:07:10 xeon-dt kernel: [<78100cca>] default_idle+0x0/0x52
May 31 08:07:10 xeon-dt kernel: [<78100cfd>] default_idle+0x33/0x52
May 31 08:07:10 xeon-dt kernel: [<78100d9e>] cpu_idle+0x6e/0x9f
May 31 08:07:10 xeon-dt kernel: Mem-info:
May 31 08:07:10 xeon-dt kernel: DMA per-cpu:
May 31 08:07:10 xeon-dt kernel: cpu 0 hot: high 0, batch 1 used:0
May 31 08:07:10 xeon-dt kernel: cpu 0 cold: high 0, batch 1 used:0
May 31 08:07:10 xeon-dt kernel: cpu 1 hot: high 0, batch 1 used:0
May 31 08:07:10 xeon-dt kernel: cpu 1 cold: high 0, batch 1 used:0
May 31 08:07:10 xeon-dt kernel: cpu 2 hot: high 0, batch 1 used:0
May 31 08:07:10 xeon-dt kernel: cpu 2 cold: high 0, batch 1 used:0
May 31 08:07:10 xeon-dt kernel: cpu 3 hot: high 0, batch 1 used:0
May 31 08:07:10 xeon-dt kernel: cpu 3 cold: high 0, batch 1 used:0
May 31 08:07:10 xeon-dt kernel: DMA32 per-cpu: empty
May 31 08:07:10 xeon-dt kernel: Normal per-cpu:
May 31 08:07:10 xeon-dt kernel: cpu 0 hot: high 186, batch 31 used:15
May 31 08:07:10 xeon-dt kernel: cpu 0 cold: high 62, batch 15 used:46
May 31 08:07:10 xeon-dt kernel: cpu 1 hot: high 186, batch 31 used:35
May 31 08:07:10 xeon-dt kernel: cpu 1 cold: high 62, batch 15 used:54
May 31 08:07:10 xeon-dt kernel: cpu 2 hot: high 186, batch 31 used:81
May 31 08:07:10 xeon-dt kernel: cpu 2 cold: high 62, batch 15 used:52
May 31 08:07:10 xeon-dt kernel: cpu 3 hot: high 186, batch 31 used:158
May 31 08:07:10 xeon-dt kernel: cpu 3 cold: high 62, batch 15 used:54
May 31 08:07:10 xeon-dt kernel: HighMem per-cpu: empty
May 31 08:07:10 xeon-dt kernel: Free pages: 116860kB (0kB HighMem)
May 31 08:07:10 xeon-dt kernel: Active:112052 inactive:59078 dirty:49 writeback:0 unstable:0 free:29215 slab:310711 mapped:13154 pagetables:236
May 31 08:07:10 xeon-dt kernel: DMA free:8144kB min:44kB low:52kB high:64kB active:348kB inactive:0kB present:16384kB pages_scanned:850 all_unreclaimable? yes
May 31 08:07:10 xeon-dt kernel: lowmem_reserve[]: 0 0 2031 2031
May 31 08:07:10 xeon-dt kernel: DMA32 free:0kB min:0kB low:0kB high:0kB active:0kB inactive:0kB present:0kB pages_scanned:0 all_unreclaimable? no
May 31 08:07:10 xeon-dt kernel: lowmem_reserve[]: 0 0 2031 2031
May 31 08:07:10 xeon-dt kernel: Normal free:108716kB min:5744kB low:7180kB high:8616kB active:447860kB inactive:236312kB present:2080704kB pages_scanned:0 all_unreclaimable? no
May 31 08:07:10 xeon-dt kernel: lowmem_reserve[]: 0 0 0 0
May 31 08:07:10 xeon-dt kernel: HighMem free:0kB min:128kB low:128kB high:128kB active:0kB inactive:0kB present:0kB pages_scanned:0 all_unreclaimable? no
May 31 08:07:10 xeon-dt kernel: lowmem_reserve[]: 0 0 0 0
May 31 08:07:10 xeon-dt kernel: DMA: 0*4kB 0*8kB 1*16kB 0*32kB 1*64kB 1*128kB 1*256kB 1*512kB 1*1024kB 1*2048kB 1*4096kB = 8144kB
May 31 08:07:10 xeon-dt kernel: DMA32: empty
May 31 08:07:10 xeon-dt kernel: Normal: 26097*4kB 399*8kB 5*16kB 1*32kB 0*64kB 0*128kB 0*256kB 0*512kB 1*1024kB 0*2048kB 0*4096kB = 108716kB
May 31 08:07:10 xeon-dt kernel: HighMem: empty
May 31 08:07:10 xeon-dt kernel: Swap cache: add 0, delete 0, find 0/0, race 0+0
May 31 08:07:10 xeon-dt kernel: Free swap = 2040244kB
May 31 08:07:10 xeon-dt kernel: Total swap = 2040244kB
May 31 08:07:10 xeon-dt kernel: Free swap: 2040244kB
May 31 08:07:10 xeon-dt kernel: 524272 pages of RAM
May 31 08:07:10 xeon-dt kernel: 0 pages of HIGHMEM
May 31 08:07:10 xeon-dt kernel: 7484 reserved pages
May 31 08:07:10 xeon-dt kernel: 150664 pages shared
May 31 08:07:10 xeon-dt kernel: 0 pages swap cached
May 31 08:07:10 xeon-dt kernel: 49 pages dirty
May 31 08:07:10 xeon-dt kernel: 0 pages writeback
May 31 08:07:10 xeon-dt kernel: 13154 pages mapped
May 31 08:07:10 xeon-dt kernel: 310711 pages slab
May 31 08:07:10 xeon-dt kernel: 236 pages pagetables
May 31 08:10:39 xeon-dt kernel: e1000: eth2: e1000_watchdog_task: NIC Link is Down
May 31 08:10:39 xeon-dt kernel: e1000: eth2: e1000_watchdog_task: NIC Link is Up 1000 Mbps Full Duplex
May 31 08:10:39 xeon-dt kernel: e1000: eth1: e1000_watchdog_task: NIC Link is Up 1000 Mbps Full Duplex
May 31 08:10:39 xeon-dt kernel: e1000: eth1: e1000_watchdog_task: NIC Link is Down
May 31 08:10:40 xeon-dt kernel: e1000: eth1: e1000_watchdog_task: NIC Link is Up 1000 Mbps Full Duplex
May 31 08:10:40 xeon-dt kernel: e1000: eth2: e1000_watchdog_task: NIC Link is Up 1000 Mbps Full Duplex
May 31 08:11:17 xeon-dt login(pam_unix)[4227]: authentication failure; logname=LOGIN uid=0 euid=0 tty=tty1 ruser= rhost= user=root
May 31 08:11:19 xeon-dt login[4227]: FAILED LOGIN 1 FROM (null) FOR root, Authentication failure
May 31 08:11:24 xeon-dt login(pam_unix)[4227]: session opened for user root by LOGIN(uid=0)
May 31 08:11:24 xeon-dt -- root[4227]: ROOT LOGIN ON tty1
May 31 08:12:35 xeon-dt kernel: device eth1 entered promiscuous mode
May 31 08:12:37 xeon-dt kernel: device eth1 left promiscuous mode
May 31 08:13:50 xeon-dt kernel: e1000: eth2: e1000_watchdog_task: NIC Link is Down
May 31 08:13:50 xeon-dt kernel: e1000: eth2: e1000_watchdog_task: NIC Link is Up 1000 Mbps Full Duplex
May 31 08:13:50 xeon-dt kernel: e1000: eth1: e1000_watchdog_task: NIC Link is Up 1000 Mbps Full Duplex
May 31 08:13:50 xeon-dt kernel: e1000: eth1: e1000_watchdog_task: NIC Link is Down
May 31 08:13:50 xeon-dt kernel: e1000: eth1: e1000_watchdog_task: NIC Link is Up 1000 Mbps Full Duplex
May 31 08:13:50 xeon-dt kernel: e1000: eth2: e1000_watchdog_task: NIC Link is Up 1000 Mbps Full Duplex
May 31 08:15:05 xeon-dt kernel: swapper: page allocation failure. order:1, mode:0x20
May 31 08:15:05 xeon-dt kernel: swapper: page allocation failure. order:1, mode:0x20
May 31 08:15:05 xeon-dt kernel: [<78147393>] __alloc_pages+0x1d8/0x2b8
May 31 08:15:05 xeon-dt kernel: [<7815c525>] kmem_getpages+0x2f/0x8c
May 31 08:15:05 xeon-dt kernel: [<7815d297>] cache_grow+0xb1/0x14e
May 31 08:15:05 xeon-dt kernel: [<7815d48e>] cache_alloc_refill+0x15a/0x206
May 31 08:15:05 xeon-dt kernel: [<7815d7c5>] __kmalloc+0x68/0x80
May 31 08:15:05 xeon-dt kernel: [<782b3ba2>] __alloc_skb+0x4c/0xf6
May 31 08:15:05 xeon-dt kernel: [<782e63af>] tcp_collapse+0xe9/0x34e
May 31 08:15:05 xeon-dt kernel: [<782e6726>] tcp_prune_queue+0x97/0x1db
May 31 08:15:05 xeon-dt kernel: [<782e5e5e>] tcp_data_queue+0x2ba/0x722
May 31 08:15:05 xeon-dt kernel: [<7831af17>] _read_lock+0x24/0x8c
May 31 08:15:05 xeon-dt kernel: [<782e6eb7>] tcp_rcv_established+0x1dc/0x6cf
May 31 08:15:05 xeon-dt kernel: [<782ee2b8>] tcp_v4_do_rcv+0xe5/0xea
May 31 08:15:05 xeon-dt kernel: [<782eea45>] tcp_v4_rcv+0x788/0x9b0
May 31 08:15:05 xeon-dt kernel: [<7815d312>] cache_grow+0x12c/0x14e
May 31 08:15:05 xeon-dt kernel: [<782d48fe>] ip_local_deliver+0x109/0x287
May 31 08:15:05 xeon-dt kernel: [<782d4d1f>] ip_rcv+0x2a3/0x577
May 31 08:15:05 xeon-dt kernel: [<f898c6c2>] e1000_alloc_rx_buffers+0x22a/0x418 [e1000]
May 31 08:15:05 xeon-dt kernel: [<782b9841>] netif_receive_skb+0x2b8/0x36d
May 31 08:15:05 xeon-dt kernel: [<f898bb26>] e1000_clean_rx_irq+0x1cb/0x5c6 [e1000]
May 31 08:15:05 xeon-dt kernel: [<f898b546>] e1000_clean+0xa6/0x18d [e1000]
May 31 08:15:05 xeon-dt kernel: [<782b9a92>] net_rx_action+0x99/0x1ae
May 31 08:15:05 xeon-dt kernel: [<78125733>] __do_softirq+0xbb/0xd0
May 31 08:15:05 xeon-dt kernel: [<78125790>] do_softirq+0x48/0x4a
May 31 08:15:05 xeon-dt kernel: [<78125879>] irq_exit+0x42/0x44
May 31 08:15:05 xeon-dt kernel: [<781050e7>] do_IRQ+0x37/0x62
May 31 08:15:05 xeon-dt kernel: [<78100cca>] default_idle+0x0/0x52
May 31 08:15:05 xeon-dt kernel: [<781036ba>] common_interrupt+0x1a/0x20
May 31 08:15:05 xeon-dt kernel: [<78100cca>] default_idle+0x0/0x52
May 31 08:15:05 xeon-dt kernel: [<78100cfd>] default_idle+0x33/0x52
May 31 08:15:05 xeon-dt kernel: [<78100d9e>] cpu_idle+0x6e/0x9f
May 31 08:15:06 xeon-dt kernel: Mem-info:
May 31 08:15:06 xeon-dt kernel: DMA per-cpu:
May 31 08:15:06 xeon-dt kernel: cpu 0 hot: high 0, batch 1 used:0
May 31 08:15:06 xeon-dt kernel: cpu 0 cold: high 0, batch 1 used:0
May 31 08:15:06 xeon-dt kernel: cpu 1 hot: high 0, batch 1 used:0
May 31 08:15:06 xeon-dt kernel: cpu 1 cold: high 0, batch 1 used:0
May 31 08:15:06 xeon-dt kernel: cpu 2 hot: high 0, batch 1 used:0
May 31 08:15:06 xeon-dt kernel: cpu 2 cold: high 0, batch 1 used:0
May 31 08:15:06 xeon-dt kernel: cpu 3 hot: high 0, batch 1 used:0
May 31 08:15:06 xeon-dt kernel: cpu 3 cold: high 0, batch 1 used:0
May 31 08:15:06 xeon-dt kernel: DMA32 per-cpu: empty
May 31 08:15:07 xeon-dt kernel: Normal per-cpu:
May 31 08:15:07 xeon-dt kernel: cpu 0 hot: high 186, batch 31 used:18
May 31 08:15:07 xeon-dt kernel: cpu 0 cold: high 62, batch 15 used:37
May 31 08:15:07 xeon-dt kernel: cpu 1 hot: high 186, batch 31 used:178
May 31 08:15:08 xeon-dt kernel: cpu 1 cold: high 62, batch 15 used:12
May 31 08:15:08 xeon-dt kernel: cpu 2 hot: high 186, batch 31 used:180
May 31 08:15:08 xeon-dt kernel: cpu 2 cold: high 62, batch 15 used:48
May 31 08:15:08 xeon-dt kernel: cpu 3 hot: high 186, batch 31 used:30
May 31 08:15:08 xeon-dt kernel: cpu 3 cold: high 62, batch 15 used:8
May 31 08:15:08 xeon-dt kernel: HighMem per-cpu: empty
May 31 08:15:08 xeon-dt kernel: Free pages: 86132kB (0kB HighMem)
May 31 08:15:08 xeon-dt kernel: Active:113418 inactive:61465 dirty:94 writeback:0 unstable:0 free:21533 slab:316451 mapped:13243 pagetables:238
May 31 08:15:08 xeon-dt kernel: DMA free:8144kB min:44kB low:52kB high:64kB active:348kB inactive:0kB present:16384kB pages_scanned:0 all_unreclaimable? no
May 31 08:15:08 xeon-dt kernel: lowmem_reserve[]: 0 0 2031 2031
May 31 08:15:08 xeon-dt kernel: DMA32 free:0kB min:0kB low:0kB high:0kB active:0kB inactive:0kB present:0kB pages_scanned:0 all_unreclaimable? no
May 31 08:15:08 xeon-dt kernel: lowmem_reserve[]: 0 0 2031 2031
May 31 08:15:08 xeon-dt kernel: Normal free:77988kB min:5744kB low:7180kB high:8616kB active:453324kB inactive:245860kB present:2080704kB pages_scanned:0 all_unreclaimable? no
May 31 08:15:08 xeon-dt kernel: lowmem_reserve[]: 0 0 0 0
May 31 08:15:08 xeon-dt kernel: HighMem free:0kB min:128kB low:128kB high:128kB active:0kB inactive:0kB present:0kB pages_scanned:0 all_unreclaimable? no
May 31 08:15:08 xeon-dt kernel: lowmem_reserve[]: 0 0 0 0
May 31 08:15:08 xeon-dt kernel: DMA: 0*4kB 0*8kB 1*16kB 0*32kB 1*64kB 1*128kB 1*256kB 1*512kB 1*1024kB 1*2048kB 1*4096kB = 8144kB
May 31 08:15:08 xeon-dt kernel: DMA32: empty
May 31 08:15:08 xeon-dt kernel: Normal: 19229*4kB 0*8kB 1*16kB 1*32kB 0*64kB 0*128kB 0*256kB 0*512kB 1*1024kB 0*2048kB 0*4096kB = 77988kB
May 31 08:15:08 xeon-dt kernel: HighMem: empty
May 31 08:15:08 xeon-dt kernel: Swap cache: add 0, delete 0, find 0/0, race 0+0
May 31 08:15:08 xeon-dt kernel: Free swap = 2040244kB
May 31 08:15:08 xeon-dt kernel: Total swap = 2040244kB
May 31 08:15:08 xeon-dt kernel: Free swap: 2040244kB
May 31 08:15:08 xeon-dt kernel: 524272 pages of RAM
May 31 08:15:08 xeon-dt kernel: 0 pages of HIGHMEM
May 31 08:15:08 xeon-dt kernel: 7484 reserved pages
May 31 08:15:08 xeon-dt kernel: 151287 pages shared
May 31 08:15:08 xeon-dt kernel: 0 pages swap cached
May 31 08:15:08 xeon-dt kernel: 94 pages dirty
May 31 08:15:08 xeon-dt kernel: 0 pages writeback
May 31 08:15:08 xeon-dt kernel: 13243 pages mapped
May 31 08:15:08 xeon-dt kernel: 316451 pages slab
May 31 08:15:08 xeon-dt kernel: 238 pages pagetables
May 31 08:15:08 xeon-dt kernel: [<78147393>] __alloc_pages+0x1d8/0x2b8
May 31 08:15:08 xeon-dt kernel: [<7815c525>] kmem_getpages+0x2f/0x8c
May 31 08:15:08 xeon-dt kernel: [<7815d297>] cache_grow+0xb1/0x14e
May 31 08:15:08 xeon-dt kernel: [<7815d48e>] cache_alloc_refill+0x15a/0x206
May 31 08:15:08 xeon-dt kernel: [<7815d7c5>] __kmalloc+0x68/0x80
May 31 08:15:08 xeon-dt kernel: [<782b3ba2>] __alloc_skb+0x4c/0xf6
May 31 08:15:08 xeon-dt kernel: [<782e63af>] tcp_collapse+0xe9/0x34e
May 31 08:15:08 xeon-dt kernel: [<782e6726>] tcp_prune_queue+0x97/0x1db
May 31 08:15:08 xeon-dt kernel: [<782e5e5e>] tcp_data_queue+0x2ba/0x722
May 31 08:15:08 xeon-dt kernel: [<7831af17>] _read_lock+0x24/0x8c
May 31 08:15:08 xeon-dt kernel: [<782e6eb7>] tcp_rcv_established+0x1dc/0x6cf
May 31 08:15:08 xeon-dt kernel: [<782ee2b8>] tcp_v4_do_rcv+0xe5/0xea
May 31 08:15:08 xeon-dt kernel: [<782eea45>] tcp_v4_rcv+0x788/0x9b0
May 31 08:15:08 xeon-dt kernel: [<7815d312>] cache_grow+0x12c/0x14e
May 31 08:15:08 xeon-dt kernel: [<782d48fe>] ip_local_deliver+0x109/0x287
May 31 08:15:08 xeon-dt kernel: [<782d4d1f>] ip_rcv+0x2a3/0x577
May 31 08:15:08 xeon-dt kernel: [<f898c6c2>] e1000_alloc_rx_buffers+0x22a/0x418 [e1000]
May 31 08:15:08 xeon-dt kernel: [<782b9841>] netif_receive_skb+0x2b8/0x36d
May 31 08:15:08 xeon-dt kernel: [<f898bb26>] e1000_clean_rx_irq+0x1cb/0x5c6 [e1000]
May 31 08:15:08 xeon-dt kernel: [<7831b18a>] _spin_unlock+0xf/0x23
May 31 08:15:09 xeon-dt kernel: [<f898b750>] e1000_clean_tx_irq+0x123/0x32e [e1000]
May 31 08:15:09 xeon-dt kernel: [<781060cf>] do_gettimeofday+0x1c/0xb8
May 31 08:15:09 xeon-dt kernel: [<f898b546>] e1000_clean+0xa6/0x18d [e1000]
May 31 08:15:09 xeon-dt kernel: [<782b9a92>] net_rx_action+0x99/0x1ae
May 31 08:15:09 xeon-dt kernel: [<78125733>] __do_softirq+0xbb/0xd0
May 31 08:15:09 xeon-dt kernel: [<78125790>] do_softirq+0x48/0x4a
May 31 08:15:09 xeon-dt kernel: [<78125879>] irq_exit+0x42/0x44
May 31 08:15:09 xeon-dt kernel: [<781050e7>] do_IRQ+0x37/0x62
May 31 08:15:09 xeon-dt kernel: [<78100cca>] default_idle+0x0/0x52
May 31 08:15:09 xeon-dt kernel: [<781036ba>] common_interrupt+0x1a/0x20
May 31 08:15:09 xeon-dt kernel: [<78100cca>] default_idle+0x0/0x52
May 31 08:15:09 xeon-dt kernel: [<78100cfd>] default_idle+0x33/0x52
May 31 08:15:09 xeon-dt kernel: [<78100d9e>] cpu_idle+0x6e/0x9f
May 31 08:15:09 xeon-dt kernel: Mem-info:
May 31 08:15:09 xeon-dt kernel: DMA per-cpu:
May 31 08:15:09 xeon-dt kernel: cpu 0 hot: high 0, batch 1 used:0
May 31 08:15:09 xeon-dt kernel: cpu 0 cold: high 0, batch 1 used:0
May 31 08:15:09 xeon-dt kernel: cpu 1 hot: high 0, batch 1 used:0
May 31 08:15:09 xeon-dt kernel: cpu 1 cold: high 0, batch 1 used:0
May 31 08:15:09 xeon-dt kernel: cpu 2 hot: high 0, batch 1 used:0
May 31 08:15:09 xeon-dt kernel: cpu 2 cold: high 0, batch 1 used:0
May 31 08:15:09 xeon-dt kernel: cpu 3 hot: high 0, batch 1 used:0
May 31 08:15:09 xeon-dt kernel: cpu 3 cold: high 0, batch 1 used:0
May 31 08:15:09 xeon-dt kernel: DMA32 per-cpu: empty
May 31 08:15:09 xeon-dt kernel: Normal per-cpu:
May 31 08:15:09 xeon-dt kernel: cpu 0 hot: high 186, batch 31 used:18
May 31 08:15:09 xeon-dt kernel: cpu 0 cold: high 62, batch 15 used:37
May 31 08:15:09 xeon-dt kernel: cpu 1 hot: high 186, batch 31 used:173
May 31 08:15:09 xeon-dt kernel: cpu 1 cold: high 62, batch 15 used:58
May 31 08:15:09 xeon-dt kernel: cpu 2 hot: high 186, batch 31 used:180
May 31 08:15:09 xeon-dt kernel: cpu 2 cold: high 62, batch 15 used:48
May 31 08:15:09 xeon-dt kernel: cpu 3 hot: high 186, batch 31 used:35
May 31 08:15:09 xeon-dt kernel: cpu 3 cold: high 62, batch 15 used:8
May 31 08:15:09 xeon-dt kernel: HighMem per-cpu: empty
May 31 08:15:09 xeon-dt kernel: Free pages: 108132kB (0kB HighMem)
May 31 08:15:09 xeon-dt kernel: Active:109890 inactive:62337 dirty:94 writeback:0 unstable:0 free:27033 slab:313563 mapped:13243 pagetables:238
May 31 08:15:09 xeon-dt kernel: DMA free:8296kB min:44kB low:52kB high:64kB active:348kB inactive:0kB present:16384kB pages_scanned:0 all_unreclaimable? no
May 31 08:15:09 xeon-dt kernel: lowmem_reserve[]: 0 0 2031 2031
May 31 08:15:09 xeon-dt kernel: DMA32 free:0kB min:0kB low:0kB high:0kB active:0kB inactive:0kB present:0kB pages_scanned:0 all_unreclaimable? no
May 31 08:15:09 xeon-dt kernel: lowmem_reserve[]: 0 0 2031 2031
May 31 08:15:09 xeon-dt kernel: Normal free:99836kB min:5744kB low:7180kB high:8616kB active:439212kB inactive:249348kB present:2080704kB pages_scanned:0 all_unreclaimable? no
May 31 08:15:09 xeon-dt kernel: lowmem_reserve[]: 0 0 0 0
May 31 08:15:09 xeon-dt kernel: HighMem free:0kB min:128kB low:128kB high:128kB active:0kB inactive:0kB present:0kB pages_scanned:0 all_unreclaimable? no
May 31 08:15:09 xeon-dt kernel: lowmem_reserve[]: 0 0 0 0
May 31 08:15:09 xeon-dt kernel: DMA: 36*4kB 1*8kB 1*16kB 0*32kB 1*64kB 1*128kB 1*256kB 1*512kB 1*1024kB 1*2048kB 1*4096kB = 8296kB
May 31 08:15:09 xeon-dt kernel: DMA32: empty
May 31 08:15:09 xeon-dt kernel: Normal: 23879*4kB 406*8kB 1*16kB 1*32kB 0*64kB 0*128kB 0*256kB 0*512kB 1*1024kB 0*2048kB 0*4096kB = 99836kB
May 31 08:15:09 xeon-dt kernel: HighMem: empty
May 31 08:15:09 xeon-dt kernel: Swap cache: add 0, delete 0, find 0/0, race 0+0
May 31 08:15:09 xeon-dt kernel: Free swap = 2040244kB
May 31 08:15:09 xeon-dt kernel: Total swap = 2040244kB
May 31 08:15:09 xeon-dt kernel: Free swap: 2040244kB
May 31 08:15:09 xeon-dt kernel: 524272 pages of RAM
May 31 08:15:09 xeon-dt kernel: 0 pages of HIGHMEM
May 31 08:15:09 xeon-dt kernel: 7484 reserved pages
May 31 08:15:09 xeon-dt kernel: 148633 pages shared
May 31 08:15:09 xeon-dt kernel: 0 pages swap cached
May 31 08:15:09 xeon-dt kernel: 94 pages dirty
May 31 08:15:09 xeon-dt kernel: 0 pages writeback
May 31 08:15:09 xeon-dt kernel: 13243 pages mapped
May 31 08:15:09 xeon-dt kernel: 313558 pages slab
May 31 08:15:09 xeon-dt kernel: 238 pages pagetables
May 31 08:15:09 xeon-dt kernel: btserver: page allocation failure. order:1, mode:0x20
May 31 08:15:09 xeon-dt kernel: [<78147393>] __alloc_pages+0x1d8/0x2b8
May 31 08:15:09 xeon-dt kernel: [<7815c525>] kmem_getpages+0x2f/0x8c
May 31 08:15:09 xeon-dt kernel: [<7815d297>] cache_grow+0xb1/0x14e
May 31 08:15:09 xeon-dt kernel: [<7815d48e>] cache_alloc_refill+0x15a/0x206
May 31 08:15:09 xeon-dt kernel: [<7815d7c5>] __kmalloc+0x68/0x80
May 31 08:15:09 xeon-dt kernel: [<782b3ba2>] __alloc_skb+0x4c/0xf6
May 31 08:15:09 xeon-dt kernel: [<782e63af>] tcp_collapse+0xe9/0x34e
May 31 08:15:09 xeon-dt kernel: [<782e6726>] tcp_prune_queue+0x97/0x1db
May 31 08:15:09 xeon-dt kernel: [<782e5e5e>] tcp_data_queue+0x2ba/0x722
May 31 08:15:09 xeon-dt kernel: [<7831af17>] _read_lock+0x24/0x8c
May 31 08:15:09 xeon-dt kernel: [<782e6eb7>] tcp_rcv_established+0x1dc/0x6cf
May 31 08:15:09 xeon-dt kernel: [<782ee2b8>] tcp_v4_do_rcv+0xe5/0xea
May 31 08:15:09 xeon-dt kernel: [<782b2927>] __release_sock+0x3e/0x5d
May 31 08:15:09 xeon-dt kernel: [<782b30aa>] release_sock+0x6e/0x70
May 31 08:15:09 xeon-dt kernel: [<782df1a2>] tcp_sendmsg+0x326/0xad5
May 31 08:15:09 xeon-dt kernel: [<7814720d>] __alloc_pages+0x52/0x2b8
May 31 08:15:09 xeon-dt kernel: [<7831b18a>] _spin_unlock+0xf/0x23
May 31 08:15:09 xeon-dt kernel: [<782fa5bd>] inet_sendmsg+0x47/0x5f
May 31 08:15:09 xeon-dt kernel: [<782af085>] sock_sendmsg+0xfd/0xff
May 31 08:15:09 xeon-dt kernel: [<782b3ba2>] __alloc_skb+0x4c/0xf6
May 31 08:15:09 xeon-dt kernel: [<f898c6c2>] e1000_alloc_rx_buffers+0x22a/0x418 [e1000]
May 31 08:15:09 xeon-dt kernel: [<7813346a>] autoremove_wake_function+0x0/0x43
May 31 08:15:09 xeon-dt kernel: [<7831b18a>] _spin_unlock+0xf/0x23
May 31 08:15:09 xeon-dt kernel: [<f898b750>] e1000_clean_tx_irq+0x123/0x32e [e1000]
May 31 08:15:09 xeon-dt kernel: [<f898bba4>] e1000_clean_rx_irq+0x249/0x5c6 [e1000]
May 31 08:15:09 xeon-dt kernel: [<78161670>] fget+0x5a/0x98
May 31 08:15:09 xeon-dt kernel: [<782b0779>] sys_sendto+0xc7/0xe2
May 31 08:15:09 xeon-dt kernel: [<782b9b40>] net_rx_action+0x147/0x1ae
May 31 08:15:09 xeon-dt kernel: [<781256e2>] __do_softirq+0x6a/0xd0
May 31 08:15:09 xeon-dt kernel: [<78125879>] irq_exit+0x42/0x44
May 31 08:15:09 xeon-dt kernel: [<781050e7>] do_IRQ+0x37/0x62
May 31 08:15:09 xeon-dt kernel: [<782b07cb>] sys_send+0x37/0x3b
May 31 08:15:09 xeon-dt kernel: [<782b0f48>] sys_socketcall+0x150/0x26d
May 31 08:15:09 xeon-dt kernel: [<78124cf2>] sys_gettimeofday+0x2c/0x65
May 31 08:15:09 xeon-dt kernel: [<78102c93>] sysenter_past_esp+0x54/0x75
May 31 08:15:09 xeon-dt kernel: Mem-info:
May 31 08:15:09 xeon-dt kernel: DMA per-cpu:
May 31 08:15:09 xeon-dt kernel: cpu 0 hot: high 0, batch 1 used:0
May 31 08:15:09 xeon-dt kernel: cpu 0 cold: high 0, batch 1 used:0
May 31 08:15:09 xeon-dt kernel: cpu 1 hot: high 0, batch 1 used:0
May 31 08:15:09 xeon-dt kernel: cpu 1 cold: high 0, batch 1 used:0
May 31 08:15:09 xeon-dt kernel: cpu 2 hot: high 0, batch 1 used:0
May 31 08:15:09 xeon-dt kernel: cpu 2 cold: high 0, batch 1 used:0
May 31 08:15:09 xeon-dt kernel: cpu 3 hot: high 0, batch 1 used:0
May 31 08:15:09 xeon-dt kernel: cpu 3 cold: high 0, batch 1 used:0
May 31 08:15:09 xeon-dt kernel: DMA32 per-cpu: empty
May 31 08:15:09 xeon-dt kernel: Normal per-cpu:
May 31 08:15:09 xeon-dt kernel: cpu 0 hot: high 186, batch 31 used:105
May 31 08:15:09 xeon-dt kernel: cpu 0 cold: high 62, batch 15 used:56
May 31 08:15:09 xeon-dt kernel: cpu 1 hot: high 186, batch 31 used:173
May 31 08:15:09 xeon-dt kernel: cpu 1 cold: high 62, batch 15 used:58
May 31 08:15:09 xeon-dt kernel: cpu 2 hot: high 186, batch 31 used:157
May 31 08:15:09 xeon-dt kernel: cpu 2 cold: high 62, batch 15 used:60
May 31 08:15:09 xeon-dt kernel: cpu 3 hot: high 186, batch 31 used:25
May 31 08:15:09 xeon-dt kernel: cpu 3 cold: high 62, batch 15 used:8
May 31 08:15:09 xeon-dt kernel: HighMem per-cpu: empty
May 31 08:15:09 xeon-dt kernel: Free pages: 129132kB (0kB HighMem)
May 31 08:15:09 xeon-dt kernel: Active:106610 inactive:63452 dirty:96 writeback:0 unstable:0 free:32283 slab:310207 mapped:13243 pagetables:238
May 31 08:15:09 xeon-dt kernel: DMA free:8144kB min:44kB low:52kB high:64kB active:348kB inactive:0kB present:16384kB pages_scanned:136 all_unreclaimable? no
May 31 08:15:09 xeon-dt kernel: lowmem_reserve[]: 0 0 2031 2031
May 31 08:15:09 xeon-dt kernel: DMA32 free:0kB min:0kB low:0kB high:0kB active:0kB inactive:0kB present:0kB pages_scanned:0 all_unreclaimable? no
May 31 08:15:09 xeon-dt kernel: lowmem_reserve[]: 0 0 2031 2031
May 31 08:15:09 xeon-dt kernel: Normal free:120988kB min:5744kB low:7180kB high:8616kB active:426092kB inactive:253808kB present:2080704kB pages_scanned:0 all_unreclaimable? no
May 31 08:15:09 xeon-dt kernel: lowmem_reserve[]: 0 0 0 0
May 31 08:15:09 xeon-dt kernel: HighMem free:0kB min:128kB low:128kB high:128kB active:0kB inactive:0kB present:0kB pages_scanned:0 all_unreclaimable? no
May 31 08:15:09 xeon-dt kernel: lowmem_reserve[]: 0 0 0 0
May 31 08:15:09 xeon-dt kernel: DMA: 36*4kB 0*8kB 0*16kB 0*32kB 1*64kB 0*128kB 1*256kB 1*512kB 1*1024kB 1*2048kB 1*4096kB = 8144kB
May 31 08:15:09 xeon-dt kernel: DMA32: empty
May 31 08:15:09 xeon-dt kernel: Normal: 29161*4kB 399*8kB 6*16kB 1*32kB 0*64kB 0*128kB 0*256kB 0*512kB 1*1024kB 0*2048kB 0*4096kB = 120988kB
May 31 08:15:09 xeon-dt kernel: HighMem: empty
May 31 08:15:09 xeon-dt kernel: Swap cache: add 0, delete 0, find 0/0, race 0+0
May 31 08:15:09 xeon-dt kernel: Free swap = 2040244kB
May 31 08:15:09 xeon-dt kernel: Total swap = 2040244kB
May 31 08:15:09 xeon-dt kernel: Free swap: 2040244kB
May 31 08:15:09 xeon-dt kernel: 524272 pages of RAM
May 31 08:15:09 xeon-dt kernel: 0 pages of HIGHMEM
May 31 08:15:09 xeon-dt kernel: 7484 reserved pages
May 31 08:15:09 xeon-dt kernel: 146453 pages shared
May 31 08:15:09 xeon-dt kernel: 0 pages swap cached
May 31 08:15:09 xeon-dt kernel: 96 pages dirty
May 31 08:15:09 xeon-dt kernel: 0 pages writeback
May 31 08:15:09 xeon-dt kernel: 13243 pages mapped
May 31 08:15:09 xeon-dt kernel: 310207 pages slab
May 31 08:15:09 xeon-dt kernel: 238 pages pagetables
May 31 08:15:09 xeon-dt kernel: kswapd0: page allocation failure. order:1, mode:0x20
May 31 08:15:09 xeon-dt kernel: [<78147393>] __alloc_pages+0x1d8/0x2b8
May 31 08:15:09 xeon-dt kernel: [<7815c525>] kmem_getpages+0x2f/0x8c
May 31 08:15:09 xeon-dt kernel: [<7815d297>] cache_grow+0xb1/0x14e
May 31 08:15:09 xeon-dt kernel: [<7815d48e>] cache_alloc_refill+0x15a/0x206
May 31 08:15:09 xeon-dt kernel: [<7815d7c5>] __kmalloc+0x68/0x80
May 31 08:15:09 xeon-dt kernel: [<782b3ba2>] __alloc_skb+0x4c/0xf6
May 31 08:15:09 xeon-dt kernel: [<782e63af>] tcp_collapse+0xe9/0x34e
May 31 08:15:09 xeon-dt kernel: [<782e6726>] tcp_prune_queue+0x97/0x1db
May 31 08:15:09 xeon-dt kernel: [<782e5e5e>] tcp_data_queue+0x2ba/0x722
May 31 08:15:10 xeon-dt kernel: [<7831af17>] _read_lock+0x24/0x8c
May 31 08:15:10 xeon-dt kernel: [<782e6eb7>] tcp_rcv_established+0x1dc/0x6cf
May 31 08:15:10 xeon-dt kernel: [<782e6ef8>] tcp_rcv_established+0x21d/0x6cf
May 31 08:15:10 xeon-dt kernel: [<782ee2b8>] tcp_v4_do_rcv+0xe5/0xea
May 31 08:15:10 xeon-dt kernel: [<782eea45>] tcp_v4_rcv+0x788/0x9b0
May 31 08:15:10 xeon-dt kernel: [<7831b18a>] _spin_unlock+0xf/0x23
May 31 08:15:10 xeon-dt kernel: [<7815d312>] cache_grow+0x12c/0x14e
May 31 08:15:10 xeon-dt kernel: [<782d48fe>] ip_local_deliver+0x109/0x287
May 31 08:15:10 xeon-dt kernel: [<782d4d1f>] ip_rcv+0x2a3/0x577
May 31 08:15:10 xeon-dt kernel: [<782b3ba2>] __alloc_skb+0x4c/0xf6
May 31 08:15:10 xeon-dt kernel: [<782b9841>] netif_receive_skb+0x2b8/0x36d
May 31 08:15:10 xeon-dt kernel: [<f898bb26>] e1000_clean_rx_irq+0x1cb/0x5c6 [e1000]
May 31 08:15:10 xeon-dt kernel: [<f898b750>] e1000_clean_tx_irq+0x123/0x32e [e1000]
May 31 08:15:10 xeon-dt kernel: [<f898bba4>] e1000_clean_rx_irq+0x249/0x5c6 [e1000]
May 31 08:15:10 xeon-dt kernel: [<f898b546>] e1000_clean+0xa6/0x18d [e1000]
May 31 08:15:10 xeon-dt kernel: [<782b9a92>] net_rx_action+0x99/0x1ae
May 31 08:15:10 xeon-dt kernel: [<78125733>] __do_softirq+0xbb/0xd0
May 31 08:15:10 xeon-dt kernel: [<78125790>] do_softirq+0x48/0x4a
May 31 08:15:10 xeon-dt kernel: [<78125879>] irq_exit+0x42/0x44
May 31 08:15:10 xeon-dt kernel: [<781050e7>] do_IRQ+0x37/0x62
May 31 08:15:10 xeon-dt kernel: [<78125879>] irq_exit+0x42/0x44
May 31 08:15:10 xeon-dt kernel: [<781036ba>] common_interrupt+0x1a/0x20
May 31 08:15:10 xeon-dt kernel: [<78176dd0>] d_callback+0x0/0x24
May 31 08:15:10 xeon-dt kernel: [<78130911>] call_rcu+0x1a/0x6e
May 31 08:15:10 xeon-dt kernel: [<78177380>] prune_dcache+0xd0/0x120
May 31 08:15:10 xeon-dt kernel: [<781776ee>] shrink_dcache_memory+0x14/0x37
May 31 08:15:10 xeon-dt kernel: [<7814ad72>] shrink_slab+0x16b/0x1c0
May 31 08:15:10 xeon-dt kernel: [<7814881d>] throttle_vm_writeout+0x1e/0x5d
May 31 08:15:10 xeon-dt kernel: [<7814c05b>] balance_pgdat+0x2a1/0x375
May 31 08:15:10 xeon-dt kernel: [<7814c210>] kswapd+0xe1/0x100
May 31 08:15:10 xeon-dt kernel: [<7813346a>] autoremove_wake_function+0x0/0x43
May 31 08:15:10 xeon-dt kernel: [<78102bca>] ret_from_fork+0x6/0x14
May 31 08:15:10 xeon-dt kernel: [<7813346a>] autoremove_wake_function+0x0/0x43
May 31 08:15:10 xeon-dt kernel: [<7814c12f>] kswapd+0x0/0x100
May 31 08:15:10 xeon-dt kernel: [<78101109>] kernel_thread_helper+0x5/0xb
May 31 08:15:10 xeon-dt kernel: Mem-info:
May 31 08:15:10 xeon-dt kernel: DMA per-cpu:
May 31 08:15:10 xeon-dt kernel: cpu 0 hot: high 0, batch 1 used:0
May 31 08:15:10 xeon-dt kernel: cpu 0 cold: high 0, batch 1 used:0
May 31 08:15:10 xeon-dt kernel: cpu 1 hot: high 0, batch 1 used:0
May 31 08:15:10 xeon-dt kernel: cpu 1 cold: high 0, batch 1 used:0
May 31 08:15:10 xeon-dt kernel: cpu 2 hot: high 0, batch 1 used:0
May 31 08:15:10 xeon-dt kernel: cpu 2 cold: high 0, batch 1 used:0
May 31 08:15:10 xeon-dt kernel: cpu 3 hot: high 0, batch 1 used:0
May 31 08:15:10 xeon-dt kernel: cpu 3 cold: high 0, batch 1 used:0
May 31 08:15:10 xeon-dt kernel: DMA32 per-cpu: empty
May 31 08:15:10 xeon-dt kernel: Normal per-cpu:
May 31 08:15:10 xeon-dt kernel: cpu 0 hot: high 186, batch 31 used:7
May 31 08:15:10 xeon-dt kernel: cpu 0 cold: high 62, batch 15 used:56
May 31 08:15:10 xeon-dt kernel: cpu 1 hot: high 186, batch 31 used:179
May 31 08:15:10 xeon-dt kernel: cpu 1 cold: high 62, batch 15 used:47
May 31 08:15:10 xeon-dt kernel: cpu 2 hot: high 186, batch 31 used:30
May 31 08:15:10 xeon-dt kernel: cpu 2 cold: high 62, batch 15 used:60
May 31 08:15:10 xeon-dt kernel: cpu 3 hot: high 186, batch 31 used:2
May 31 08:15:10 xeon-dt kernel: cpu 3 cold: high 62, batch 15 used:8
May 31 08:15:10 xeon-dt kernel: HighMem per-cpu: empty
May 31 08:15:10 xeon-dt kernel: Free pages: 119148kB (0kB HighMem)
May 31 08:15:10 xeon-dt kernel: Active:106530 inactive:63475 dirty:96 writeback:0 unstable:0 free:29787 slab:309881 mapped:13243 pagetables:238
May 31 08:15:10 xeon-dt kernel: DMA free:8144kB min:44kB low:52kB high:64kB active:348kB inactive:0kB present:16384kB pages_scanned:136 all_unreclaimable? no
May 31 08:15:10 xeon-dt kernel: lowmem_reserve[]: 0 0 2031 2031
May 31 08:15:10 xeon-dt kernel: DMA32 free:0kB min:0kB low:0kB high:0kB active:0kB inactive:0kB present:0kB pages_scanned:0 all_unreclaimable? no
May 31 08:15:10 xeon-dt kernel: lowmem_reserve[]: 0 0 2031 2031
May 31 08:15:10 xeon-dt kernel: Normal free:111004kB min:5744kB low:7180kB high:8616kB active:425772kB inactive:253900kB present:2080704kB pages_scanned:0 all_unreclaimable? no
May 31 08:15:10 xeon-dt kernel: lowmem_reserve[]: 0 0 0 0
May 31 08:15:10 xeon-dt kernel: HighMem free:0kB min:128kB low:128kB high:128kB active:0kB inactive:0kB present:0kB pages_scanned:0 all_unreclaimable? no
May 31 08:15:10 xeon-dt kernel: lowmem_reserve[]: 0 0 0 0
May 31 08:15:10 xeon-dt kernel: DMA: 36*4kB 0*8kB 0*16kB 0*32kB 1*64kB 0*128kB 1*256kB 1*512kB 1*1024kB 1*2048kB 1*4096kB = 8144kB
May 31 08:15:10 xeon-dt kernel: DMA32: empty
May 31 08:15:10 xeon-dt kernel: Normal: 27481*4kB 1*8kB 1*16kB 1*32kB 0*64kB 0*128kB 0*256kB 0*512kB 1*1024kB 0*2048kB 0*4096kB = 111004kB
May 31 08:15:10 xeon-dt kernel: HighMem: empty
May 31 08:15:10 xeon-dt kernel: Swap cache: add 0, delete 0, find 0/0, race 0+0
May 31 08:15:10 xeon-dt kernel: Free swap = 2040244kB
May 31 08:15:10 xeon-dt kernel: Total swap = 2040244kB
May 31 08:15:10 xeon-dt kernel: Free swap: 2040244kB
May 31 08:15:10 xeon-dt kernel: 524272 pages of RAM
May 31 08:15:10 xeon-dt kernel: 0 pages of HIGHMEM
May 31 08:15:10 xeon-dt kernel: 7484 reserved pages
May 31 08:15:10 xeon-dt kernel: 146589 pages shared
May 31 08:15:10 xeon-dt kernel: 0 pages swap cached
May 31 08:15:10 xeon-dt kernel: 96 pages dirty
May 31 08:15:10 xeon-dt kernel: 0 pages writeback
May 31 08:15:10 xeon-dt kernel: 13243 pages mapped
May 31 08:15:10 xeon-dt kernel: 309881 pages slab
May 31 08:15:10 xeon-dt kernel: 238 pages pagetables
May 31 08:15:10 xeon-dt kernel: swapper: page allocation failure. order:1, mode:0x20
May 31 08:15:10 xeon-dt kernel: [<78147393>] __alloc_pages+0x1d8/0x2b8
May 31 08:15:10 xeon-dt kernel: [<7815c525>] kmem_getpages+0x2f/0x8c
May 31 08:15:10 xeon-dt kernel: [<7815d297>] cache_grow+0xb1/0x14e
May 31 08:15:10 xeon-dt kernel: [<7815d48e>] cache_alloc_refill+0x15a/0x206
May 31 08:15:10 xeon-dt kernel: [<7815d7c5>] __kmalloc+0x68/0x80
May 31 08:15:10 xeon-dt kernel: [<782b3ba2>] __alloc_skb+0x4c/0xf6
May 31 08:15:10 xeon-dt kernel: [<782e63af>] tcp_collapse+0xe9/0x34e
May 31 08:15:10 xeon-dt kernel: [<782e6726>] tcp_prune_queue+0x97/0x1db
May 31 08:15:10 xeon-dt kernel: [<782e5e5e>] tcp_data_queue+0x2ba/0x722
May 31 08:15:10 xeon-dt kernel: [<7831af17>] _read_lock+0x24/0x8c
May 31 08:15:10 xeon-dt kernel: [<782e6eb7>] tcp_rcv_established+0x1dc/0x6cf
May 31 08:15:10 xeon-dt kernel: [<782ee2b8>] tcp_v4_do_rcv+0xe5/0xea
May 31 08:15:10 xeon-dt kernel: [<782eea45>] tcp_v4_rcv+0x788/0x9b0
May 31 08:15:10 xeon-dt kernel: [<7815d312>] cache_grow+0x12c/0x14e
May 31 08:15:10 xeon-dt kernel: [<782d48fe>] ip_local_deliver+0x109/0x287
May 31 08:15:10 xeon-dt kernel: [<782d4d1f>] ip_rcv+0x2a3/0x577
May 31 08:15:10 xeon-dt kernel: [<f898c6c2>] e1000_alloc_rx_buffers+0x22a/0x418 [e1000]
May 31 08:15:10 xeon-dt kernel: [<782b9841>] netif_receive_skb+0x2b8/0x36d
May 31 08:15:10 xeon-dt kernel: [<782b3eab>] __kfree_skb+0x4d/0x102
May 31 08:15:10 xeon-dt kernel: [<f898bb26>] e1000_clean_rx_irq+0x1cb/0x5c6 [e1000]
May 31 08:15:10 xeon-dt kernel: [<78125460>] getnstimeofday+0x10/0x2a
May 31 08:15:10 xeon-dt kernel: [<f898b546>] e1000_clean+0xa6/0x18d [e1000]
May 31 08:15:10 xeon-dt kernel: [<782b9a92>] net_rx_action+0x99/0x1ae
May 31 08:15:10 xeon-dt kernel: [<78125733>] __do_softirq+0xbb/0xd0
May 31 08:15:10 xeon-dt kernel: [<78125790>] do_softirq+0x48/0x4a
May 31 08:15:10 xeon-dt kernel: [<78125879>] irq_exit+0x42/0x44
May 31 08:15:10 xeon-dt kernel: [<781050e7>] do_IRQ+0x37/0x62
May 31 08:15:10 xeon-dt kernel: [<78100cca>] default_idle+0x0/0x52
May 31 08:15:10 xeon-dt kernel: [<781036ba>] common_interrupt+0x1a/0x20
May 31 08:15:10 xeon-dt kernel: [<78100cca>] default_idle+0x0/0x52
May 31 08:15:10 xeon-dt kernel: [<78100cfd>] default_idle+0x33/0x52
May 31 08:15:10 xeon-dt kernel: [<78100d9e>] cpu_idle+0x6e/0x9f
May 31 08:15:10 xeon-dt kernel: Mem-info:
May 31 08:15:10 xeon-dt kernel: DMA per-cpu:
May 31 08:15:10 xeon-dt kernel: cpu 0 hot: high 0, batch 1 used:0
May 31 08:15:10 xeon-dt kernel: cpu 0 cold: high 0, batch 1 used:0
May 31 08:15:10 xeon-dt kernel: cpu 1 hot: high 0, batch 1 used:0
May 31 08:15:10 xeon-dt kernel: cpu 1 cold: high 0, batch 1 used:0
May 31 08:15:10 xeon-dt kernel: cpu 2 hot: high 0, batch 1 used:0
May 31 08:15:10 xeon-dt kernel: cpu 2 cold: high 0, batch 1 used:0
May 31 08:15:10 xeon-dt kernel: cpu 3 hot: high 0, batch 1 used:0
May 31 08:15:10 xeon-dt kernel: cpu 3 cold: high 0, batch 1 used:0
May 31 08:15:10 xeon-dt kernel: DMA32 per-cpu: empty
May 31 08:15:10 xeon-dt kernel: Normal per-cpu:
May 31 08:15:10 xeon-dt kernel: cpu 0 hot: high 186, batch 31 used:155
May 31 08:15:10 xeon-dt kernel: cpu 0 cold: high 62, batch 15 used:51
May 31 08:15:10 xeon-dt kernel: cpu 1 hot: high 186, batch 31 used:141
May 31 08:15:10 xeon-dt kernel: cpu 1 cold: high 62, batch 15 used:47
May 31 08:15:10 xeon-dt kernel: cpu 2 hot: high 186, batch 31 used:160
May 31 08:15:10 xeon-dt kernel: cpu 2 cold: high 62, batch 15 used:60
May 31 08:15:10 xeon-dt kernel: cpu 3 hot: high 186, batch 31 used:1
May 31 08:15:10 xeon-dt kernel: cpu 3 cold: high 62, batch 15 used:8
May 31 08:15:10 xeon-dt kernel: HighMem per-cpu: empty
May 31 08:15:10 xeon-dt kernel: Free pages: 140120kB (0kB HighMem)
May 31 08:15:10 xeon-dt kernel: Active:104009 inactive:64399 dirty:96 writeback:0 unstable:0 free:35030 slab:306067 mapped:13243 pagetables:238
May 31 08:15:10 xeon-dt kernel: DMA free:8144kB min:44kB low:52kB high:64kB active:348kB inactive:0kB present:16384kB pages_scanned:102 all_unreclaimable? no
May 31 08:15:10 xeon-dt kernel: lowmem_reserve[]: 0 0 2031 2031
May 31 08:15:10 xeon-dt kernel: DMA32 free:0kB min:0kB low:0kB high:0kB active:0kB inactive:0kB present:0kB pages_scanned:0 all_unreclaimable? no
May 31 08:15:10 xeon-dt kernel: lowmem_reserve[]: 0 0 2031 2031
May 31 08:15:10 xeon-dt kernel: Normal free:131976kB min:5744kB low:7180kB high:8616kB active:415688kB inactive:257596kB present:2080704kB pages_scanned:0 all_unreclaimable? no
May 31 08:15:10 xeon-dt kernel: lowmem_reserve[]: 0 0 0 0
May 31 08:15:10 xeon-dt kernel: HighMem free:0kB min:128kB low:128kB high:128kB active:0kB inactive:0kB present:0kB pages_scanned:0 all_unreclaimable? no
May 31 08:15:10 xeon-dt kernel: lowmem_reserve[]: 0 0 0 0
May 31 08:15:10 xeon-dt kernel: DMA: 38*4kB 1*8kB 1*16kB 1*32kB 0*64kB 0*128kB 1*256kB 1*512kB 1*1024kB 1*2048kB 1*4096kB = 8144kB
May 31 08:15:10 xeon-dt kernel: DMA32: empty
May 31 08:15:10 xeon-dt kernel: Normal: 31904*4kB 407*8kB 3*16kB 1*32kB 0*64kB 0*128kB 0*256kB 0*512kB 1*1024kB 0*2048kB 0*4096kB = 131976kB
May 31 08:15:10 xeon-dt kernel: HighMem: empty
May 31 08:15:10 xeon-dt kernel: Swap cache: add 0, delete 0, find 0/0, race 0+0
May 31 08:15:10 xeon-dt kernel: Free swap = 2040244kB
May 31 08:15:10 xeon-dt kernel: Total swap = 2040244kB
May 31 08:15:10 xeon-dt kernel: Free swap: 2040244kB
May 31 08:15:10 xeon-dt kernel: 524272 pages of RAM
May 31 08:15:10 xeon-dt kernel: 0 pages of HIGHMEM
May 31 08:15:10 xeon-dt kernel: 7484 reserved pages
May 31 08:15:10 xeon-dt kernel: 144992 pages shared
May 31 08:15:10 xeon-dt kernel: 0 pages swap cached
May 31 08:15:10 xeon-dt kernel: 96 pages dirty
May 31 08:15:10 xeon-dt kernel: 0 pages writeback
May 31 08:15:10 xeon-dt kernel: 13243 pages mapped
May 31 08:15:11 xeon-dt kernel: 306067 pages slab
May 31 08:15:11 xeon-dt kernel: 238 pages pagetables
May 31 08:15:52 xeon-dt kernel: find_dflt_route: page allocation failure. order:1, mode:0x20
May 31 08:15:52 xeon-dt kernel: [<78147393>] __alloc_pages+0x1d8/0x2b8
May 31 08:15:52 xeon-dt kernel: [<7815c525>] kmem_getpages+0x2f/0x8c
May 31 08:15:52 xeon-dt kernel: [<7815d297>] cache_grow+0xb1/0x14e
May 31 08:15:52 xeon-dt kernel: [<7815d48e>] cache_alloc_refill+0x15a/0x206
May 31 08:15:52 xeon-dt kernel: [<7815d7c5>] __kmalloc+0x68/0x80
May 31 08:15:52 xeon-dt kernel: [<782b3ba2>] __alloc_skb+0x4c/0xf6
May 31 08:15:52 xeon-dt kernel: [<782e63af>] tcp_collapse+0xe9/0x34e
May 31 08:15:52 xeon-dt kernel: [<782e6726>] tcp_prune_queue+0x97/0x1db
May 31 08:15:52 xeon-dt kernel: [<782e5e5e>] tcp_data_queue+0x2ba/0x722
May 31 08:15:52 xeon-dt kernel: [<7831af17>] _read_lock+0x24/0x8c
May 31 08:15:52 xeon-dt kernel: [<782e6eb7>] tcp_rcv_established+0x1dc/0x6cf
May 31 08:15:52 xeon-dt kernel: [<782e7210>] tcp_rcv_established+0x535/0x6cf
May 31 08:15:52 xeon-dt kernel: [<7831b18a>] _spin_unlock+0xf/0x23
May 31 08:15:52 xeon-dt kernel: [<782ee2b8>] tcp_v4_do_rcv+0xe5/0xea
May 31 08:15:52 xeon-dt kernel: [<782eea45>] tcp_v4_rcv+0x788/0x9b0
May 31 08:15:52 xeon-dt kernel: [<7831b18a>] _spin_unlock+0xf/0x23
May 31 08:15:52 xeon-dt kernel: [<7815d312>] cache_grow+0x12c/0x14e
May 31 08:15:52 xeon-dt kernel: [<782d48fe>] ip_local_deliver+0x109/0x287
May 31 08:15:52 xeon-dt kernel: [<782d4d1f>] ip_rcv+0x2a3/0x577
May 31 08:15:52 xeon-dt kernel: [<f898c6c2>] e1000_alloc_rx_buffers+0x22a/0x418 [e1000]
May 31 08:15:52 xeon-dt kernel: [<782b9841>] netif_receive_skb+0x2b8/0x36d
May 31 08:15:52 xeon-dt kernel: [<782b3eab>] __kfree_skb+0x4d/0x102
May 31 08:15:52 xeon-dt kernel: [<f898bb26>] e1000_clean_rx_irq+0x1cb/0x5c6 [e1000]
May 31 08:15:52 xeon-dt kernel: [<f898bba4>] e1000_clean_rx_irq+0x249/0x5c6 [e1000]
May 31 08:15:52 xeon-dt kernel: [<f898b546>] e1000_clean+0xa6/0x18d [e1000]
May 31 08:15:52 xeon-dt kernel: [<782b9a92>] net_rx_action+0x99/0x1ae
May 31 08:15:52 xeon-dt kernel: [<78125733>] __do_softirq+0xbb/0xd0
May 31 08:15:52 xeon-dt kernel: [<78125790>] do_softirq+0x48/0x4a
May 31 08:15:52 xeon-dt kernel: [<78125879>] irq_exit+0x42/0x44
May 31 08:15:52 xeon-dt kernel: [<781050e7>] do_IRQ+0x37/0x62
May 31 08:15:52 xeon-dt kernel: [<781036ba>] common_interrupt+0x1a/0x20
May 31 08:15:52 xeon-dt kernel: [<7814007b>] audit_filter_user_rules+0x89/0xb9
May 31 08:15:52 xeon-dt kernel: [<781db83c>] _raw_spin_trylock+0x7/0x28
May 31 08:15:52 xeon-dt kernel: [<7831add1>] _spin_lock+0x24/0x8e
May 31 08:15:52 xeon-dt kernel: [<78150ec7>] unlink_file_vma+0x2b/0x62
May 31 08:15:52 xeon-dt kernel: [<7814dc6b>] free_pgtables+0x77/0x90
May 31 08:15:52 xeon-dt kernel: [<78152cec>] exit_mmap+0xa0/0x11d
May 31 08:15:52 xeon-dt kernel: [<7811db29>] mmput+0x33/0x94
May 31 08:15:52 xeon-dt kernel: [<7816ac1b>] exec_mmap+0xf4/0x213
May 31 08:15:52 xeon-dt kernel: [<7816b489>] flush_old_exec+0x43/0x1f9
May 31 08:15:52 xeon-dt kernel: [<7816ab14>] kernel_read+0x40/0x53
May 31 08:15:52 xeon-dt kernel: [<7818b108>] load_elf_binary+0x2d4/0xc14
May 31 08:15:52 xeon-dt kernel: [<781daeaf>] copy_from_user+0x58/0x91
May 31 08:15:52 xeon-dt kernel: [<7818ae34>] load_elf_binary+0x0/0xc14
May 31 08:15:52 xeon-dt kernel: [<7816b9a7>] search_binary_handler+0x17d/0x2c9
May 31 08:15:52 xeon-dt kernel: [<7816bc58>] do_execve+0x165/0x203
May 31 08:15:52 xeon-dt kernel: [<78101a70>] sys_execve+0x39/0x85
May 31 08:15:52 xeon-dt kernel: [<78102c93>] sysenter_past_esp+0x54/0x75
May 31 08:15:52 xeon-dt kernel: Mem-info:
May 31 08:15:52 xeon-dt kernel: DMA per-cpu:
May 31 08:15:52 xeon-dt kernel: cpu 0 hot: high 0, batch 1 used:0
May 31 08:15:52 xeon-dt kernel: cpu 0 cold: high 0, batch 1 used:0
May 31 08:15:52 xeon-dt kernel: cpu 1 hot: high 0, batch 1 used:0
May 31 08:15:52 xeon-dt kernel: cpu 1 cold: high 0, batch 1 used:0
May 31 08:15:52 xeon-dt kernel: cpu 2 hot: high 0, batch 1 used:0
May 31 08:15:52 xeon-dt kernel: cpu 2 cold: high 0, batch 1 used:0
May 31 08:15:52 xeon-dt kernel: cpu 3 hot: high 0, batch 1 used:0
May 31 08:15:52 xeon-dt kernel: cpu 3 cold: high 0, batch 1 used:0
May 31 08:15:52 xeon-dt kernel: DMA32 per-cpu: empty
May 31 08:15:52 xeon-dt kernel: Normal per-cpu:
May 31 08:15:52 xeon-dt kernel: cpu 0 hot: high 186, batch 31 used:158
May 31 08:15:52 xeon-dt kernel: cpu 0 cold: high 62, batch 15 used:51
May 31 08:15:52 xeon-dt kernel: cpu 1 hot: high 186, batch 31 used:93
May 31 08:15:52 xeon-dt kernel: cpu 1 cold: high 62, batch 15 used:47
May 31 08:15:52 xeon-dt kernel: cpu 2 hot: high 186, batch 31 used:180
May 31 08:15:52 xeon-dt kernel: cpu 2 cold: high 62, batch 15 used:59
May 31 08:15:52 xeon-dt kernel: cpu 3 hot: high 186, batch 31 used:21
May 31 08:15:52 xeon-dt kernel: cpu 3 cold: high 62, batch 15 used:8
May 31 08:15:52 xeon-dt kernel: HighMem per-cpu: empty
May 31 08:15:52 xeon-dt kernel: Free pages: 160616kB (0kB HighMem)
May 31 08:15:52 xeon-dt kernel: Active:102218 inactive:65424 dirty:93 writeback:0 unstable:0 free:40154 slab:301671 mapped:13504 pagetables:253
May 31 08:15:52 xeon-dt kernel: DMA free:8144kB min:44kB low:52kB high:64kB active:348kB inactive:0kB present:16384kB pages_scanned:68 all_unreclaimable? no
May 31 08:15:52 xeon-dt kernel: lowmem_reserve[]: 0 0 2031 2031
May 31 08:15:52 xeon-dt kernel: DMA32 free:0kB min:0kB low:0kB high:0kB active:0kB inactive:0kB present:0kB pages_scanned:0 all_unreclaimable? no
May 31 08:15:52 xeon-dt kernel: lowmem_reserve[]: 0 0 2031 2031
May 31 08:15:52 xeon-dt kernel: Normal free:152472kB min:5744kB low:7180kB high:8616kB active:408524kB inactive:261696kB present:2080704kB pages_scanned:19 all_unreclaimable? no
May 31 08:15:52 xeon-dt kernel: lowmem_reserve[]: 0 0 0 0
May 31 08:15:52 xeon-dt kernel: HighMem free:0kB min:128kB low:128kB high:128kB active:0kB inactive:0kB present:0kB pages_scanned:0 all_unreclaimable? no
May 31 08:15:53 xeon-dt kernel: lowmem_reserve[]: 0 0 0 0
May 31 08:15:53 xeon-dt kernel: DMA: 42*4kB 1*8kB 0*16kB 1*32kB 0*64kB 0*128kB 1*256kB 1*512kB 1*1024kB 1*2048kB 1*4096kB = 8144kB
May 31 08:15:53 xeon-dt kernel: DMA32: empty
May 31 08:15:53 xeon-dt kernel: Normal: 37032*4kB 407*8kB 2*16kB 1*32kB 0*64kB 0*128kB 0*256kB 0*512kB 1*1024kB 0*2048kB 0*4096kB = 152472kB
May 31 08:15:53 xeon-dt kernel: HighMem: empty
May 31 08:15:53 xeon-dt kernel: Swap cache: add 0, delete 0, find 0/0, race 0+0
May 31 08:15:53 xeon-dt kernel: Free swap = 2040244kB
May 31 08:15:53 xeon-dt kernel: Total swap = 2040244kB
May 31 08:15:53 xeon-dt kernel: Free swap: 2040244kB
May 31 08:15:53 xeon-dt kernel: 524272 pages of RAM
May 31 08:15:53 xeon-dt kernel: 0 pages of HIGHMEM
May 31 08:15:53 xeon-dt kernel: 7484 reserved pages
May 31 08:15:53 xeon-dt kernel: 144659 pages shared
May 31 08:15:53 xeon-dt kernel: 0 pages swap cached
May 31 08:15:53 xeon-dt kernel: 93 pages dirty
May 31 08:15:53 xeon-dt kernel: 0 pages writeback
May 31 08:15:53 xeon-dt kernel: 13504 pages mapped
May 31 08:15:53 xeon-dt kernel: 301671 pages slab
May 31 08:15:53 xeon-dt kernel: 253 pages pagetables
[-- Attachment #3: sts.patch --]
[-- Type: text/x-patch, Size: 5552 bytes --]
diff --git a/include/linux/if.h b/include/linux/if.h
--- a/include/linux/if.h
+++ b/include/linux/if.h
@@ -52,6 +52,11 @@
/* Private (from user) interface flags (netdevice->priv_flags). */
#define IFF_802_1Q_VLAN 0x1 /* 802.1Q VLAN device. */
#define IFF_EBRIDGE 0x2 /* Ethernet bridging device. */
+#define IFF_ACCEPT_LOCAL_ADDRS 0x8 /** Accept pkts even if they come from a local
+ * address. This lets use send pkts to ourselves
+ * over external interfaces (when used in conjunction
+ * with SO_BINDTODEVICE
+ */
#define IF_GET_IFACE 0x0001 /* for querying only */
#define IF_GET_PROTO 0x0002
diff --git a/include/linux/sockios.h b/include/linux/sockios.h
--- a/include/linux/sockios.h
+++ b/include/linux/sockios.h
@@ -122,6 +122,14 @@
#define SIOCBRADDIF 0x89a2 /* add interface to bridge */
#define SIOCBRDELIF 0x89a3 /* remove interface from bridge */
+/* Ben's little hack land */
+#define SIOCSACCEPTLOCALADDRS 0x89ba /* Allow interfaces to accept pkts from
+ * local interfaces...use with SO_BINDTODEVICE
+ */
+#define SIOCGACCEPTLOCALADDRS 0x89bb /* Allow interfaces to accept pkts from
+ * local interfaces...use with SO_BINDTODEVICE
+ */
+
/* Device private ioctl calls */
/*
diff --git a/net/core/dev.c b/net/core/dev.c
--- a/net/core/dev.c
+++ b/net/core/dev.c
@@ -2375,6 +2375,24 @@ static int dev_ifsioc(struct ifreq *ifr,
case SIOCSIFNAME:
ifr->ifr_newname[IFNAMSIZ-1] = '\0';
return dev_change_name(dev, ifr->ifr_newname);
+
+ case SIOCSACCEPTLOCALADDRS:
+ if (ifr->ifr_flags) {
+ dev->priv_flags |= IFF_ACCEPT_LOCAL_ADDRS;
+ }
+ else {
+ dev->priv_flags &= ~IFF_ACCEPT_LOCAL_ADDRS;
+ }
+ return 0;
+
+ case SIOCGACCEPTLOCALADDRS:
+ if (dev->priv_flags & IFF_ACCEPT_LOCAL_ADDRS) {
+ ifr->ifr_flags = 1;
+ }
+ else {
+ ifr->ifr_flags = 0;
+ }
+ return 0;
/*
* Unknown or private ioctl
@@ -2474,6 +2492,7 @@ int dev_ioctl(unsigned int cmd, void __u
case SIOCGIFMAP:
case SIOCGIFINDEX:
case SIOCGIFTXQLEN:
+ case SIOCGACCEPTLOCALADDRS:
dev_load(ifr.ifr_name);
read_lock(&dev_base_lock);
ret = dev_ifsioc(&ifr, cmd);
@@ -2550,6 +2569,7 @@ int dev_ioctl(unsigned int cmd, void __u
case SIOCBONDCHANGEACTIVE:
case SIOCBRADDIF:
case SIOCBRDELIF:
+ case SIOCSACCEPTLOCALADDRS:
if (!capable(CAP_NET_ADMIN))
return -EPERM;
dev_load(ifr.ifr_name);
diff --git a/net/ipv4/arp.c b/net/ipv4/arp.c
--- a/net/ipv4/arp.c
+++ b/net/ipv4/arp.c
@@ -419,6 +419,27 @@ static int arp_ignore(struct in_device *
return !inet_confirm_addr(dev, sip, tip, scope);
}
+
+static int is_ip_on_dev(struct net_device* dev, __u32 ip) {
+ int rv = 0;
+ struct in_device* in_dev = in_dev_get(dev);
+ if (in_dev) {
+ struct in_ifaddr *ifa;
+
+ rcu_read_lock();
+ for (ifa = in_dev->ifa_list; ifa; ifa = ifa->ifa_next) {
+ if (ifa->ifa_address == ip) {
+ /* match */
+ rv = 1;
+ break;
+ }
+ }
+ rcu_read_unlock();
+ in_dev_put(in_dev);
+ }
+ return rv;
+}
+
static int arp_filter(__u32 sip, __u32 tip, struct net_device *dev)
{
struct flowi fl = { .nl_u = { .ip4_u = { .daddr = sip,
@@ -429,10 +450,36 @@ static int arp_filter(__u32 sip, __u32 t
if (ip_route_output_key(&rt, &fl) < 0)
return 1;
- if (rt->u.dst.dev != dev) {
- NET_INC_STATS_BH(LINUX_MIB_ARPFILTER);
- flag = 1;
- }
+ if (rt->u.dst.dev != dev) {
+ if ((dev->priv_flags & IFF_ACCEPT_LOCAL_ADDRS) &&
+ (rt->u.dst.dev == &loopback_dev)) {
+ /* Accept these IFF target-ip == dev's IP */
+ /* TODO: Need to force the ARP response back out the interface
+ * instead of letting it route locally.
+ */
+
+ if (is_ip_on_dev(dev, tip)) {
+ /* OK, we'll let this special case slide, so that we can
+ * arp from one local interface to another. This seems
+ * to work, but could use some review. --Ben
+ */
+ /*printk("arp_filter, sip: %x tip: %x dev: %s, STS override (ip on dev)\n",
+ sip, tip, dev->name);*/
+ }
+ else {
+ /*printk("arp_filter, sip: %x tip: %x dev: %s, IP is NOT on dev\n",
+ sip, tip, dev->name);*/
+ NET_INC_STATS_BH(LINUX_MIB_ARPFILTER);
+ flag = 1;
+ }
+ }
+ else {
+ /*printk("arp_filter, not lpbk sip: %x tip: %x dev: %s flgs: %hx dst.dev: %p lbk: %p\n",
+ sip, tip, dev->name, dev->priv_flags, rt->u.dst.dev, &loopback_dev);*/
+ NET_INC_STATS_BH(LINUX_MIB_ARPFILTER);
+ flag = 1;
+ }
+ }
ip_rt_put(rt);
return flag;
}
diff --git a/net/ipv4/fib_frontend.c b/net/ipv4/fib_frontend.c
--- a/net/ipv4/fib_frontend.c
+++ b/net/ipv4/fib_frontend.c
@@ -185,8 +185,16 @@ int fib_validate_source(u32 src, u32 dst
if (fib_lookup(&fl, &res))
goto last_resort;
- if (res.type != RTN_UNICAST)
- goto e_inval_res;
+ if (res.type != RTN_UNICAST) {
+ if ((res.type == RTN_LOCAL) &&
+ (dev->priv_flags & IFF_ACCEPT_LOCAL_ADDRS)) {
+ /* All is OK */
+ }
+ else {
+ goto e_inval_res;
+ }
+ }
+
*spec_dst = FIB_RES_PREFSRC(res);
fib_combine_itag(itag, &res);
#ifdef CONFIG_IP_ROUTE_MULTIPATH
^ permalink raw reply
* [PATCH 3/5] llc: allow applications to get copy of kernel datagrams (redo)
From: Stephen Hemminger @ 2006-05-31 17:00 UTC (permalink / raw)
To: Andrew Morton, David S. Miller; +Cc: Arnaldo Carvalho de Melo, netdev
In-Reply-To: <20060524000530.269796000@localhost.localdomain>
It is legal for an application to bind to a SAP that is also being
used by the kernel. This happens if the bridge module binds to the
STP SAP, and the user wants to have a daemon for STP as well.
It is possible to have kernel doing STP on one bridge, but
let application do RSTP on another bridge.
Previous version of the patch was broken and called rcv() twice.
Signed-off-by: Stephen Hemminger <shemminger@osdl.org>
--- br.orig/net/llc/llc_input.c
+++ br/net/llc/llc_input.c
@@ -173,8 +173,11 @@ int llc_rcv(struct sk_buff *skb, struct
*/
rcv = rcu_dereference(sap->rcv_func);
if (rcv) {
- rcv(skb, dev, pt, orig_dev);
- goto out_put;
+ struct sk_buff *skb2;
+
+ skb2 = skb_clone(skb, GFP_ATOMIC);
+ if (skb2)
+ rcv(skb2, dev, pt, orig_dev);
}
dest = llc_pdu_type(skb);
if (unlikely(!dest || !llc_type_handlers[dest - 1]))
^ permalink raw reply
* [PATCH] don't automatically drop packets from 0.0.0.0/8
From: Amnon Aaronsohn @ 2006-05-31 17:07 UTC (permalink / raw)
To: netdev; +Cc: linux-kernel
For some reason linux drops all incoming packets which have a source
address in the 0.0.0.0/8 range, although these are valid addresses. The
attached patch fixes this. (It still drops packets coming from 0.0.0.0
since that's a special address.)
Signed-off-by: Amnon Aaronsohn <bla@cs.huji.ac.il>
---
--- linux-2.6.16.18/net/ipv4/route.c.old 2006-05-30 08:57:42.000000000 +0300
+++ linux-2.6.16.18/net/ipv4/route.c 2006-05-30 08:58:22.000000000 +0300
@@ -1935,7 +1935,7 @@ static int ip_route_input_slow(struct sk
/* Accept zero addresses only to limited broadcast;
* I even do not know to fix it or not. Waiting for complains :-)
*/
- if (ZERONET(saddr))
+ if (saddr == 0)
goto martian_source;
if (BADCLASS(daddr) || ZERONET(daddr) || LOOPBACK(daddr))
^ permalink raw reply
* Re: TCP connection hang problem with 2.6.16.16, e1000.
From: Ben Greear @ 2006-05-31 17:26 UTC (permalink / raw)
To: NetDev
In-Reply-To: <447DC830.4080201@candelatech.com>
Ben Greear wrote:
> Kernel is 2.6.16.16 with my patches, including a patch to the
> e1000. I also rebuilt a fresh kernel with only the attached
> send-to-self patch. I see the hang, but there was no OOM messages,
> probably because the machine was freshly rebooted and had plenty
> of buffers available. I will try to reproduce this with some other
> NICs next...
The same problem happens with a single TCP connection between two
copper 10/100/1000 intel ports on the FC2 dual-xeon 32-bit machine.
I tried a dual-core AMD system running 64-bit kernel and FC5. This kernel
is running my complete set of patches (against 2.6.16.16).
I can reproduce with Intel pro/1000 on this dual-core system when I up the rate to 400Mbps
and do 50,000 byte writes (can only get 125Mbps with 5000 byte writes on
this system, and it ran at that speed for several minutes w/out problem.)
I can also reproduce when using the tg3 adapters, but the tg3 can only run at about
220Mbps, even with the larger write size. This slower speed could be because of bus
issues or the VLAN I used for one end of the connection. I could not see this problem with tg3 untill
I yanked the cable a few times and then ran the connection through my network
emulator (which will cause a bit of latency and some dropped packets). The tethereal
output looks slightly different, but I think this is just because it is a different
version from the older FC2 system from my previous email.
0.399107 192.168.1.3 -> 192.168.1.2 TCP 33020 > 33019 [ACK] Seq=4294967248 Ack=48 Win=11998 Len=0 TSV=943608 TSER=842823
0.400565 192.168.1.2 -> 192.168.1.3 TCP 33019 > 33020 [ACK] Seq=0 Ack=0 Win=11998 Len=0 TSV=943608 TSER=842824
0.400764 192.168.1.3 -> 192.168.1.2 TCP 33020 > 33019 [ACK] Seq=4294967248 Ack=48 Win=11998 Len=0 TSV=943608 TSER=842823
0.400948 192.168.1.2 -> 192.168.1.3 TCP 33019 > 33020 [ACK] Seq=0 Ack=0 Win=11998 Len=0 TSV=943608 TSER=842824
0.408851 192.168.1.3 -> 192.168.1.2 TCP 33020 > 33019 [ACK] Seq=4294967248 Ack=48 Win=11998 Len=0 TSV=943608 TSER=842823
0.410005 192.168.1.2 -> 192.168.1.3 TCP 33019 > 33020 [ACK] Seq=0 Ack=0 Win=11998 Len=0 TSV=943608 TSER=842824
0.411524 192.168.1.3 -> 192.168.1.2 TCP 33020 > 33019 [ACK] Seq=4294967248 Ack=48 Win=11998 Len=0 TSV=943608 TSER=842823
0.450702 192.168.1.2 -> 192.168.1.3 TCP 33019 > 33020 [ACK] Seq=0 Ack=0 Win=11998 Len=0 TSV=943608 TSER=842824
Thanks,
Ben
--
Ben Greear <greearb@candelatech.com>
Candela Technologies Inc http://www.candelatech.com
^ permalink raw reply
* Re: [PATCH] don't automatically drop packets from 0.0.0.0/8
From: Stephen Hemminger @ 2006-05-31 17:26 UTC (permalink / raw)
To: Amnon Aaronsohn; +Cc: netdev, linux-kernel
In-Reply-To: <Pine.LNX.4.56.0605311958070.8718@duke.cs.huji.ac.il>
On Wed, 31 May 2006 20:07:34 +0300 (IDT)
Amnon Aaronsohn <bla@cs.huji.ac.il> wrote:
> For some reason linux drops all incoming packets which have a source
> address in the 0.0.0.0/8 range, although these are valid addresses. The
> attached patch fixes this. (It still drops packets coming from 0.0.0.0
> since that's a special address.)
>
> Signed-off-by: Amnon Aaronsohn <bla@cs.huji.ac.il>
> ---
>
> --- linux-2.6.16.18/net/ipv4/route.c.old 2006-05-30 08:57:42.000000000 +0300
> +++ linux-2.6.16.18/net/ipv4/route.c 2006-05-30 08:58:22.000000000 +0300
> @@ -1935,7 +1935,7 @@ static int ip_route_input_slow(struct sk
> /* Accept zero addresses only to limited broadcast;
> * I even do not know to fix it or not. Waiting for complains :-)
> */
> - if (ZERONET(saddr))
> + if (saddr == 0)
> goto martian_source;
>
> if (BADCLASS(daddr) || ZERONET(daddr) || LOOPBACK(daddr))
Per RFC1122:
(a) { 0, 0 }
This host on this network. MUST NOT be sent, except as
a source address as part of an initialization procedure
by which the host learns its own IP address.
See also Section 3.3.6 for a non-standard use of {0,0}.
(b) { 0, <Host-number> }
Specified host on this network. It MUST NOT be sent,
except as a source address as part of an initialization
procedure by which the host learns its full IP address.
So it looks like existing code is correct in dropping packets. Net zero
is intended only for protocols like BOOTP broadcasts.
^ permalink raw reply
* Re: [RFC PATCH 1/2] Hardware button support for Wireless cards: radiobtn
From: Ivo van Doorn @ 2006-05-31 17:31 UTC (permalink / raw)
To: Francois Romieu; +Cc: netdev
In-Reply-To: <20060530214305.GA27891@electric-eye.fr.zoreil.com>
[-- Attachment #1: Type: text/plain, Size: 1314 bytes --]
On Tuesday 30 May 2006 23:43, Francois Romieu wrote:
> Ivo van Doorn <ivdoorn@gmail.com> :
> [...]
> > diff --git a/drivers/input/misc/radiobtn.c b/drivers/input/misc/radiobtn.c
> > new file mode 100644
> > index 0000000..8d3b84a
> > --- /dev/null
> > +++ b/drivers/input/misc/radiobtn.c
> [...]
> > +void radiobtn_poll(unsigned long data)
>
> static ?
Good point. Will fix this immediately.
> [...]
> > +int radiobtn_register_device(struct radio_button *radiobtn)
> > +{
> > + int status;
> > +
> > + /*
> > + * Check if all mandatory fields have been set.
> > + */
> > + if (radiobtn->poll_delay == 0 || radiobtn->button_poll == NULL)
> > + return -EINVAL;
> > +
> > + /*
> > + * Allocate, initialize and register input device.
> > + */
> > + radiobtn->input_dev = input_allocate_device();
> > + if (!radiobtn->input_dev) {
> > + printk(KERN_ERR "Failed to allocate input device %s.\n",
> > + radiobtn->dev_name);
> > + return -ENOMEM;
> > + }
> > +
> > + radiobtn->input_dev->name = "Radio button";
> > + radiobtn->input_dev->phys = strcat("radiobtn/", radiobtn->dev_name);
>
> The first parameter of strcat() must be big enough to contain the whole
> string.
Will replace it with
sprintf(wrqu->name, "radiobtn/", radiobtn->dev_name);
Thanks.
Ivo
[-- Attachment #2: Type: application/pgp-signature, Size: 189 bytes --]
^ permalink raw reply
* Re: 2.6.17-rc4: netfilter LOG messages truncated via NETCONSOLE
From: Frank van Maarseveen @ 2006-05-31 17:29 UTC (permalink / raw)
To: Patrick McHardy; +Cc: linux-kernel, Kernel Netdev Mailing List
In-Reply-To: <447DC613.10102@trash.net>
[-- Attachment #1: Type: text/plain, Size: 825 bytes --]
On Wed, May 31, 2006 at 06:36:35PM +0200, Patrick McHardy wrote:
[...]
> > "protocol 0000 is buggy" is gone. The other problem is still there.
>
>
> The messages might get dropped when the output queue is full.
> Does one of the drop counters shown by "ip -s link list"
> and "tc -s -d qdisc show" increase (the other counts might also
> give some clues)? Otherwise please apply the attached patch
> (should fix tcpdump, last patch was incomplete) and post a dump.
No visible improvement with the new patch. ip -s link doesn't show any
dropped packets so far with any patch and I don't use traffic control
that I'm aware of. But I'm not sure what to make of "tc" output, maybe
because CONFIG_SHAPER is not set:
# tc -s -d qdisc show
RTNETLINK answers: Invalid argument
Dump terminated
.config attached.
--
Frank
[-- Attachment #2: dot-config --]
[-- Type: text/plain, Size: 34313 bytes --]
#
# Automatically generated make config: don't edit
# Linux kernel version: 2.6.17-rc4-x127
# Wed May 31 17:39:03 2006
#
CONFIG_X86_32=y
CONFIG_SEMAPHORE_SLEEPERS=y
CONFIG_X86=y
CONFIG_MMU=y
CONFIG_GENERIC_ISA_DMA=y
CONFIG_GENERIC_IOMAP=y
CONFIG_GENERIC_HWEIGHT=y
CONFIG_ARCH_MAY_HAVE_PC_FDC=y
CONFIG_DMI=y
#
# Code maturity level options
#
CONFIG_EXPERIMENTAL=y
CONFIG_LOCK_KERNEL=y
CONFIG_INIT_ENV_ARG_LIMIT=32
#
# General setup
#
CONFIG_LOCALVERSION=""
# CONFIG_LOCALVERSION_AUTO is not set
CONFIG_SWAP=y
CONFIG_SYSVIPC=y
CONFIG_POSIX_MQUEUE=y
# CONFIG_BSD_PROCESS_ACCT is not set
CONFIG_SYSCTL=y
# CONFIG_AUDIT is not set
CONFIG_IKCONFIG=y
CONFIG_IKCONFIG_PROC=y
# CONFIG_CPUSETS is not set
CONFIG_RELAY=y
CONFIG_INITRAMFS_SOURCE=""
CONFIG_UID16=y
CONFIG_VM86=y
# CONFIG_CC_OPTIMIZE_FOR_SIZE is not set
# CONFIG_EMBEDDED is not set
CONFIG_KALLSYMS=y
CONFIG_KALLSYMS_ALL=y
# CONFIG_KALLSYMS_EXTRA_PASS is not set
CONFIG_HOTPLUG=y
CONFIG_PRINTK=y
CONFIG_BUG=y
CONFIG_ELF_CORE=y
CONFIG_BASE_FULL=y
CONFIG_FUTEX=y
CONFIG_EPOLL=y
CONFIG_SHMEM=y
CONFIG_SLAB=y
# CONFIG_TINY_SHMEM is not set
CONFIG_BASE_SMALL=0
# CONFIG_SLOB is not set
#
# Loadable module support
#
CONFIG_MODULES=y
CONFIG_MODULE_UNLOAD=y
# CONFIG_MODULE_FORCE_UNLOAD is not set
# CONFIG_MODVERSIONS is not set
# CONFIG_MODULE_SRCVERSION_ALL is not set
# CONFIG_KMOD is not set
CONFIG_STOP_MACHINE=y
#
# Block layer
#
CONFIG_LBD=y
# CONFIG_BLK_DEV_IO_TRACE is not set
CONFIG_LSF=y
#
# IO Schedulers
#
CONFIG_IOSCHED_NOOP=y
CONFIG_IOSCHED_AS=y
CONFIG_IOSCHED_DEADLINE=y
CONFIG_IOSCHED_CFQ=y
CONFIG_DEFAULT_AS=y
# CONFIG_DEFAULT_DEADLINE is not set
# CONFIG_DEFAULT_CFQ is not set
# CONFIG_DEFAULT_NOOP is not set
CONFIG_DEFAULT_IOSCHED="anticipatory"
#
# Processor type and features
#
CONFIG_SMP=y
CONFIG_X86_PC=y
# CONFIG_X86_ELAN is not set
# CONFIG_X86_VOYAGER is not set
# CONFIG_X86_NUMAQ is not set
# CONFIG_X86_SUMMIT is not set
# CONFIG_X86_BIGSMP is not set
# CONFIG_X86_VISWS is not set
# CONFIG_X86_GENERICARCH is not set
# CONFIG_X86_ES7000 is not set
# CONFIG_M386 is not set
# CONFIG_M486 is not set
# CONFIG_M586 is not set
CONFIG_M586TSC=y
# CONFIG_M586MMX is not set
# CONFIG_M686 is not set
# CONFIG_MPENTIUMII is not set
# CONFIG_MPENTIUMIII is not set
# CONFIG_MPENTIUMM is not set
# CONFIG_MPENTIUM4 is not set
# CONFIG_MK6 is not set
# CONFIG_MK7 is not set
# CONFIG_MK8 is not set
# CONFIG_MCRUSOE is not set
# CONFIG_MEFFICEON is not set
# CONFIG_MWINCHIPC6 is not set
# CONFIG_MWINCHIP2 is not set
# CONFIG_MWINCHIP3D is not set
# CONFIG_MGEODEGX1 is not set
# CONFIG_MGEODE_LX is not set
# CONFIG_MCYRIXIII is not set
# CONFIG_MVIAC3_2 is not set
CONFIG_X86_GENERIC=y
CONFIG_X86_CMPXCHG=y
CONFIG_X86_XADD=y
CONFIG_X86_L1_CACHE_SHIFT=7
CONFIG_RWSEM_XCHGADD_ALGORITHM=y
CONFIG_GENERIC_CALIBRATE_DELAY=y
CONFIG_X86_PPRO_FENCE=y
CONFIG_X86_F00F_BUG=y
CONFIG_X86_WP_WORKS_OK=y
CONFIG_X86_INVLPG=y
CONFIG_X86_BSWAP=y
CONFIG_X86_POPAD_OK=y
CONFIG_X86_CMPXCHG64=y
CONFIG_X86_ALIGNMENT_16=y
CONFIG_X86_INTEL_USERCOPY=y
CONFIG_X86_TSC=y
CONFIG_HPET_TIMER=y
CONFIG_HPET_EMULATE_RTC=y
CONFIG_NR_CPUS=32
# CONFIG_SCHED_SMT is not set
CONFIG_SCHED_MC=y
# CONFIG_PREEMPT_NONE is not set
CONFIG_PREEMPT_VOLUNTARY=y
# CONFIG_PREEMPT is not set
CONFIG_PREEMPT_BKL=y
CONFIG_X86_LOCAL_APIC=y
CONFIG_X86_IO_APIC=y
CONFIG_X86_MCE=y
CONFIG_X86_MCE_NONFATAL=y
CONFIG_X86_MCE_P4THERMAL=y
# CONFIG_TOSHIBA is not set
# CONFIG_I8K is not set
# CONFIG_X86_REBOOTFIXUPS is not set
# CONFIG_MICROCODE is not set
# CONFIG_X86_MSR is not set
# CONFIG_X86_CPUID is not set
#
# Firmware Drivers
#
# CONFIG_EDD is not set
CONFIG_DELL_RBU=y
CONFIG_DCDBAS=y
# CONFIG_NOHIGHMEM is not set
CONFIG_HIGHMEM4G=y
# CONFIG_HIGHMEM64G is not set
CONFIG_PAGE_OFFSET=0xC0000000
CONFIG_HIGHMEM=y
CONFIG_ARCH_FLATMEM_ENABLE=y
CONFIG_ARCH_SPARSEMEM_ENABLE=y
CONFIG_ARCH_SELECT_MEMORY_MODEL=y
CONFIG_SELECT_MEMORY_MODEL=y
CONFIG_FLATMEM_MANUAL=y
# CONFIG_DISCONTIGMEM_MANUAL is not set
# CONFIG_SPARSEMEM_MANUAL is not set
CONFIG_FLATMEM=y
CONFIG_FLAT_NODE_MEM_MAP=y
CONFIG_SPARSEMEM_STATIC=y
CONFIG_SPLIT_PTLOCK_CPUS=4
# CONFIG_HIGHPTE is not set
# CONFIG_MATH_EMULATION is not set
CONFIG_MTRR=y
# CONFIG_EFI is not set
CONFIG_IRQBALANCE=y
# CONFIG_REGPARM is not set
CONFIG_SECCOMP=y
# CONFIG_HZ_100 is not set
# CONFIG_HZ_250 is not set
CONFIG_HZ_1000=y
CONFIG_HZ=1000
CONFIG_KEXEC=y
# CONFIG_CRASH_DUMP is not set
CONFIG_PHYSICAL_START=0x100000
# CONFIG_HOTPLUG_CPU is not set
#
# Power management options (ACPI, APM)
#
CONFIG_PM=y
CONFIG_PM_LEGACY=y
# CONFIG_PM_DEBUG is not set
#
# ACPI (Advanced Configuration and Power Interface) Support
#
CONFIG_ACPI=y
# CONFIG_ACPI_AC is not set
# CONFIG_ACPI_BATTERY is not set
# CONFIG_ACPI_BUTTON is not set
# CONFIG_ACPI_VIDEO is not set
# CONFIG_ACPI_HOTKEY is not set
CONFIG_ACPI_FAN=y
CONFIG_ACPI_PROCESSOR=y
CONFIG_ACPI_THERMAL=y
# CONFIG_ACPI_ASUS is not set
# CONFIG_ACPI_IBM is not set
# CONFIG_ACPI_TOSHIBA is not set
# CONFIG_ACPI_CUSTOM_DSDT is not set
CONFIG_ACPI_BLACKLIST_YEAR=0
# CONFIG_ACPI_DEBUG is not set
CONFIG_ACPI_EC=y
CONFIG_ACPI_POWER=y
CONFIG_ACPI_SYSTEM=y
CONFIG_X86_PM_TIMER=y
# CONFIG_ACPI_CONTAINER is not set
#
# APM (Advanced Power Management) BIOS Support
#
# CONFIG_APM is not set
#
# CPU Frequency scaling
#
# CONFIG_CPU_FREQ is not set
#
# Bus options (PCI, PCMCIA, EISA, MCA, ISA)
#
CONFIG_PCI=y
# CONFIG_PCI_GOBIOS is not set
# CONFIG_PCI_GOMMCONFIG is not set
# CONFIG_PCI_GODIRECT is not set
CONFIG_PCI_GOANY=y
CONFIG_PCI_BIOS=y
CONFIG_PCI_DIRECT=y
CONFIG_PCI_MMCONFIG=y
CONFIG_PCIEPORTBUS=y
# CONFIG_PCI_MSI is not set
# CONFIG_PCI_DEBUG is not set
CONFIG_ISA_DMA_API=y
# CONFIG_ISA is not set
# CONFIG_MCA is not set
# CONFIG_SCx200 is not set
#
# PCCARD (PCMCIA/CardBus) support
#
# CONFIG_PCCARD is not set
#
# PCI Hotplug Support
#
# CONFIG_HOTPLUG_PCI is not set
#
# Executable file formats
#
CONFIG_BINFMT_ELF=y
CONFIG_BINFMT_AOUT=y
CONFIG_BINFMT_MISC=y
#
# Networking
#
CONFIG_NET=y
#
# Networking options
#
# CONFIG_NETDEBUG is not set
CONFIG_PACKET=y
# CONFIG_PACKET_MMAP is not set
CONFIG_UNIX=y
# CONFIG_NET_KEY is not set
CONFIG_INET=y
CONFIG_IP_MULTICAST=y
CONFIG_IP_ADVANCED_ROUTER=y
CONFIG_ASK_IP_FIB_HASH=y
# CONFIG_IP_FIB_TRIE is not set
CONFIG_IP_FIB_HASH=y
CONFIG_IP_MULTIPLE_TABLES=y
CONFIG_IP_ROUTE_FWMARK=y
CONFIG_IP_ROUTE_MULTIPATH=y
# CONFIG_IP_ROUTE_MULTIPATH_CACHED is not set
CONFIG_IP_ROUTE_VERBOSE=y
# CONFIG_IP_PNP is not set
CONFIG_NET_IPIP=y
CONFIG_NET_IPGRE=y
CONFIG_NET_IPGRE_BROADCAST=y
CONFIG_IP_MROUTE=y
# CONFIG_IP_PIMSM_V1 is not set
# CONFIG_IP_PIMSM_V2 is not set
# CONFIG_ARPD is not set
CONFIG_SYN_COOKIES=y
# CONFIG_INET_AH is not set
# CONFIG_INET_ESP is not set
# CONFIG_INET_IPCOMP is not set
# CONFIG_INET_XFRM_TUNNEL is not set
CONFIG_INET_TUNNEL=y
CONFIG_INET_DIAG=y
CONFIG_INET_TCP_DIAG=y
CONFIG_TCP_CONG_ADVANCED=y
#
# TCP congestion control
#
CONFIG_TCP_CONG_BIC=y
CONFIG_TCP_CONG_CUBIC=y
CONFIG_TCP_CONG_WESTWOOD=y
CONFIG_TCP_CONG_HTCP=y
CONFIG_TCP_CONG_HSTCP=y
# CONFIG_TCP_CONG_HYBLA is not set
CONFIG_TCP_CONG_VEGAS=y
CONFIG_TCP_CONG_SCALABLE=y
#
# IP: Virtual Server Configuration
#
# CONFIG_IP_VS is not set
# CONFIG_IPV6 is not set
# CONFIG_INET6_XFRM_TUNNEL is not set
# CONFIG_INET6_TUNNEL is not set
CONFIG_NETFILTER=y
CONFIG_NETFILTER_DEBUG=y
#
# Core Netfilter Configuration
#
CONFIG_NETFILTER_NETLINK=y
CONFIG_NETFILTER_NETLINK_QUEUE=y
CONFIG_NETFILTER_NETLINK_LOG=y
CONFIG_NETFILTER_XTABLES=y
CONFIG_NETFILTER_XT_TARGET_CLASSIFY=y
CONFIG_NETFILTER_XT_TARGET_CONNMARK=y
CONFIG_NETFILTER_XT_TARGET_MARK=y
CONFIG_NETFILTER_XT_TARGET_NFQUEUE=y
CONFIG_NETFILTER_XT_TARGET_NOTRACK=y
CONFIG_NETFILTER_XT_MATCH_COMMENT=y
CONFIG_NETFILTER_XT_MATCH_CONNBYTES=y
CONFIG_NETFILTER_XT_MATCH_CONNMARK=y
CONFIG_NETFILTER_XT_MATCH_CONNTRACK=y
# CONFIG_NETFILTER_XT_MATCH_DCCP is not set
CONFIG_NETFILTER_XT_MATCH_ESP=y
CONFIG_NETFILTER_XT_MATCH_HELPER=y
CONFIG_NETFILTER_XT_MATCH_LENGTH=y
CONFIG_NETFILTER_XT_MATCH_LIMIT=y
CONFIG_NETFILTER_XT_MATCH_MAC=y
CONFIG_NETFILTER_XT_MATCH_MARK=y
CONFIG_NETFILTER_XT_MATCH_MULTIPORT=y
CONFIG_NETFILTER_XT_MATCH_PKTTYPE=y
CONFIG_NETFILTER_XT_MATCH_REALM=y
# CONFIG_NETFILTER_XT_MATCH_SCTP is not set
CONFIG_NETFILTER_XT_MATCH_STATE=y
CONFIG_NETFILTER_XT_MATCH_STRING=y
CONFIG_NETFILTER_XT_MATCH_TCPMSS=y
#
# IP: Netfilter Configuration
#
CONFIG_IP_NF_CONNTRACK=y
CONFIG_IP_NF_CT_ACCT=y
CONFIG_IP_NF_CONNTRACK_MARK=y
CONFIG_IP_NF_CONNTRACK_EVENTS=y
CONFIG_IP_NF_CONNTRACK_NETLINK=y
# CONFIG_IP_NF_CT_PROTO_SCTP is not set
CONFIG_IP_NF_FTP=y
# CONFIG_IP_NF_IRC is not set
CONFIG_IP_NF_NETBIOS_NS=y
CONFIG_IP_NF_TFTP=y
# CONFIG_IP_NF_AMANDA is not set
CONFIG_IP_NF_PPTP=y
CONFIG_IP_NF_H323=y
CONFIG_IP_NF_QUEUE=y
CONFIG_IP_NF_IPTABLES=y
CONFIG_IP_NF_MATCH_IPRANGE=y
CONFIG_IP_NF_MATCH_TOS=y
CONFIG_IP_NF_MATCH_RECENT=y
CONFIG_IP_NF_MATCH_ECN=y
CONFIG_IP_NF_MATCH_DSCP=y
CONFIG_IP_NF_MATCH_AH=y
CONFIG_IP_NF_MATCH_TTL=y
CONFIG_IP_NF_MATCH_OWNER=y
CONFIG_IP_NF_MATCH_ADDRTYPE=y
CONFIG_IP_NF_MATCH_HASHLIMIT=y
CONFIG_IP_NF_FILTER=y
CONFIG_IP_NF_TARGET_REJECT=y
CONFIG_IP_NF_TARGET_LOG=y
CONFIG_IP_NF_TARGET_ULOG=y
CONFIG_IP_NF_TARGET_TCPMSS=y
CONFIG_IP_NF_NAT=y
CONFIG_IP_NF_NAT_NEEDED=y
CONFIG_IP_NF_TARGET_MASQUERADE=y
CONFIG_IP_NF_TARGET_REDIRECT=y
CONFIG_IP_NF_TARGET_NETMAP=y
CONFIG_IP_NF_TARGET_SAME=y
CONFIG_IP_NF_NAT_SNMP_BASIC=y
CONFIG_IP_NF_NAT_FTP=y
CONFIG_IP_NF_NAT_TFTP=y
CONFIG_IP_NF_NAT_PPTP=y
CONFIG_IP_NF_NAT_H323=y
CONFIG_IP_NF_MANGLE=y
CONFIG_IP_NF_TARGET_TOS=y
CONFIG_IP_NF_TARGET_ECN=y
CONFIG_IP_NF_TARGET_DSCP=y
CONFIG_IP_NF_TARGET_TTL=y
CONFIG_IP_NF_TARGET_CLUSTERIP=y
CONFIG_IP_NF_RAW=y
CONFIG_IP_NF_ARPTABLES=y
CONFIG_IP_NF_ARPFILTER=y
CONFIG_IP_NF_ARP_MANGLE=y
#
# DCCP Configuration (EXPERIMENTAL)
#
# CONFIG_IP_DCCP is not set
#
# SCTP Configuration (EXPERIMENTAL)
#
# CONFIG_IP_SCTP is not set
#
# TIPC Configuration (EXPERIMENTAL)
#
# CONFIG_TIPC is not set
# CONFIG_ATM is not set
# CONFIG_BRIDGE is not set
# CONFIG_VLAN_8021Q is not set
# CONFIG_DECNET is not set
# CONFIG_LLC2 is not set
# CONFIG_IPX is not set
# CONFIG_ATALK is not set
# CONFIG_X25 is not set
# CONFIG_LAPB is not set
# CONFIG_NET_DIVERT is not set
# CONFIG_ECONET is not set
# CONFIG_WAN_ROUTER is not set
#
# QoS and/or fair queueing
#
# CONFIG_NET_SCHED is not set
CONFIG_NET_CLS_ROUTE=y
#
# Network testing
#
# CONFIG_NET_PKTGEN is not set
# CONFIG_HAMRADIO is not set
# CONFIG_IRDA is not set
# CONFIG_BT is not set
# CONFIG_IEEE80211 is not set
#
# Device Drivers
#
#
# Generic Driver Options
#
# CONFIG_STANDALONE is not set
CONFIG_PREVENT_FIRMWARE_BUILD=y
CONFIG_FW_LOADER=y
# CONFIG_DEBUG_DRIVER is not set
#
# Connector - unified userspace <-> kernelspace linker
#
# CONFIG_CONNECTOR is not set
#
# Memory Technology Devices (MTD)
#
# CONFIG_MTD is not set
#
# Parallel port support
#
CONFIG_PARPORT=y
CONFIG_PARPORT_PC=y
# CONFIG_PARPORT_SERIAL is not set
CONFIG_PARPORT_PC_FIFO=y
# CONFIG_PARPORT_PC_SUPERIO is not set
# CONFIG_PARPORT_GSC is not set
CONFIG_PARPORT_1284=y
#
# Plug and Play support
#
# CONFIG_PNP is not set
#
# Block devices
#
CONFIG_BLK_DEV_FD=y
# CONFIG_PARIDE is not set
# CONFIG_BLK_CPQ_DA is not set
# CONFIG_BLK_CPQ_CISS_DA is not set
# CONFIG_BLK_DEV_DAC960 is not set
# CONFIG_BLK_DEV_UMEM is not set
# CONFIG_BLK_DEV_COW_COMMON is not set
CONFIG_BLK_DEV_LOOP=y
CONFIG_BLK_DEV_CRYPTOLOOP=y
CONFIG_BLK_DEV_NBD=y
# CONFIG_BLK_DEV_SX8 is not set
# CONFIG_BLK_DEV_UB is not set
CONFIG_BLK_DEV_RAM=y
CONFIG_BLK_DEV_RAM_COUNT=16
CONFIG_BLK_DEV_RAM_SIZE=4096
CONFIG_BLK_DEV_INITRD=y
CONFIG_CDROM_PKTCDVD=y
CONFIG_CDROM_PKTCDVD_BUFFERS=8
# CONFIG_CDROM_PKTCDVD_WCACHE is not set
# CONFIG_ATA_OVER_ETH is not set
#
# ATA/ATAPI/MFM/RLL support
#
CONFIG_IDE=y
CONFIG_BLK_DEV_IDE=y
#
# Please see Documentation/ide.txt for help/info on IDE drives
#
# CONFIG_BLK_DEV_IDE_SATA is not set
# CONFIG_BLK_DEV_HD_IDE is not set
CONFIG_BLK_DEV_IDEDISK=y
# CONFIG_IDEDISK_MULTI_MODE is not set
CONFIG_BLK_DEV_IDECD=y
# CONFIG_BLK_DEV_IDETAPE is not set
# CONFIG_BLK_DEV_IDEFLOPPY is not set
# CONFIG_BLK_DEV_IDESCSI is not set
# CONFIG_IDE_TASK_IOCTL is not set
#
# IDE chipset support/bugfixes
#
CONFIG_IDE_GENERIC=y
CONFIG_BLK_DEV_CMD640=y
# CONFIG_BLK_DEV_CMD640_ENHANCED is not set
CONFIG_BLK_DEV_IDEPCI=y
CONFIG_IDEPCI_SHARE_IRQ=y
# CONFIG_BLK_DEV_OFFBOARD is not set
# CONFIG_BLK_DEV_GENERIC is not set
# CONFIG_BLK_DEV_OPTI621 is not set
CONFIG_BLK_DEV_RZ1000=y
CONFIG_BLK_DEV_IDEDMA_PCI=y
# CONFIG_BLK_DEV_IDEDMA_FORCED is not set
# CONFIG_IDEDMA_PCI_AUTO is not set
# CONFIG_BLK_DEV_AEC62XX is not set
# CONFIG_BLK_DEV_ALI15X3 is not set
# CONFIG_BLK_DEV_AMD74XX is not set
# CONFIG_BLK_DEV_ATIIXP is not set
# CONFIG_BLK_DEV_CMD64X is not set
# CONFIG_BLK_DEV_TRIFLEX is not set
# CONFIG_BLK_DEV_CY82C693 is not set
# CONFIG_BLK_DEV_CS5520 is not set
# CONFIG_BLK_DEV_CS5530 is not set
# CONFIG_BLK_DEV_CS5535 is not set
# CONFIG_BLK_DEV_HPT34X is not set
# CONFIG_BLK_DEV_HPT366 is not set
# CONFIG_BLK_DEV_SC1200 is not set
CONFIG_BLK_DEV_PIIX=y
# CONFIG_BLK_DEV_IT821X is not set
# CONFIG_BLK_DEV_NS87415 is not set
# CONFIG_BLK_DEV_PDC202XX_OLD is not set
# CONFIG_BLK_DEV_PDC202XX_NEW is not set
CONFIG_BLK_DEV_SVWKS=y
# CONFIG_BLK_DEV_SIIMAGE is not set
# CONFIG_BLK_DEV_SIS5513 is not set
# CONFIG_BLK_DEV_SLC90E66 is not set
# CONFIG_BLK_DEV_TRM290 is not set
CONFIG_BLK_DEV_VIA82CXXX=y
# CONFIG_IDE_ARM is not set
CONFIG_BLK_DEV_IDEDMA=y
# CONFIG_IDEDMA_IVB is not set
# CONFIG_IDEDMA_AUTO is not set
# CONFIG_BLK_DEV_HD is not set
#
# SCSI device support
#
CONFIG_RAID_ATTRS=y
CONFIG_SCSI=y
CONFIG_SCSI_PROC_FS=y
#
# SCSI support type (disk, tape, CD-ROM)
#
CONFIG_BLK_DEV_SD=y
# CONFIG_CHR_DEV_ST is not set
# CONFIG_CHR_DEV_OSST is not set
# CONFIG_BLK_DEV_SR is not set
CONFIG_CHR_DEV_SG=y
# CONFIG_CHR_DEV_SCH is not set
#
# Some SCSI devices (e.g. CD jukebox) support multiple LUNs
#
CONFIG_SCSI_MULTI_LUN=y
CONFIG_SCSI_CONSTANTS=y
CONFIG_SCSI_LOGGING=y
#
# SCSI Transport Attributes
#
CONFIG_SCSI_SPI_ATTRS=y
# CONFIG_SCSI_FC_ATTRS is not set
# CONFIG_SCSI_ISCSI_ATTRS is not set
# CONFIG_SCSI_SAS_ATTRS is not set
#
# SCSI low-level drivers
#
# CONFIG_ISCSI_TCP is not set
# CONFIG_BLK_DEV_3W_XXXX_RAID is not set
# CONFIG_SCSI_3W_9XXX is not set
# CONFIG_SCSI_ACARD is not set
# CONFIG_SCSI_AACRAID is not set
# CONFIG_SCSI_AIC7XXX is not set
# CONFIG_SCSI_AIC7XXX_OLD is not set
# CONFIG_SCSI_AIC79XX is not set
# CONFIG_SCSI_DPT_I2O is not set
# CONFIG_SCSI_ADVANSYS is not set
# CONFIG_MEGARAID_NEWGEN is not set
# CONFIG_MEGARAID_LEGACY is not set
# CONFIG_MEGARAID_SAS is not set
CONFIG_SCSI_SATA=y
CONFIG_SCSI_SATA_AHCI=y
# CONFIG_SCSI_SATA_SVW is not set
CONFIG_SCSI_ATA_PIIX=y
# CONFIG_SCSI_SATA_MV is not set
# CONFIG_SCSI_SATA_NV is not set
# CONFIG_SCSI_PDC_ADMA is not set
# CONFIG_SCSI_SATA_QSTOR is not set
# CONFIG_SCSI_SATA_PROMISE is not set
# CONFIG_SCSI_SATA_SX4 is not set
# CONFIG_SCSI_SATA_SIL is not set
# CONFIG_SCSI_SATA_SIL24 is not set
# CONFIG_SCSI_SATA_SIS is not set
# CONFIG_SCSI_SATA_ULI is not set
# CONFIG_SCSI_SATA_VIA is not set
# CONFIG_SCSI_SATA_VITESSE is not set
CONFIG_SCSI_SATA_INTEL_COMBINED=y
# CONFIG_SCSI_BUSLOGIC is not set
# CONFIG_SCSI_DMX3191D is not set
# CONFIG_SCSI_EATA is not set
# CONFIG_SCSI_FUTURE_DOMAIN is not set
# CONFIG_SCSI_GDTH is not set
# CONFIG_SCSI_IPS is not set
# CONFIG_SCSI_INITIO is not set
# CONFIG_SCSI_INIA100 is not set
# CONFIG_SCSI_PPA is not set
# CONFIG_SCSI_IMM is not set
# CONFIG_SCSI_SYM53C8XX_2 is not set
# CONFIG_SCSI_IPR is not set
# CONFIG_SCSI_QLOGIC_1280 is not set
# CONFIG_SCSI_QLA_FC is not set
# CONFIG_SCSI_LPFC is not set
# CONFIG_SCSI_DC395x is not set
# CONFIG_SCSI_DC390T is not set
# CONFIG_SCSI_NSP32 is not set
# CONFIG_SCSI_DEBUG is not set
#
# Multi-device support (RAID and LVM)
#
CONFIG_MD=y
CONFIG_BLK_DEV_MD=y
CONFIG_MD_LINEAR=y
CONFIG_MD_RAID0=y
CONFIG_MD_RAID1=y
# CONFIG_MD_RAID10 is not set
# CONFIG_MD_RAID5 is not set
# CONFIG_MD_RAID6 is not set
# CONFIG_MD_MULTIPATH is not set
# CONFIG_MD_FAULTY is not set
CONFIG_BLK_DEV_DM=y
# CONFIG_DM_CRYPT is not set
CONFIG_DM_SNAPSHOT=y
CONFIG_DM_MIRROR=y
# CONFIG_DM_ZERO is not set
# CONFIG_DM_MULTIPATH is not set
#
# Fusion MPT device support
#
# CONFIG_FUSION is not set
# CONFIG_FUSION_SPI is not set
# CONFIG_FUSION_FC is not set
# CONFIG_FUSION_SAS is not set
#
# IEEE 1394 (FireWire) support
#
# CONFIG_IEEE1394 is not set
#
# I2O device support
#
# CONFIG_I2O is not set
#
# Network device support
#
CONFIG_NETDEVICES=y
CONFIG_DUMMY=y
# CONFIG_BONDING is not set
# CONFIG_EQUALIZER is not set
CONFIG_TUN=y
#
# ARCnet devices
#
# CONFIG_ARCNET is not set
#
# PHY device support
#
CONFIG_PHYLIB=y
#
# MII PHY device drivers
#
# CONFIG_MARVELL_PHY is not set
# CONFIG_DAVICOM_PHY is not set
# CONFIG_QSEMI_PHY is not set
# CONFIG_LXT_PHY is not set
# CONFIG_CICADA_PHY is not set
#
# Ethernet (10 or 100Mbit)
#
CONFIG_NET_ETHERNET=y
CONFIG_MII=y
# CONFIG_HAPPYMEAL is not set
# CONFIG_SUNGEM is not set
# CONFIG_CASSINI is not set
CONFIG_NET_VENDOR_3COM=y
CONFIG_VORTEX=y
# CONFIG_TYPHOON is not set
#
# Tulip family network device support
#
# CONFIG_NET_TULIP is not set
# CONFIG_HP100 is not set
CONFIG_NET_PCI=y
# CONFIG_PCNET32 is not set
# CONFIG_AMD8111_ETH is not set
# CONFIG_ADAPTEC_STARFIRE is not set
CONFIG_B44=y
# CONFIG_FORCEDETH is not set
# CONFIG_DGRS is not set
# CONFIG_EEPRO100 is not set
CONFIG_E100=y
# CONFIG_FEALNX is not set
# CONFIG_NATSEMI is not set
# CONFIG_NE2K_PCI is not set
# CONFIG_8139CP is not set
CONFIG_8139TOO=y
# CONFIG_8139TOO_PIO is not set
# CONFIG_8139TOO_TUNE_TWISTER is not set
# CONFIG_8139TOO_8129 is not set
# CONFIG_8139_OLD_RX_RESET is not set
# CONFIG_SIS900 is not set
# CONFIG_EPIC100 is not set
# CONFIG_SUNDANCE is not set
# CONFIG_TLAN is not set
# CONFIG_VIA_RHINE is not set
# CONFIG_NET_POCKET is not set
#
# Ethernet (1000 Mbit)
#
# CONFIG_ACENIC is not set
# CONFIG_DL2K is not set
CONFIG_E1000=y
# CONFIG_E1000_NAPI is not set
# CONFIG_E1000_DISABLE_PACKET_SPLIT is not set
# CONFIG_NS83820 is not set
# CONFIG_HAMACHI is not set
# CONFIG_YELLOWFIN is not set
# CONFIG_R8169 is not set
# CONFIG_SIS190 is not set
# CONFIG_SKGE is not set
# CONFIG_SKY2 is not set
# CONFIG_SK98LIN is not set
# CONFIG_VIA_VELOCITY is not set
CONFIG_TIGON3=y
# CONFIG_BNX2 is not set
#
# Ethernet (10000 Mbit)
#
# CONFIG_CHELSIO_T1 is not set
# CONFIG_IXGB is not set
# CONFIG_S2IO is not set
#
# Token Ring devices
#
# CONFIG_TR is not set
#
# Wireless LAN (non-hamradio)
#
# CONFIG_NET_RADIO is not set
#
# Wan interfaces
#
# CONFIG_WAN is not set
# CONFIG_FDDI is not set
# CONFIG_HIPPI is not set
# CONFIG_PLIP is not set
CONFIG_PPP=y
# CONFIG_PPP_MULTILINK is not set
CONFIG_PPP_FILTER=y
CONFIG_PPP_ASYNC=y
# CONFIG_PPP_SYNC_TTY is not set
CONFIG_PPP_DEFLATE=y
CONFIG_PPP_BSDCOMP=y
# CONFIG_PPP_MPPE is not set
# CONFIG_PPPOE is not set
# CONFIG_SLIP is not set
# CONFIG_NET_FC is not set
# CONFIG_SHAPER is not set
CONFIG_NETCONSOLE=y
CONFIG_NETPOLL=y
# CONFIG_NETPOLL_RX is not set
# CONFIG_NETPOLL_TRAP is not set
CONFIG_NET_POLL_CONTROLLER=y
#
# ISDN subsystem
#
# CONFIG_ISDN is not set
#
# Telephony Support
#
# CONFIG_PHONE is not set
#
# Input device support
#
CONFIG_INPUT=y
#
# Userland interfaces
#
CONFIG_INPUT_MOUSEDEV=y
CONFIG_INPUT_MOUSEDEV_PSAUX=y
CONFIG_INPUT_MOUSEDEV_SCREEN_X=1024
CONFIG_INPUT_MOUSEDEV_SCREEN_Y=768
# CONFIG_INPUT_JOYDEV is not set
# CONFIG_INPUT_TSDEV is not set
CONFIG_INPUT_EVDEV=y
# CONFIG_INPUT_EVBUG is not set
#
# Input Device Drivers
#
CONFIG_INPUT_KEYBOARD=y
CONFIG_KEYBOARD_ATKBD=y
# CONFIG_KEYBOARD_SUNKBD is not set
# CONFIG_KEYBOARD_LKKBD is not set
# CONFIG_KEYBOARD_XTKBD is not set
# CONFIG_KEYBOARD_NEWTON is not set
CONFIG_INPUT_MOUSE=y
CONFIG_MOUSE_PS2=y
# CONFIG_MOUSE_SERIAL is not set
# CONFIG_MOUSE_VSXXXAA is not set
# CONFIG_INPUT_JOYSTICK is not set
# CONFIG_INPUT_TOUCHSCREEN is not set
CONFIG_INPUT_MISC=y
CONFIG_INPUT_PCSPKR=y
# CONFIG_INPUT_WISTRON_BTNS is not set
# CONFIG_INPUT_UINPUT is not set
#
# Hardware I/O ports
#
CONFIG_SERIO=y
CONFIG_SERIO_I8042=y
CONFIG_SERIO_SERPORT=y
# CONFIG_SERIO_CT82C710 is not set
# CONFIG_SERIO_PARKBD is not set
# CONFIG_SERIO_PCIPS2 is not set
CONFIG_SERIO_LIBPS2=y
# CONFIG_SERIO_RAW is not set
# CONFIG_GAMEPORT is not set
#
# Character devices
#
CONFIG_VT=y
CONFIG_VT_CONSOLE=y
CONFIG_HW_CONSOLE=y
# CONFIG_SERIAL_NONSTANDARD is not set
#
# Serial drivers
#
CONFIG_SERIAL_8250=y
CONFIG_SERIAL_8250_CONSOLE=y
CONFIG_SERIAL_8250_PCI=y
CONFIG_SERIAL_8250_NR_UARTS=4
CONFIG_SERIAL_8250_RUNTIME_UARTS=4
# CONFIG_SERIAL_8250_EXTENDED is not set
#
# Non-8250 serial port support
#
CONFIG_SERIAL_CORE=y
CONFIG_SERIAL_CORE_CONSOLE=y
# CONFIG_SERIAL_JSM is not set
CONFIG_UNIX98_PTYS=y
CONFIG_LEGACY_PTYS=y
CONFIG_LEGACY_PTY_COUNT=256
# CONFIG_PRINTER is not set
CONFIG_PPDEV=y
# CONFIG_TIPAR is not set
#
# IPMI
#
# CONFIG_IPMI_HANDLER is not set
#
# Watchdog Cards
#
# CONFIG_WATCHDOG is not set
CONFIG_HW_RANDOM=y
CONFIG_NVRAM=y
CONFIG_RTC=y
# CONFIG_DTLK is not set
# CONFIG_R3964 is not set
# CONFIG_APPLICOM is not set
# CONFIG_SONYPI is not set
#
# Ftape, the floppy tape device driver
#
CONFIG_AGP=y
# CONFIG_AGP_ALI is not set
# CONFIG_AGP_ATI is not set
# CONFIG_AGP_AMD is not set
# CONFIG_AGP_AMD64 is not set
CONFIG_AGP_INTEL=y
CONFIG_AGP_NVIDIA=y
# CONFIG_AGP_SIS is not set
# CONFIG_AGP_SWORKS is not set
# CONFIG_AGP_VIA is not set
# CONFIG_AGP_EFFICEON is not set
CONFIG_DRM=y
# CONFIG_DRM_TDFX is not set
# CONFIG_DRM_R128 is not set
# CONFIG_DRM_RADEON is not set
CONFIG_DRM_I810=y
# CONFIG_DRM_I830 is not set
# CONFIG_DRM_I915 is not set
# CONFIG_DRM_MGA is not set
# CONFIG_DRM_SIS is not set
# CONFIG_DRM_VIA is not set
# CONFIG_DRM_SAVAGE is not set
# CONFIG_MWAVE is not set
# CONFIG_CS5535_GPIO is not set
# CONFIG_RAW_DRIVER is not set
# CONFIG_HPET is not set
CONFIG_HANGCHECK_TIMER=y
#
# TPM devices
#
# CONFIG_TCG_TPM is not set
# CONFIG_TELCLOCK is not set
#
# I2C support
#
# CONFIG_I2C is not set
#
# SPI support
#
# CONFIG_SPI is not set
# CONFIG_SPI_MASTER is not set
#
# Dallas's 1-wire bus
#
# CONFIG_W1 is not set
#
# Hardware Monitoring support
#
CONFIG_HWMON=y
# CONFIG_HWMON_VID is not set
# CONFIG_SENSORS_F71805F is not set
# CONFIG_SENSORS_HDAPS is not set
# CONFIG_HWMON_DEBUG_CHIP is not set
#
# Misc devices
#
# CONFIG_IBM_ASM is not set
#
# Multimedia devices
#
# CONFIG_VIDEO_DEV is not set
#
# Digital Video Broadcasting Devices
#
# CONFIG_DVB is not set
# CONFIG_USB_DABUSB is not set
#
# Graphics support
#
# CONFIG_FB is not set
CONFIG_VIDEO_SELECT=y
#
# Console display driver support
#
CONFIG_VGA_CONSOLE=y
CONFIG_VGACON_SOFT_SCROLLBACK=y
CONFIG_VGACON_SOFT_SCROLLBACK_SIZE=64
CONFIG_DUMMY_CONSOLE=y
#
# Sound
#
CONFIG_SOUND=y
#
# Advanced Linux Sound Architecture
#
CONFIG_SND=y
CONFIG_SND_TIMER=y
CONFIG_SND_PCM=y
CONFIG_SND_SEQUENCER=y
# CONFIG_SND_SEQ_DUMMY is not set
CONFIG_SND_OSSEMUL=y
CONFIG_SND_MIXER_OSS=y
CONFIG_SND_PCM_OSS=y
CONFIG_SND_PCM_OSS_PLUGINS=y
# CONFIG_SND_SEQUENCER_OSS is not set
CONFIG_SND_RTCTIMER=y
CONFIG_SND_SEQ_RTCTIMER_DEFAULT=y
# CONFIG_SND_DYNAMIC_MINORS is not set
CONFIG_SND_SUPPORT_OLD_API=y
CONFIG_SND_VERBOSE_PROCFS=y
# CONFIG_SND_VERBOSE_PRINTK is not set
# CONFIG_SND_DEBUG is not set
#
# Generic devices
#
CONFIG_SND_AC97_CODEC=y
CONFIG_SND_AC97_BUS=y
# CONFIG_SND_DUMMY is not set
# CONFIG_SND_VIRMIDI is not set
# CONFIG_SND_MTPAV is not set
# CONFIG_SND_SERIAL_U16550 is not set
# CONFIG_SND_MPU401 is not set
#
# PCI devices
#
# CONFIG_SND_AD1889 is not set
# CONFIG_SND_ALS300 is not set
# CONFIG_SND_ALS4000 is not set
# CONFIG_SND_ALI5451 is not set
# CONFIG_SND_ATIIXP is not set
# CONFIG_SND_ATIIXP_MODEM is not set
# CONFIG_SND_AU8810 is not set
# CONFIG_SND_AU8820 is not set
# CONFIG_SND_AU8830 is not set
# CONFIG_SND_AZT3328 is not set
# CONFIG_SND_BT87X is not set
# CONFIG_SND_CA0106 is not set
# CONFIG_SND_CMIPCI is not set
# CONFIG_SND_CS4281 is not set
# CONFIG_SND_CS46XX is not set
# CONFIG_SND_CS5535AUDIO is not set
# CONFIG_SND_EMU10K1 is not set
# CONFIG_SND_EMU10K1X is not set
# CONFIG_SND_ENS1370 is not set
# CONFIG_SND_ENS1371 is not set
# CONFIG_SND_ES1938 is not set
# CONFIG_SND_ES1968 is not set
# CONFIG_SND_FM801 is not set
# CONFIG_SND_HDA_INTEL is not set
# CONFIG_SND_HDSP is not set
# CONFIG_SND_HDSPM is not set
# CONFIG_SND_ICE1712 is not set
# CONFIG_SND_ICE1724 is not set
CONFIG_SND_INTEL8X0=y
# CONFIG_SND_INTEL8X0M is not set
# CONFIG_SND_KORG1212 is not set
# CONFIG_SND_MAESTRO3 is not set
# CONFIG_SND_MIXART is not set
# CONFIG_SND_NM256 is not set
# CONFIG_SND_PCXHR is not set
# CONFIG_SND_RIPTIDE is not set
# CONFIG_SND_RME32 is not set
# CONFIG_SND_RME96 is not set
# CONFIG_SND_RME9652 is not set
# CONFIG_SND_SONICVIBES is not set
# CONFIG_SND_TRIDENT is not set
# CONFIG_SND_VIA82XX is not set
# CONFIG_SND_VIA82XX_MODEM is not set
# CONFIG_SND_VX222 is not set
# CONFIG_SND_YMFPCI is not set
#
# USB devices
#
# CONFIG_SND_USB_AUDIO is not set
# CONFIG_SND_USB_USX2Y is not set
#
# Open Sound System
#
# CONFIG_SOUND_PRIME is not set
#
# USB support
#
CONFIG_USB_ARCH_HAS_HCD=y
CONFIG_USB_ARCH_HAS_OHCI=y
CONFIG_USB_ARCH_HAS_EHCI=y
CONFIG_USB=y
# CONFIG_USB_DEBUG is not set
#
# Miscellaneous USB options
#
CONFIG_USB_DEVICEFS=y
# CONFIG_USB_BANDWIDTH is not set
# CONFIG_USB_DYNAMIC_MINORS is not set
# CONFIG_USB_SUSPEND is not set
# CONFIG_USB_OTG is not set
#
# USB Host Controller Drivers
#
CONFIG_USB_EHCI_HCD=y
# CONFIG_USB_EHCI_SPLIT_ISO is not set
# CONFIG_USB_EHCI_ROOT_HUB_TT is not set
# CONFIG_USB_ISP116X_HCD is not set
CONFIG_USB_OHCI_HCD=y
# CONFIG_USB_OHCI_BIG_ENDIAN is not set
CONFIG_USB_OHCI_LITTLE_ENDIAN=y
CONFIG_USB_UHCI_HCD=y
# CONFIG_USB_SL811_HCD is not set
#
# USB Device Class drivers
#
# CONFIG_USB_ACM is not set
CONFIG_USB_PRINTER=y
#
# NOTE: USB_STORAGE enables SCSI, and 'SCSI disk support'
#
#
# may also be needed; see USB_STORAGE Help for more information
#
CONFIG_USB_STORAGE=y
CONFIG_USB_STORAGE_DEBUG=y
# CONFIG_USB_STORAGE_DATAFAB is not set
# CONFIG_USB_STORAGE_FREECOM is not set
# CONFIG_USB_STORAGE_ISD200 is not set
CONFIG_USB_STORAGE_DPCM=y
# CONFIG_USB_STORAGE_USBAT is not set
# CONFIG_USB_STORAGE_SDDR09 is not set
# CONFIG_USB_STORAGE_SDDR55 is not set
# CONFIG_USB_STORAGE_JUMPSHOT is not set
# CONFIG_USB_STORAGE_ALAUDA is not set
# CONFIG_USB_LIBUSUAL is not set
#
# USB Input Devices
#
CONFIG_USB_HID=y
CONFIG_USB_HIDINPUT=y
# CONFIG_USB_HIDINPUT_POWERBOOK is not set
# CONFIG_HID_FF is not set
# CONFIG_USB_HIDDEV is not set
# CONFIG_USB_AIPTEK is not set
CONFIG_USB_WACOM=y
# CONFIG_USB_ACECAD is not set
# CONFIG_USB_KBTAB is not set
# CONFIG_USB_POWERMATE is not set
# CONFIG_USB_TOUCHSCREEN is not set
# CONFIG_USB_YEALINK is not set
# CONFIG_USB_XPAD is not set
# CONFIG_USB_ATI_REMOTE is not set
# CONFIG_USB_ATI_REMOTE2 is not set
# CONFIG_USB_KEYSPAN_REMOTE is not set
# CONFIG_USB_APPLETOUCH is not set
#
# USB Imaging devices
#
# CONFIG_USB_MDC800 is not set
# CONFIG_USB_MICROTEK is not set
#
# USB Network Adapters
#
# CONFIG_USB_CATC is not set
# CONFIG_USB_KAWETH is not set
# CONFIG_USB_PEGASUS is not set
# CONFIG_USB_RTL8150 is not set
# CONFIG_USB_USBNET is not set
CONFIG_USB_MON=y
#
# USB port drivers
#
# CONFIG_USB_USS720 is not set
#
# USB Serial Converter support
#
# CONFIG_USB_SERIAL is not set
#
# USB Miscellaneous drivers
#
# CONFIG_USB_EMI62 is not set
# CONFIG_USB_EMI26 is not set
# CONFIG_USB_AUERSWALD is not set
# CONFIG_USB_RIO500 is not set
# CONFIG_USB_LEGOTOWER is not set
# CONFIG_USB_LCD is not set
# CONFIG_USB_LED is not set
# CONFIG_USB_CYTHERM is not set
# CONFIG_USB_PHIDGETKIT is not set
# CONFIG_USB_PHIDGETSERVO is not set
# CONFIG_USB_IDMOUSE is not set
# CONFIG_USB_SISUSBVGA is not set
# CONFIG_USB_LD is not set
# CONFIG_USB_TEST is not set
#
# USB DSL modem support
#
#
# USB Gadget Support
#
# CONFIG_USB_GADGET is not set
#
# MMC/SD Card support
#
CONFIG_MMC=y
# CONFIG_MMC_DEBUG is not set
CONFIG_MMC_BLOCK=y
# CONFIG_MMC_SDHCI is not set
# CONFIG_MMC_WBSD is not set
#
# LED devices
#
# CONFIG_NEW_LEDS is not set
#
# LED drivers
#
#
# LED Triggers
#
#
# InfiniBand support
#
# CONFIG_INFINIBAND is not set
#
# EDAC - error detection and reporting (RAS) (EXPERIMENTAL)
#
CONFIG_EDAC=y
#
# Reporting subsystems
#
# CONFIG_EDAC_DEBUG is not set
CONFIG_EDAC_MM_EDAC=y
# CONFIG_EDAC_AMD76X is not set
# CONFIG_EDAC_E7XXX is not set
# CONFIG_EDAC_E752X is not set
# CONFIG_EDAC_I82875P is not set
CONFIG_EDAC_I82860=y
# CONFIG_EDAC_R82600 is not set
CONFIG_EDAC_POLL=y
#
# Real Time Clock
#
CONFIG_RTC_LIB=y
CONFIG_RTC_CLASS=y
CONFIG_RTC_HCTOSYS=y
CONFIG_RTC_HCTOSYS_DEVICE="rtc0"
#
# RTC interfaces
#
CONFIG_RTC_INTF_SYSFS=y
CONFIG_RTC_INTF_PROC=y
CONFIG_RTC_INTF_DEV=y
#
# RTC drivers
#
# CONFIG_RTC_DRV_M48T86 is not set
# CONFIG_RTC_DRV_TEST is not set
#
# File systems
#
CONFIG_EXT2_FS=y
# CONFIG_EXT2_FS_XATTR is not set
# CONFIG_EXT2_FS_XIP is not set
CONFIG_EXT3_FS=y
# CONFIG_EXT3_FS_XATTR is not set
CONFIG_JBD=y
CONFIG_JBD_DEBUG=y
# CONFIG_REISERFS_FS is not set
# CONFIG_JFS_FS is not set
CONFIG_FS_POSIX_ACL=y
# CONFIG_XFS_FS is not set
# CONFIG_OCFS2_FS is not set
# CONFIG_MINIX_FS is not set
CONFIG_ROMFS_FS=y
CONFIG_INOTIFY=y
# CONFIG_QUOTA is not set
CONFIG_DNOTIFY=y
# CONFIG_AUTOFS_FS is not set
CONFIG_AUTOFS4_FS=y
CONFIG_FUSE_FS=y
#
# CD-ROM/DVD Filesystems
#
CONFIG_ISO9660_FS=y
CONFIG_JOLIET=y
CONFIG_ZISOFS=y
CONFIG_ZISOFS_FS=y
CONFIG_UDF_FS=y
CONFIG_UDF_NLS=y
#
# DOS/FAT/NT Filesystems
#
CONFIG_FAT_FS=y
CONFIG_MSDOS_FS=y
CONFIG_VFAT_FS=y
CONFIG_FAT_DEFAULT_CODEPAGE=437
CONFIG_FAT_DEFAULT_IOCHARSET="iso8859-15"
# CONFIG_NTFS_FS is not set
#
# Pseudo filesystems
#
CONFIG_PROC_FS=y
CONFIG_PROC_KCORE=y
CONFIG_SYSFS=y
CONFIG_TMPFS=y
# CONFIG_HUGETLBFS is not set
# CONFIG_HUGETLB_PAGE is not set
CONFIG_RAMFS=y
CONFIG_CONFIGFS_FS=y
#
# Miscellaneous filesystems
#
# CONFIG_ADFS_FS is not set
# CONFIG_AFFS_FS is not set
# CONFIG_HFS_FS is not set
# CONFIG_HFSPLUS_FS is not set
# CONFIG_BEFS_FS is not set
# CONFIG_BFS_FS is not set
# CONFIG_EFS_FS is not set
CONFIG_CRAMFS=y
# CONFIG_VXFS_FS is not set
# CONFIG_HPFS_FS is not set
# CONFIG_QNX4FS_FS is not set
# CONFIG_SYSV_FS is not set
# CONFIG_UFS_FS is not set
#
# Network File Systems
#
CONFIG_NFS_FS=y
CONFIG_NFS_V3=y
CONFIG_NFS_V3_ACL=y
CONFIG_NFS_V4=y
# CONFIG_NFS_DIRECTIO is not set
CONFIG_NFSD=y
CONFIG_NFSD_V2_ACL=y
CONFIG_NFSD_V3=y
CONFIG_NFSD_V3_ACL=y
CONFIG_NFSD_V4=y
CONFIG_NFSD_TCP=y
CONFIG_LOCKD=y
CONFIG_LOCKD_V4=y
CONFIG_EXPORTFS=y
CONFIG_NFS_ACL_SUPPORT=y
CONFIG_NFS_COMMON=y
CONFIG_SUNRPC=y
CONFIG_SUNRPC_GSS=y
CONFIG_RPCSEC_GSS_KRB5=y
# CONFIG_RPCSEC_GSS_SPKM3 is not set
# CONFIG_SMB_FS is not set
# CONFIG_CIFS is not set
# CONFIG_NCP_FS is not set
# CONFIG_CODA_FS is not set
# CONFIG_AFS_FS is not set
# CONFIG_9P_FS is not set
#
# Partition Types
#
# CONFIG_PARTITION_ADVANCED is not set
CONFIG_MSDOS_PARTITION=y
#
# Native Language Support
#
CONFIG_NLS=y
CONFIG_NLS_DEFAULT="iso8859-15"
CONFIG_NLS_CODEPAGE_437=y
# CONFIG_NLS_CODEPAGE_737 is not set
# CONFIG_NLS_CODEPAGE_775 is not set
# CONFIG_NLS_CODEPAGE_850 is not set
# CONFIG_NLS_CODEPAGE_852 is not set
# CONFIG_NLS_CODEPAGE_855 is not set
# CONFIG_NLS_CODEPAGE_857 is not set
# CONFIG_NLS_CODEPAGE_860 is not set
# CONFIG_NLS_CODEPAGE_861 is not set
# CONFIG_NLS_CODEPAGE_862 is not set
# CONFIG_NLS_CODEPAGE_863 is not set
# CONFIG_NLS_CODEPAGE_864 is not set
# CONFIG_NLS_CODEPAGE_865 is not set
# CONFIG_NLS_CODEPAGE_866 is not set
# CONFIG_NLS_CODEPAGE_869 is not set
# CONFIG_NLS_CODEPAGE_936 is not set
# CONFIG_NLS_CODEPAGE_950 is not set
# CONFIG_NLS_CODEPAGE_932 is not set
# CONFIG_NLS_CODEPAGE_949 is not set
# CONFIG_NLS_CODEPAGE_874 is not set
# CONFIG_NLS_ISO8859_8 is not set
# CONFIG_NLS_CODEPAGE_1250 is not set
# CONFIG_NLS_CODEPAGE_1251 is not set
CONFIG_NLS_ASCII=y
CONFIG_NLS_ISO8859_1=y
# CONFIG_NLS_ISO8859_2 is not set
# CONFIG_NLS_ISO8859_3 is not set
# CONFIG_NLS_ISO8859_4 is not set
# CONFIG_NLS_ISO8859_5 is not set
# CONFIG_NLS_ISO8859_6 is not set
# CONFIG_NLS_ISO8859_7 is not set
# CONFIG_NLS_ISO8859_9 is not set
# CONFIG_NLS_ISO8859_13 is not set
# CONFIG_NLS_ISO8859_14 is not set
CONFIG_NLS_ISO8859_15=y
# CONFIG_NLS_KOI8_R is not set
# CONFIG_NLS_KOI8_U is not set
# CONFIG_NLS_UTF8 is not set
#
# Instrumentation Support
#
CONFIG_PROFILING=y
# CONFIG_OPROFILE is not set
# CONFIG_KPROBES is not set
#
# Kernel hacking
#
# CONFIG_PRINTK_TIME is not set
CONFIG_MAGIC_SYSRQ=y
CONFIG_DEBUG_KERNEL=y
CONFIG_LOG_BUF_SHIFT=17
CONFIG_DETECT_SOFTLOCKUP=y
# CONFIG_SCHEDSTATS is not set
CONFIG_DEBUG_SLAB=y
# CONFIG_DEBUG_SLAB_LEAK is not set
CONFIG_DEBUG_MUTEXES=y
CONFIG_DEBUG_SPINLOCK=y
CONFIG_DEBUG_SPINLOCK_SLEEP=y
# CONFIG_DEBUG_KOBJECT is not set
# CONFIG_DEBUG_HIGHMEM is not set
CONFIG_DEBUG_BUGVERBOSE=y
# CONFIG_DEBUG_INFO is not set
CONFIG_DEBUG_FS=y
# CONFIG_DEBUG_VM is not set
CONFIG_FRAME_POINTER=y
CONFIG_UNWIND_INFO=y
CONFIG_FORCED_INLINING=y
# CONFIG_RCU_TORTURE_TEST is not set
CONFIG_EARLY_PRINTK=y
CONFIG_DEBUG_STACKOVERFLOW=y
# CONFIG_DEBUG_STACK_USAGE is not set
CONFIG_STACK_BACKTRACE_COLS=2
# CONFIG_DEBUG_PAGEALLOC is not set
# CONFIG_DEBUG_RODATA is not set
# CONFIG_4KSTACKS is not set
CONFIG_X86_FIND_SMP_CONFIG=y
CONFIG_X86_MPPARSE=y
CONFIG_DOUBLEFAULT=y
#
# Security options
#
# CONFIG_KEYS is not set
# CONFIG_SECURITY is not set
#
# Cryptographic options
#
CONFIG_CRYPTO=y
CONFIG_CRYPTO_HMAC=y
CONFIG_CRYPTO_NULL=y
CONFIG_CRYPTO_MD4=y
CONFIG_CRYPTO_MD5=y
CONFIG_CRYPTO_SHA1=y
CONFIG_CRYPTO_SHA256=y
CONFIG_CRYPTO_SHA512=y
CONFIG_CRYPTO_WP512=y
CONFIG_CRYPTO_TGR192=y
CONFIG_CRYPTO_DES=y
CONFIG_CRYPTO_BLOWFISH=y
CONFIG_CRYPTO_TWOFISH=y
CONFIG_CRYPTO_SERPENT=y
CONFIG_CRYPTO_AES=y
CONFIG_CRYPTO_AES_586=y
CONFIG_CRYPTO_CAST5=y
CONFIG_CRYPTO_CAST6=y
CONFIG_CRYPTO_TEA=y
CONFIG_CRYPTO_ARC4=y
CONFIG_CRYPTO_KHAZAD=y
CONFIG_CRYPTO_ANUBIS=y
CONFIG_CRYPTO_DEFLATE=y
CONFIG_CRYPTO_MICHAEL_MIC=y
CONFIG_CRYPTO_CRC32C=y
# CONFIG_CRYPTO_TEST is not set
#
# Hardware crypto devices
#
# CONFIG_CRYPTO_DEV_PADLOCK is not set
#
# Library routines
#
CONFIG_CRC_CCITT=y
CONFIG_CRC16=y
CONFIG_CRC32=y
CONFIG_LIBCRC32C=y
CONFIG_ZLIB_INFLATE=y
CONFIG_ZLIB_DEFLATE=y
CONFIG_TEXTSEARCH=y
CONFIG_TEXTSEARCH_KMP=y
CONFIG_TEXTSEARCH_BM=y
CONFIG_TEXTSEARCH_FSM=y
CONFIG_GENERIC_HARDIRQS=y
CONFIG_GENERIC_IRQ_PROBE=y
CONFIG_GENERIC_PENDING_IRQ=y
CONFIG_X86_SMP=y
CONFIG_X86_HT=y
CONFIG_X86_BIOS_REBOOT=y
CONFIG_X86_TRAMPOLINE=y
CONFIG_KTIME_SCALAR=y
^ permalink raw reply
* Re: 2.6.17-rc4: netfilter LOG messages truncated via NETCONSOLE
From: Patrick McHardy @ 2006-05-31 17:46 UTC (permalink / raw)
To: Frank van Maarseveen; +Cc: linux-kernel, Kernel Netdev Mailing List
In-Reply-To: <20060531172936.GB25788@janus>
Frank van Maarseveen wrote:
> On Wed, May 31, 2006 at 06:36:35PM +0200, Patrick McHardy wrote:
>
>>The messages might get dropped when the output queue is full.
>>Does one of the drop counters shown by "ip -s link list"
>>and "tc -s -d qdisc show" increase (the other counts might also
>>give some clues)? Otherwise please apply the attached patch
>>(should fix tcpdump, last patch was incomplete) and post a dump.
>
>
> No visible improvement with the new patch.
Does this mean tcpdump doesn't show any packets?
> ip -s link doesn't show any
> dropped packets so far with any patch and I don't use traffic control
> that I'm aware of. But I'm not sure what to make of "tc" output, maybe
> because CONFIG_SHAPER is not set:
>
> # tc -s -d qdisc show
> RTNETLINK answers: Invalid argument
> Dump terminated
Thats because you're missing CONFIG_NET_SCHED. Please enable it and
try the tc command again, without it we can't see whether the qdisc
(which is present even without CONFIG_NET_SCHED) just dropped the
packets.
^ permalink raw reply
* Re: TCP connection hang problem with 2.6.16.16, e1000.
From: Auke Kok @ 2006-05-31 17:54 UTC (permalink / raw)
To: Ben Greear; +Cc: NetDev
In-Reply-To: <447DC830.4080201@candelatech.com>
Ben Greear wrote:
> Kernel is 2.6.16.16 with my patches, including a patch to the
> e1000.
what patch? I don't see it anywhere.
Cheers,
Auke
^ permalink raw reply
* Re: TCP connection hang problem with 2.6.16.16, e1000.
From: Ben Greear @ 2006-05-31 18:00 UTC (permalink / raw)
To: Auke Kok; +Cc: NetDev
In-Reply-To: <447DD870.80107@intel.com>
Auke Kok wrote:
> Ben Greear wrote:
>
>> Kernel is 2.6.16.16 with my patches, including a patch to the
>> e1000.
>
>
> what patch? I don't see it anywhere.
Well, it's reproducible with only the send-to-self patch, so I figured it wouldn't
help to show the e1000 patches. Also, it is reproducible on tg3, so it is not
e1000 specific, though it is slightly easier to trigger on e1000
for some reason (possibly higher throughput or something specific
about my configuration.)
I haven't seen this problem on 2.6.13, so I'm now starting a manual bisect
to see if I can narrow down where the problem appeared.
Ben
--
Ben Greear <greearb@candelatech.com>
Candela Technologies Inc http://www.candelatech.com
^ permalink raw reply
* Re: [RFC PATCH 1/2] Hardware button support for Wireless cards: radiobtn
From: Ivo van Doorn @ 2006-05-31 18:05 UTC (permalink / raw)
To: Francois Romieu; +Cc: netdev
In-Reply-To: <200605311931.17910.IvDoorn@gmail.com>
[-- Attachment #1: Type: text/plain, Size: 1601 bytes --]
On Wednesday 31 May 2006 19:31, Ivo van Doorn wrote:
> On Tuesday 30 May 2006 23:43, Francois Romieu wrote:
> > Ivo van Doorn <ivdoorn@gmail.com> :
> > [...]
> > > diff --git a/drivers/input/misc/radiobtn.c b/drivers/input/misc/radiobtn.c
> > > new file mode 100644
> > > index 0000000..8d3b84a
> > > --- /dev/null
> > > +++ b/drivers/input/misc/radiobtn.c
> > [...]
> > > +void radiobtn_poll(unsigned long data)
> >
> > static ?
>
> Good point. Will fix this immediately.
>
> > [...]
> > > +int radiobtn_register_device(struct radio_button *radiobtn)
> > > +{
> > > + int status;
> > > +
> > > + /*
> > > + * Check if all mandatory fields have been set.
> > > + */
> > > + if (radiobtn->poll_delay == 0 || radiobtn->button_poll == NULL)
> > > + return -EINVAL;
> > > +
> > > + /*
> > > + * Allocate, initialize and register input device.
> > > + */
> > > + radiobtn->input_dev = input_allocate_device();
> > > + if (!radiobtn->input_dev) {
> > > + printk(KERN_ERR "Failed to allocate input device %s.\n",
> > > + radiobtn->dev_name);
> > > + return -ENOMEM;
> > > + }
> > > +
> > > + radiobtn->input_dev->name = "Radio button";
> > > + radiobtn->input_dev->phys = strcat("radiobtn/", radiobtn->dev_name);
> >
> > The first parameter of strcat() must be big enough to contain the whole
> > string.
>
> Will replace it with
> sprintf(wrqu->name, "radiobtn/", radiobtn->dev_name);
Or actually, I don't think the radiobtn/ won't be actually needed as prefix.
The name passed to the radiobtn driver by the driver should be sufficient.
Ivo
[-- Attachment #2: Type: application/pgp-signature, Size: 189 bytes --]
^ permalink raw reply
* Re: [PATCH-2.4] forcedeth update to 0.50
From: Marcelo Tosatti @ 2006-05-31 18:05 UTC (permalink / raw)
To: Willy Tarreau; +Cc: Manfred Spraul, linux-kernel, netdev, Ayaz Abdulla
In-Reply-To: <20060531055438.GA9142@w.ods.org>
On Wed, May 31, 2006 at 07:54:38AM +0200, Willy Tarreau wrote:
> On Wed, May 31, 2006 at 07:50:32AM +0200, Manfred Spraul wrote:
> > Hi Willy,
> >
> > Willy Tarreau wrote:
> >
> > >I started from the latest backport you sent in september (0.42) and
> > >incrementally applied 2.6 updates. I stopped at 0.50 which provides
> > >VLAN support, because after this one, there are some 2.4-incompatible
> > >changes (64bit consistent memory allocation for rings, and MSI/MSIX
> > >support).
> > >
> > >
> > >
> > I agree, 2.4 needs a backport. Either a full backport as you did, or a
> > minimal one-liner fix.
> > Right now, the driver is not usable due to an incorrect initialization.
> > Or to be more accurate:
> > # modprobe
> > # ifup
> > works.
> > But
> > # modprobe
> > # ifup
> > # ifdown
> > # ifup
> > causes a misconfiguration, and the nic hangs hard after a few MB. And
> > recent distros do the equivalent of ifup/ifdown/ifup somewhere in the
> > initialization.
>
> That's what I read in one of the changelogs, but I'm not sure at all that
> it's what happened, because I had the problem after an ifup only. What I
> was doing with this box was pure performance tests which drew me to compare
> the broadcom and nforce performance. My tests measured 3 creteria :
>
> - number of HTTP/1.0 hits/s
> - maximum data rate
> - maximum packets/s
>
> on tg3, I got around 45 khits/s, 949 Mbps (TCP, =1.0 Gbps on wire) and
> 1.05 Mpps receive (I want to build a high speed load-balancer and a sniffer).
> This was stable.
>
> On the nforce, I tried with the hits/s first because it's a good indication
> of hardware-based and driver-based optimizations. It reached 18 khits/s with
> a lot of difficulty and the machine was stuck at 100% of one CPU. But it ran
> for a few minutes like this. Then I tried data rate (which is the same test
> with 1MB objects), and it failed after about 2 seconds and few megabytes (or
> hundreds of megabytes) transferred.
>
> I had to reboot to get it to work again. And I'm fairly sure that I did not
> do down/up this time as well, but the test came to the same end.
>
> That's why I'm not sure at all that the one-liner will be enough.
>
> Moreover, after the update, I reached the same performance as with the
> broadcom, with a slight improvement on packet reception (1.09 Mpps), and
> low CPU usage (15%). So basically, the upgrade rendered the driver from
> barely usable for SSH to very performant.
>
> > Marcelo: Do you need a one-liner, or could you apply a large backport
> > patch?
>
> I would really vote for the full backport, and I can break it into pieces
> if needed (I have them at hand, just have to re-inject the changelogs).
> However, I have separate changes from 0.42 to 0.50, because I started
> with your 0.30-0.42 backport patch.
>
> I have this machine till the end of the week, so I can perform other tests
> if you're interested in trying specific things.
Since v2.4.33 should be out RSN, my opinion is that applying the one-liner
to fix the bringup problem for now is more prudent..
Full patch could go into v2.4.34...
^ permalink raw reply
* Re: 2.6.17-rc4: netfilter LOG messages truncated via NETCONSOLE
From: Frank van Maarseveen @ 2006-05-31 18:20 UTC (permalink / raw)
To: Patrick McHardy; +Cc: linux-kernel, Kernel Netdev Mailing List
In-Reply-To: <447DD66C.30605@trash.net>
On Wed, May 31, 2006 at 07:46:20PM +0200, Patrick McHardy wrote:
> Frank van Maarseveen wrote:
> > On Wed, May 31, 2006 at 06:36:35PM +0200, Patrick McHardy wrote:
> >
> >>The messages might get dropped when the output queue is full.
> >>Does one of the drop counters shown by "ip -s link list"
> >>and "tc -s -d qdisc show" increase (the other counts might also
> >>give some clues)? Otherwise please apply the attached patch
> >>(should fix tcpdump, last patch was incomplete) and post a dump.
> >
> >
> > No visible improvement with the new patch.
>
> Does this mean tcpdump doesn't show any packets?
tcpdump output is consistent with what the netconsole receiver sees: 9
packets are still missing. I know there are 9 because 2.6.13.2 shows them.
The two patches behaved identically for me.
>
> > ip -s link doesn't show any
> > dropped packets so far with any patch and I don't use traffic control
> > that I'm aware of. But I'm not sure what to make of "tc" output, maybe
> > because CONFIG_SHAPER is not set:
> >
> > # tc -s -d qdisc show
> > RTNETLINK answers: Invalid argument
> > Dump terminated
>
> Thats because you're missing CONFIG_NET_SCHED. Please enable it and
> try the tc command again, without it we can't see whether the qdisc
> (which is present even without CONFIG_NET_SCHED) just dropped the
> packets.
I'll try that tomorrow.
--
Frank
^ permalink raw reply
* Re: netif_tx_disable and lockless TX
From: Robert Olsson @ 2006-05-31 17:52 UTC (permalink / raw)
To: hadi
Cc: Herbert Xu, netdev, jgarzik, mchan, David Miller, Andi Kleen,
Robert Olsson
In-Reply-To: <1149078972.5462.72.camel@jzny2>
jamal writes:
> Latency-wise: TX completion interrupt provides the best latency.
> Processing in the poll() -aka softirq- was almost close to the hardirq
> variant. So if you can make things run in a softirq such as transmit
> one, then the numbers will likely stay the same.
I don't remember we tried tasklet for TX a la Herbert's suggestion but we
used use tasklets for controlling RX processing to avoid hardirq livelock
in pre-NAPI versions.
Had variants of tulip driver with both TX cleaning at ->poll and TX
cleaning at hardirq and didn't see any performance difference. The
->poll was much cleaner but we kept Alexey's original work for tulip.
> Sorry, I havent been following discussions on netchannels[1] so i am not
> qualified to comment on the "replacement" part Dave mentioned earlier.
> What I can say is the tx processing doesnt have to be part of the NAPI
> poll() and still use hardirq.
Yes true but I see TX numbers with newer boards (wire rate small pakets)
with cleaing in ->poll. Also now linux is very safe in network "overload"
situations. Moving work to hardirq may change that.
Cheers.
--ro
^ permalink raw reply
* [PATCH 0/2][RFC] iWARP Core Support
From: Steve Wise @ 2006-05-31 18:26 UTC (permalink / raw)
To: rdreier, mshefty; +Cc: linux-kernel, netdev, openib-general
This patchset defines the modifications to the Linux infiniband subsystem
to support iWARP devices. We're submitting it for review now with the
goal for inclusion in the 2.6.19 kernel. This code has gone through
several reviews in the openib-general list. Now we are submitting it
for external review by the linux community.
This StGIT patchset is cloned from Roland Dreier's infiniband.git
for-2.6.18 branch. The patchset consists of 2 patches:
1 - New iWARP CM implementation.
2 - Core changes to support iWARP.
Signed-off-by: Tom Tucker <tom@opengridcomputing.com>
Signed-off-by: Steve Wise <swise@opengridcomputing.com>
^ permalink raw reply
page: next (older) | prev (newer) | latest
- recent:[subjects (threaded)|topics (new)|topics (active)]
This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox