* Re: [PATCH 0/3] staging: delete duplicated files/functionality in rtl8712
From: Greg Kroah-Hartman @ 2012-05-10 16:54 UTC (permalink / raw)
To: Paul Gortmaker
Cc: linux-wireless, florian.c.schilhabel, ali, netdev, Larry Finger
In-Reply-To: <1336621641-15467-1-git-send-email-paul.gortmaker@windriver.com>
On Wed, May 09, 2012 at 11:47:18PM -0400, Paul Gortmaker wrote:
> A git grep happened to lead me into this dir, and once there I couldn't
> simply leave and pretend I didn't see the stuff that I saw.
>
> There were duplicated basic networking headers like if_ether.h and
> ip.h (of course, some ancient versions, too). And a whole whack of
> boilerplate endian handling functionality duplicated too.
>
> I forced myself to stop looking after that.
Yes, it's a mess, thanks for working on cleaning it up, even a little
bit, it all helps.
> Anyway, a trivial redirection onto mainline's networking headers
> in the proper include dir, and a deletion of any references to
> the endian headers and the thing still happily builds on x86_64
> and ppc even after shitcanning seven useless files.
>
> These three commits are against May 8th's linux-next tree. I've
> used "-D" to hide the line-by-line content of the deletions.
Can you regenerate these with the full deletion content? There have
been some spelling fixes in these files, and your patches do not apply
due to them. I can hand-edit the patches if you regenerate it.
Or if you rebase on the last linux-next tree, that will pick those
changes up and then I can apply these properly.
thanks,
greg k-h
^ permalink raw reply
* Re: [PATCH 00/17] Swap-over-NBD without deadlocking V10
From: Mike Christie @ 2012-05-10 17:17 UTC (permalink / raw)
To: Mel Gorman
Cc: Andrew Morton, Linux-MM, Linux-Netdev, LKML, David Miller,
Neil Brown, Peter Zijlstra, Eric B Munson
In-Reply-To: <1336657510-24378-1-git-send-email-mgorman@suse.de>
[-- Attachment #1: Type: text/plain, Size: 650 bytes --]
On 05/10/2012 08:44 AM, Mel Gorman wrote:
> When a user or administrator requires swap for their application, they
> create a swap partition and file, format it with mkswap and activate it
> with swapon. Swap over the network is considered as an option in diskless
> systems. The two likely scenarios are when blade servers are used as part
> of a cluster where the form factor or maintenance costs do not allow the
> use of disks and thin clients.
Thank you for working on this. I made the attached patch for software
iscsi which has the same issue as nbd.
I tested the patch here and did not notice any performance regressions
or any other bugs.
[-- Attachment #2: 0001-iscsi-Set-SOCK_MEMALLOC-for-access-to-PFMEMALLOC-res.patch --]
[-- Type: text/plain, Size: 1585 bytes --]
>From 917d53f16d1e26b12e90e5e15df76a7a8bee35e8 Mon Sep 17 00:00:00 2001
From: Mike Christie <michaelc@cs.wisc.edu>
Date: Thu, 3 May 2012 12:36:18 -0500
Subject: [PATCH 1/1] iscsi: Set SOCK_MEMALLOC for access to PFMEMALLOC
reserves
Set SOCK_MEMALLOC on the iscsi socket to allow access to PFMEMALLOC
reserves to prevent deadlock.
Signed-off-by: Mike Christie <michaelc@cs.wisc.edu>
---
drivers/scsi/iscsi_tcp.c | 18 +++++++++++++-----
1 files changed, 13 insertions(+), 5 deletions(-)
diff --git a/drivers/scsi/iscsi_tcp.c b/drivers/scsi/iscsi_tcp.c
index 453a740..7360f4c 100644
--- a/drivers/scsi/iscsi_tcp.c
+++ b/drivers/scsi/iscsi_tcp.c
@@ -370,17 +370,24 @@ static inline int iscsi_sw_tcp_xmit_qlen(struct iscsi_conn *conn)
static int iscsi_sw_tcp_pdu_xmit(struct iscsi_task *task)
{
struct iscsi_conn *conn = task->conn;
- int rc;
+ unsigned long pflags = current->flags;
+ int rc = 0;
+
+ current->flags |= PF_MEMALLOC;
while (iscsi_sw_tcp_xmit_qlen(conn)) {
rc = iscsi_sw_tcp_xmit(conn);
- if (rc == 0)
- return -EAGAIN;
+ if (rc == 0) {
+ rc = -EAGAIN;
+ break;
+ }
if (rc < 0)
- return rc;
+ break;
+ rc = 0;
}
- return 0;
+ tsk_restore_flags(current, pflags, PF_MEMALLOC);
+ return rc;
}
/*
@@ -665,6 +672,7 @@ iscsi_sw_tcp_conn_bind(struct iscsi_cls_session *cls_session,
sk->sk_reuse = 1;
sk->sk_sndtimeo = 15 * HZ; /* FIXME: make it configurable */
sk->sk_allocation = GFP_ATOMIC;
+ sk_set_memalloc(sk);
iscsi_sw_tcp_conn_set_callbacks(conn);
tcp_sw_conn->sendpage = tcp_sw_conn->sock->ops->sendpage;
--
1.7.7.6
^ permalink raw reply related
* Re: [PATCH 0/3] staging: delete duplicated files/functionality in rtl8712
From: Paul Gortmaker @ 2012-05-10 17:31 UTC (permalink / raw)
To: Greg Kroah-Hartman
Cc: linux-wireless-u79uwXL29TY76Z2rM5mHXA,
florian.c.schilhabel-gM/Ye1E23mwN+BqQ9rBEUg,
ali-H4aWS73dXuqdkR0RstYxLQ, netdev-u79uwXL29TY76Z2rM5mHXA,
Larry Finger
In-Reply-To: <20120510165451.GA12958-U8xfFu+wG4EAvxtiuMwx3w@public.gmane.org>
[Re: [PATCH 0/3] staging: delete duplicated files/functionality in rtl8712] On 10/05/2012 (Thu 09:54) Greg Kroah-Hartman wrote:
[...]
> Can you regenerate these with the full deletion content? There have
> been some spelling fixes in these files, and your patches do not apply
> due to them. I can hand-edit the patches if you regenerate it.
>
> Or if you rebase on the last linux-next tree, that will pick those
> changes up and then I can apply these properly.
I've rebased it onto your staging-next of today, so it should be
hopefully seamless for you now.
Thanks,
Paul.
---
The following changes since commit 0e545f6d165ad0180b0d04fe1291f6f6268047ff:
staging: rts5139: remove unused variable option.ww_enable (2012-05-10 09:57:21 -0700)
are available in the git repository at:
git://git.kernel.org/pub/scm/linux/kernel/git/paulg/linux.git rtl8712-staging-next
for you to fetch changes up to 9a0fbbb52ab08017ac51aceef76514799837f4b0:
staging: delete all duplicated endian crap from rtl8712 driver (2012-05-10 13:10:03 -0400)
----------------------------------------------------------------
Paul Gortmaker (3):
staging: wean rtl8712 off of its ancient duplicate of if_ether.h
staging: wean rtl8712 off of its ancient duplicate of ip.h
staging: delete all duplicated endian crap from rtl8712 driver
drivers/staging/rtl8712/big_endian.h | 94 --------------
drivers/staging/rtl8712/generic.h | 178 ---------------------------
drivers/staging/rtl8712/hal_init.c | 1 -
drivers/staging/rtl8712/if_ether.h | 141 ---------------------
drivers/staging/rtl8712/ip.h | 137 --------------------
drivers/staging/rtl8712/little_endian.h | 94 --------------
drivers/staging/rtl8712/osdep_service.h | 2 -
drivers/staging/rtl8712/rtl8712_cmd.c | 1 -
drivers/staging/rtl8712/rtl8712_recv.c | 5 +-
drivers/staging/rtl8712/rtl8712_xmit.c | 1 -
drivers/staging/rtl8712/rtl871x_byteorder.h | 32 -----
drivers/staging/rtl8712/rtl871x_cmd.c | 1 -
drivers/staging/rtl8712/rtl871x_recv.c | 4 +-
drivers/staging/rtl8712/rtl871x_xmit.c | 1 -
drivers/staging/rtl8712/swab.h | 131 --------------------
drivers/staging/rtl8712/usb_ops.c | 1 -
drivers/staging/rtl8712/wifi.h | 1 -
drivers/staging/rtl8712/xmit_linux.c | 6 +-
18 files changed, 7 insertions(+), 824 deletions(-)
delete mode 100644 drivers/staging/rtl8712/big_endian.h
delete mode 100644 drivers/staging/rtl8712/generic.h
delete mode 100644 drivers/staging/rtl8712/if_ether.h
delete mode 100644 drivers/staging/rtl8712/ip.h
delete mode 100644 drivers/staging/rtl8712/little_endian.h
delete mode 100644 drivers/staging/rtl8712/rtl871x_byteorder.h
delete mode 100644 drivers/staging/rtl8712/swab.h
--
To unsubscribe from this list: send the line "unsubscribe linux-wireless" in
the body of a message to majordomo-u79uwXL29TY76Z2rM5mHXA@public.gmane.org
More majordomo info at http://vger.kernel.org/majordomo-info.html
^ permalink raw reply
* Re: [PATCH RFC 1/6] skbuff: support per-page destructors in copy_ubufs
From: Ian Campbell @ 2012-05-10 17:46 UTC (permalink / raw)
To: Michael S. Tsirkin
Cc: David Miller, netdev@vger.kernel.org, eric.dumazet@gmail.com
In-Reply-To: <8a3235fbceef37758ef23169c4c152e8d1251d3b.1336397823.git.mst@redhat.com>
On Mon, 2012-05-07 at 14:54 +0100, Michael S. Tsirkin wrote:
> /* skb frags point to kernel buffers */
> for (i = skb_shinfo(skb)->nr_frags; i > 0; i--) {
> + skb_frag_t *f = &skb_shinfo(skb)->frags[i];
This needs to be ....->frags[i - 1]
otherwise you put every new frag one too high and don't do anything to
frag 0, which leaves the old destructor pointer in place and leads to a
double free.
I think skb_frag_set_destructor and skb_copy_frag_destructor need to
clear and propagate respectively (or maybe just clear in both cases) the
destructor_arg field since it is otherwise not initialised when we set
SKBTX_DEV_ZEROCOPY and that can trigger wrong behaviour in this
function.
Ian.
> + if (unlikely((!uarg && !f->page.destructor)))
> + continue;
> __skb_fill_page_desc(skb, i-1, head, 0,
> skb_shinfo(skb)->frags[i - 1].size);
> head = (struct page *)head->private;
^ permalink raw reply
* [PATCH v13 net-next] codel: Controlled Delay AQM
From: Eric Dumazet @ 2012-05-10 17:51 UTC (permalink / raw)
To: Dave Täht, David Miller
Cc: Kathleen Nichols, Van Jacobson, codel, bloat, netdev, Tom Herbert,
Yuchung Cheng, Matt Mathis, Stephen Hemminger
In-Reply-To: <1336571439.12504.27.camel@edumazet-glaptop>
From: Eric Dumazet <edumazet@google.com>
An implementation of CoDel AQM, from Kathleen Nichols and Van Jacobson.
http://queue.acm.org/detail.cfm?id=2209336
This AQM main input is no longer queue size in bytes or packets, but the
delay packets stay in (FIFO) queue.
As we don't have infinite memory, we still can drop packets in enqueue()
in case of massive load, but mean of CoDel is to drop packets in
dequeue(), using a control law based on two simple parameters :
target : target sojourn time (default 5ms)
interval : width of moving time window (default 100ms)
Based on initial work from Dave Taht.
Refactored to help future codel inclusion as a plugin for other linux
qdisc (FQ_CODEL, ...), like RED.
include/net/codel.h contains codel algorithm as close as possible than
Kathleen reference.
net/sched/sch_codel.c contains the linux qdisc specific glue.
Separate structures permit a memory efficient implementation of fq_codel
(to be sent as a separate work) : Each flow has its own struct
codel_vars.
timestamps are taken at enqueue() time with 1024 ns precision, allowing
a range of 2199 seconds in queue, and 100Gb links support. iproute2 uses
usec as base unit.
Selected packets are dropped, unless ECN is enabled and packets can get
ECN mark instead.
Tested from 2Mb to 10Gb speeds with no particular problems, on ixgbe and
tg3 drivers (BQL enabled).
Usage: tc qdisc ... codel [ limit PACKETS ] [ target TIME ]
[ interval TIME ] [ ecn ]
qdisc codel 10: parent 1:1 limit 2000p target 3.0ms interval 60.0ms ecn
Sent 13347099587 bytes 8815805 pkt (dropped 0, overlimits 0 requeues 0)
rate 202365Kbit 16708pps backlog 113550b 75p requeues 0
count 116 lastcount 98 ldelay 4.3ms dropping drop_next 816us
maxpacket 1514 ecn_mark 84399 drop_overlimit 0
CoDel must be seen as a base module, and should be used keeping in mind
there is still a FIFO queue. So a typical setup will probably need a
hierarchy of several qdiscs and packet classifiers to be able to meet
whatever constraints a user might have.
One possible example would be to use fq_codel, which combines Fair
Queueing and CoDel, in replacement of sfq / sfq_red.
Signed-off-by: Eric Dumazet <edumazet@google.com>
Signed-off-by: Dave Taht <dave.taht@bufferbloat.net>
Cc: Kathleen Nichols <nichols@pollere.com>
Cc: Van Jacobson <van@pollere.net>
Cc: Tom Herbert <therbert@google.com>
Cc: Matt Mathis <mattmathis@google.com>
Cc: Yuchung Cheng <ycheng@google.com>
Cc: Stephen Hemminger <shemminger@vyatta.com>
---
include/linux/pkt_sched.h | 26 ++
include/net/codel.h | 334 ++++++++++++++++++++++++++++++++++++
net/sched/Kconfig | 11 +
net/sched/Makefile | 1
net/sched/sch_codel.c | 275 +++++++++++++++++++++++++++++
5 files changed, 647 insertions(+)
diff --git a/include/linux/pkt_sched.h b/include/linux/pkt_sched.h
index ffe975c..cde56c2 100644
--- a/include/linux/pkt_sched.h
+++ b/include/linux/pkt_sched.h
@@ -655,4 +655,30 @@ struct tc_qfq_stats {
__u32 lmax;
};
+/* CODEL */
+
+enum {
+ TCA_CODEL_UNSPEC,
+ TCA_CODEL_TARGET,
+ TCA_CODEL_LIMIT,
+ TCA_CODEL_INTERVAL,
+ TCA_CODEL_ECN,
+ __TCA_CODEL_MAX
+};
+
+#define TCA_CODEL_MAX (__TCA_CODEL_MAX - 1)
+
+struct tc_codel_xstats {
+ __u32 maxpacket; /* largest packet we've seen so far */
+ __u32 count; /* how many drops we've done since the last time we
+ * entered dropping state
+ */
+ __u32 lastcount; /* count at entry to dropping state */
+ __u32 ldelay; /* in-queue delay seen by most recently dequeued packet */
+ __s32 drop_next; /* time to drop next packet */
+ __u32 drop_overlimit; /* number of time max qdisc packet limit was hit */
+ __u32 ecn_mark; /* number of packets we ECN marked instead of dropped */
+ __u32 dropping; /* are we in dropping state ? */
+};
+
#endif
diff --git a/include/net/codel.h b/include/net/codel.h
new file mode 100644
index 0000000..ecafb0b
--- /dev/null
+++ b/include/net/codel.h
@@ -0,0 +1,334 @@
+#ifndef __NET_SCHED_CODEL_H
+#define __NET_SCHED_CODEL_H
+
+/*
+ * Codel - The Controlled-Delay Active Queue Management algorithm
+ *
+ * Copyright (C) 2011-2012 Kathleen Nichols <nichols@pollere.com>
+ * Copyright (C) 2011-2012 Van Jacobson <van@pollere.net>
+ * Copyright (C) 2012 Michael D. Taht <dave.taht@bufferbloat.net>
+ * Copyright (C) 2012 Eric Dumazet <edumazet@google.com>
+ *
+ * Redistribution and use in source and binary forms, with or without
+ * modification, are permitted provided that the following conditions
+ * are met:
+ * 1. Redistributions of source code must retain the above copyright
+ * notice, this list of conditions, and the following disclaimer,
+ * without modification.
+ * 2. Redistributions in binary form must reproduce the above copyright
+ * notice, this list of conditions and the following disclaimer in the
+ * documentation and/or other materials provided with the distribution.
+ * 3. The names of the authors may not be used to endorse or promote products
+ * derived from this software without specific prior written permission.
+ *
+ * Alternatively, provided that this notice is retained in full, this
+ * software may be distributed under the terms of the GNU General
+ * Public License ("GPL") version 2, in which case the provisions of the
+ * GPL apply INSTEAD OF those given above.
+ *
+ * THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS
+ * "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT
+ * LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR
+ * A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT
+ * OWNER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL,
+ * SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT
+ * LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE,
+ * DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY
+ * THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT
+ * (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE
+ * OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH
+ * DAMAGE.
+ *
+ */
+
+#include <linux/types.h>
+#include <linux/ktime.h>
+#include <linux/skbuff.h>
+#include <net/pkt_sched.h>
+#include <net/inet_ecn.h>
+
+/* Controlling Queue Delay (CoDel) algorithm
+ * =========================================
+ * Source : Kathleen Nichols and Van Jacobson
+ * http://queue.acm.org/detail.cfm?id=2209336
+ *
+ * Implemented on linux by Dave Taht and Eric Dumazet
+ */
+
+
+/*
+ * CoDel uses a 1024 nsec clock, encoded in u32
+ * This gives a range of 2199 seconds, because of signed compares
+ */
+typedef u32 codel_time_t;
+typedef s32 codel_tdiff_t;
+#define CODEL_SHIFT 10
+#define MS2TIME(a) ((a * NSEC_PER_MSEC) >> CODEL_SHIFT)
+
+static inline codel_time_t codel_get_time(void)
+{
+ u64 ns = ktime_to_ns(ktime_get());
+
+ return ns >> CODEL_SHIFT;
+}
+
+#define codel_time_after(a, b) ((s32)(a) - (s32)(b) > 0)
+#define codel_time_after_eq(a, b) ((s32)(a) - (s32)(b) >= 0)
+#define codel_time_before(a, b) ((s32)(a) - (s32)(b) < 0)
+#define codel_time_before_eq(a, b) ((s32)(a) - (s32)(b) <= 0)
+
+/* Qdiscs using codel plugin must use codel_skb_cb in their own cb[] */
+struct codel_skb_cb {
+ codel_time_t enqueue_time;
+};
+
+static struct codel_skb_cb *get_codel_cb(const struct sk_buff *skb)
+{
+ qdisc_cb_private_validate(skb, sizeof(struct codel_skb_cb));
+ return (struct codel_skb_cb *)qdisc_skb_cb(skb)->data;
+}
+
+static codel_time_t codel_get_enqueue_time(const struct sk_buff *skb)
+{
+ return get_codel_cb(skb)->enqueue_time;
+}
+
+static void codel_set_enqueue_time(struct sk_buff *skb)
+{
+ get_codel_cb(skb)->enqueue_time = codel_get_time();
+}
+
+static inline u32 codel_time_to_us(codel_time_t val)
+{
+ u64 valns = ((u64)val << CODEL_SHIFT);
+
+ do_div(valns, NSEC_PER_USEC);
+ return (u32)valns;
+}
+
+/**
+ * struct codel_params - contains codel parameters
+ * @target: target queue size (in time units)
+ * @interval: width of moving time window
+ * @ecn: is Explicit Congestion Notification enabled
+ */
+struct codel_params {
+ codel_time_t target;
+ codel_time_t interval;
+ bool ecn;
+};
+
+/**
+ * struct codel_vars - contains codel variables
+ * @count: how many drops we've done since the last time we
+ * entered dropping state
+ * @lastcount: count at entry to dropping state
+ * @dropping: set to true if in dropping state
+ * @first_above_time: when we went (or will go) continuously above target
+ * for interval
+ * @drop_next: time to drop next packet, or when we dropped last
+ * @ldelay: sojourn time of last dequeued packet
+ */
+struct codel_vars {
+ u32 count;
+ u32 lastcount;
+ bool dropping;
+ codel_time_t first_above_time;
+ codel_time_t drop_next;
+ codel_time_t ldelay;
+};
+
+/**
+ * struct codel_stats - contains codel shared variables and stats
+ * @maxpacket: largest packet we've seen so far
+ * @drop_count: temp count of dropped packets in dequeue()
+ * ecn_mark: number of packets we ECN marked instead of dropping
+ */
+struct codel_stats {
+ u32 maxpacket;
+ u32 drop_count;
+ u32 ecn_mark;
+};
+
+static void codel_params_init(struct codel_params *params)
+{
+ params->interval = MS2TIME(100);
+ params->target = MS2TIME(5);
+ params->ecn = false;
+}
+
+static void codel_vars_init(struct codel_vars *vars)
+{
+ vars->drop_next = 0;
+ vars->first_above_time = 0;
+ vars->dropping = false; /* exit dropping state */
+ vars->count = 0;
+ vars->lastcount = 0;
+}
+
+static void codel_stats_init(struct codel_stats *stats)
+{
+ stats->maxpacket = 256;
+}
+
+/* return interval/sqrt(x) with good precision
+ * relies on int_sqrt(unsigned long x) kernel implementation
+ */
+static u32 codel_inv_sqrt(u32 _interval, u32 _x)
+{
+ u64 interval = _interval;
+ unsigned long x = _x;
+
+ /* Scale operands for max precision */
+
+#if BITS_PER_LONG == 64
+ x <<= 32; /* On 64bit arches, we can prescale x by 32bits */
+ interval <<= 16;
+#endif
+
+ while (x < (1UL << (BITS_PER_LONG - 2))) {
+ x <<= 2;
+ interval <<= 1;
+ }
+ do_div(interval, int_sqrt(x));
+ return (u32)interval;
+}
+
+static codel_time_t codel_control_law(codel_time_t t,
+ codel_time_t interval,
+ u32 count)
+{
+ return t + codel_inv_sqrt(interval, count);
+}
+
+
+static bool codel_should_drop(struct sk_buff *skb,
+ unsigned int *backlog,
+ struct codel_vars *vars,
+ struct codel_params *params,
+ struct codel_stats *stats,
+ codel_time_t now)
+{
+ bool ok_to_drop;
+
+ if (!skb) {
+ vars->first_above_time = 0;
+ return false;
+ }
+
+ vars->ldelay = now - codel_get_enqueue_time(skb);
+ *backlog -= qdisc_pkt_len(skb);
+
+ if (unlikely(qdisc_pkt_len(skb) > stats->maxpacket))
+ stats->maxpacket = qdisc_pkt_len(skb);
+
+ if (codel_time_before(vars->ldelay, params->target) ||
+ *backlog <= stats->maxpacket) {
+ /* went below - stay below for at least interval */
+ vars->first_above_time = 0;
+ return false;
+ }
+ ok_to_drop = false;
+ if (vars->first_above_time == 0) {
+ /* just went above from below. If we stay above
+ * for at least interval we'll say it's ok to drop
+ */
+ vars->first_above_time = now + params->interval;
+ } else if (codel_time_after(now, vars->first_above_time)) {
+ ok_to_drop = true;
+ }
+ return ok_to_drop;
+}
+
+typedef struct sk_buff * (*codel_skb_dequeue_t)(struct codel_vars *vars,
+ struct Qdisc *sch);
+
+static struct sk_buff *codel_dequeue(struct Qdisc *sch,
+ struct codel_params *params,
+ struct codel_vars *vars,
+ struct codel_stats *stats,
+ codel_skb_dequeue_t dequeue_func,
+ u32 *backlog)
+{
+ struct sk_buff *skb = dequeue_func(vars, sch);
+ codel_time_t now;
+ bool drop;
+
+ if (!skb) {
+ vars->dropping = false;
+ return skb;
+ }
+ now = codel_get_time();
+ drop = codel_should_drop(skb, backlog, vars, params, stats, now);
+ if (vars->dropping) {
+ if (!drop) {
+ /* sojourn time below target - leave dropping state */
+ vars->dropping = false;
+ } else if (codel_time_after_eq(now, vars->drop_next)) {
+ /* It's time for the next drop. Drop the current
+ * packet and dequeue the next. The dequeue might
+ * take us out of dropping state.
+ * If not, schedule the next drop.
+ * A large backlog might result in drop rates so high
+ * that the next drop should happen now,
+ * hence the while loop.
+ */
+ while (vars->dropping &&
+ codel_time_after_eq(now, vars->drop_next)) {
+ if (++vars->count == 0) /* avoid zero divides */
+ vars->count = ~0U;
+ if (params->ecn && INET_ECN_set_ce(skb)) {
+ stats->ecn_mark++;
+ vars->drop_next =
+ codel_control_law(vars->drop_next,
+ params->interval,
+ vars->count);
+ goto end;
+ }
+ qdisc_drop(skb, sch);
+ stats->drop_count++;
+ skb = dequeue_func(vars, sch);
+ if (!codel_should_drop(skb, backlog,
+ vars, params, stats, now)) {
+ /* leave dropping state */
+ vars->dropping = false;
+ } else {
+ /* and schedule the next drop */
+ vars->drop_next =
+ codel_control_law(vars->drop_next,
+ params->interval,
+ vars->count);
+ }
+ }
+ }
+ } else if (drop) {
+ if (params->ecn && INET_ECN_set_ce(skb)) {
+ stats->ecn_mark++;
+ } else {
+ qdisc_drop(skb, sch);
+ stats->drop_count++;
+
+ skb = dequeue_func(vars, sch);
+ drop = codel_should_drop(skb, backlog, vars, params,
+ stats, now);
+ }
+ vars->dropping = true;
+ /*
+ * if min went above target close to when we last went below it
+ * assume that the drop rate that controlled the queue on the
+ * last cycle is a good starting point to control it now.
+ */
+ if (codel_time_before(now - vars->drop_next,
+ 16 * params->interval)) {
+ vars->count = (vars->count - vars->lastcount) | 1;
+ } else {
+ vars->count = 1;
+ }
+ vars->lastcount = vars->count;
+ vars->drop_next = codel_control_law(now, params->interval,
+ vars->count);
+ }
+end:
+ return skb;
+}
+#endif
diff --git a/net/sched/Kconfig b/net/sched/Kconfig
index 75b58f8..fadd252 100644
--- a/net/sched/Kconfig
+++ b/net/sched/Kconfig
@@ -250,6 +250,17 @@ config NET_SCH_QFQ
If unsure, say N.
+config NET_SCH_CODEL
+ tristate "Controlled Delay AQM (CODEL)"
+ help
+ Say Y here if you want to use the Controlled Delay (CODEL)
+ packet scheduling algorithm.
+
+ To compile this driver as a module, choose M here: the module
+ will be called sch_codel.
+
+ If unsure, say N.
+
config NET_SCH_INGRESS
tristate "Ingress Qdisc"
depends on NET_CLS_ACT
diff --git a/net/sched/Makefile b/net/sched/Makefile
index 8cdf4e2..30fab03 100644
--- a/net/sched/Makefile
+++ b/net/sched/Makefile
@@ -37,6 +37,7 @@ obj-$(CONFIG_NET_SCH_PLUG) += sch_plug.o
obj-$(CONFIG_NET_SCH_MQPRIO) += sch_mqprio.o
obj-$(CONFIG_NET_SCH_CHOKE) += sch_choke.o
obj-$(CONFIG_NET_SCH_QFQ) += sch_qfq.o
+obj-$(CONFIG_NET_SCH_CODEL) += sch_codel.o
obj-$(CONFIG_NET_CLS_U32) += cls_u32.o
obj-$(CONFIG_NET_CLS_ROUTE4) += cls_route.o
diff --git a/net/sched/sch_codel.c b/net/sched/sch_codel.c
new file mode 100644
index 0000000..a96e95a
--- /dev/null
+++ b/net/sched/sch_codel.c
@@ -0,0 +1,275 @@
+/*
+ * Codel - The Controlled-Delay Active Queue Management algorithm
+ *
+ * Copyright (C) 2011-2012 Kathleen Nichols <nichols@pollere.com>
+ * Copyright (C) 2011-2012 Van Jacobson <van@pollere.net>
+ *
+ * Implemented on linux by :
+ * Copyright (C) 2012 Michael D. Taht <dave.taht@bufferbloat.net>
+ * Copyright (C) 2012 Eric Dumazet <edumazet@google.com>
+ *
+ * Redistribution and use in source and binary forms, with or without
+ * modification, are permitted provided that the following conditions
+ * are met:
+ * 1. Redistributions of source code must retain the above copyright
+ * notice, this list of conditions, and the following disclaimer,
+ * without modification.
+ * 2. Redistributions in binary form must reproduce the above copyright
+ * notice, this list of conditions and the following disclaimer in the
+ * documentation and/or other materials provided with the distribution.
+ * 3. The names of the authors may not be used to endorse or promote products
+ * derived from this software without specific prior written permission.
+ *
+ * Alternatively, provided that this notice is retained in full, this
+ * software may be distributed under the terms of the GNU General
+ * Public License ("GPL") version 2, in which case the provisions of the
+ * GPL apply INSTEAD OF those given above.
+ *
+ * THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS
+ * "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT
+ * LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR
+ * A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT
+ * OWNER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL,
+ * SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT
+ * LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE,
+ * DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY
+ * THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT
+ * (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE
+ * OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH
+ * DAMAGE.
+ *
+ */
+
+#include <linux/module.h>
+#include <linux/slab.h>
+#include <linux/types.h>
+#include <linux/kernel.h>
+#include <linux/errno.h>
+#include <linux/skbuff.h>
+#include <net/pkt_sched.h>
+#include <net/codel.h>
+
+
+#define DEFAULT_CODEL_LIMIT 1000
+
+struct codel_sched_data {
+ struct codel_params params;
+ struct codel_vars vars;
+ struct codel_stats stats;
+ u32 drop_overlimit;
+};
+
+/* This is the specific function called from codel_dequeue()
+ * to dequeue a packet from queue. Note: backlog is handled in
+ * codel, we dont need to reduce it here.
+ */
+static struct sk_buff *dequeue(struct codel_vars *vars, struct Qdisc *sch)
+{
+ struct sk_buff *skb = __skb_dequeue(&sch->q);
+
+ prefetch(&skb->end); /* we'll need skb_shinfo() */
+ return skb;
+}
+
+static struct sk_buff *codel_qdisc_dequeue(struct Qdisc *sch)
+{
+ struct codel_sched_data *q = qdisc_priv(sch);
+ struct sk_buff *skb;
+
+ skb = codel_dequeue(sch, &q->params, &q->vars, &q->stats,
+ dequeue, &sch->qstats.backlog);
+ /* We cant call qdisc_tree_decrease_qlen() if our qlen is 0,
+ * or HTB crashes. Defer it for next round.
+ */
+ if (q->stats.drop_count && sch->q.qlen) {
+ qdisc_tree_decrease_qlen(sch, q->stats.drop_count);
+ q->stats.drop_count = 0;
+ }
+ if (skb)
+ qdisc_bstats_update(sch, skb);
+ return skb;
+}
+
+static int codel_qdisc_enqueue(struct sk_buff *skb, struct Qdisc *sch)
+{
+ struct codel_sched_data *q;
+
+ if (likely(qdisc_qlen(sch) < sch->limit)) {
+ codel_set_enqueue_time(skb);
+ return qdisc_enqueue_tail(skb, sch);
+ }
+ q = qdisc_priv(sch);
+ q->drop_overlimit++;
+ return qdisc_drop(skb, sch);
+}
+
+static const struct nla_policy codel_policy[TCA_CODEL_MAX + 1] = {
+ [TCA_CODEL_TARGET] = { .type = NLA_U32 },
+ [TCA_CODEL_LIMIT] = { .type = NLA_U32 },
+ [TCA_CODEL_INTERVAL] = { .type = NLA_U32 },
+ [TCA_CODEL_ECN] = { .type = NLA_U32 },
+};
+
+static int codel_change(struct Qdisc *sch, struct nlattr *opt)
+{
+ struct codel_sched_data *q = qdisc_priv(sch);
+ struct nlattr *tb[TCA_CODEL_MAX + 1];
+ unsigned int qlen;
+ int err;
+
+ if (!opt)
+ return -EINVAL;
+
+ err = nla_parse_nested(tb, TCA_CODEL_MAX, opt, codel_policy);
+ if (err < 0)
+ return err;
+
+ sch_tree_lock(sch);
+
+ if (tb[TCA_CODEL_TARGET]) {
+ u32 target = nla_get_u32(tb[TCA_CODEL_TARGET]);
+
+ q->params.target = ((u64)target * NSEC_PER_USEC) >> CODEL_SHIFT;
+ }
+
+ if (tb[TCA_CODEL_INTERVAL]) {
+ u32 interval = nla_get_u32(tb[TCA_CODEL_INTERVAL]);
+
+ q->params.interval = ((u64)interval * NSEC_PER_USEC) >> CODEL_SHIFT;
+ }
+
+ if (tb[TCA_CODEL_LIMIT])
+ sch->limit = nla_get_u32(tb[TCA_CODEL_LIMIT]);
+
+ if (tb[TCA_CODEL_ECN])
+ q->params.ecn = !!nla_get_u32(tb[TCA_CODEL_ECN]);
+
+ qlen = sch->q.qlen;
+ while (sch->q.qlen > sch->limit) {
+ struct sk_buff *skb = __skb_dequeue(&sch->q);
+
+ sch->qstats.backlog -= qdisc_pkt_len(skb);
+ qdisc_drop(skb, sch);
+ }
+ qdisc_tree_decrease_qlen(sch, qlen - sch->q.qlen);
+
+ sch_tree_unlock(sch);
+ return 0;
+}
+
+static int codel_init(struct Qdisc *sch, struct nlattr *opt)
+{
+ struct codel_sched_data *q = qdisc_priv(sch);
+
+ sch->limit = DEFAULT_CODEL_LIMIT;
+
+ codel_params_init(&q->params);
+ codel_vars_init(&q->vars);
+ codel_stats_init(&q->stats);
+
+ if (opt) {
+ int err = codel_change(sch, opt);
+
+ if (err)
+ return err;
+ }
+
+ if (sch->limit >= 1)
+ sch->flags |= TCQ_F_CAN_BYPASS;
+ else
+ sch->flags &= ~TCQ_F_CAN_BYPASS;
+
+ return 0;
+}
+
+static int codel_dump(struct Qdisc *sch, struct sk_buff *skb)
+{
+ struct codel_sched_data *q = qdisc_priv(sch);
+ struct nlattr *opts;
+
+ opts = nla_nest_start(skb, TCA_OPTIONS);
+ if (opts == NULL)
+ goto nla_put_failure;
+
+ if (nla_put_u32(skb, TCA_CODEL_TARGET,
+ codel_time_to_us(q->params.target)) ||
+ nla_put_u32(skb, TCA_CODEL_LIMIT,
+ sch->limit) ||
+ nla_put_u32(skb, TCA_CODEL_INTERVAL,
+ codel_time_to_us(q->params.interval)) ||
+ nla_put_u32(skb, TCA_CODEL_ECN,
+ q->params.ecn))
+ goto nla_put_failure;
+
+ return nla_nest_end(skb, opts);
+
+nla_put_failure:
+ nla_nest_cancel(skb, opts);
+ return -1;
+}
+
+static int codel_dump_stats(struct Qdisc *sch, struct gnet_dump *d)
+{
+ const struct codel_sched_data *q = qdisc_priv(sch);
+ struct tc_codel_xstats st = {
+ .maxpacket = q->stats.maxpacket,
+ .count = q->vars.count,
+ .lastcount = q->vars.lastcount,
+ .drop_overlimit = q->drop_overlimit,
+ .ldelay = codel_time_to_us(q->vars.ldelay),
+ .dropping = q->vars.dropping,
+ .ecn_mark = q->stats.ecn_mark,
+ };
+
+ if (q->vars.dropping) {
+ codel_tdiff_t delta = q->vars.drop_next - codel_get_time();
+
+ if (delta >= 0)
+ st.drop_next = codel_time_to_us(delta);
+ else
+ st.drop_next = -codel_time_to_us(-delta);
+ }
+
+ return gnet_stats_copy_app(d, &st, sizeof(st));
+}
+
+static void codel_reset(struct Qdisc *sch)
+{
+ struct codel_sched_data *q = qdisc_priv(sch);
+
+ qdisc_reset_queue(sch);
+ codel_vars_init(&q->vars);
+}
+
+static struct Qdisc_ops codel_qdisc_ops __read_mostly = {
+ .id = "codel",
+ .priv_size = sizeof(struct codel_sched_data),
+
+ .enqueue = codel_qdisc_enqueue,
+ .dequeue = codel_qdisc_dequeue,
+ .peek = qdisc_peek_dequeued,
+ .init = codel_init,
+ .reset = codel_reset,
+ .change = codel_change,
+ .dump = codel_dump,
+ .dump_stats = codel_dump_stats,
+ .owner = THIS_MODULE,
+};
+
+static int __init codel_module_init(void)
+{
+ return register_qdisc(&codel_qdisc_ops);
+}
+
+static void __exit codel_module_exit(void)
+{
+ unregister_qdisc(&codel_qdisc_ops);
+}
+
+module_init(codel_module_init)
+module_exit(codel_module_exit)
+
+MODULE_DESCRIPTION("Controlled Delay queue discipline");
+MODULE_AUTHOR("Dave Taht");
+MODULE_AUTHOR("Eric Dumazet");
+MODULE_LICENSE("Dual BSD/GPL");
^ permalink raw reply related
* Re: [PATCH 0/3] staging: delete duplicated files/functionality in rtl8712
From: Greg Kroah-Hartman @ 2012-05-10 18:11 UTC (permalink / raw)
To: Paul Gortmaker
Cc: linux-wireless-u79uwXL29TY76Z2rM5mHXA,
florian.c.schilhabel-gM/Ye1E23mwN+BqQ9rBEUg,
ali-H4aWS73dXuqdkR0RstYxLQ, netdev-u79uwXL29TY76Z2rM5mHXA,
Larry Finger
In-Reply-To: <20120510173139.GA16704-CWA4WttNNZF54TAoqtyWWQ@public.gmane.org>
On Thu, May 10, 2012 at 01:31:39PM -0400, Paul Gortmaker wrote:
> [Re: [PATCH 0/3] staging: delete duplicated files/functionality in rtl8712] On 10/05/2012 (Thu 09:54) Greg Kroah-Hartman wrote:
>
> [...]
>
> > Can you regenerate these with the full deletion content? There have
> > been some spelling fixes in these files, and your patches do not apply
> > due to them. I can hand-edit the patches if you regenerate it.
> >
> > Or if you rebase on the last linux-next tree, that will pick those
> > changes up and then I can apply these properly.
>
> I've rebased it onto your staging-next of today, so it should be
> hopefully seamless for you now.
Yes, that was even easier, now pulled and pushed out, thanks.
greg k-h
--
To unsubscribe from this list: send the line "unsubscribe linux-wireless" in
the body of a message to majordomo-u79uwXL29TY76Z2rM5mHXA@public.gmane.org
More majordomo info at http://vger.kernel.org/majordomo-info.html
^ permalink raw reply
* [RFC] net: remove NETIF_F_FRAGLIST from xgmac, ehea, axienet and ll_temac
From: Sebastian Andrzej Siewior @ 2012-05-10 18:20 UTC (permalink / raw)
To: netdev
Cc: Thadeu Lima de Souza Cascardo, Andy Gospodarek, Anirudha Sarangi,
John Linn, Rob Herring, Daniel Borkmann,
Sebastian Andrzej Siewior
There seem to be two ways how the data payload can be attached to a
sk_buff. That is simple kmalloc() and via "paged" fragments. The former
is simple. The latter attaches each fragment to sh_info->frags and
accounts total number of fragments in sh_info->nr_frags. Once
skb->data_len is non-zero then there should be page fragments available
and sh_info->nr_frags should not be zero anymore.
There is also a third way how data can be added to a skb, that is via
the sh_info->frag_list. This is a complete sk_buff (including data)
which is attached to the former skb. This one can also have linear
memory (kmalloc()) or not (->frags).
If the network driver which should transmit the skb does not support
one of this cool things, then the network core makes a linear skb which
contains only linear kmalloc() memory. If the driver supports the frags
(nr_frags is non zero) then it denotes this by setting the NETIF_F_SG
flag. If the driver is also able to walk via the ->frag_list then it
sets NETIF_F_FRAGLIST flag.
I remove the NETIF_F_FRAGLIST flag here from these drivers here because
I did not find any evidence that they look the ->frag_list at all. It
seems that they look only at sh_info->frags and handle only those pages.
Other drivers which set this flag like ifb don't look at the
->frag_list either but they pass the skb back to the network stack.
The virtio_net driver is using skb_to_sgvec() which gives it a sglist
including everything and tun is using skb_copy_datagram_const_iovec()
which is considering the ->frag_list as well.
So I found evidence that some drivers are doing it right, but for those
five I haven't found any.
Signed-off-by: Sebastian Andrzej Siewior <bigeasy@linutronix.de>
---
drivers/net/ethernet/calxeda/xgmac.c | 2 +-
drivers/net/ethernet/ibm/ehea/ehea_main.c | 2 +-
drivers/net/ethernet/tehuti/tehuti.c | 4 +---
drivers/net/ethernet/xilinx/ll_temac_main.c | 2 +-
drivers/net/ethernet/xilinx/xilinx_axienet_main.c | 2 +-
drivers/scsi/cxgbi/libcxgbi.c | 2 +-
6 files changed, 6 insertions(+), 8 deletions(-)
diff --git a/drivers/net/ethernet/calxeda/xgmac.c b/drivers/net/ethernet/calxeda/xgmac.c
index 11f667f..11fa3a5 100644
--- a/drivers/net/ethernet/calxeda/xgmac.c
+++ b/drivers/net/ethernet/calxeda/xgmac.c
@@ -1772,7 +1772,7 @@ static int xgmac_probe(struct platform_device *pdev)
if (device_can_wakeup(priv->device))
priv->wolopts = WAKE_MAGIC; /* Magic Frame as default */
- ndev->hw_features = NETIF_F_SG | NETIF_F_FRAGLIST | NETIF_F_HIGHDMA;
+ ndev->hw_features = NETIF_F_SG | NETIF_F_HIGHDMA;
if (readl(priv->base + XGMAC_DMA_HW_FEATURE) & DMA_HW_FEAT_TXCOESEL)
ndev->hw_features |= NETIF_F_IP_CSUM | NETIF_F_IPV6_CSUM |
NETIF_F_RXCSUM;
diff --git a/drivers/net/ethernet/ibm/ehea/ehea_main.c b/drivers/net/ethernet/ibm/ehea/ehea_main.c
index c9069a2..2231ad6 100644
--- a/drivers/net/ethernet/ibm/ehea/ehea_main.c
+++ b/drivers/net/ethernet/ibm/ehea/ehea_main.c
@@ -3029,7 +3029,7 @@ static struct ehea_port *ehea_setup_single_port(struct ehea_adapter *adapter,
dev->hw_features = NETIF_F_SG | NETIF_F_TSO
| NETIF_F_IP_CSUM | NETIF_F_HW_VLAN_TX | NETIF_F_LRO;
- dev->features = NETIF_F_SG | NETIF_F_FRAGLIST | NETIF_F_TSO
+ dev->features = NETIF_F_SG | NETIF_F_TSO
| NETIF_F_HIGHDMA | NETIF_F_IP_CSUM | NETIF_F_HW_VLAN_TX
| NETIF_F_HW_VLAN_RX | NETIF_F_HW_VLAN_FILTER
| NETIF_F_RXCSUM;
diff --git a/drivers/net/ethernet/tehuti/tehuti.c b/drivers/net/ethernet/tehuti/tehuti.c
index ad973ff..6c7e519 100644
--- a/drivers/net/ethernet/tehuti/tehuti.c
+++ b/drivers/net/ethernet/tehuti/tehuti.c
@@ -1994,9 +1994,7 @@ bdx_probe(struct pci_dev *pdev, const struct pci_device_id *ent)
ndev->irq = pdev->irq;
ndev->features = NETIF_F_IP_CSUM | NETIF_F_SG | NETIF_F_TSO
| NETIF_F_HW_VLAN_TX | NETIF_F_HW_VLAN_RX |
- NETIF_F_HW_VLAN_FILTER | NETIF_F_RXCSUM
- /*| NETIF_F_FRAGLIST */
- ;
+ NETIF_F_HW_VLAN_FILTER | NETIF_F_RXCSUM;
ndev->hw_features = NETIF_F_IP_CSUM | NETIF_F_SG |
NETIF_F_TSO | NETIF_F_HW_VLAN_TX;
diff --git a/drivers/net/ethernet/xilinx/ll_temac_main.c b/drivers/net/ethernet/xilinx/ll_temac_main.c
index d21591a..e804f1f 100644
--- a/drivers/net/ethernet/xilinx/ll_temac_main.c
+++ b/drivers/net/ethernet/xilinx/ll_temac_main.c
@@ -1020,7 +1020,7 @@ static int __devinit temac_of_probe(struct platform_device *op)
dev_set_drvdata(&op->dev, ndev);
SET_NETDEV_DEV(ndev, &op->dev);
ndev->flags &= ~IFF_MULTICAST; /* clear multicast */
- ndev->features = NETIF_F_SG | NETIF_F_FRAGLIST;
+ ndev->features = NETIF_F_SG;
ndev->netdev_ops = &temac_netdev_ops;
ndev->ethtool_ops = &temac_ethtool_ops;
#if 0
diff --git a/drivers/net/ethernet/xilinx/xilinx_axienet_main.c b/drivers/net/ethernet/xilinx/xilinx_axienet_main.c
index 9c365e1..fde716d 100644
--- a/drivers/net/ethernet/xilinx/xilinx_axienet_main.c
+++ b/drivers/net/ethernet/xilinx/xilinx_axienet_main.c
@@ -1494,7 +1494,7 @@ static int __devinit axienet_of_probe(struct platform_device *op)
SET_NETDEV_DEV(ndev, &op->dev);
ndev->flags &= ~IFF_MULTICAST; /* clear multicast */
- ndev->features = NETIF_F_SG | NETIF_F_FRAGLIST;
+ ndev->features = NETIF_F_SG;
ndev->netdev_ops = &axienet_netdev_ops;
ndev->ethtool_ops = &axienet_ethtool_ops;
diff --git a/drivers/scsi/cxgbi/libcxgbi.c b/drivers/scsi/cxgbi/libcxgbi.c
index d9253db..7968d4f 100644
--- a/drivers/scsi/cxgbi/libcxgbi.c
+++ b/drivers/scsi/cxgbi/libcxgbi.c
@@ -1968,7 +1968,7 @@ int cxgbi_conn_init_pdu(struct iscsi_task *task, unsigned int offset,
}
skb_put(skb, count + padlen);
} else {
- /* data fit into frag_list */
+ /* data fit into frags */
for (i = 0; i < tdata->nr_frags; i++) {
__skb_fill_page_desc(skb, i,
tdata->frags[i].page,
--
1.7.10
^ permalink raw reply related
* Re: [PATCH RFC 1/6] skbuff: support per-page destructors in copy_ubufs
From: Michael S. Tsirkin @ 2012-05-10 18:42 UTC (permalink / raw)
To: Ian Campbell; +Cc: David Miller, netdev@vger.kernel.org, eric.dumazet@gmail.com
In-Reply-To: <1336671977.14220.26.camel@zakaz.uk.xensource.com>
On Thu, May 10, 2012 at 06:46:17PM +0100, Ian Campbell wrote:
> On Mon, 2012-05-07 at 14:54 +0100, Michael S. Tsirkin wrote:
>
> > /* skb frags point to kernel buffers */
> > for (i = skb_shinfo(skb)->nr_frags; i > 0; i--) {
> > + skb_frag_t *f = &skb_shinfo(skb)->frags[i];
>
> This needs to be ....->frags[i - 1]
Good catch.
for (i = skb_shinfo(skb)->nr_frags - 1; i >= 0; i--) {
skb_frag_t *f = &skb_shinfo(skb)->frags[i];
would be a bit clearer though.
> otherwise you put every new frag one too high and don't do anything to
> frag 0, which leaves the old destructor pointer in place and leads to a
> double free.
>
> I think skb_frag_set_destructor and skb_copy_frag_destructor need to
> clear and propagate respectively (or maybe just clear in both cases) the
> destructor_arg field since it is otherwise not initialised when we set
> SKBTX_DEV_ZEROCOPY and that can trigger wrong behaviour in this
> function.
>
> Ian.
Agree, let's just clear it.
> > + if (unlikely((!uarg && !f->page.destructor)))
> > + continue;
> > __skb_fill_page_desc(skb, i-1, head, 0,
> > skb_shinfo(skb)->frags[i - 1].size);
> > head = (struct page *)head->private;
>
So the below on top then. I pushed these on
top of my zerocopy branch - can you confirm pls?
---
diff --git a/include/linux/skbuff.h b/include/linux/skbuff.h
index 930a50e..e52bc8d 100644
--- a/include/linux/skbuff.h
+++ b/include/linux/skbuff.h
@@ -1270,8 +1270,10 @@ static inline void skb_frag_set_destructor(struct sk_buff *skb, int i,
{
skb_frag_t *frag = &skb_shinfo(skb)->frags[i];
frag->page.destructor = destroy;
- if (destroy)
+ if (destroy) {
skb_shinfo(skb)->tx_flags |= SKBTX_DEV_ZEROCOPY;
+ skb_shinfo(skb)->destructor_arg = NULL;
+ }
}
/**
diff --git a/net/core/skbuff.c b/net/core/skbuff.c
index b7fc47e..453f621 100644
--- a/net/core/skbuff.c
+++ b/net/core/skbuff.c
@@ -753,12 +753,11 @@ int skb_copy_ubufs(struct sk_buff *skb, gfp_t gfp_mask)
uarg->callback(uarg);
/* skb frags point to kernel buffers */
- for (i = skb_shinfo(skb)->nr_frags; i > 0; i--) {
+ for (i = skb_shinfo(skb)->nr_frags - 1; i >= 0; i--) {
skb_frag_t *f = &skb_shinfo(skb)->frags[i];
if (unlikely((!uarg && !f->page.destructor)))
continue;
- __skb_fill_page_desc(skb, i-1, head, 0,
- skb_shinfo(skb)->frags[i - 1].size);
+ __skb_fill_page_desc(skb, i, head, 0, f->size);
head = (struct page *)head->private;
}
^ permalink raw reply related
* Re: [PATCH] netlink: connector: implement cn_netlink_reply
From: Ben Hutchings @ 2012-05-10 19:22 UTC (permalink / raw)
To: Alban Crequy
Cc: Evgeniy Polyakov, netdev, Vincent Sanders,
Javier Martinez Canillas, Rodrigo Moya
In-Reply-To: <20120510113908.5b79c5f3@chocolatine.cbg.collabora.co.uk>
On Thu, 2012-05-10 at 11:39 +0100, Alban Crequy wrote:
> On Thu, 10 May 2012 04:45:53 +0400,
> Evgeniy Polyakov <zbr@ioremap.net> wrote :
>
> > On Thu, May 10, 2012 at 01:20:48AM +0100, Ben Hutchings
> > (bhutchings@solarflare.com) wrote:
> > > On Wed, 2012-05-09 at 15:37 +0100, Alban Crequy wrote:
> > > > In a connector callback, it was not possible to reply to a
> > > > message only to a sender. This patch implements
> > > > cn_netlink_reply(). It uses the connector socket to send an
> > > > unicast netlink message back to the sender.
> > > [...]
> > >
> > > We try to avoid adding functions with no users. You'll need to
> > > submit the code that's intended to use this as well.
> >
> > I have no objection against this patch, but as correctly stated it is
> > useless without users. Alban, what is the code you want this
> > functionality to be used in? Do you plan to submit it? Can you submit
> > this change in the patch with your code?
>
> The code to use the feature is not yet ready for submission and we will
> add this patch to the front of that submission in due course.
>
> We are just being good community members and making each patch
> available early.
When you send a message with a subject beginning [PATCH] to a kernel
mailing list, it's generally assumed to be a request to the relevant
maintainer to apply that patch. But kernel API functions are added only
to support features that are exposed exernally, and tend to be removed
when there are no in-tree users.
You could of course send such patches as RFCs ([RFC][PATCH] in the
subject), so it's clear that you don't expect them to be applied yet.
Ben.
> Thanks for your feedback on this patch. Please let
> me know if I can add any reviewed-by.
--
Ben Hutchings, Staff Engineer, Solarflare
Not speaking for my employer; that's the marketing department's job.
They asked us to note that Solarflare product names are trademarked.
^ permalink raw reply
* cxgb4 mbox4 errors listening to multiple multicast addresses
From: Shawn Bohrer @ 2012-05-10 20:14 UTC (permalink / raw)
To: dm; +Cc: netdev
Hello, I'm testing some Chelsio T4 cards (T420-CR) and they seem to
reliably fail if I try to receiving multicast data on a number of
different addresses. Actually it they fail even before any data is
sent, so it must be simply subscribing to the multicast addresses that
is the problem. See below for an example.
$ uname -r
3.3.1
$ ethtool -i eth6
driver: cxgb4
version: 1.3.0-ko
firmware-version: 1.3.10.0, TP 0.1.7.0
bus-info: 0000:04:00.4
supports-statistics: yes
supports-test: no
supports-eeprom-access: yes
supports-register-dump: yes
I've got vlan824 configured to use eth6. So if with iperf I can do:
$ route add -net 224.0.0.0 netmask 240.0.0.0 dev vlan824
$ for x in $(seq 1 95); do iperf -s -u -B 224.4.4.${x} -p 500${x} & done
$ dmesg | grep cxgb4
[ 10.847870] cxgb4 0000:04:00.4: irq 77 for MSI/MSI-X
[ 10.847877] cxgb4 0000:04:00.4: irq 78 for MSI/MSI-X
[ 10.847882] cxgb4 0000:04:00.4: irq 79 for MSI/MSI-X
[ 10.847888] cxgb4 0000:04:00.4: irq 80 for MSI/MSI-X
[ 10.847893] cxgb4 0000:04:00.4: irq 81 for MSI/MSI-X
[ 10.847898] cxgb4 0000:04:00.4: irq 82 for MSI/MSI-X
[ 10.847903] cxgb4 0000:04:00.4: irq 83 for MSI/MSI-X
[ 10.847908] cxgb4 0000:04:00.4: irq 84 for MSI/MSI-X
[ 10.847913] cxgb4 0000:04:00.4: irq 85 for MSI/MSI-X
[ 10.847918] cxgb4 0000:04:00.4: irq 86 for MSI/MSI-X
[ 10.847923] cxgb4 0000:04:00.4: irq 87 for MSI/MSI-X
[ 10.847928] cxgb4 0000:04:00.4: irq 88 for MSI/MSI-X
[ 10.847933] cxgb4 0000:04:00.4: irq 89 for MSI/MSI-X
[ 10.847938] cxgb4 0000:04:00.4: irq 90 for MSI/MSI-X
[ 10.847943] cxgb4 0000:04:00.4: irq 91 for MSI/MSI-X
[ 10.847948] cxgb4 0000:04:00.4: irq 92 for MSI/MSI-X
[ 10.847953] cxgb4 0000:04:00.4: irq 93 for MSI/MSI-X
[ 10.847957] cxgb4 0000:04:00.4: irq 94 for MSI/MSI-X
[ 10.847962] cxgb4 0000:04:00.4: irq 95 for MSI/MSI-X
[ 10.847967] cxgb4 0000:04:00.4: irq 96 for MSI/MSI-X
[ 10.847972] cxgb4 0000:04:00.4: irq 97 for MSI/MSI-X
[ 10.847977] cxgb4 0000:04:00.4: irq 98 for MSI/MSI-X
[ 10.847981] cxgb4 0000:04:00.4: irq 99 for MSI/MSI-X
[ 10.847986] cxgb4 0000:04:00.4: irq 100 for MSI/MSI-X
[ 10.847991] cxgb4 0000:04:00.4: irq 101 for MSI/MSI-X
[ 10.847996] cxgb4 0000:04:00.4: irq 102 for MSI/MSI-X
[ 10.848001] cxgb4 0000:04:00.4: irq 103 for MSI/MSI-X
[ 10.848005] cxgb4 0000:04:00.4: irq 104 for MSI/MSI-X
[ 10.848010] cxgb4 0000:04:00.4: irq 105 for MSI/MSI-X
[ 10.848016] cxgb4 0000:04:00.4: irq 106 for MSI/MSI-X
[ 10.848021] cxgb4 0000:04:00.4: irq 107 for MSI/MSI-X
[ 10.848025] cxgb4 0000:04:00.4: irq 108 for MSI/MSI-X
[ 10.848032] cxgb4 0000:04:00.4: irq 109 for MSI/MSI-X
[ 10.848036] cxgb4 0000:04:00.4: irq 110 for MSI/MSI-X
[ 10.848041] cxgb4 0000:04:00.4: irq 111 for MSI/MSI-X
[ 10.848046] cxgb4 0000:04:00.4: irq 112 for MSI/MSI-X
[ 10.848051] cxgb4 0000:04:00.4: irq 113 for MSI/MSI-X
[ 10.848055] cxgb4 0000:04:00.4: irq 114 for MSI/MSI-X
[ 10.848060] cxgb4 0000:04:00.4: irq 115 for MSI/MSI-X
[ 10.848065] cxgb4 0000:04:00.4: irq 116 for MSI/MSI-X
[ 10.848069] cxgb4 0000:04:00.4: irq 117 for MSI/MSI-X
[ 10.848074] cxgb4 0000:04:00.4: irq 118 for MSI/MSI-X
[ 10.848079] cxgb4 0000:04:00.4: irq 119 for MSI/MSI-X
[ 10.848083] cxgb4 0000:04:00.4: irq 120 for MSI/MSI-X
[ 10.848088] cxgb4 0000:04:00.4: irq 121 for MSI/MSI-X
[ 10.848093] cxgb4 0000:04:00.4: irq 122 for MSI/MSI-X
[ 10.848098] cxgb4 0000:04:00.4: irq 123 for MSI/MSI-X
[ 10.848103] cxgb4 0000:04:00.4: irq 124 for MSI/MSI-X
[ 10.848107] cxgb4 0000:04:00.4: irq 125 for MSI/MSI-X
[ 10.848112] cxgb4 0000:04:00.4: irq 126 for MSI/MSI-X
[ 10.848116] cxgb4 0000:04:00.4: irq 127 for MSI/MSI-X
[ 10.848121] cxgb4 0000:04:00.4: irq 128 for MSI/MSI-X
[ 10.848480] cxgb4 0000:04:00.4: eth4: Chelsio T420-LL-CR rev 2 10GBASE-R SFP+ RNIC PCIe x8 5 GT/s MSI-X
[ 10.848482] cxgb4 0000:04:00.4: eth4: S/N: PT18110977, E/C: 01234567890123
[ 10.848714] cxgb4 0000:04:00.4: eth5: Chelsio T420-LL-CR rev 2 10GBASE-R SFP+ RNIC PCIe x8 5 GT/s MSI-X
[ 10.848716] cxgb4 0000:04:00.4: eth5: S/N: PT18110977, E/C: 01234567890123
[ 10.850726] iw_cxgb4:Chelsio T4 RDMA Driver - version 0.1
[ 17.958293] iw_cxgb4:0000:04:00.4: Up
[ 17.979873] cxgb4 0000:04:00.4: eth6: link up, 10Gbps, full-duplex, Tx/Rx PAUSE
[ 17.979876] cxgb4 0000:04:00.4: eth6: passive DA module inserted
[ 685.517044] cxgb4 0000:04:00.4: mbox 4: 150004c400000c02 800f01005e04040f 83ff01005e040401 0 0 0 0 0
[ 685.529179] cxgb4 0000:04:00.4: mbox 4: 150004c400000c02 800f01005e04040f 83ff01005e040401 0 0 0 0 0
[ 685.542396] cxgb4 0000:04:00.4: mbox 4: 150004c400000c02 800f01005e04040f 83ff01005e040401 83ff01005e040403 0 0 0 0
[ 685.555827] cxgb4 0000:04:00.4: mbox 4: 150004c400000c02 800f01005e04040f 83ff01005e040401 83ff01005e040403 0 0 0 0
[ 685.570377] cxgb4 0000:04:00.4: mbox 4: 150004c400000c03 800f01005e04040f 83ff01005e040401 83ff01005e040403 83ff01005e040412 0 0 0
[ 685.585110] cxgb4 0000:04:00.4: mbox 4: 150004c400000c03 800f01005e04040f 83ff01005e040401 83ff01005e040403 83ff01005e040412 0 0 0
[ 685.600915] cxgb4 0000:04:00.4: mbox 4: 150004c400000c03 800f01005e04040f 83ff01005e040401 83ff01005e040403 83ff01005e040412 83ff01005e04040e 0 0
[ 685.616945] cxgb4 0000:04:00.4: mbox 4: 150004c400000c03 800f01005e04040f 83ff01005e040401 83ff01005e040403 83ff01005e040412 83ff01005e04040e 0 0
[ 685.633943] cxgb4 0000:04:00.4: mbox 4: 150004c400000c04 800f01005e04040f 83ff01005e040401 83ff01005e040403 83ff01005e040412 83ff01005e04040e 83ff01005e040425 0
[ 685.651269] cxgb4 0000:04:00.4: mbox 4: 150004c400000c04 800f01005e04040f 83ff01005e040401 83ff01005e040403 83ff01005e040412 83ff01005e04040e 83ff01005e040425 0
[ 685.669648] cxgb4 0000:04:00.4: mbox 4: 150004c400000c04 800f01005e04040f 83ff01005e040401 83ff01005e040403 83ff01005e040412 83ff01005e04040e 83ff01005e040425 83ff01005e040413
[ 685.688434] cxgb4 0000:04:00.4: mbox 4: 150004c400000c04 800f01005e04040f 83ff01005e040401 83ff01005e040403 83ff01005e040412 83ff01005e04040e 83ff01005e040425 83ff01005e040413
[ 685.708128] cxgb4 0000:04:00.4: mbox 4: 150004c400000c04 800f01005e04040f 83ff01005e040401 83ff01005e040403 83ff01005e040412 83ff01005e04040e 83ff01005e040425 83ff01005e040413
[ 685.726910] cxgb4 0000:04:00.4: mbox 4: 150004c400000c04 800f01005e04040f 83ff01005e040401 83ff01005e040403 83ff01005e040412 83ff01005e04040e 83ff01005e040425 83ff01005e040413
[ 685.746620] cxgb4 0000:04:00.4: mbox 4: 150004c400000c04 800f01005e04040f 83ff01005e040401 83ff01005e040403 83ff01005e040412 83ff01005e04040e 83ff01005e040425 83ff01005e040413
[ 685.765403] cxgb4 0000:04:00.4: mbox 4: 150004c400000c04 800f01005e04040f 83ff01005e040401 83ff01005e040403 83ff01005e040412 83ff01005e04040e 83ff01005e040425 83ff01005e040413
[ 685.785103] cxgb4 0000:04:00.4: mbox 4: 150004c400000c04 800f01005e04040f 83ff01005e040401 83ff01005e040403 83ff01005e040412 83ff01005e04040e 83ff01005e040425 83ff01005e040413
[ 685.803889] cxgb4 0000:04:00.4: mbox 4: 150004c400000c04 800f01005e04040f 83ff01005e040401 83ff01005e040403 83ff01005e040412 83ff01005e04040e 83ff01005e040425 83ff01005e040413
[ 685.823559] cxgb4 0000:04:00.4: mbox 4: 150004c400000c04 800f01005e04040f 83ff01005e040401 83ff01005e040403 83ff01005e040412 83ff01005e04040e 83ff01005e040425 83ff01005e040413
[ 685.842345] cxgb4 0000:04:00.4: mbox 4: 150004c400000c04 800f01005e04040f 83ff01005e040401 83ff01005e040403 83ff01005e040412 83ff01005e04040e 83ff01005e040425 83ff01005e040413
[ 685.862060] cxgb4 0000:04:00.4: mbox 4: 150004c400000c04 800f01005e04040f 83ff01005e040401 83ff01005e040403 83ff01005e040412 83ff01005e04040e 83ff01005e040425 83ff01005e040413
[ 685.880845] cxgb4 0000:04:00.4: mbox 4: 150004c400000c04 800f01005e04040f 83ff01005e040401 83ff01005e040403 83ff01005e040412 83ff01005e04040e 83ff01005e040425 83ff01005e040413
[ 685.900669] cxgb4 0000:04:00.4: mbox 4: 150004c400000c04 800f01005e04040f 83ff01005e040401 83ff01005e040403 83ff01005e040412 83ff01005e04040e 83ff01005e040425 83ff01005e040413
[ 685.919454] cxgb4 0000:04:00.4: mbox 4: 150004c400000c04 800f01005e04040f 83ff01005e040401 83ff01005e040403 83ff01005e040412 83ff01005e04040e 83ff01005e040425 83ff01005e040413
[ 685.939104] cxgb4 0000:04:00.4: mbox 4: 150004c400000c04 800f01005e04040f 83ff01005e040401 83ff01005e040403 83ff01005e040412 83ff01005e04040e 83ff01005e040425 83ff01005e040413
[ 685.957888] cxgb4 0000:04:00.4: mbox 4: 150004c400000c04 800f01005e04040f 83ff01005e040401 83ff01005e040403 83ff01005e040412 83ff01005e04040e 83ff01005e040425 83ff01005e040413
[ 685.977570] cxgb4 0000:04:00.4: mbox 4: 150004c400000c04 800f01005e04040f 83ff01005e040401 83ff01005e040403 83ff01005e040412 83ff01005e04040e 83ff01005e040425 83ff01005e040413
[ 685.996352] cxgb4 0000:04:00.4: mbox 4: 150004c400000c04 800f01005e04040f 83ff01005e040401 83ff01005e040403 83ff01005e040412 83ff01005e04040e 83ff01005e040425 83ff01005e040413
[ 686.016043] cxgb4 0000:04:00.4: mbox 4: 150004c400000c04 800f01005e04040f 83ff01005e040401 83ff01005e040403 83ff01005e040412 83ff01005e04040e 83ff01005e040425 83ff01005e040413
[ 686.034827] cxgb4 0000:04:00.4: mbox 4: 150004c400000c04 800f01005e04040f 83ff01005e040401 83ff01005e040403 83ff01005e040412 83ff01005e04040e 83ff01005e040425 83ff01005e040413
[ 686.054675] cxgb4 0000:04:00.4: mbox 4: 150004c400000c04 800f01005e04040f 83ff01005e040401 83ff01005e040403 83ff01005e040412 83ff01005e04040e 83ff01005e040425 83ff01005e040413
[ 686.073462] cxgb4 0000:04:00.4: mbox 4: 150004c400000c04 800f01005e04040f 83ff01005e040401 83ff01005e040403 83ff01005e040412 83ff01005e04040e 83ff01005e040425 83ff01005e040413
[ 686.093201] cxgb4 0000:04:00.4: mbox 4: 150004c400000c04 800f01005e04040f 83ff01005e040401 83ff01005e040403 83ff01005e040412 83ff01005e04040e 83ff01005e040425 83ff01005e040413
[ 686.111984] cxgb4 0000:04:00.4: mbox 4: 150004c400000c04 800f01005e04040f 83ff01005e040401 83ff01005e040403 83ff01005e040412 83ff01005e04040e 83ff01005e040425 83ff01005e040413
[ 686.131681] cxgb4 0000:04:00.4: mbox 4: 150004c400000c04 800f01005e04040f 83ff01005e040401 83ff01005e040403 83ff01005e040412 83ff01005e04040e 83ff01005e040425 83ff01005e040413
[ 686.150483] cxgb4 0000:04:00.4: mbox 4: 150004c400000c04 800f01005e04040f 83ff01005e040401 83ff01005e040403 83ff01005e040412 83ff01005e04040e 83ff01005e040425 83ff01005e040413
[ 686.170134] cxgb4 0000:04:00.4: mbox 4: 150004c400000c04 800f01005e04040f 83ff01005e040401 83ff01005e040403 83ff01005e040412 83ff01005e04040e 83ff01005e040425 83ff01005e040413
[ 686.188919] cxgb4 0000:04:00.4: mbox 4: 150004c400000c04 800f01005e04040f 83ff01005e040401 83ff01005e040403 83ff01005e040412 83ff01005e04040e 83ff01005e040425 83ff01005e040413
[ 686.208593] cxgb4 0000:04:00.4: mbox 4: 150004c400000c04 800f01005e04040f 83ff01005e040401 83ff01005e040403 83ff01005e040412 83ff01005e04040e 83ff01005e040425 83ff01005e040413
[ 686.227376] cxgb4 0000:04:00.4: mbox 4: 150004c400000c04 800f01005e04040f 83ff01005e040401 83ff01005e040403 83ff01005e040412 83ff01005e04040e 83ff01005e040425 83ff01005e040413
[ 686.247074] cxgb4 0000:04:00.4: mbox 4: 150004c400000c04 800f01005e04040f 83ff01005e040401 83ff01005e040403 83ff01005e040412 83ff01005e04040e 83ff01005e040425 83ff01005e040413
[ 686.265857] cxgb4 0000:04:00.4: mbox 4: 150004c400000c04 800f01005e04040f 83ff01005e040401 83ff01005e040403 83ff01005e040412 83ff01005e04040e 83ff01005e040425 83ff01005e040413
[ 686.285532] cxgb4 0000:04:00.4: mbox 4: 150004c400000c04 800f01005e04040f 83ff01005e040401 83ff01005e040403 83ff01005e040412 83ff01005e04040e 83ff01005e040425 83ff01005e040413
[ 686.304318] cxgb4 0000:04:00.4: mbox 4: 150004c400000c04 800f01005e04040f 83ff01005e040401 83ff01005e040403 83ff01005e040412 83ff01005e04040e 83ff01005e040425 83ff01005e040413
[ 686.323965] cxgb4 0000:04:00.4: mbox 4: 150004c400000c04 800f01005e04040f 83ff01005e040401 83ff01005e040403 83ff01005e040412 83ff01005e04040e 83ff01005e040425 83ff01005e040413
[ 686.342749] cxgb4 0000:04:00.4: mbox 4: 150004c400000c04 800f01005e04040f 83ff01005e040401 83ff01005e040403 83ff01005e040412 83ff01005e04040e 83ff01005e040425 83ff01005e040413
[ 686.362423] cxgb4 0000:04:00.4: mbox 4: 150004c400000c04 800f01005e04040f 83ff01005e040401 83ff01005e040403 83ff01005e040412 83ff01005e04040e 83ff01005e040425 83ff01005e040413
[ 686.381208] cxgb4 0000:04:00.4: mbox 4: 150004c400000c04 800f01005e04040f 83ff01005e040401 83ff01005e040403 83ff01005e040412 83ff01005e04040e 83ff01005e040425 83ff01005e040413
[ 686.400882] cxgb4 0000:04:00.4: mbox 4: 150004c400000c04 800f01005e04040f 83ff01005e040401 83ff01005e040403 83ff01005e040412 83ff01005e04040e 83ff01005e040425 83ff01005e040413
[ 686.419686] cxgb4 0000:04:00.4: mbox 4: 150004c400000c04 800f01005e04040f 83ff01005e040401 83ff01005e040403 83ff01005e040412 83ff01005e04040e 83ff01005e040425 83ff01005e040413
[ 686.439341] cxgb4 0000:04:00.4: mbox 4: 150004c400000c04 800f01005e04040f 83ff01005e040401 83ff01005e040403 83ff01005e040412 83ff01005e04040e 83ff01005e040425 83ff01005e040413
[ 686.458129] cxgb4 0000:04:00.4: mbox 4: 150004c400000c04 800f01005e04040f 83ff01005e040401 83ff01005e040403 83ff01005e040412 83ff01005e04040e 83ff01005e040425 83ff01005e040413
[ 686.477762] cxgb4 0000:04:00.4: mbox 4: 150004c400000c04 800f01005e04040f 83ff01005e040401 83ff01005e040403 83ff01005e040412 83ff01005e04040e 83ff01005e040425 83ff01005e040413
[ 686.496542] cxgb4 0000:04:00.4: mbox 4: 150004c400000c04 800f01005e04040f 83ff01005e040401 83ff01005e040403 83ff01005e040412 83ff01005e04040e 83ff01005e040425 83ff01005e040413
[ 686.516173] cxgb4 0000:04:00.4: mbox 4: 150004c400000c04 800f01005e04040f 83ff01005e040401 83ff01005e040403 83ff01005e040412 83ff01005e04040e 83ff01005e040425 83ff01005e040413
[ 686.534959] cxgb4 0000:04:00.4: mbox 4: 150004c400000c04 800f01005e04040f 83ff01005e040401 83ff01005e040403 83ff01005e040412 83ff01005e04040e 83ff01005e040425 83ff01005e040413
[ 686.554585] cxgb4 0000:04:00.4: mbox 4: 150004c400000c04 800f01005e04040f 83ff01005e040401 83ff01005e040403 83ff01005e040412 83ff01005e04040e 83ff01005e040425 83ff01005e040413
[ 686.573368] cxgb4 0000:04:00.4: mbox 4: 150004c400000c04 800f01005e04040f 83ff01005e040401 83ff01005e040403 83ff01005e040412 83ff01005e04040e 83ff01005e040425 83ff01005e040413
[ 686.593006] cxgb4 0000:04:00.4: mbox 4: 150004c400000c04 800f01005e04040f 83ff01005e040401 83ff01005e040403 83ff01005e040412 83ff01005e04040e 83ff01005e040425 83ff01005e040413
[ 686.611788] cxgb4 0000:04:00.4: mbox 4: 150004c400000c04 800f01005e04040f 83ff01005e040401 83ff01005e040403 83ff01005e040412 83ff01005e04040e 83ff01005e040425 83ff01005e040413
[ 686.631453] cxgb4 0000:04:00.4: mbox 4: 150004c400000c04 800f01005e04040f 83ff01005e040401 83ff01005e040403 83ff01005e040412 83ff01005e04040e 83ff01005e040425 83ff01005e040413
[ 686.650237] cxgb4 0000:04:00.4: mbox 4: 150004c400000c04 800f01005e04040f 83ff01005e040401 83ff01005e040403 83ff01005e040412 83ff01005e04040e 83ff01005e040425 83ff01005e040413
[ 686.669893] cxgb4 0000:04:00.4: mbox 4: 150004c400000c04 800f01005e04040f 83ff01005e040401 83ff01005e040403 83ff01005e040412 83ff01005e04040e 83ff01005e040425 83ff01005e040413
[ 686.688680] cxgb4 0000:04:00.4: mbox 4: 150004c400000c04 800f01005e04040f 83ff01005e040401 83ff01005e040403 83ff01005e040412 83ff01005e04040e 83ff01005e040425 83ff01005e040413
[ 686.708360] cxgb4 0000:04:00.4: mbox 4: 150004c400000c04 800f01005e04040f 83ff01005e040401 83ff01005e040403 83ff01005e040412 83ff01005e04040e 83ff01005e040425 83ff01005e040413
[ 686.727145] cxgb4 0000:04:00.4: mbox 4: 150004c400000c04 800f01005e04040f 83ff01005e040401 83ff01005e040403 83ff01005e040412 83ff01005e04040e 83ff01005e040425 83ff01005e040413
[ 686.746777] cxgb4 0000:04:00.4: mbox 4: 150004c400000c04 800f01005e04040f 83ff01005e040401 83ff01005e040403 83ff01005e040412 83ff01005e04040e 83ff01005e040425 83ff01005e040413
[ 686.765562] cxgb4 0000:04:00.4: mbox 4: 150004c400000c04 800f01005e04040f 83ff01005e040401 83ff01005e040403 83ff01005e040412 83ff01005e04040e 83ff01005e040425 83ff01005e040413
[ 686.785242] cxgb4 0000:04:00.4: mbox 4: 150004c400000c04 800f01005e04040f 83ff01005e040401 83ff01005e040403 83ff01005e040412 83ff01005e04040e 83ff01005e040425 83ff01005e040413
[ 686.804028] cxgb4 0000:04:00.4: mbox 4: 150004c400000c04 800f01005e04040f 83ff01005e040401 83ff01005e040403 83ff01005e040412 83ff01005e04040e 83ff01005e040425 83ff01005e040413
[ 686.824719] cxgb4 0000:04:00.4: mbox 4: 150004c400000c04 800f01005e04040f 83ff01005e040401 83ff01005e040403 83ff01005e040412 83ff01005e04040e 83ff01005e040425 83ff01005e040413
[ 686.843501] cxgb4 0000:04:00.4: mbox 4: 150004c400000c04 800f01005e04040f 83ff01005e040401 83ff01005e040403 83ff01005e040412 83ff01005e04040e 83ff01005e040425 83ff01005e040413
[ 686.863170] cxgb4 0000:04:00.4: mbox 4: 150004c400000c04 800f01005e04040f 83ff01005e040401 83ff01005e040403 83ff01005e040412 83ff01005e04040e 83ff01005e040425 83ff01005e040413
[ 686.881953] cxgb4 0000:04:00.4: mbox 4: 150004c400000c04 800f01005e04040f 83ff01005e040401 83ff01005e040403 83ff01005e040412 83ff01005e04040e 83ff01005e040425 83ff01005e040413
[ 686.901648] cxgb4 0000:04:00.4: mbox 4: 150004c400000c04 800f01005e04040f 83ff01005e040401 83ff01005e040403 83ff01005e040412 83ff01005e04040e 83ff01005e040425 83ff01005e040413
[ 686.920429] cxgb4 0000:04:00.4: mbox 4: 150004c400000c04 800f01005e04040f 83ff01005e040401 83ff01005e040403 83ff01005e040412 83ff01005e04040e 83ff01005e040425 83ff01005e040413
[ 686.940061] cxgb4 0000:04:00.4: mbox 4: 150004c400000c04 800f01005e04040f 83ff01005e040401 83ff01005e040403 83ff01005e040412 83ff01005e04040e 83ff01005e040425 83ff01005e040413
[ 686.958854] cxgb4 0000:04:00.4: mbox 4: 150004c400000c04 800f01005e04040f 83ff01005e040401 83ff01005e040403 83ff01005e040412 83ff01005e04040e 83ff01005e040425 83ff01005e040413
[ 686.978518] cxgb4 0000:04:00.4: mbox 4: 150004c400000c04 800f01005e04040f 83ff01005e040401 83ff01005e040403 83ff01005e040412 83ff01005e04040e 83ff01005e040425 83ff01005e040413
[ 686.997301] cxgb4 0000:04:00.4: mbox 4: 150004c400000c04 800f01005e04040f 83ff01005e040401 83ff01005e040403 83ff01005e040412 83ff01005e04040e 83ff01005e040425 83ff01005e040413
[ 687.016940] cxgb4 0000:04:00.4: mbox 4: 150004c400000c04 800f01005e04040f 83ff01005e040401 83ff01005e040403 83ff01005e040412 83ff01005e04040e 83ff01005e040425 83ff01005e040413
[ 687.035726] cxgb4 0000:04:00.4: mbox 4: 150004c400000c04 800f01005e04040f 83ff01005e040401 83ff01005e040403 83ff01005e040412 83ff01005e04040e 83ff01005e040425 83ff01005e040413
[ 687.055372] cxgb4 0000:04:00.4: mbox 4: 150004c400000c04 800f01005e04040f 83ff01005e040401 83ff01005e040403 83ff01005e040412 83ff01005e04040e 83ff01005e040425 83ff01005e040413
[ 687.074157] cxgb4 0000:04:00.4: mbox 4: 150004c400000c04 800f01005e04040f 83ff01005e040401 83ff01005e040403 83ff01005e040412 83ff01005e04040e 83ff01005e040425 83ff01005e040413
[ 687.093794] cxgb4 0000:04:00.4: mbox 4: 150004c400000c04 800f01005e04040f 83ff01005e040401 83ff01005e040403 83ff01005e040412 83ff01005e04040e 83ff01005e040425 83ff01005e040413
[ 687.112576] cxgb4 0000:04:00.4: mbox 4: 150004c400000c04 800f01005e04040f 83ff01005e040401 83ff01005e040403 83ff01005e040412 83ff01005e04040e 83ff01005e040425 83ff01005e040413
[ 687.132207] cxgb4 0000:04:00.4: mbox 4: 150004c400000c04 800f01005e04040f 83ff01005e040401 83ff01005e040403 83ff01005e040412 83ff01005e04040e 83ff01005e040425 83ff01005e040413
[ 687.150988] cxgb4 0000:04:00.4: mbox 4: 150004c400000c04 800f01005e04040f 83ff01005e040401 83ff01005e040403 83ff01005e040412 83ff01005e04040e 83ff01005e040425 83ff01005e040413
[ 687.170634] cxgb4 0000:04:00.4: mbox 4: 150004c400000c04 800f01005e04040f 83ff01005e040401 83ff01005e040403 83ff01005e040412 83ff01005e04040e 83ff01005e040425 83ff01005e040413
[ 687.189421] cxgb4 0000:04:00.4: mbox 4: 150004c400000c04 800f01005e04040f 83ff01005e040401 83ff01005e040403 83ff01005e040412 83ff01005e04040e 83ff01005e040425 83ff01005e040413
[ 687.209058] cxgb4 0000:04:00.4: mbox 4: 150004c400000c04 800f01005e04040f 83ff01005e040401 83ff01005e040403 83ff01005e040412 83ff01005e04040e 83ff01005e040425 83ff01005e040413
[ 687.227856] cxgb4 0000:04:00.4: mbox 4: 150004c400000c04 800f01005e04040f 83ff01005e040401 83ff01005e040403 83ff01005e040412 83ff01005e04040e 83ff01005e040425 83ff01005e040413
[ 687.247488] cxgb4 0000:04:00.4: mbox 4: 150004c400000c04 800f01005e04040f 83ff01005e040401 83ff01005e040403 83ff01005e040412 83ff01005e04040e 83ff01005e040425 83ff01005e040413
[ 687.266267] cxgb4 0000:04:00.4: mbox 4: 150004c400000c04 800f01005e04040f 83ff01005e040401 83ff01005e040403 83ff01005e040412 83ff01005e04040e 83ff01005e040425 83ff01005e040413
[ 687.285905] cxgb4 0000:04:00.4: mbox 4: 150004c400000c04 800f01005e04040f 83ff01005e040401 83ff01005e040403 83ff01005e040412 83ff01005e04040e 83ff01005e040425 83ff01005e040413
[ 687.304689] cxgb4 0000:04:00.4: mbox 4: 150004c400000c04 800f01005e04040f 83ff01005e040401 83ff01005e040403 83ff01005e040412 83ff01005e04040e 83ff01005e040425 83ff01005e040413
[ 687.324333] cxgb4 0000:04:00.4: mbox 4: 150004c400000c04 800f01005e04040f 83ff01005e040401 83ff01005e040403 83ff01005e040412 83ff01005e04040e 83ff01005e040425 83ff01005e040413
[ 687.343120] cxgb4 0000:04:00.4: mbox 4: 150004c400000c04 800f01005e04040f 83ff01005e040401 83ff01005e040403 83ff01005e040412 83ff01005e04040e 83ff01005e040425 83ff01005e040413
[ 687.362756] cxgb4 0000:04:00.4: mbox 4: 150004c400000c04 800f01005e04040f 83ff01005e040401 83ff01005e040403 83ff01005e040412 83ff01005e04040e 83ff01005e040425 83ff01005e040413
[ 687.381539] cxgb4 0000:04:00.4: mbox 4: 150004c400000c04 800f01005e04040f 83ff01005e040401 83ff01005e040403 83ff01005e040412 83ff01005e04040e 83ff01005e040425 83ff01005e040413
[ 687.401179] cxgb4 0000:04:00.4: mbox 4: 150004c400000c04 800f01005e04040f 83ff01005e040401 83ff01005e040403 83ff01005e040412 83ff01005e04040e 83ff01005e040425 83ff01005e040413
[ 687.419964] cxgb4 0000:04:00.4: mbox 4: 150004c400000c04 800f01005e04040f 83ff01005e040401 83ff01005e040403 83ff01005e040412 83ff01005e04040e 83ff01005e040425 83ff01005e040413
[ 687.439623] cxgb4 0000:04:00.4: mbox 4: 150004c400000c04 800f01005e04040f 83ff01005e040401 83ff01005e040403 83ff01005e040412 83ff01005e04040e 83ff01005e040425 83ff01005e040413
[ 687.458407] cxgb4 0000:04:00.4: mbox 4: 150004c400000c04 800f01005e04040f 83ff01005e040401 83ff01005e040403 83ff01005e040412 83ff01005e04040e 83ff01005e040425 83ff01005e040413
[ 687.478076] cxgb4 0000:04:00.4: mbox 4: 150004c400000c04 800f01005e04040f 83ff01005e040401 83ff01005e040403 83ff01005e040412 83ff01005e04040e 83ff01005e040425 83ff01005e040413
[ 687.496866] cxgb4 0000:04:00.4: mbox 4: 150004c400000c04 800f01005e04040f 83ff01005e040401 83ff01005e040403 83ff01005e040412 83ff01005e04040e 83ff01005e040425 83ff01005e040413
[ 687.516497] cxgb4 0000:04:00.4: mbox 4: 150004c400000c04 800f01005e04040f 83ff01005e040401 83ff01005e040403 83ff01005e040412 83ff01005e04040e 83ff01005e040425 83ff01005e040413
[ 687.535280] cxgb4 0000:04:00.4: mbox 4: 150004c400000c04 800f01005e04040f 83ff01005e040401 83ff01005e040403 83ff01005e040412 83ff01005e04040e 83ff01005e040425 83ff01005e040413
[ 687.554924] cxgb4 0000:04:00.4: mbox 4: 150004c400000c04 800f01005e04040f 83ff01005e040401 83ff01005e040403 83ff01005e040412 83ff01005e04040e 83ff01005e040425 83ff01005e040413
[ 687.573713] cxgb4 0000:04:00.4: mbox 4: 150004c400000c04 800f01005e04040f 83ff01005e040401 83ff01005e040403 83ff01005e040412 83ff01005e04040e 83ff01005e040425 83ff01005e040413
[ 687.593351] cxgb4 0000:04:00.4: mbox 4: 150004c400000c04 800f01005e04040f 83ff01005e040401 83ff01005e040403 83ff01005e040412 83ff01005e04040e 83ff01005e040425 83ff01005e040413
[ 687.612138] cxgb4 0000:04:00.4: mbox 4: 150004c400000c04 800f01005e04040f 83ff01005e040401 83ff01005e040403 83ff01005e040412 83ff01005e04040e 83ff01005e040425 83ff01005e040413
[ 687.631793] cxgb4 0000:04:00.4: mbox 4: 150004c400000c04 800f01005e04040f 83ff01005e040401 83ff01005e040403 83ff01005e040412 83ff01005e04040e 83ff01005e040425 83ff01005e040413
[ 687.650573] cxgb4 0000:04:00.4: mbox 4: 150004c400000c04 800f01005e04040f 83ff01005e040401 83ff01005e040403 83ff01005e040412 83ff01005e04040e 83ff01005e040425 83ff01005e040413
[ 687.670222] cxgb4 0000:04:00.4: mbox 4: 150004c400000c04 800f01005e04040f 83ff01005e040401 83ff01005e040403 83ff01005e040412 83ff01005e04040e 83ff01005e040425 83ff01005e040413
[ 687.689008] cxgb4 0000:04:00.4: mbox 4: 150004c400000c04 800f01005e04040f 83ff01005e040401 83ff01005e040403 83ff01005e040412 83ff01005e04040e 83ff01005e040425 83ff01005e040413
[ 687.708652] cxgb4 0000:04:00.4: mbox 4: 150004c400000c04 800f01005e04040f 83ff01005e040401 83ff01005e040403 83ff01005e040412 83ff01005e04040e 83ff01005e040425 83ff01005e040413
[ 687.727437] cxgb4 0000:04:00.4: mbox 4: 150004c400000c04 800f01005e04040f 83ff01005e040401 83ff01005e040403 83ff01005e040412 83ff01005e04040e 83ff01005e040425 83ff01005e040413
[ 687.747071] cxgb4 0000:04:00.4: mbox 4: 150004c400000c04 800f01005e04040f 83ff01005e040401 83ff01005e040403 83ff01005e040412 83ff01005e04040e 83ff01005e040425 83ff01005e040413
[ 687.765869] cxgb4 0000:04:00.4: mbox 4: 150004c400000c04 800f01005e04040f 83ff01005e040401 83ff01005e040403 83ff01005e040412 83ff01005e04040e 83ff01005e040425 83ff01005e040413
[ 687.785510] cxgb4 0000:04:00.4: mbox 4: 150004c400000c04 800f01005e04040f 83ff01005e040401 83ff01005e040403 83ff01005e040412 83ff01005e04040e 83ff01005e040425 83ff01005e040413
[ 687.804295] cxgb4 0000:04:00.4: mbox 4: 150004c400000c04 800f01005e04040f 83ff01005e040401 83ff01005e040403 83ff01005e040412 83ff01005e04040e 83ff01005e040425 83ff01005e040413
[ 687.823948] cxgb4 0000:04:00.4: mbox 4: 150004c400000c04 800f01005e04040f 83ff01005e040401 83ff01005e040403 83ff01005e040412 83ff01005e04040e 83ff01005e040425 83ff01005e040413
[ 687.842733] cxgb4 0000:04:00.4: mbox 4: 150004c400000c04 800f01005e04040f 83ff01005e040401 83ff01005e040403 83ff01005e040412 83ff01005e04040e 83ff01005e040425 83ff01005e040413
[ 687.862379] cxgb4 0000:04:00.4: mbox 4: 150004c400000c04 800f01005e04040f 83ff01005e040401 83ff01005e040403 83ff01005e040412 83ff01005e04040e 83ff01005e040425 83ff01005e040413
[ 687.881165] cxgb4 0000:04:00.4: mbox 4: 150004c400000c04 800f01005e04040f 83ff01005e040401 83ff01005e040403 83ff01005e040412 83ff01005e04040e 83ff01005e040425 83ff01005e040413
[ 687.900829] cxgb4 0000:04:00.4: mbox 4: 150004c400000c04 800f01005e04040f 83ff01005e040401 83ff01005e040403 83ff01005e040412 83ff01005e04040e 83ff01005e040425 83ff01005e040413
[ 687.919610] cxgb4 0000:04:00.4: mbox 4: 150004c400000c04 800f01005e04040f 83ff01005e040401 83ff01005e040403 83ff01005e040412 83ff01005e04040e 83ff01005e040425 83ff01005e040413
[ 687.939241] cxgb4 0000:04:00.4: mbox 4: 150004c400000c04 800f01005e04040f 83ff01005e040401 83ff01005e040403 83ff01005e040412 83ff01005e04040e 83ff01005e040425 83ff01005e040413
[ 687.958025] cxgb4 0000:04:00.4: mbox 4: 150004c400000c04 800f01005e04040f 83ff01005e040401 83ff01005e040403 83ff01005e040412 83ff01005e04040e 83ff01005e040425 83ff01005e040413
[ 687.978719] cxgb4 0000:04:00.4: mbox 4: 150004c400000c04 800f01005e04040f 83ff01005e040401 83ff01005e040403 83ff01005e040412 83ff01005e04040e 83ff01005e040425 83ff01005e040413
[ 687.997502] cxgb4 0000:04:00.4: mbox 4: 150004c400000c04 800f01005e04040f 83ff01005e040401 83ff01005e040403 83ff01005e040412 83ff01005e04040e 83ff01005e040425 83ff01005e040413
[ 688.017145] cxgb4 0000:04:00.4: mbox 4: 150004c400000c04 800f01005e04040f 83ff01005e040401 83ff01005e040403 83ff01005e040412 83ff01005e04040e 83ff01005e040425 83ff01005e040413
[ 688.035943] cxgb4 0000:04:00.4: mbox 4: 150004c400000c04 800f01005e04040f 83ff01005e040401 83ff01005e040403 83ff01005e040412 83ff01005e04040e 83ff01005e040425 83ff01005e040413
[ 688.055583] cxgb4 0000:04:00.4: mbox 4: 150004c400000c04 800f01005e04040f 83ff01005e040401 83ff01005e040403 83ff01005e040412 83ff01005e04040e 83ff01005e040425 83ff01005e040413
[ 688.074365] cxgb4 0000:04:00.4: mbox 4: 150004c400000c04 800f01005e04040f 83ff01005e040401 83ff01005e040403 83ff01005e040412 83ff01005e04040e 83ff01005e040425 83ff01005e040413
[ 688.094004] cxgb4 0000:04:00.4: mbox 4: 150004c400000c04 800f01005e04040f 83ff01005e040401 83ff01005e040403 83ff01005e040412 83ff01005e04040e 83ff01005e040425 83ff01005e040413
[ 688.112787] cxgb4 0000:04:00.4: mbox 4: 150004c400000c04 800f01005e04040f 83ff01005e040401 83ff01005e040403 83ff01005e040412 83ff01005e04040e 83ff01005e040425 83ff01005e040413
[ 688.132430] cxgb4 0000:04:00.4: mbox 4: 150004c400000c04 800f01005e04040f 83ff01005e040401 83ff01005e040403 83ff01005e040412 83ff01005e04040e 83ff01005e040425 83ff01005e040413
[ 688.151211] cxgb4 0000:04:00.4: mbox 4: 150004c400000c04 800f01005e04040f 83ff01005e040401 83ff01005e040403 83ff01005e040412 83ff01005e04040e 83ff01005e040425 83ff01005e040413
[ 688.170856] cxgb4 0000:04:00.4: mbox 4: 150004c400000c04 800f01005e04040f 83ff01005e040401 83ff01005e040403 83ff01005e040412 83ff01005e04040e 83ff01005e040425 83ff01005e040413
[ 688.189642] cxgb4 0000:04:00.4: mbox 4: 150004c400000c04 800f01005e04040f 83ff01005e040401 83ff01005e040403 83ff01005e040412 83ff01005e04040e 83ff01005e040425 83ff01005e040413
[ 688.209303] cxgb4 0000:04:00.4: mbox 4: 150004c400000c04 800f01005e04040f 83ff01005e040401 83ff01005e040403 83ff01005e040412 83ff01005e04040e 83ff01005e040425 83ff01005e040413
[ 688.228086] cxgb4 0000:04:00.4: mbox 4: 150004c400000c04 800f01005e04040f 83ff01005e040401 83ff01005e040403 83ff01005e040412 83ff01005e04040e 83ff01005e040425 83ff01005e040413
[ 688.247714] cxgb4 0000:04:00.4: mbox 4: 150004c400000c04 800f01005e04040f 83ff01005e040401 83ff01005e040403 83ff01005e040412 83ff01005e04040e 83ff01005e040425 83ff01005e040413
[ 688.266496] cxgb4 0000:04:00.4: mbox 4: 150004c400000c04 800f01005e04040f 83ff01005e040401 83ff01005e040403 83ff01005e040412 83ff01005e04040e 83ff01005e040425 83ff01005e040413
[ 688.286143] cxgb4 0000:04:00.4: mbox 4: 150004c400000c04 800f01005e04040f 83ff01005e040401 83ff01005e040403 83ff01005e040412 83ff01005e04040e 83ff01005e040425 83ff01005e040413
[ 688.304930] cxgb4 0000:04:00.4: mbox 4: 150004c400000c04 800f01005e04040f 83ff01005e040401 83ff01005e040403 83ff01005e040412 83ff01005e04040e 83ff01005e040425 83ff01005e040413
[ 688.324558] cxgb4 0000:04:00.4: mbox 4: 150004c400000c04 800f01005e04040f 83ff01005e040401 83ff01005e040403 83ff01005e040412 83ff01005e04040e 83ff01005e040425 83ff01005e040413
[ 688.343343] cxgb4 0000:04:00.4: mbox 4: 150004c400000c04 800f01005e04040f 83ff01005e040401 83ff01005e040403 83ff01005e040412 83ff01005e04040e 83ff01005e040425 83ff01005e040413
[ 688.362973] cxgb4 0000:04:00.4: mbox 4: 150004c400000c04 800f01005e04040f 83ff01005e040401 83ff01005e040403 83ff01005e040412 83ff01005e04040e 83ff01005e040425 83ff01005e040413
[ 688.381759] cxgb4 0000:04:00.4: mbox 4: 150004c400000c04 800f01005e04040f 83ff01005e040401 83ff01005e040403 83ff01005e040412 83ff01005e04040e 83ff01005e040425 83ff01005e040413
[ 688.401398] cxgb4 0000:04:00.4: mbox 4: 150004c400000c04 800f01005e04040f 83ff01005e040401 83ff01005e040403 83ff01005e040412 83ff01005e04040e 83ff01005e040425 83ff01005e040413
[ 688.420179] cxgb4 0000:04:00.4: mbox 4: 150004c400000c04 800f01005e04040f 83ff01005e040401 83ff01005e040403 83ff01005e040412 83ff01005e04040e 83ff01005e040425 83ff01005e040413
[ 688.439808] cxgb4 0000:04:00.4: mbox 4: 150004c400000c04 800f01005e04040f 83ff01005e040401 83ff01005e040403 83ff01005e040412 83ff01005e04040e 83ff01005e040425 83ff01005e040413
[ 688.458591] cxgb4 0000:04:00.4: mbox 4: 150004c400000c04 800f01005e04040f 83ff01005e040401 83ff01005e040403 83ff01005e040412 83ff01005e04040e 83ff01005e040425 83ff01005e040413
[ 688.478220] cxgb4 0000:04:00.4: mbox 4: 150004c400000c04 800f01005e04040f 83ff01005e040401 83ff01005e040403 83ff01005e040412 83ff01005e04040e 83ff01005e040425 83ff01005e040413
[ 688.497003] cxgb4 0000:04:00.4: mbox 4: 150004c400000c04 800f01005e04040f 83ff01005e040401 83ff01005e040403 83ff01005e040412 83ff01005e04040e 83ff01005e040425 83ff01005e040413
[ 688.516654] cxgb4 0000:04:00.4: mbox 4: 150004c400000c04 800f01005e04040f 83ff01005e040401 83ff01005e040403 83ff01005e040412 83ff01005e04040e 83ff01005e040425 83ff01005e040413
[ 688.535434] cxgb4 0000:04:00.4: mbox 4: 150004c400000c04 800f01005e04040f 83ff01005e040401 83ff01005e040403 83ff01005e040412 83ff01005e04040e 83ff01005e040425 83ff01005e040413
[ 688.555081] cxgb4 0000:04:00.4: mbox 4: 150004c400000c04 800f01005e04040f 83ff01005e040401 83ff01005e040403 83ff01005e040412 83ff01005e04040e 83ff01005e040425 83ff01005e040413
[ 688.573877] cxgb4 0000:04:00.4: mbox 4: 150004c400000c04 800f01005e04040f 83ff01005e040401 83ff01005e040403 83ff01005e040412 83ff01005e04040e 83ff01005e040425 83ff01005e040413
[ 688.593508] cxgb4 0000:04:00.4: mbox 4: 150004c400000c04 800f01005e04040f 83ff01005e040401 83ff01005e040403 83ff01005e040412 83ff01005e04040e 83ff01005e040425 83ff01005e040413
[ 688.612291] cxgb4 0000:04:00.4: mbox 4: 150004c400000c04 800f01005e04040f 83ff01005e040401 83ff01005e040403 83ff01005e040412 83ff01005e04040e 83ff01005e040425 83ff01005e040413
[ 688.631928] cxgb4 0000:04:00.4: mbox 4: 150004c400000c04 800f01005e04040f 83ff01005e040401 83ff01005e040403 83ff01005e040412 83ff01005e04040e 83ff01005e040425 83ff01005e040413
[ 688.650712] cxgb4 0000:04:00.4: mbox 4: 150004c400000c04 800f01005e04040f 83ff01005e040401 83ff01005e040403 83ff01005e040412 83ff01005e04040e 83ff01005e040425 83ff01005e040413
[ 688.670347] cxgb4 0000:04:00.4: mbox 4: 150004c400000c04 800f01005e04040f 83ff01005e040401 83ff01005e040403 83ff01005e040412 83ff01005e04040e 83ff01005e040425 83ff01005e040413
[ 688.689131] cxgb4 0000:04:00.4: mbox 4: 150004c400000c04 800f01005e04040f 83ff01005e040401 83ff01005e040403 83ff01005e040412 83ff01005e04040e 83ff01005e040425 83ff01005e040413
[ 688.708761] cxgb4 0000:04:00.4: mbox 4: 150004c400000c04 800f01005e04040f 83ff01005e040401 83ff01005e040403 83ff01005e040412 83ff01005e04040e 83ff01005e040425 83ff01005e040413
[ 688.727547] cxgb4 0000:04:00.4: mbox 4: 150004c400000c04 800f01005e04040f 83ff01005e040401 83ff01005e040403 83ff01005e040412 83ff01005e04040e 83ff01005e040425 83ff01005e040413
[ 688.747188] cxgb4 0000:04:00.4: mbox 4: 150004c400000c04 800f01005e04040f 83ff01005e040401 83ff01005e040403 83ff01005e040412 83ff01005e04040e 83ff01005e040425 83ff01005e040413
[ 688.765970] cxgb4 0000:04:00.4: mbox 4: 150004c400000c04 800f01005e04040f 83ff01005e040401 83ff01005e040403 83ff01005e040412 83ff01005e04040e 83ff01005e040425 83ff01005e040413
[ 688.785608] cxgb4 0000:04:00.4: mbox 4: 150004c400000c04 800f01005e04040f 83ff01005e040401 83ff01005e040403 83ff01005e040412 83ff01005e04040e 83ff01005e040425 83ff01005e040413
[ 688.804391] cxgb4 0000:04:00.4: mbox 4: 150004c400000c04 800f01005e04040f 83ff01005e040401 83ff01005e040403 83ff01005e040412 83ff01005e04040e 83ff01005e040425 83ff01005e040413
Then on a second machine, I set up the iperf client to send the
multicast data.
machine2 $ route add -net 224.0.0.0 netmask 240.0.0.0 dev vlan824
machine2 $ for x in $(seq 1 95); do iperf -u -c 224.4.4.${x} -p 500${x} -l 100 -b 10M & done
The receiver will receive some of the packets on a few of the
addresses, but most of the addresses never receive anything. I
realize this could be because we are simply dropping packets, but even
running a single instance of the iperf client on machine2 for many of
the addresses causes no packets to be received for example:
machine2 $ iperf -u -c 224.4.4.65 -p 50065 -l 100 -b 10M
Is there any translation of those cryptic mbox 4 errors?
Thanks,
Shawn
--
---------------------------------------------------------------
This email, along with any attachments, is confidential. If you
believe you received this message in error, please contact the
sender immediately and delete all copies of the message.
Thank you.
^ permalink raw reply
* Re: [PATCH 1/3] drivers/net: Convert compare_ether_addr to ether_addr_equal
From: Jussi Kivilinna @ 2012-05-10 20:15 UTC (permalink / raw)
To: David Miller
Cc: joe, fubar, andy, benve, roprabhu, neepatel, nistrive, grundler,
anirban.chakraborty, sony.chacko, linux-driver, linux-net-drivers,
bhutchings, cmetcalf, linville, jirislaby, mickflemm, mcgrof,
jouni, vthiagar, senthilb, chunkeey, stas.yakovlev, sgruszka,
johannes.berg, wey-yi.w.guy, ilw, buytenh, Larry.Finger,
chaoming_li, netdev, linux-kernel, linux-wireless, ath5k-devel,
ath9k-devel
In-Reply-To: <20120510.123024.2157290550457495698.davem@davemloft.net>
Quoting David Miller <davem@davemloft.net>:
>
> Never, EVER, quote an entire large patch just to make a comment
> on one small hunk.
>
> I very nearly missed what you had to say because when scrolling
> through it it appeared as if you made no comments at all.
>
> Again, NEVER, EVER, do this. It's extremely anti-social. Edit out
> the irrelevant quoted content when replying to people, always.
>
I'm sorry. I will not do this again.
-Jussi
^ permalink raw reply
* RE: [NET_NEXT RFC PATCH 2/3] ixgbe: added netdev_ops file to debugfs
From: Sullivan, Catherine @ 2012-05-10 20:28 UTC (permalink / raw)
To: Stephen Hemminger; +Cc: netdev@vger.kernel.org
In-Reply-To: <20120509161320.37fcb705@nehalam.linuxnetplumber.net>
Could you point me to where this is available in sysfs please? I'm not familiar with it.
Thanks,
Catherine
-----Original Message-----
From: Stephen Hemminger [mailto:shemminger@vyatta.com]
Sent: Wednesday, May 09, 2012 4:13 PM
To: Sullivan, Catherine
Cc: netdev@vger.kernel.org
Subject: Re: [NET_NEXT RFC PATCH 2/3] ixgbe: added netdev_ops file to debugfs
On Wed, 09 May 2012 16:09:45 -0700
Catherine Sullivan <catherine.sullivan@intel.com> wrote:
> Added the netdev_ops file to debugfs with a command to call the
> ndo_tx_timeout function to give users the ability to simulate a
> tx_timeout call made by the kernel.
>
> Signed-off-by: Catherine Sullivan <catherine.sullivan@intel.com>
What is the justification for creating a new API here?
Your exposing only one thing 'tx_timeout' and that is a generic property of the device (not ixgbe specific). That value is already available via sysfs.
^ permalink raw reply
* Re: [NET_NEXT RFC PATCH 2/3] ixgbe: added netdev_ops file to debugfs
From: David Miller @ 2012-05-10 20:32 UTC (permalink / raw)
To: catherine.sullivan; +Cc: shemminger, netdev
In-Reply-To: <F1C1314B3E1AB7499F9BF2A5F0F033EC14A8F3@FMSMSX104.amr.corp.intel.com>
From: "Sullivan, Catherine" <catherine.sullivan@intel.com>
Date: Thu, 10 May 2012 20:28:28 +0000
> Could you point me to where this is available in sysfs please? I'm
> not familiar with it.
Is the 'find' program not properly functioning on your computer?
[davem@drr net-next]$ find /sys -type f -name tx_timeout
/sys/devices/virtual/net/lo/queues/tx-0/tx_timeout
/sys/devices/virtual/net/redhat0/queues/tx-0/tx_timeout
/sys/devices/pci0000:00/0000:00:1c.2/0000:06:00.0/net/p34p1/queues/tx-0/tx_timeout
[davem@drr net-next]$
^ permalink raw reply
* Re: NULL pointer dereference at __ip_route_output_key
From: David Miller @ 2012-05-10 20:49 UTC (permalink / raw)
To: yevgen.pronenko; +Cc: netdev
In-Reply-To: <4F90282C.5020104@sonymobile.com>
From: Yevgen Pronenko <yevgen.pronenko@sonymobile.com>
Date: Thu, 19 Apr 2012 16:58:52 +0200
> As you can see, there is a NULL in res.fi->fib_nh.nh_dev. One more
> thing which looks suspicious for me is that res.fi->fib_dead is 1
> here. And the crash happened just after shutting down a WLAN interface
> (the last string in the kernel log was "wlan: disconnected").
>
> Having that, is it possible there is a race between network resources
> deallocation and a route lookup procedure?
Indeed this area is a mess.
Nothing actually gates on fi->fib_dead except for an assertion in
free_fib_info().
Therefore, fi->fib_dead is essentially useless, and doesn't block
usage of fib_info objects that we are about to liberate via RCU.
My initial impression is that we need to shift the cleanup code into
the RCU handler (free_fib_info_rcu), and add some checks on
fi->fib_dead to the fib_info lookup paths.
I suspect we might have lost the fi->fib_dead tests unintentionally
when we converted the fib_info lookup paths to be refcount-less and
use RCU. Oddly enough, the code does check for things like
(fi->fib_flags & RTNH_F_DEAD).
Anyways, I'll do some data-mining to figure out what happened here
and then use that information to cons up a fix.
Thanks for the report.
^ permalink raw reply
* Re: cxgb4 mbox4 errors listening to multiple multicast addresses
From: Shawn Bohrer @ 2012-05-10 20:57 UTC (permalink / raw)
To: Dimitris Michailidis; +Cc: netdev
In-Reply-To: <4FAC2941.5080301@chelsio.com>
On Thu, May 10, 2012 at 01:46:57PM -0700, Dimitris Michailidis wrote:
> On 05/10/2012 01:14 PM, Shawn Bohrer wrote:
> >Is there any translation of those cryptic mbox 4 errors?
>
> The mbox messages are dumps of mailbox commands that try to register
> MAC addresses and fail due to exhaustion of exact MAC filters. It
> should fall back to ALL_MULTI mode and probably shouldn't be logging
> these as they are expected failure. From your description it would
> appear it didn't fall back, I'll take a closer look. Can you send
> me the output of ifconfig or ip link for the port in this state?
$ ifconfig eth6
eth6 Link encap:Ethernet HWaddr 00:07:43:10:52:B0
inet6 addr: fe80::207:43ff:fe10:52b0/64 Scope:Link
UP BROADCAST RUNNING MULTICAST MTU:1500 Metric:1
RX packets:7811818 errors:0 dropped:0 overruns:0 frame:0
TX packets:9087 errors:0 dropped:0 overruns:0 carrier:0
collisions:0 txqueuelen:1000
RX bytes:1171756876 (1.0 GiB) TX bytes:608182 (593.9 KiB)
Interrupt:38
$ ifconfig vlan824
vlan824 Link encap:Ethernet HWaddr 00:07:43:10:52:B0
inet addr:10.8.24.40 Bcast:10.8.31.255 Mask:255.255.248.0
inet6 addr: fe80::207:43ff:fe10:52b0/64 Scope:Link
UP BROADCAST RUNNING MULTICAST MTU:1500 Metric:1
RX packets:7811450 errors:0 dropped:0 overruns:0 frame:0
TX packets:8895 errors:0 dropped:0 overruns:0 carrier:0
collisions:0 txqueuelen:0
RX bytes:999858056 (953.5 MiB) TX bytes:409410 (399.8 KiB)
$ ip link show eth6
6: eth6: <BROADCAST,MULTICAST,UP,LOWER_UP> mtu 1500 qdisc mq state UP qlen 1000
link/ether 00:07:43:10:52:b0 brd ff:ff:ff:ff:ff:ff
$ ip link show vlan824
11: vlan824@eth6: <BROADCAST,MULTICAST,UP,LOWER_UP> mtu 1500 qdisc noqueue state UP
link/ether 00:07:43:10:52:b0 brd ff:ff:ff:ff:ff:ff
--
Shawn
--
---------------------------------------------------------------
This email, along with any attachments, is confidential. If you
believe you received this message in error, please contact the
sender immediately and delete all copies of the message.
Thank you.
^ permalink raw reply
* RE: [NET_NEXT RFC PATCH 2/3] ixgbe: added netdev_ops file to debugfs
From: Sullivan, Catherine @ 2012-05-10 21:14 UTC (permalink / raw)
To: David Miller; +Cc: shemminger@vyatta.com, netdev@vger.kernel.org
In-Reply-To: <20120510.163207.1812696843582837101.davem@davemloft.net>
I was aware of this, however this does not allow a call to the ndo_tx_timeout function which is what my patch does. Is there a way to do this with sysfs? I could not find this functionality.
-----Original Message-----
From: David Miller [mailto:davem@davemloft.net]
Sent: Thursday, May 10, 2012 1:32 PM
From: "Sullivan, Catherine" <catherine.sullivan@intel.com>
Date: Thu, 10 May 2012 20:28:28 +0000
> Could you point me to where this is available in sysfs please? I'm not
> familiar with it.
Is the 'find' program not properly functioning on your computer?
[davem@drr net-next]$ find /sys -type f -name tx_timeout /sys/devices/virtual/net/lo/queues/tx-0/tx_timeout
/sys/devices/virtual/net/redhat0/queues/tx-0/tx_timeout
/sys/devices/pci0000:00/0000:00:1c.2/0000:06:00.0/net/p34p1/queues/tx-0/tx_timeout
[davem@drr net-next]$
^ permalink raw reply
* Re: [NET_NEXT RFC PATCH 2/3] ixgbe: added netdev_ops file to debugfs
From: David Miller @ 2012-05-10 21:21 UTC (permalink / raw)
To: catherine.sullivan; +Cc: shemminger, netdev
In-Reply-To: <F1C1314B3E1AB7499F9BF2A5F0F033EC14AA1B@FMSMSX104.amr.corp.intel.com>
From: "Sullivan, Catherine" <catherine.sullivan@intel.com>
Date: Thu, 10 May 2012 21:14:49 +0000
> I was aware of this, however this does not allow a call to the
> ndo_tx_timeout function which is what my patch does. Is there a way
> to do this with sysfs? I could not find this functionality.
Please stop top-posting.
^ permalink raw reply
* Re: cxgb4 mbox4 errors listening to multiple multicast addresses
From: Dimitris Michailidis @ 2012-05-10 20:46 UTC (permalink / raw)
To: Shawn Bohrer; +Cc: netdev
In-Reply-To: <20120510201408.GA4709@BohrerMBP.rgmadvisors.com>
On 05/10/2012 01:14 PM, Shawn Bohrer wrote:
> Hello, I'm testing some Chelsio T4 cards (T420-CR) and they seem to
> reliably fail if I try to receiving multicast data on a number of
> different addresses. Actually it they fail even before any data is
> sent, so it must be simply subscribing to the multicast addresses that
> is the problem. See below for an example.
>
> $ uname -r
> 3.3.1
>
> $ ethtool -i eth6
> driver: cxgb4
> version: 1.3.0-ko
> firmware-version: 1.3.10.0, TP 0.1.7.0
> bus-info: 0000:04:00.4
> supports-statistics: yes
> supports-test: no
> supports-eeprom-access: yes
> supports-register-dump: yes
>
> I've got vlan824 configured to use eth6. So if with iperf I can do:
>
> $ route add -net 224.0.0.0 netmask 240.0.0.0 dev vlan824
> $ for x in $(seq 1 95); do iperf -s -u -B 224.4.4.${x} -p 500${x} & done
>
> $ dmesg | grep cxgb4
> [ 10.847870] cxgb4 0000:04:00.4: irq 77 for MSI/MSI-X
> [ 10.847877] cxgb4 0000:04:00.4: irq 78 for MSI/MSI-X
> [ 10.847882] cxgb4 0000:04:00.4: irq 79 for MSI/MSI-X
> [ 10.847888] cxgb4 0000:04:00.4: irq 80 for MSI/MSI-X
> [ 10.847893] cxgb4 0000:04:00.4: irq 81 for MSI/MSI-X
> [ 10.847898] cxgb4 0000:04:00.4: irq 82 for MSI/MSI-X
> [ 10.847903] cxgb4 0000:04:00.4: irq 83 for MSI/MSI-X
> [ 10.847908] cxgb4 0000:04:00.4: irq 84 for MSI/MSI-X
> [ 10.847913] cxgb4 0000:04:00.4: irq 85 for MSI/MSI-X
> [ 10.847918] cxgb4 0000:04:00.4: irq 86 for MSI/MSI-X
> [ 10.847923] cxgb4 0000:04:00.4: irq 87 for MSI/MSI-X
> [ 10.847928] cxgb4 0000:04:00.4: irq 88 for MSI/MSI-X
> [ 10.847933] cxgb4 0000:04:00.4: irq 89 for MSI/MSI-X
> [ 10.847938] cxgb4 0000:04:00.4: irq 90 for MSI/MSI-X
> [ 10.847943] cxgb4 0000:04:00.4: irq 91 for MSI/MSI-X
> [ 10.847948] cxgb4 0000:04:00.4: irq 92 for MSI/MSI-X
> [ 10.847953] cxgb4 0000:04:00.4: irq 93 for MSI/MSI-X
> [ 10.847957] cxgb4 0000:04:00.4: irq 94 for MSI/MSI-X
> [ 10.847962] cxgb4 0000:04:00.4: irq 95 for MSI/MSI-X
> [ 10.847967] cxgb4 0000:04:00.4: irq 96 for MSI/MSI-X
> [ 10.847972] cxgb4 0000:04:00.4: irq 97 for MSI/MSI-X
> [ 10.847977] cxgb4 0000:04:00.4: irq 98 for MSI/MSI-X
> [ 10.847981] cxgb4 0000:04:00.4: irq 99 for MSI/MSI-X
> [ 10.847986] cxgb4 0000:04:00.4: irq 100 for MSI/MSI-X
> [ 10.847991] cxgb4 0000:04:00.4: irq 101 for MSI/MSI-X
> [ 10.847996] cxgb4 0000:04:00.4: irq 102 for MSI/MSI-X
> [ 10.848001] cxgb4 0000:04:00.4: irq 103 for MSI/MSI-X
> [ 10.848005] cxgb4 0000:04:00.4: irq 104 for MSI/MSI-X
> [ 10.848010] cxgb4 0000:04:00.4: irq 105 for MSI/MSI-X
> [ 10.848016] cxgb4 0000:04:00.4: irq 106 for MSI/MSI-X
> [ 10.848021] cxgb4 0000:04:00.4: irq 107 for MSI/MSI-X
> [ 10.848025] cxgb4 0000:04:00.4: irq 108 for MSI/MSI-X
> [ 10.848032] cxgb4 0000:04:00.4: irq 109 for MSI/MSI-X
> [ 10.848036] cxgb4 0000:04:00.4: irq 110 for MSI/MSI-X
> [ 10.848041] cxgb4 0000:04:00.4: irq 111 for MSI/MSI-X
> [ 10.848046] cxgb4 0000:04:00.4: irq 112 for MSI/MSI-X
> [ 10.848051] cxgb4 0000:04:00.4: irq 113 for MSI/MSI-X
> [ 10.848055] cxgb4 0000:04:00.4: irq 114 for MSI/MSI-X
> [ 10.848060] cxgb4 0000:04:00.4: irq 115 for MSI/MSI-X
> [ 10.848065] cxgb4 0000:04:00.4: irq 116 for MSI/MSI-X
> [ 10.848069] cxgb4 0000:04:00.4: irq 117 for MSI/MSI-X
> [ 10.848074] cxgb4 0000:04:00.4: irq 118 for MSI/MSI-X
> [ 10.848079] cxgb4 0000:04:00.4: irq 119 for MSI/MSI-X
> [ 10.848083] cxgb4 0000:04:00.4: irq 120 for MSI/MSI-X
> [ 10.848088] cxgb4 0000:04:00.4: irq 121 for MSI/MSI-X
> [ 10.848093] cxgb4 0000:04:00.4: irq 122 for MSI/MSI-X
> [ 10.848098] cxgb4 0000:04:00.4: irq 123 for MSI/MSI-X
> [ 10.848103] cxgb4 0000:04:00.4: irq 124 for MSI/MSI-X
> [ 10.848107] cxgb4 0000:04:00.4: irq 125 for MSI/MSI-X
> [ 10.848112] cxgb4 0000:04:00.4: irq 126 for MSI/MSI-X
> [ 10.848116] cxgb4 0000:04:00.4: irq 127 for MSI/MSI-X
> [ 10.848121] cxgb4 0000:04:00.4: irq 128 for MSI/MSI-X
> [ 10.848480] cxgb4 0000:04:00.4: eth4: Chelsio T420-LL-CR rev 2 10GBASE-R SFP+ RNIC PCIe x8 5 GT/s MSI-X
> [ 10.848482] cxgb4 0000:04:00.4: eth4: S/N: PT18110977, E/C: 01234567890123
> [ 10.848714] cxgb4 0000:04:00.4: eth5: Chelsio T420-LL-CR rev 2 10GBASE-R SFP+ RNIC PCIe x8 5 GT/s MSI-X
> [ 10.848716] cxgb4 0000:04:00.4: eth5: S/N: PT18110977, E/C: 01234567890123
> [ 10.850726] iw_cxgb4:Chelsio T4 RDMA Driver - version 0.1
> [ 17.958293] iw_cxgb4:0000:04:00.4: Up
> [ 17.979873] cxgb4 0000:04:00.4: eth6: link up, 10Gbps, full-duplex, Tx/Rx PAUSE
> [ 17.979876] cxgb4 0000:04:00.4: eth6: passive DA module inserted
> [ 685.517044] cxgb4 0000:04:00.4: mbox 4: 150004c400000c02 800f01005e04040f 83ff01005e040401 0 0 0 0 0
> [ 685.529179] cxgb4 0000:04:00.4: mbox 4: 150004c400000c02 800f01005e04040f 83ff01005e040401 0 0 0 0 0
> [ 685.542396] cxgb4 0000:04:00.4: mbox 4: 150004c400000c02 800f01005e04040f 83ff01005e040401 83ff01005e040403 0 0 0 0
> [ 685.555827] cxgb4 0000:04:00.4: mbox 4: 150004c400000c02 800f01005e04040f 83ff01005e040401 83ff01005e040403 0 0 0 0
> [ 685.570377] cxgb4 0000:04:00.4: mbox 4: 150004c400000c03 800f01005e04040f 83ff01005e040401 83ff01005e040403 83ff01005e040412 0 0 0
> [ 685.585110] cxgb4 0000:04:00.4: mbox 4: 150004c400000c03 800f01005e04040f 83ff01005e040401 83ff01005e040403 83ff01005e040412 0 0 0
> [ 685.600915] cxgb4 0000:04:00.4: mbox 4: 150004c400000c03 800f01005e04040f 83ff01005e040401 83ff01005e040403 83ff01005e040412 83ff01005e04040e 0 0
> [ 685.616945] cxgb4 0000:04:00.4: mbox 4: 150004c400000c03 800f01005e04040f 83ff01005e040401 83ff01005e040403 83ff01005e040412 83ff01005e04040e 0 0
> [ 685.633943] cxgb4 0000:04:00.4: mbox 4: 150004c400000c04 800f01005e04040f 83ff01005e040401 83ff01005e040403 83ff01005e040412 83ff01005e04040e 83ff01005e040425 0
> [ 685.651269] cxgb4 0000:04:00.4: mbox 4: 150004c400000c04 800f01005e04040f 83ff01005e040401 83ff01005e040403 83ff01005e040412 83ff01005e04040e 83ff01005e040425 0
> [ 685.669648] cxgb4 0000:04:00.4: mbox 4: 150004c400000c04 800f01005e04040f 83ff01005e040401 83ff01005e040403 83ff01005e040412 83ff01005e04040e 83ff01005e040425 83ff01005e040413
> [ 685.688434] cxgb4 0000:04:00.4: mbox 4: 150004c400000c04 800f01005e04040f 83ff01005e040401 83ff01005e040403 83ff01005e040412 83ff01005e04040e 83ff01005e040425 83ff01005e040413
> [ 685.708128] cxgb4 0000:04:00.4: mbox 4: 150004c400000c04 800f01005e04040f 83ff01005e040401 83ff01005e040403 83ff01005e040412 83ff01005e04040e 83ff01005e040425 83ff01005e040413
> [ 685.726910] cxgb4 0000:04:00.4: mbox 4: 150004c400000c04 800f01005e04040f 83ff01005e040401 83ff01005e040403 83ff01005e040412 83ff01005e04040e 83ff01005e040425 83ff01005e040413
> [ 685.746620] cxgb4 0000:04:00.4: mbox 4: 150004c400000c04 800f01005e04040f 83ff01005e040401 83ff01005e040403 83ff01005e040412 83ff01005e04040e 83ff01005e040425 83ff01005e040413
> [ 685.765403] cxgb4 0000:04:00.4: mbox 4: 150004c400000c04 800f01005e04040f 83ff01005e040401 83ff01005e040403 83ff01005e040412 83ff01005e04040e 83ff01005e040425 83ff01005e040413
> [ 685.785103] cxgb4 0000:04:00.4: mbox 4: 150004c400000c04 800f01005e04040f 83ff01005e040401 83ff01005e040403 83ff01005e040412 83ff01005e04040e 83ff01005e040425 83ff01005e040413
> [ 685.803889] cxgb4 0000:04:00.4: mbox 4: 150004c400000c04 800f01005e04040f 83ff01005e040401 83ff01005e040403 83ff01005e040412 83ff01005e04040e 83ff01005e040425 83ff01005e040413
> [ 685.823559] cxgb4 0000:04:00.4: mbox 4: 150004c400000c04 800f01005e04040f 83ff01005e040401 83ff01005e040403 83ff01005e040412 83ff01005e04040e 83ff01005e040425 83ff01005e040413
> [ 685.842345] cxgb4 0000:04:00.4: mbox 4: 150004c400000c04 800f01005e04040f 83ff01005e040401 83ff01005e040403 83ff01005e040412 83ff01005e04040e 83ff01005e040425 83ff01005e040413
> [ 685.862060] cxgb4 0000:04:00.4: mbox 4: 150004c400000c04 800f01005e04040f 83ff01005e040401 83ff01005e040403 83ff01005e040412 83ff01005e04040e 83ff01005e040425 83ff01005e040413
> [ 685.880845] cxgb4 0000:04:00.4: mbox 4: 150004c400000c04 800f01005e04040f 83ff01005e040401 83ff01005e040403 83ff01005e040412 83ff01005e04040e 83ff01005e040425 83ff01005e040413
> [ 685.900669] cxgb4 0000:04:00.4: mbox 4: 150004c400000c04 800f01005e04040f 83ff01005e040401 83ff01005e040403 83ff01005e040412 83ff01005e04040e 83ff01005e040425 83ff01005e040413
> [ 685.919454] cxgb4 0000:04:00.4: mbox 4: 150004c400000c04 800f01005e04040f 83ff01005e040401 83ff01005e040403 83ff01005e040412 83ff01005e04040e 83ff01005e040425 83ff01005e040413
> [ 685.939104] cxgb4 0000:04:00.4: mbox 4: 150004c400000c04 800f01005e04040f 83ff01005e040401 83ff01005e040403 83ff01005e040412 83ff01005e04040e 83ff01005e040425 83ff01005e040413
> [ 685.957888] cxgb4 0000:04:00.4: mbox 4: 150004c400000c04 800f01005e04040f 83ff01005e040401 83ff01005e040403 83ff01005e040412 83ff01005e04040e 83ff01005e040425 83ff01005e040413
> [ 685.977570] cxgb4 0000:04:00.4: mbox 4: 150004c400000c04 800f01005e04040f 83ff01005e040401 83ff01005e040403 83ff01005e040412 83ff01005e04040e 83ff01005e040425 83ff01005e040413
> [ 685.996352] cxgb4 0000:04:00.4: mbox 4: 150004c400000c04 800f01005e04040f 83ff01005e040401 83ff01005e040403 83ff01005e040412 83ff01005e04040e 83ff01005e040425 83ff01005e040413
> [ 686.016043] cxgb4 0000:04:00.4: mbox 4: 150004c400000c04 800f01005e04040f 83ff01005e040401 83ff01005e040403 83ff01005e040412 83ff01005e04040e 83ff01005e040425 83ff01005e040413
> [ 686.034827] cxgb4 0000:04:00.4: mbox 4: 150004c400000c04 800f01005e04040f 83ff01005e040401 83ff01005e040403 83ff01005e040412 83ff01005e04040e 83ff01005e040425 83ff01005e040413
> [ 686.054675] cxgb4 0000:04:00.4: mbox 4: 150004c400000c04 800f01005e04040f 83ff01005e040401 83ff01005e040403 83ff01005e040412 83ff01005e04040e 83ff01005e040425 83ff01005e040413
> [ 686.073462] cxgb4 0000:04:00.4: mbox 4: 150004c400000c04 800f01005e04040f 83ff01005e040401 83ff01005e040403 83ff01005e040412 83ff01005e04040e 83ff01005e040425 83ff01005e040413
> [ 686.093201] cxgb4 0000:04:00.4: mbox 4: 150004c400000c04 800f01005e04040f 83ff01005e040401 83ff01005e040403 83ff01005e040412 83ff01005e04040e 83ff01005e040425 83ff01005e040413
> [ 686.111984] cxgb4 0000:04:00.4: mbox 4: 150004c400000c04 800f01005e04040f 83ff01005e040401 83ff01005e040403 83ff01005e040412 83ff01005e04040e 83ff01005e040425 83ff01005e040413
> [ 686.131681] cxgb4 0000:04:00.4: mbox 4: 150004c400000c04 800f01005e04040f 83ff01005e040401 83ff01005e040403 83ff01005e040412 83ff01005e04040e 83ff01005e040425 83ff01005e040413
> [ 686.150483] cxgb4 0000:04:00.4: mbox 4: 150004c400000c04 800f01005e04040f 83ff01005e040401 83ff01005e040403 83ff01005e040412 83ff01005e04040e 83ff01005e040425 83ff01005e040413
> [ 686.170134] cxgb4 0000:04:00.4: mbox 4: 150004c400000c04 800f01005e04040f 83ff01005e040401 83ff01005e040403 83ff01005e040412 83ff01005e04040e 83ff01005e040425 83ff01005e040413
> [ 686.188919] cxgb4 0000:04:00.4: mbox 4: 150004c400000c04 800f01005e04040f 83ff01005e040401 83ff01005e040403 83ff01005e040412 83ff01005e04040e 83ff01005e040425 83ff01005e040413
> [ 686.208593] cxgb4 0000:04:00.4: mbox 4: 150004c400000c04 800f01005e04040f 83ff01005e040401 83ff01005e040403 83ff01005e040412 83ff01005e04040e 83ff01005e040425 83ff01005e040413
> [ 686.227376] cxgb4 0000:04:00.4: mbox 4: 150004c400000c04 800f01005e04040f 83ff01005e040401 83ff01005e040403 83ff01005e040412 83ff01005e04040e 83ff01005e040425 83ff01005e040413
> [ 686.247074] cxgb4 0000:04:00.4: mbox 4: 150004c400000c04 800f01005e04040f 83ff01005e040401 83ff01005e040403 83ff01005e040412 83ff01005e04040e 83ff01005e040425 83ff01005e040413
> [ 686.265857] cxgb4 0000:04:00.4: mbox 4: 150004c400000c04 800f01005e04040f 83ff01005e040401 83ff01005e040403 83ff01005e040412 83ff01005e04040e 83ff01005e040425 83ff01005e040413
> [ 686.285532] cxgb4 0000:04:00.4: mbox 4: 150004c400000c04 800f01005e04040f 83ff01005e040401 83ff01005e040403 83ff01005e040412 83ff01005e04040e 83ff01005e040425 83ff01005e040413
> [ 686.304318] cxgb4 0000:04:00.4: mbox 4: 150004c400000c04 800f01005e04040f 83ff01005e040401 83ff01005e040403 83ff01005e040412 83ff01005e04040e 83ff01005e040425 83ff01005e040413
> [ 686.323965] cxgb4 0000:04:00.4: mbox 4: 150004c400000c04 800f01005e04040f 83ff01005e040401 83ff01005e040403 83ff01005e040412 83ff01005e04040e 83ff01005e040425 83ff01005e040413
> [ 686.342749] cxgb4 0000:04:00.4: mbox 4: 150004c400000c04 800f01005e04040f 83ff01005e040401 83ff01005e040403 83ff01005e040412 83ff01005e04040e 83ff01005e040425 83ff01005e040413
> [ 686.362423] cxgb4 0000:04:00.4: mbox 4: 150004c400000c04 800f01005e04040f 83ff01005e040401 83ff01005e040403 83ff01005e040412 83ff01005e04040e 83ff01005e040425 83ff01005e040413
> [ 686.381208] cxgb4 0000:04:00.4: mbox 4: 150004c400000c04 800f01005e04040f 83ff01005e040401 83ff01005e040403 83ff01005e040412 83ff01005e04040e 83ff01005e040425 83ff01005e040413
> [ 686.400882] cxgb4 0000:04:00.4: mbox 4: 150004c400000c04 800f01005e04040f 83ff01005e040401 83ff01005e040403 83ff01005e040412 83ff01005e04040e 83ff01005e040425 83ff01005e040413
> [ 686.419686] cxgb4 0000:04:00.4: mbox 4: 150004c400000c04 800f01005e04040f 83ff01005e040401 83ff01005e040403 83ff01005e040412 83ff01005e04040e 83ff01005e040425 83ff01005e040413
> [ 686.439341] cxgb4 0000:04:00.4: mbox 4: 150004c400000c04 800f01005e04040f 83ff01005e040401 83ff01005e040403 83ff01005e040412 83ff01005e04040e 83ff01005e040425 83ff01005e040413
> [ 686.458129] cxgb4 0000:04:00.4: mbox 4: 150004c400000c04 800f01005e04040f 83ff01005e040401 83ff01005e040403 83ff01005e040412 83ff01005e04040e 83ff01005e040425 83ff01005e040413
> [ 686.477762] cxgb4 0000:04:00.4: mbox 4: 150004c400000c04 800f01005e04040f 83ff01005e040401 83ff01005e040403 83ff01005e040412 83ff01005e04040e 83ff01005e040425 83ff01005e040413
> [ 686.496542] cxgb4 0000:04:00.4: mbox 4: 150004c400000c04 800f01005e04040f 83ff01005e040401 83ff01005e040403 83ff01005e040412 83ff01005e04040e 83ff01005e040425 83ff01005e040413
> [ 686.516173] cxgb4 0000:04:00.4: mbox 4: 150004c400000c04 800f01005e04040f 83ff01005e040401 83ff01005e040403 83ff01005e040412 83ff01005e04040e 83ff01005e040425 83ff01005e040413
> [ 686.534959] cxgb4 0000:04:00.4: mbox 4: 150004c400000c04 800f01005e04040f 83ff01005e040401 83ff01005e040403 83ff01005e040412 83ff01005e04040e 83ff01005e040425 83ff01005e040413
> [ 686.554585] cxgb4 0000:04:00.4: mbox 4: 150004c400000c04 800f01005e04040f 83ff01005e040401 83ff01005e040403 83ff01005e040412 83ff01005e04040e 83ff01005e040425 83ff01005e040413
> [ 686.573368] cxgb4 0000:04:00.4: mbox 4: 150004c400000c04 800f01005e04040f 83ff01005e040401 83ff01005e040403 83ff01005e040412 83ff01005e04040e 83ff01005e040425 83ff01005e040413
> [ 686.593006] cxgb4 0000:04:00.4: mbox 4: 150004c400000c04 800f01005e04040f 83ff01005e040401 83ff01005e040403 83ff01005e040412 83ff01005e04040e 83ff01005e040425 83ff01005e040413
> [ 686.611788] cxgb4 0000:04:00.4: mbox 4: 150004c400000c04 800f01005e04040f 83ff01005e040401 83ff01005e040403 83ff01005e040412 83ff01005e04040e 83ff01005e040425 83ff01005e040413
> [ 686.631453] cxgb4 0000:04:00.4: mbox 4: 150004c400000c04 800f01005e04040f 83ff01005e040401 83ff01005e040403 83ff01005e040412 83ff01005e04040e 83ff01005e040425 83ff01005e040413
> [ 686.650237] cxgb4 0000:04:00.4: mbox 4: 150004c400000c04 800f01005e04040f 83ff01005e040401 83ff01005e040403 83ff01005e040412 83ff01005e04040e 83ff01005e040425 83ff01005e040413
> [ 686.669893] cxgb4 0000:04:00.4: mbox 4: 150004c400000c04 800f01005e04040f 83ff01005e040401 83ff01005e040403 83ff01005e040412 83ff01005e04040e 83ff01005e040425 83ff01005e040413
> [ 686.688680] cxgb4 0000:04:00.4: mbox 4: 150004c400000c04 800f01005e04040f 83ff01005e040401 83ff01005e040403 83ff01005e040412 83ff01005e04040e 83ff01005e040425 83ff01005e040413
> [ 686.708360] cxgb4 0000:04:00.4: mbox 4: 150004c400000c04 800f01005e04040f 83ff01005e040401 83ff01005e040403 83ff01005e040412 83ff01005e04040e 83ff01005e040425 83ff01005e040413
> [ 686.727145] cxgb4 0000:04:00.4: mbox 4: 150004c400000c04 800f01005e04040f 83ff01005e040401 83ff01005e040403 83ff01005e040412 83ff01005e04040e 83ff01005e040425 83ff01005e040413
> [ 686.746777] cxgb4 0000:04:00.4: mbox 4: 150004c400000c04 800f01005e04040f 83ff01005e040401 83ff01005e040403 83ff01005e040412 83ff01005e04040e 83ff01005e040425 83ff01005e040413
> [ 686.765562] cxgb4 0000:04:00.4: mbox 4: 150004c400000c04 800f01005e04040f 83ff01005e040401 83ff01005e040403 83ff01005e040412 83ff01005e04040e 83ff01005e040425 83ff01005e040413
> [ 686.785242] cxgb4 0000:04:00.4: mbox 4: 150004c400000c04 800f01005e04040f 83ff01005e040401 83ff01005e040403 83ff01005e040412 83ff01005e04040e 83ff01005e040425 83ff01005e040413
> [ 686.804028] cxgb4 0000:04:00.4: mbox 4: 150004c400000c04 800f01005e04040f 83ff01005e040401 83ff01005e040403 83ff01005e040412 83ff01005e04040e 83ff01005e040425 83ff01005e040413
> [ 686.824719] cxgb4 0000:04:00.4: mbox 4: 150004c400000c04 800f01005e04040f 83ff01005e040401 83ff01005e040403 83ff01005e040412 83ff01005e04040e 83ff01005e040425 83ff01005e040413
> [ 686.843501] cxgb4 0000:04:00.4: mbox 4: 150004c400000c04 800f01005e04040f 83ff01005e040401 83ff01005e040403 83ff01005e040412 83ff01005e04040e 83ff01005e040425 83ff01005e040413
> [ 686.863170] cxgb4 0000:04:00.4: mbox 4: 150004c400000c04 800f01005e04040f 83ff01005e040401 83ff01005e040403 83ff01005e040412 83ff01005e04040e 83ff01005e040425 83ff01005e040413
> [ 686.881953] cxgb4 0000:04:00.4: mbox 4: 150004c400000c04 800f01005e04040f 83ff01005e040401 83ff01005e040403 83ff01005e040412 83ff01005e04040e 83ff01005e040425 83ff01005e040413
> [ 686.901648] cxgb4 0000:04:00.4: mbox 4: 150004c400000c04 800f01005e04040f 83ff01005e040401 83ff01005e040403 83ff01005e040412 83ff01005e04040e 83ff01005e040425 83ff01005e040413
> [ 686.920429] cxgb4 0000:04:00.4: mbox 4: 150004c400000c04 800f01005e04040f 83ff01005e040401 83ff01005e040403 83ff01005e040412 83ff01005e04040e 83ff01005e040425 83ff01005e040413
> [ 686.940061] cxgb4 0000:04:00.4: mbox 4: 150004c400000c04 800f01005e04040f 83ff01005e040401 83ff01005e040403 83ff01005e040412 83ff01005e04040e 83ff01005e040425 83ff01005e040413
> [ 686.958854] cxgb4 0000:04:00.4: mbox 4: 150004c400000c04 800f01005e04040f 83ff01005e040401 83ff01005e040403 83ff01005e040412 83ff01005e04040e 83ff01005e040425 83ff01005e040413
> [ 686.978518] cxgb4 0000:04:00.4: mbox 4: 150004c400000c04 800f01005e04040f 83ff01005e040401 83ff01005e040403 83ff01005e040412 83ff01005e04040e 83ff01005e040425 83ff01005e040413
> [ 686.997301] cxgb4 0000:04:00.4: mbox 4: 150004c400000c04 800f01005e04040f 83ff01005e040401 83ff01005e040403 83ff01005e040412 83ff01005e04040e 83ff01005e040425 83ff01005e040413
> [ 687.016940] cxgb4 0000:04:00.4: mbox 4: 150004c400000c04 800f01005e04040f 83ff01005e040401 83ff01005e040403 83ff01005e040412 83ff01005e04040e 83ff01005e040425 83ff01005e040413
> [ 687.035726] cxgb4 0000:04:00.4: mbox 4: 150004c400000c04 800f01005e04040f 83ff01005e040401 83ff01005e040403 83ff01005e040412 83ff01005e04040e 83ff01005e040425 83ff01005e040413
> [ 687.055372] cxgb4 0000:04:00.4: mbox 4: 150004c400000c04 800f01005e04040f 83ff01005e040401 83ff01005e040403 83ff01005e040412 83ff01005e04040e 83ff01005e040425 83ff01005e040413
> [ 687.074157] cxgb4 0000:04:00.4: mbox 4: 150004c400000c04 800f01005e04040f 83ff01005e040401 83ff01005e040403 83ff01005e040412 83ff01005e04040e 83ff01005e040425 83ff01005e040413
> [ 687.093794] cxgb4 0000:04:00.4: mbox 4: 150004c400000c04 800f01005e04040f 83ff01005e040401 83ff01005e040403 83ff01005e040412 83ff01005e04040e 83ff01005e040425 83ff01005e040413
> [ 687.112576] cxgb4 0000:04:00.4: mbox 4: 150004c400000c04 800f01005e04040f 83ff01005e040401 83ff01005e040403 83ff01005e040412 83ff01005e04040e 83ff01005e040425 83ff01005e040413
> [ 687.132207] cxgb4 0000:04:00.4: mbox 4: 150004c400000c04 800f01005e04040f 83ff01005e040401 83ff01005e040403 83ff01005e040412 83ff01005e04040e 83ff01005e040425 83ff01005e040413
> [ 687.150988] cxgb4 0000:04:00.4: mbox 4: 150004c400000c04 800f01005e04040f 83ff01005e040401 83ff01005e040403 83ff01005e040412 83ff01005e04040e 83ff01005e040425 83ff01005e040413
> [ 687.170634] cxgb4 0000:04:00.4: mbox 4: 150004c400000c04 800f01005e04040f 83ff01005e040401 83ff01005e040403 83ff01005e040412 83ff01005e04040e 83ff01005e040425 83ff01005e040413
> [ 687.189421] cxgb4 0000:04:00.4: mbox 4: 150004c400000c04 800f01005e04040f 83ff01005e040401 83ff01005e040403 83ff01005e040412 83ff01005e04040e 83ff01005e040425 83ff01005e040413
> [ 687.209058] cxgb4 0000:04:00.4: mbox 4: 150004c400000c04 800f01005e04040f 83ff01005e040401 83ff01005e040403 83ff01005e040412 83ff01005e04040e 83ff01005e040425 83ff01005e040413
> [ 687.227856] cxgb4 0000:04:00.4: mbox 4: 150004c400000c04 800f01005e04040f 83ff01005e040401 83ff01005e040403 83ff01005e040412 83ff01005e04040e 83ff01005e040425 83ff01005e040413
> [ 687.247488] cxgb4 0000:04:00.4: mbox 4: 150004c400000c04 800f01005e04040f 83ff01005e040401 83ff01005e040403 83ff01005e040412 83ff01005e04040e 83ff01005e040425 83ff01005e040413
> [ 687.266267] cxgb4 0000:04:00.4: mbox 4: 150004c400000c04 800f01005e04040f 83ff01005e040401 83ff01005e040403 83ff01005e040412 83ff01005e04040e 83ff01005e040425 83ff01005e040413
> [ 687.285905] cxgb4 0000:04:00.4: mbox 4: 150004c400000c04 800f01005e04040f 83ff01005e040401 83ff01005e040403 83ff01005e040412 83ff01005e04040e 83ff01005e040425 83ff01005e040413
> [ 687.304689] cxgb4 0000:04:00.4: mbox 4: 150004c400000c04 800f01005e04040f 83ff01005e040401 83ff01005e040403 83ff01005e040412 83ff01005e04040e 83ff01005e040425 83ff01005e040413
> [ 687.324333] cxgb4 0000:04:00.4: mbox 4: 150004c400000c04 800f01005e04040f 83ff01005e040401 83ff01005e040403 83ff01005e040412 83ff01005e04040e 83ff01005e040425 83ff01005e040413
> [ 687.343120] cxgb4 0000:04:00.4: mbox 4: 150004c400000c04 800f01005e04040f 83ff01005e040401 83ff01005e040403 83ff01005e040412 83ff01005e04040e 83ff01005e040425 83ff01005e040413
> [ 687.362756] cxgb4 0000:04:00.4: mbox 4: 150004c400000c04 800f01005e04040f 83ff01005e040401 83ff01005e040403 83ff01005e040412 83ff01005e04040e 83ff01005e040425 83ff01005e040413
> [ 687.381539] cxgb4 0000:04:00.4: mbox 4: 150004c400000c04 800f01005e04040f 83ff01005e040401 83ff01005e040403 83ff01005e040412 83ff01005e04040e 83ff01005e040425 83ff01005e040413
> [ 687.401179] cxgb4 0000:04:00.4: mbox 4: 150004c400000c04 800f01005e04040f 83ff01005e040401 83ff01005e040403 83ff01005e040412 83ff01005e04040e 83ff01005e040425 83ff01005e040413
> [ 687.419964] cxgb4 0000:04:00.4: mbox 4: 150004c400000c04 800f01005e04040f 83ff01005e040401 83ff01005e040403 83ff01005e040412 83ff01005e04040e 83ff01005e040425 83ff01005e040413
> [ 687.439623] cxgb4 0000:04:00.4: mbox 4: 150004c400000c04 800f01005e04040f 83ff01005e040401 83ff01005e040403 83ff01005e040412 83ff01005e04040e 83ff01005e040425 83ff01005e040413
> [ 687.458407] cxgb4 0000:04:00.4: mbox 4: 150004c400000c04 800f01005e04040f 83ff01005e040401 83ff01005e040403 83ff01005e040412 83ff01005e04040e 83ff01005e040425 83ff01005e040413
> [ 687.478076] cxgb4 0000:04:00.4: mbox 4: 150004c400000c04 800f01005e04040f 83ff01005e040401 83ff01005e040403 83ff01005e040412 83ff01005e04040e 83ff01005e040425 83ff01005e040413
> [ 687.496866] cxgb4 0000:04:00.4: mbox 4: 150004c400000c04 800f01005e04040f 83ff01005e040401 83ff01005e040403 83ff01005e040412 83ff01005e04040e 83ff01005e040425 83ff01005e040413
> [ 687.516497] cxgb4 0000:04:00.4: mbox 4: 150004c400000c04 800f01005e04040f 83ff01005e040401 83ff01005e040403 83ff01005e040412 83ff01005e04040e 83ff01005e040425 83ff01005e040413
> [ 687.535280] cxgb4 0000:04:00.4: mbox 4: 150004c400000c04 800f01005e04040f 83ff01005e040401 83ff01005e040403 83ff01005e040412 83ff01005e04040e 83ff01005e040425 83ff01005e040413
> [ 687.554924] cxgb4 0000:04:00.4: mbox 4: 150004c400000c04 800f01005e04040f 83ff01005e040401 83ff01005e040403 83ff01005e040412 83ff01005e04040e 83ff01005e040425 83ff01005e040413
> [ 687.573713] cxgb4 0000:04:00.4: mbox 4: 150004c400000c04 800f01005e04040f 83ff01005e040401 83ff01005e040403 83ff01005e040412 83ff01005e04040e 83ff01005e040425 83ff01005e040413
> [ 687.593351] cxgb4 0000:04:00.4: mbox 4: 150004c400000c04 800f01005e04040f 83ff01005e040401 83ff01005e040403 83ff01005e040412 83ff01005e04040e 83ff01005e040425 83ff01005e040413
> [ 687.612138] cxgb4 0000:04:00.4: mbox 4: 150004c400000c04 800f01005e04040f 83ff01005e040401 83ff01005e040403 83ff01005e040412 83ff01005e04040e 83ff01005e040425 83ff01005e040413
> [ 687.631793] cxgb4 0000:04:00.4: mbox 4: 150004c400000c04 800f01005e04040f 83ff01005e040401 83ff01005e040403 83ff01005e040412 83ff01005e04040e 83ff01005e040425 83ff01005e040413
> [ 687.650573] cxgb4 0000:04:00.4: mbox 4: 150004c400000c04 800f01005e04040f 83ff01005e040401 83ff01005e040403 83ff01005e040412 83ff01005e04040e 83ff01005e040425 83ff01005e040413
> [ 687.670222] cxgb4 0000:04:00.4: mbox 4: 150004c400000c04 800f01005e04040f 83ff01005e040401 83ff01005e040403 83ff01005e040412 83ff01005e04040e 83ff01005e040425 83ff01005e040413
> [ 687.689008] cxgb4 0000:04:00.4: mbox 4: 150004c400000c04 800f01005e04040f 83ff01005e040401 83ff01005e040403 83ff01005e040412 83ff01005e04040e 83ff01005e040425 83ff01005e040413
> [ 687.708652] cxgb4 0000:04:00.4: mbox 4: 150004c400000c04 800f01005e04040f 83ff01005e040401 83ff01005e040403 83ff01005e040412 83ff01005e04040e 83ff01005e040425 83ff01005e040413
> [ 687.727437] cxgb4 0000:04:00.4: mbox 4: 150004c400000c04 800f01005e04040f 83ff01005e040401 83ff01005e040403 83ff01005e040412 83ff01005e04040e 83ff01005e040425 83ff01005e040413
> [ 687.747071] cxgb4 0000:04:00.4: mbox 4: 150004c400000c04 800f01005e04040f 83ff01005e040401 83ff01005e040403 83ff01005e040412 83ff01005e04040e 83ff01005e040425 83ff01005e040413
> [ 687.765869] cxgb4 0000:04:00.4: mbox 4: 150004c400000c04 800f01005e04040f 83ff01005e040401 83ff01005e040403 83ff01005e040412 83ff01005e04040e 83ff01005e040425 83ff01005e040413
> [ 687.785510] cxgb4 0000:04:00.4: mbox 4: 150004c400000c04 800f01005e04040f 83ff01005e040401 83ff01005e040403 83ff01005e040412 83ff01005e04040e 83ff01005e040425 83ff01005e040413
> [ 687.804295] cxgb4 0000:04:00.4: mbox 4: 150004c400000c04 800f01005e04040f 83ff01005e040401 83ff01005e040403 83ff01005e040412 83ff01005e04040e 83ff01005e040425 83ff01005e040413
> [ 687.823948] cxgb4 0000:04:00.4: mbox 4: 150004c400000c04 800f01005e04040f 83ff01005e040401 83ff01005e040403 83ff01005e040412 83ff01005e04040e 83ff01005e040425 83ff01005e040413
> [ 687.842733] cxgb4 0000:04:00.4: mbox 4: 150004c400000c04 800f01005e04040f 83ff01005e040401 83ff01005e040403 83ff01005e040412 83ff01005e04040e 83ff01005e040425 83ff01005e040413
> [ 687.862379] cxgb4 0000:04:00.4: mbox 4: 150004c400000c04 800f01005e04040f 83ff01005e040401 83ff01005e040403 83ff01005e040412 83ff01005e04040e 83ff01005e040425 83ff01005e040413
> [ 687.881165] cxgb4 0000:04:00.4: mbox 4: 150004c400000c04 800f01005e04040f 83ff01005e040401 83ff01005e040403 83ff01005e040412 83ff01005e04040e 83ff01005e040425 83ff01005e040413
> [ 687.900829] cxgb4 0000:04:00.4: mbox 4: 150004c400000c04 800f01005e04040f 83ff01005e040401 83ff01005e040403 83ff01005e040412 83ff01005e04040e 83ff01005e040425 83ff01005e040413
> [ 687.919610] cxgb4 0000:04:00.4: mbox 4: 150004c400000c04 800f01005e04040f 83ff01005e040401 83ff01005e040403 83ff01005e040412 83ff01005e04040e 83ff01005e040425 83ff01005e040413
> [ 687.939241] cxgb4 0000:04:00.4: mbox 4: 150004c400000c04 800f01005e04040f 83ff01005e040401 83ff01005e040403 83ff01005e040412 83ff01005e04040e 83ff01005e040425 83ff01005e040413
> [ 687.958025] cxgb4 0000:04:00.4: mbox 4: 150004c400000c04 800f01005e04040f 83ff01005e040401 83ff01005e040403 83ff01005e040412 83ff01005e04040e 83ff01005e040425 83ff01005e040413
> [ 687.978719] cxgb4 0000:04:00.4: mbox 4: 150004c400000c04 800f01005e04040f 83ff01005e040401 83ff01005e040403 83ff01005e040412 83ff01005e04040e 83ff01005e040425 83ff01005e040413
> [ 687.997502] cxgb4 0000:04:00.4: mbox 4: 150004c400000c04 800f01005e04040f 83ff01005e040401 83ff01005e040403 83ff01005e040412 83ff01005e04040e 83ff01005e040425 83ff01005e040413
> [ 688.017145] cxgb4 0000:04:00.4: mbox 4: 150004c400000c04 800f01005e04040f 83ff01005e040401 83ff01005e040403 83ff01005e040412 83ff01005e04040e 83ff01005e040425 83ff01005e040413
> [ 688.035943] cxgb4 0000:04:00.4: mbox 4: 150004c400000c04 800f01005e04040f 83ff01005e040401 83ff01005e040403 83ff01005e040412 83ff01005e04040e 83ff01005e040425 83ff01005e040413
> [ 688.055583] cxgb4 0000:04:00.4: mbox 4: 150004c400000c04 800f01005e04040f 83ff01005e040401 83ff01005e040403 83ff01005e040412 83ff01005e04040e 83ff01005e040425 83ff01005e040413
> [ 688.074365] cxgb4 0000:04:00.4: mbox 4: 150004c400000c04 800f01005e04040f 83ff01005e040401 83ff01005e040403 83ff01005e040412 83ff01005e04040e 83ff01005e040425 83ff01005e040413
> [ 688.094004] cxgb4 0000:04:00.4: mbox 4: 150004c400000c04 800f01005e04040f 83ff01005e040401 83ff01005e040403 83ff01005e040412 83ff01005e04040e 83ff01005e040425 83ff01005e040413
> [ 688.112787] cxgb4 0000:04:00.4: mbox 4: 150004c400000c04 800f01005e04040f 83ff01005e040401 83ff01005e040403 83ff01005e040412 83ff01005e04040e 83ff01005e040425 83ff01005e040413
> [ 688.132430] cxgb4 0000:04:00.4: mbox 4: 150004c400000c04 800f01005e04040f 83ff01005e040401 83ff01005e040403 83ff01005e040412 83ff01005e04040e 83ff01005e040425 83ff01005e040413
> [ 688.151211] cxgb4 0000:04:00.4: mbox 4: 150004c400000c04 800f01005e04040f 83ff01005e040401 83ff01005e040403 83ff01005e040412 83ff01005e04040e 83ff01005e040425 83ff01005e040413
> [ 688.170856] cxgb4 0000:04:00.4: mbox 4: 150004c400000c04 800f01005e04040f 83ff01005e040401 83ff01005e040403 83ff01005e040412 83ff01005e04040e 83ff01005e040425 83ff01005e040413
> [ 688.189642] cxgb4 0000:04:00.4: mbox 4: 150004c400000c04 800f01005e04040f 83ff01005e040401 83ff01005e040403 83ff01005e040412 83ff01005e04040e 83ff01005e040425 83ff01005e040413
> [ 688.209303] cxgb4 0000:04:00.4: mbox 4: 150004c400000c04 800f01005e04040f 83ff01005e040401 83ff01005e040403 83ff01005e040412 83ff01005e04040e 83ff01005e040425 83ff01005e040413
> [ 688.228086] cxgb4 0000:04:00.4: mbox 4: 150004c400000c04 800f01005e04040f 83ff01005e040401 83ff01005e040403 83ff01005e040412 83ff01005e04040e 83ff01005e040425 83ff01005e040413
> [ 688.247714] cxgb4 0000:04:00.4: mbox 4: 150004c400000c04 800f01005e04040f 83ff01005e040401 83ff01005e040403 83ff01005e040412 83ff01005e04040e 83ff01005e040425 83ff01005e040413
> [ 688.266496] cxgb4 0000:04:00.4: mbox 4: 150004c400000c04 800f01005e04040f 83ff01005e040401 83ff01005e040403 83ff01005e040412 83ff01005e04040e 83ff01005e040425 83ff01005e040413
> [ 688.286143] cxgb4 0000:04:00.4: mbox 4: 150004c400000c04 800f01005e04040f 83ff01005e040401 83ff01005e040403 83ff01005e040412 83ff01005e04040e 83ff01005e040425 83ff01005e040413
> [ 688.304930] cxgb4 0000:04:00.4: mbox 4: 150004c400000c04 800f01005e04040f 83ff01005e040401 83ff01005e040403 83ff01005e040412 83ff01005e04040e 83ff01005e040425 83ff01005e040413
> [ 688.324558] cxgb4 0000:04:00.4: mbox 4: 150004c400000c04 800f01005e04040f 83ff01005e040401 83ff01005e040403 83ff01005e040412 83ff01005e04040e 83ff01005e040425 83ff01005e040413
> [ 688.343343] cxgb4 0000:04:00.4: mbox 4: 150004c400000c04 800f01005e04040f 83ff01005e040401 83ff01005e040403 83ff01005e040412 83ff01005e04040e 83ff01005e040425 83ff01005e040413
> [ 688.362973] cxgb4 0000:04:00.4: mbox 4: 150004c400000c04 800f01005e04040f 83ff01005e040401 83ff01005e040403 83ff01005e040412 83ff01005e04040e 83ff01005e040425 83ff01005e040413
> [ 688.381759] cxgb4 0000:04:00.4: mbox 4: 150004c400000c04 800f01005e04040f 83ff01005e040401 83ff01005e040403 83ff01005e040412 83ff01005e04040e 83ff01005e040425 83ff01005e040413
> [ 688.401398] cxgb4 0000:04:00.4: mbox 4: 150004c400000c04 800f01005e04040f 83ff01005e040401 83ff01005e040403 83ff01005e040412 83ff01005e04040e 83ff01005e040425 83ff01005e040413
> [ 688.420179] cxgb4 0000:04:00.4: mbox 4: 150004c400000c04 800f01005e04040f 83ff01005e040401 83ff01005e040403 83ff01005e040412 83ff01005e04040e 83ff01005e040425 83ff01005e040413
> [ 688.439808] cxgb4 0000:04:00.4: mbox 4: 150004c400000c04 800f01005e04040f 83ff01005e040401 83ff01005e040403 83ff01005e040412 83ff01005e04040e 83ff01005e040425 83ff01005e040413
> [ 688.458591] cxgb4 0000:04:00.4: mbox 4: 150004c400000c04 800f01005e04040f 83ff01005e040401 83ff01005e040403 83ff01005e040412 83ff01005e04040e 83ff01005e040425 83ff01005e040413
> [ 688.478220] cxgb4 0000:04:00.4: mbox 4: 150004c400000c04 800f01005e04040f 83ff01005e040401 83ff01005e040403 83ff01005e040412 83ff01005e04040e 83ff01005e040425 83ff01005e040413
> [ 688.497003] cxgb4 0000:04:00.4: mbox 4: 150004c400000c04 800f01005e04040f 83ff01005e040401 83ff01005e040403 83ff01005e040412 83ff01005e04040e 83ff01005e040425 83ff01005e040413
> [ 688.516654] cxgb4 0000:04:00.4: mbox 4: 150004c400000c04 800f01005e04040f 83ff01005e040401 83ff01005e040403 83ff01005e040412 83ff01005e04040e 83ff01005e040425 83ff01005e040413
> [ 688.535434] cxgb4 0000:04:00.4: mbox 4: 150004c400000c04 800f01005e04040f 83ff01005e040401 83ff01005e040403 83ff01005e040412 83ff01005e04040e 83ff01005e040425 83ff01005e040413
> [ 688.555081] cxgb4 0000:04:00.4: mbox 4: 150004c400000c04 800f01005e04040f 83ff01005e040401 83ff01005e040403 83ff01005e040412 83ff01005e04040e 83ff01005e040425 83ff01005e040413
> [ 688.573877] cxgb4 0000:04:00.4: mbox 4: 150004c400000c04 800f01005e04040f 83ff01005e040401 83ff01005e040403 83ff01005e040412 83ff01005e04040e 83ff01005e040425 83ff01005e040413
> [ 688.593508] cxgb4 0000:04:00.4: mbox 4: 150004c400000c04 800f01005e04040f 83ff01005e040401 83ff01005e040403 83ff01005e040412 83ff01005e04040e 83ff01005e040425 83ff01005e040413
> [ 688.612291] cxgb4 0000:04:00.4: mbox 4: 150004c400000c04 800f01005e04040f 83ff01005e040401 83ff01005e040403 83ff01005e040412 83ff01005e04040e 83ff01005e040425 83ff01005e040413
> [ 688.631928] cxgb4 0000:04:00.4: mbox 4: 150004c400000c04 800f01005e04040f 83ff01005e040401 83ff01005e040403 83ff01005e040412 83ff01005e04040e 83ff01005e040425 83ff01005e040413
> [ 688.650712] cxgb4 0000:04:00.4: mbox 4: 150004c400000c04 800f01005e04040f 83ff01005e040401 83ff01005e040403 83ff01005e040412 83ff01005e04040e 83ff01005e040425 83ff01005e040413
> [ 688.670347] cxgb4 0000:04:00.4: mbox 4: 150004c400000c04 800f01005e04040f 83ff01005e040401 83ff01005e040403 83ff01005e040412 83ff01005e04040e 83ff01005e040425 83ff01005e040413
> [ 688.689131] cxgb4 0000:04:00.4: mbox 4: 150004c400000c04 800f01005e04040f 83ff01005e040401 83ff01005e040403 83ff01005e040412 83ff01005e04040e 83ff01005e040425 83ff01005e040413
> [ 688.708761] cxgb4 0000:04:00.4: mbox 4: 150004c400000c04 800f01005e04040f 83ff01005e040401 83ff01005e040403 83ff01005e040412 83ff01005e04040e 83ff01005e040425 83ff01005e040413
> [ 688.727547] cxgb4 0000:04:00.4: mbox 4: 150004c400000c04 800f01005e04040f 83ff01005e040401 83ff01005e040403 83ff01005e040412 83ff01005e04040e 83ff01005e040425 83ff01005e040413
> [ 688.747188] cxgb4 0000:04:00.4: mbox 4: 150004c400000c04 800f01005e04040f 83ff01005e040401 83ff01005e040403 83ff01005e040412 83ff01005e04040e 83ff01005e040425 83ff01005e040413
> [ 688.765970] cxgb4 0000:04:00.4: mbox 4: 150004c400000c04 800f01005e04040f 83ff01005e040401 83ff01005e040403 83ff01005e040412 83ff01005e04040e 83ff01005e040425 83ff01005e040413
> [ 688.785608] cxgb4 0000:04:00.4: mbox 4: 150004c400000c04 800f01005e04040f 83ff01005e040401 83ff01005e040403 83ff01005e040412 83ff01005e04040e 83ff01005e040425 83ff01005e040413
> [ 688.804391] cxgb4 0000:04:00.4: mbox 4: 150004c400000c04 800f01005e04040f 83ff01005e040401 83ff01005e040403 83ff01005e040412 83ff01005e04040e 83ff01005e040425 83ff01005e040413
>
> Then on a second machine, I set up the iperf client to send the
> multicast data.
>
> machine2 $ route add -net 224.0.0.0 netmask 240.0.0.0 dev vlan824
> machine2 $ for x in $(seq 1 95); do iperf -u -c 224.4.4.${x} -p 500${x} -l 100 -b 10M & done
>
> The receiver will receive some of the packets on a few of the
> addresses, but most of the addresses never receive anything. I
> realize this could be because we are simply dropping packets, but even
> running a single instance of the iperf client on machine2 for many of
> the addresses causes no packets to be received for example:
>
> machine2 $ iperf -u -c 224.4.4.65 -p 50065 -l 100 -b 10M
>
> Is there any translation of those cryptic mbox 4 errors?
The mbox messages are dumps of mailbox commands that try to register MAC
addresses and fail due to exhaustion of exact MAC filters. It should fall back
to ALL_MULTI mode and probably shouldn't be logging these as they are expected
failure. From your description it would appear it didn't fall back, I'll take
a closer look. Can you send me the output of ifconfig or ip link for the port
in this state?
>
> Thanks,
> Shawn
>
^ permalink raw reply
* Re: [NET_NEXT RFC PATCH 2/3] ixgbe: added netdev_ops file to debugfs
From: Stephen Hemminger @ 2012-05-10 21:35 UTC (permalink / raw)
To: Sullivan, Catherine; +Cc: David Miller, netdev@vger.kernel.org
In-Reply-To: <F1C1314B3E1AB7499F9BF2A5F0F033EC14AA1B@FMSMSX104.amr.corp.intel.com>
On Thu, 10 May 2012 21:14:49 +0000
"Sullivan, Catherine" <catherine.sullivan@intel.com> wrote:
> I was aware of this, however this does not allow a call to the ndo_tx_timeout function which is what my patch does. Is there a way to do this with sysfs? I could not find this functionality.
>
> -----Original Message-----
> From: David Miller [mailto:davem@davemloft.net]
> Sent: Thursday, May 10, 2012 1:32 PM
>
> From: "Sullivan, Catherine" <catherine.sullivan@intel.com>
> Date: Thu, 10 May 2012 20:28:28 +0000
>
> > Could you point me to where this is available in sysfs please? I'm not
> > familiar with it.
>
> Is the 'find' program not properly functioning on your computer?
>
> [davem@drr net-next]$ find /sys -type f -name tx_timeout /sys/devices/virtual/net/lo/queues/tx-0/tx_timeout
> /sys/devices/virtual/net/redhat0/queues/tx-0/tx_timeout
> /sys/devices/pci0000:00/0000:00:1c.2/0000:06:00.0/net/p34p1/queues/tx-0/tx_timeout
> [davem@drr net-next]$
Are you trying to induce timeout for some tests or code coverage?
^ permalink raw reply
* Re: linux-next: Tree for May 10 (net/phy)
From: Randy Dunlap @ 2012-05-10 21:40 UTC (permalink / raw)
To: Stephen Rothwell; +Cc: linux-next, LKML, netdev
In-Reply-To: <20120510192635.c6f3a55196bbf65f13956e44@canb.auug.org.au>
[-- Attachment #1: Type: text/plain, Size: 205 bytes --]
On 05/10/2012 02:26 AM, Stephen Rothwell wrote:
> Hi all,
>
> Changes since 20120508:
ERROR: "of_mdio_find_bus" [drivers/net/phy/mdio-mux.ko] undefined!
Full randconfig file is attached.
--
~Randy
[-- Attachment #2: config-r5770 --]
[-- Type: text/plain, Size: 87405 bytes --]
#
# Automatically generated file; DO NOT EDIT.
# Linux/i386 3.4.0-rc6 Kernel Configuration
#
# CONFIG_64BIT is not set
CONFIG_X86_32=y
# CONFIG_X86_64 is not set
CONFIG_X86=y
CONFIG_INSTRUCTION_DECODER=y
CONFIG_OUTPUT_FORMAT="elf32-i386"
CONFIG_ARCH_DEFCONFIG="arch/x86/configs/i386_defconfig"
CONFIG_GENERIC_CMOS_UPDATE=y
CONFIG_CLOCKSOURCE_WATCHDOG=y
CONFIG_GENERIC_CLOCKEVENTS=y
CONFIG_GENERIC_CLOCKEVENTS_BROADCAST=y
CONFIG_LOCKDEP_SUPPORT=y
CONFIG_STACKTRACE_SUPPORT=y
CONFIG_HAVE_LATENCYTOP_SUPPORT=y
CONFIG_MMU=y
# CONFIG_NEED_DMA_MAP_STATE is not set
CONFIG_NEED_SG_DMA_LENGTH=y
CONFIG_GENERIC_ISA_DMA=y
CONFIG_GENERIC_HWEIGHT=y
CONFIG_GENERIC_GPIO=y
CONFIG_ARCH_MAY_HAVE_PC_FDC=y
# CONFIG_RWSEM_GENERIC_SPINLOCK is not set
CONFIG_RWSEM_XCHGADD_ALGORITHM=y
CONFIG_GENERIC_CALIBRATE_DELAY=y
# CONFIG_GENERIC_TIME_VSYSCALL is not set
CONFIG_ARCH_HAS_CPU_RELAX=y
CONFIG_ARCH_HAS_DEFAULT_IDLE=y
CONFIG_ARCH_HAS_CACHE_LINE_SIZE=y
CONFIG_ARCH_HAS_CPU_AUTOPROBE=y
CONFIG_HAVE_SETUP_PER_CPU_AREA=y
CONFIG_NEED_PER_CPU_EMBED_FIRST_CHUNK=y
CONFIG_NEED_PER_CPU_PAGE_FIRST_CHUNK=y
CONFIG_ARCH_HIBERNATION_POSSIBLE=y
CONFIG_ARCH_SUSPEND_POSSIBLE=y
# CONFIG_ZONE_DMA32 is not set
# CONFIG_AUDIT_ARCH is not set
CONFIG_ARCH_SUPPORTS_OPTIMIZED_INLINING=y
CONFIG_ARCH_SUPPORTS_DEBUG_PAGEALLOC=y
CONFIG_X86_32_SMP=y
CONFIG_X86_HT=y
CONFIG_X86_32_LAZY_GS=y
CONFIG_ARCH_HWEIGHT_CFLAGS="-fcall-saved-ecx -fcall-saved-edx"
CONFIG_KTIME_SCALAR=y
CONFIG_ARCH_SUPPORTS_UPROBES=y
CONFIG_DEFCONFIG_LIST="/lib/modules/$UNAME_RELEASE/.config"
CONFIG_CONSTRUCTORS=y
CONFIG_HAVE_IRQ_WORK=y
CONFIG_IRQ_WORK=y
CONFIG_BUILDTIME_EXTABLE_SORT=y
#
# General setup
#
CONFIG_EXPERIMENTAL=y
CONFIG_INIT_ENV_ARG_LIMIT=32
CONFIG_CROSS_COMPILE=""
CONFIG_LOCALVERSION=""
CONFIG_LOCALVERSION_AUTO=y
CONFIG_HAVE_KERNEL_GZIP=y
CONFIG_HAVE_KERNEL_BZIP2=y
CONFIG_HAVE_KERNEL_LZMA=y
CONFIG_HAVE_KERNEL_XZ=y
CONFIG_HAVE_KERNEL_LZO=y
# CONFIG_KERNEL_GZIP is not set
# CONFIG_KERNEL_BZIP2 is not set
# CONFIG_KERNEL_LZMA is not set
# CONFIG_KERNEL_XZ is not set
CONFIG_KERNEL_LZO=y
CONFIG_DEFAULT_HOSTNAME="(none)"
CONFIG_SWAP=y
CONFIG_SYSVIPC=y
# CONFIG_POSIX_MQUEUE is not set
# CONFIG_BSD_PROCESS_ACCT is not set
CONFIG_FHANDLE=y
# CONFIG_TASKSTATS is not set
# CONFIG_AUDIT is not set
CONFIG_HAVE_GENERIC_HARDIRQS=y
#
# IRQ subsystem
#
CONFIG_GENERIC_HARDIRQS=y
CONFIG_GENERIC_IRQ_PROBE=y
CONFIG_GENERIC_IRQ_SHOW=y
CONFIG_GENERIC_PENDING_IRQ=y
CONFIG_GENERIC_IRQ_CHIP=y
CONFIG_IRQ_DOMAIN=y
CONFIG_IRQ_DOMAIN_DEBUG=y
CONFIG_IRQ_FORCED_THREADING=y
CONFIG_SPARSE_IRQ=y
#
# RCU Subsystem
#
CONFIG_TREE_RCU=y
# CONFIG_PREEMPT_RCU is not set
CONFIG_RCU_FANOUT=32
CONFIG_RCU_FANOUT_LEAF=16
CONFIG_RCU_FANOUT_EXACT=y
CONFIG_TREE_RCU_TRACE=y
# CONFIG_IKCONFIG is not set
CONFIG_LOG_BUF_SHIFT=17
CONFIG_HAVE_UNSTABLE_SCHED_CLOCK=y
CONFIG_CGROUPS=y
CONFIG_CGROUP_DEBUG=y
# CONFIG_CGROUP_FREEZER is not set
# CONFIG_CGROUP_DEVICE is not set
CONFIG_CPUSETS=y
CONFIG_PROC_PID_CPUSET=y
# CONFIG_CGROUP_CPUACCT is not set
# CONFIG_RESOURCE_COUNTERS is not set
CONFIG_CGROUP_PERF=y
CONFIG_CGROUP_SCHED=y
CONFIG_FAIR_GROUP_SCHED=y
# CONFIG_CFS_BANDWIDTH is not set
# CONFIG_RT_GROUP_SCHED is not set
# CONFIG_BLK_CGROUP is not set
# CONFIG_CHECKPOINT_RESTORE is not set
# CONFIG_NAMESPACES is not set
CONFIG_SCHED_AUTOGROUP=y
# CONFIG_SYSFS_DEPRECATED is not set
CONFIG_RELAY=y
# CONFIG_BLK_DEV_INITRD is not set
# CONFIG_CC_OPTIMIZE_FOR_SIZE is not set
CONFIG_ANON_INODES=y
CONFIG_EXPERT=y
# CONFIG_UID16 is not set
CONFIG_KALLSYMS=y
CONFIG_KALLSYMS_ALL=y
# CONFIG_HOTPLUG is not set
# CONFIG_PRINTK is not set
# CONFIG_BUG is not set
CONFIG_ELF_CORE=y
# CONFIG_PCSPKR_PLATFORM is not set
CONFIG_HAVE_PCSPKR_PLATFORM=y
# CONFIG_BASE_FULL is not set
# CONFIG_FUTEX is not set
# CONFIG_EPOLL is not set
# CONFIG_SIGNALFD is not set
# CONFIG_TIMERFD is not set
CONFIG_EVENTFD=y
CONFIG_SHMEM=y
CONFIG_AIO=y
CONFIG_EMBEDDED=y
CONFIG_HAVE_PERF_EVENTS=y
CONFIG_PERF_USE_VMALLOC=y
#
# Kernel Performance Events And Counters
#
CONFIG_PERF_EVENTS=y
CONFIG_DEBUG_PERF_USE_VMALLOC=y
CONFIG_VM_EVENT_COUNTERS=y
# CONFIG_PCI_QUIRKS is not set
CONFIG_COMPAT_BRK=y
# CONFIG_SLAB is not set
# CONFIG_SLUB is not set
CONFIG_SLOB=y
CONFIG_PROFILING=y
CONFIG_OPROFILE=m
CONFIG_OPROFILE_EVENT_MULTIPLEX=y
CONFIG_HAVE_OPROFILE=y
CONFIG_OPROFILE_NMI_TIMER=y
# CONFIG_KPROBES is not set
CONFIG_JUMP_LABEL=y
CONFIG_HAVE_EFFICIENT_UNALIGNED_ACCESS=y
CONFIG_HAVE_IOREMAP_PROT=y
CONFIG_HAVE_KPROBES=y
CONFIG_HAVE_KRETPROBES=y
CONFIG_HAVE_OPTPROBES=y
CONFIG_HAVE_ARCH_TRACEHOOK=y
CONFIG_HAVE_DMA_ATTRS=y
CONFIG_USE_GENERIC_SMP_HELPERS=y
CONFIG_GENERIC_SMP_IDLE_THREAD=y
CONFIG_HAVE_REGS_AND_STACK_ACCESS_API=y
CONFIG_HAVE_DMA_API_DEBUG=y
CONFIG_HAVE_HW_BREAKPOINT=y
CONFIG_HAVE_MIXED_BREAKPOINTS_REGS=y
CONFIG_HAVE_USER_RETURN_NOTIFIER=y
CONFIG_HAVE_PERF_EVENTS_NMI=y
CONFIG_HAVE_ARCH_JUMP_LABEL=y
CONFIG_ARCH_HAVE_NMI_SAFE_CMPXCHG=y
CONFIG_HAVE_CMPXCHG_LOCAL=y
CONFIG_HAVE_CMPXCHG_DOUBLE=y
CONFIG_HAVE_ARCH_SECCOMP_FILTER=y
CONFIG_SECCOMP_FILTER=y
#
# GCOV-based kernel profiling
#
CONFIG_GCOV_KERNEL=y
CONFIG_GCOV_PROFILE_ALL=y
CONFIG_HAVE_GENERIC_DMA_COHERENT=y
CONFIG_RT_MUTEXES=y
CONFIG_BASE_SMALL=1
CONFIG_MODULES=y
# CONFIG_MODULE_FORCE_LOAD is not set
CONFIG_MODULE_UNLOAD=y
CONFIG_MODULE_FORCE_UNLOAD=y
CONFIG_MODVERSIONS=y
CONFIG_MODULE_SRCVERSION_ALL=y
CONFIG_STOP_MACHINE=y
CONFIG_BLOCK=y
# CONFIG_LBDAF is not set
CONFIG_BLK_DEV_BSG=y
CONFIG_BLK_DEV_BSGLIB=y
# CONFIG_BLK_DEV_INTEGRITY is not set
#
# Partition Types
#
# CONFIG_PARTITION_ADVANCED is not set
CONFIG_MSDOS_PARTITION=y
#
# IO Schedulers
#
CONFIG_IOSCHED_NOOP=y
# CONFIG_IOSCHED_DEADLINE is not set
# CONFIG_IOSCHED_CFQ is not set
CONFIG_DEFAULT_NOOP=y
CONFIG_DEFAULT_IOSCHED="noop"
# CONFIG_INLINE_SPIN_TRYLOCK is not set
# CONFIG_INLINE_SPIN_TRYLOCK_BH is not set
# CONFIG_INLINE_SPIN_LOCK is not set
# CONFIG_INLINE_SPIN_LOCK_BH is not set
# CONFIG_INLINE_SPIN_LOCK_IRQ is not set
# CONFIG_INLINE_SPIN_LOCK_IRQSAVE is not set
CONFIG_UNINLINE_SPIN_UNLOCK=y
# CONFIG_INLINE_SPIN_UNLOCK_BH is not set
# CONFIG_INLINE_SPIN_UNLOCK_IRQ is not set
# CONFIG_INLINE_SPIN_UNLOCK_IRQRESTORE is not set
# CONFIG_INLINE_READ_TRYLOCK is not set
# CONFIG_INLINE_READ_LOCK is not set
# CONFIG_INLINE_READ_LOCK_BH is not set
# CONFIG_INLINE_READ_LOCK_IRQ is not set
# CONFIG_INLINE_READ_LOCK_IRQSAVE is not set
# CONFIG_INLINE_READ_UNLOCK is not set
# CONFIG_INLINE_READ_UNLOCK_BH is not set
# CONFIG_INLINE_READ_UNLOCK_IRQ is not set
# CONFIG_INLINE_READ_UNLOCK_IRQRESTORE is not set
# CONFIG_INLINE_WRITE_TRYLOCK is not set
# CONFIG_INLINE_WRITE_LOCK is not set
# CONFIG_INLINE_WRITE_LOCK_BH is not set
# CONFIG_INLINE_WRITE_LOCK_IRQ is not set
# CONFIG_INLINE_WRITE_LOCK_IRQSAVE is not set
# CONFIG_INLINE_WRITE_UNLOCK is not set
# CONFIG_INLINE_WRITE_UNLOCK_BH is not set
# CONFIG_INLINE_WRITE_UNLOCK_IRQ is not set
# CONFIG_INLINE_WRITE_UNLOCK_IRQRESTORE is not set
# CONFIG_MUTEX_SPIN_ON_OWNER is not set
# CONFIG_FREEZER is not set
#
# Processor type and features
#
# CONFIG_ZONE_DMA is not set
CONFIG_TICK_ONESHOT=y
# CONFIG_NO_HZ is not set
CONFIG_HIGH_RES_TIMERS=y
CONFIG_GENERIC_CLOCKEVENTS_BUILD=y
CONFIG_GENERIC_CLOCKEVENTS_MIN_ADJUST=y
CONFIG_SMP=y
# CONFIG_X86_MPPARSE is not set
# CONFIG_X86_BIGSMP is not set
CONFIG_X86_EXTENDED_PLATFORM=y
CONFIG_X86_WANT_INTEL_MID=y
CONFIG_X86_INTEL_MID=y
CONFIG_X86_MDFLD=y
CONFIG_X86_RDC321X=y
CONFIG_X86_32_NON_STANDARD=y
# CONFIG_X86_NUMAQ is not set
CONFIG_STA2X11=y
CONFIG_X86_SUMMIT=y
CONFIG_X86_32_IRIS=m
# CONFIG_SCHED_OMIT_FRAME_POINTER is not set
CONFIG_KVMTOOL_TEST_ENABLE=y
CONFIG_PARAVIRT_GUEST=y
# CONFIG_PARAVIRT_TIME_ACCOUNTING is not set
# CONFIG_XEN_PRIVILEGED_GUEST is not set
CONFIG_KVM_CLOCK=y
# CONFIG_KVM_GUEST is not set
# CONFIG_LGUEST_GUEST is not set
CONFIG_PARAVIRT=y
# CONFIG_PARAVIRT_SPINLOCKS is not set
CONFIG_PARAVIRT_CLOCK=y
CONFIG_PARAVIRT_DEBUG=y
CONFIG_NO_BOOTMEM=y
# CONFIG_MEMTEST is not set
CONFIG_X86_CYCLONE_TIMER=y
# CONFIG_M386 is not set
# CONFIG_M486 is not set
# CONFIG_M586 is not set
# CONFIG_M586TSC is not set
# CONFIG_M586MMX is not set
CONFIG_M686=y
# 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_MWINCHIP3D is not set
# CONFIG_MELAN 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_MVIAC7 is not set
# CONFIG_MCORE2 is not set
# CONFIG_MATOM is not set
# CONFIG_X86_GENERIC is not set
CONFIG_X86_INTERNODE_CACHE_SHIFT=5
CONFIG_X86_CMPXCHG=y
CONFIG_X86_L1_CACHE_SHIFT=5
CONFIG_X86_XADD=y
# CONFIG_X86_PPRO_FENCE is not set
CONFIG_X86_WP_WORKS_OK=y
CONFIG_X86_INVLPG=y
CONFIG_X86_BSWAP=y
CONFIG_X86_POPAD_OK=y
CONFIG_X86_USE_PPRO_CHECKSUM=y
CONFIG_X86_TSC=y
CONFIG_X86_CMPXCHG64=y
CONFIG_X86_CMOV=y
CONFIG_X86_MINIMUM_CPU_FAMILY=5
CONFIG_X86_DEBUGCTLMSR=y
# CONFIG_PROCESSOR_SELECT is not set
CONFIG_CPU_SUP_INTEL=y
CONFIG_CPU_SUP_CYRIX_32=y
CONFIG_CPU_SUP_AMD=y
CONFIG_CPU_SUP_CENTAUR=y
CONFIG_CPU_SUP_TRANSMETA_32=y
CONFIG_CPU_SUP_UMC_32=y
CONFIG_HPET_TIMER=y
CONFIG_APB_TIMER=y
CONFIG_DMI=y
CONFIG_SWIOTLB=y
CONFIG_IOMMU_HELPER=y
CONFIG_NR_CPUS=8
# CONFIG_SCHED_SMT is not set
CONFIG_SCHED_MC=y
CONFIG_IRQ_TIME_ACCOUNTING=y
CONFIG_PREEMPT_NONE=y
# CONFIG_PREEMPT_VOLUNTARY is not set
# CONFIG_PREEMPT is not set
CONFIG_X86_LOCAL_APIC=y
CONFIG_X86_IO_APIC=y
CONFIG_X86_REROUTE_FOR_BROKEN_BOOT_IRQS=y
# CONFIG_X86_MCE is not set
CONFIG_VM86=y
# CONFIG_TOSHIBA is not set
CONFIG_I8K=m
CONFIG_X86_REBOOTFIXUPS=y
CONFIG_MICROCODE=m
CONFIG_MICROCODE_INTEL=y
# CONFIG_MICROCODE_AMD is not set
CONFIG_MICROCODE_OLD_INTERFACE=y
# CONFIG_X86_MSR is not set
# CONFIG_X86_CPUID is not set
# CONFIG_NOHIGHMEM is not set
CONFIG_HIGHMEM4G=y
# CONFIG_HIGHMEM64G is not set
CONFIG_VMSPLIT_3G=y
# CONFIG_VMSPLIT_3G_OPT is not set
# CONFIG_VMSPLIT_2G is not set
# CONFIG_VMSPLIT_2G_OPT is not set
# CONFIG_VMSPLIT_1G is not set
CONFIG_PAGE_OFFSET=0xC0000000
CONFIG_HIGHMEM=y
# CONFIG_ARCH_PHYS_ADDR_T_64BIT is not set
# CONFIG_ARCH_DMA_ADDR_T_64BIT is not set
#
# NUMA (Summit) requires SMP, 64GB highmem support, ACPI
#
CONFIG_ARCH_FLATMEM_ENABLE=y
CONFIG_ARCH_SPARSEMEM_ENABLE=y
CONFIG_ARCH_SELECT_MEMORY_MODEL=y
CONFIG_ILLEGAL_POINTER_VALUE=0
CONFIG_SELECT_MEMORY_MODEL=y
CONFIG_FLATMEM_MANUAL=y
# CONFIG_SPARSEMEM_MANUAL is not set
CONFIG_FLATMEM=y
CONFIG_FLAT_NODE_MEM_MAP=y
CONFIG_SPARSEMEM_STATIC=y
CONFIG_HAVE_MEMBLOCK=y
CONFIG_HAVE_MEMBLOCK_NODE_MAP=y
CONFIG_ARCH_DISCARD_MEMBLOCK=y
CONFIG_PAGEFLAGS_EXTENDED=y
CONFIG_SPLIT_PTLOCK_CPUS=999999
CONFIG_COMPACTION=y
CONFIG_MIGRATION=y
# CONFIG_PHYS_ADDR_T_64BIT is not set
CONFIG_ZONE_DMA_FLAG=0
CONFIG_BOUNCE=y
CONFIG_VIRT_TO_BUS=y
# CONFIG_KSM is not set
CONFIG_DEFAULT_MMAP_MIN_ADDR=4096
# CONFIG_TRANSPARENT_HUGEPAGE is not set
# CONFIG_CROSS_MEMORY_ATTACH is not set
CONFIG_CLEANCACHE=y
CONFIG_FRONTSWAP=y
CONFIG_HIGHPTE=y
CONFIG_X86_CHECK_BIOS_CORRUPTION=y
CONFIG_X86_BOOTPARAM_MEMORY_CORRUPTION_CHECK=y
CONFIG_X86_RESERVE_LOW=64
# CONFIG_MATH_EMULATION is not set
CONFIG_MTRR=y
# CONFIG_MTRR_SANITIZER is not set
# CONFIG_X86_PAT is not set
# CONFIG_ARCH_RANDOM is not set
# CONFIG_EFI is not set
CONFIG_SECCOMP=y
# CONFIG_CC_STACKPROTECTOR is not set
# CONFIG_HZ_100 is not set
# CONFIG_HZ_250 is not set
CONFIG_HZ_300=y
# CONFIG_HZ_1000 is not set
CONFIG_HZ=300
CONFIG_SCHED_HRTICK=y
CONFIG_KEXEC=y
# CONFIG_CRASH_DUMP is not set
CONFIG_PHYSICAL_START=0x1000000
CONFIG_RELOCATABLE=y
CONFIG_X86_NEED_RELOCS=y
CONFIG_PHYSICAL_ALIGN=0x1000000
CONFIG_COMPAT_VDSO=y
CONFIG_CMDLINE_BOOL=y
CONFIG_CMDLINE=""
CONFIG_CMDLINE_OVERRIDE=y
CONFIG_ARCH_ENABLE_MEMORY_HOTPLUG=y
#
# Power management and ACPI options
#
# CONFIG_SUSPEND is not set
# CONFIG_HIBERNATION is not set
CONFIG_PM_RUNTIME=y
CONFIG_PM=y
# CONFIG_PM_DEBUG is not set
CONFIG_ACPI=y
CONFIG_ACPI_PROCFS=y
CONFIG_ACPI_PROCFS_POWER=y
CONFIG_ACPI_EC_DEBUGFS=m
CONFIG_ACPI_PROC_EVENT=y
# CONFIG_ACPI_AC is not set
# CONFIG_ACPI_BATTERY is not set
CONFIG_ACPI_BUTTON=m
# CONFIG_ACPI_FAN is not set
# CONFIG_ACPI_DOCK is not set
CONFIG_ACPI_PROCESSOR=m
# CONFIG_ACPI_IPMI is not set
# CONFIG_ACPI_PROCESSOR_AGGREGATOR is not set
# CONFIG_ACPI_THERMAL is not set
# CONFIG_ACPI_CUSTOM_DSDT is not set
CONFIG_ACPI_BLACKLIST_YEAR=0
CONFIG_ACPI_DEBUG=y
# CONFIG_ACPI_DEBUG_FUNC_TRACE is not set
# CONFIG_ACPI_PCI_SLOT is not set
CONFIG_X86_PM_TIMER=y
# CONFIG_ACPI_CONTAINER is not set
# CONFIG_ACPI_SBS is not set
CONFIG_ACPI_HED=m
# CONFIG_ACPI_CUSTOM_METHOD is not set
# CONFIG_ACPI_BGRT is not set
# CONFIG_ACPI_APEI is not set
CONFIG_SFI=y
#
# CPU Frequency scaling
#
CONFIG_CPU_FREQ=y
CONFIG_CPU_FREQ_TABLE=m
CONFIG_CPU_FREQ_STAT=m
CONFIG_CPU_FREQ_STAT_DETAILS=y
CONFIG_CPU_FREQ_DEFAULT_GOV_PERFORMANCE=y
# CONFIG_CPU_FREQ_DEFAULT_GOV_POWERSAVE is not set
# CONFIG_CPU_FREQ_DEFAULT_GOV_USERSPACE is not set
# CONFIG_CPU_FREQ_DEFAULT_GOV_ONDEMAND is not set
# CONFIG_CPU_FREQ_DEFAULT_GOV_CONSERVATIVE is not set
CONFIG_CPU_FREQ_GOV_PERFORMANCE=y
CONFIG_CPU_FREQ_GOV_POWERSAVE=m
CONFIG_CPU_FREQ_GOV_USERSPACE=m
# CONFIG_CPU_FREQ_GOV_ONDEMAND is not set
# CONFIG_CPU_FREQ_GOV_CONSERVATIVE is not set
#
# x86 CPU frequency scaling drivers
#
# CONFIG_X86_PCC_CPUFREQ is not set
CONFIG_X86_ACPI_CPUFREQ=m
CONFIG_X86_POWERNOW_K6=m
# CONFIG_X86_POWERNOW_K7 is not set
CONFIG_X86_POWERNOW_K8=m
CONFIG_X86_GX_SUSPMOD=m
CONFIG_X86_SPEEDSTEP_CENTRINO=m
CONFIG_X86_SPEEDSTEP_CENTRINO_TABLE=y
# CONFIG_X86_SPEEDSTEP_ICH is not set
CONFIG_X86_SPEEDSTEP_SMI=m
# CONFIG_X86_P4_CLOCKMOD is not set
CONFIG_X86_CPUFREQ_NFORCE2=m
CONFIG_X86_LONGRUN=m
CONFIG_X86_LONGHAUL=m
# CONFIG_X86_E_POWERSAVER is not set
#
# shared options
#
CONFIG_X86_SPEEDSTEP_LIB=m
CONFIG_X86_SPEEDSTEP_RELAXED_CAP_CHECK=y
CONFIG_CPU_IDLE=y
CONFIG_CPU_IDLE_GOV_LADDER=y
# CONFIG_ARCH_NEEDS_CPU_IDLE_COUPLED is not set
CONFIG_INTEL_IDLE=y
#
# Bus options (PCI etc.)
#
CONFIG_PCI=y
# CONFIG_PCI_GOBIOS is not set
# CONFIG_PCI_GOMMCONFIG is not set
# CONFIG_PCI_GODIRECT is not set
# CONFIG_PCI_GOOLPC is not set
CONFIG_PCI_GOANY=y
CONFIG_PCI_BIOS=y
CONFIG_PCI_DIRECT=y
CONFIG_PCI_MMCONFIG=y
CONFIG_PCI_OLPC=y
CONFIG_PCI_DOMAINS=y
# CONFIG_PCI_CNB20LE_QUIRK is not set
# CONFIG_PCIEPORTBUS is not set
CONFIG_ARCH_SUPPORTS_MSI=y
CONFIG_PCI_MSI=y
# CONFIG_PCI_DEBUG is not set
# CONFIG_PCI_REALLOC_ENABLE_AUTO is not set
# CONFIG_PCI_STUB is not set
CONFIG_HT_IRQ=y
CONFIG_PCI_ATS=y
CONFIG_PCI_IOV=y
CONFIG_PCI_PRI=y
# CONFIG_PCI_PASID is not set
CONFIG_PCI_LABEL=y
CONFIG_ISA_DMA_API=y
CONFIG_ISA=y
CONFIG_EISA=y
# CONFIG_EISA_VLB_PRIMING is not set
CONFIG_EISA_PCI_EISA=y
# CONFIG_EISA_VIRTUAL_ROOT is not set
CONFIG_EISA_NAMES=y
# CONFIG_MCA is not set
CONFIG_SCx200=m
# CONFIG_SCx200HR_TIMER is not set
CONFIG_OLPC=y
CONFIG_OLPC_XO15_SCI=y
# CONFIG_ALIX is not set
# CONFIG_NET5501 is not set
# CONFIG_GEOS is not set
CONFIG_AMD_NB=y
# CONFIG_RAPIDIO is not set
#
# Executable file formats / Emulations
#
CONFIG_BINFMT_ELF=y
CONFIG_ARCH_BINFMT_ELF_RANDOMIZE_PIE=y
# CONFIG_CORE_DUMP_DEFAULT_ELF_HEADERS is not set
CONFIG_HAVE_AOUT=y
CONFIG_BINFMT_AOUT=m
CONFIG_BINFMT_MISC=m
CONFIG_HAVE_ATOMIC_IOMAP=y
CONFIG_HAVE_TEXT_POKE_SMP=y
CONFIG_X86_DEV_DMA_OPS=y
CONFIG_X86_DMA_REMAP=y
CONFIG_NET=y
#
# Networking options
#
CONFIG_PACKET=m
# CONFIG_UNIX is not set
CONFIG_XFRM=y
CONFIG_XFRM_USER=m
CONFIG_XFRM_SUB_POLICY=y
CONFIG_XFRM_MIGRATE=y
# CONFIG_XFRM_STATISTICS is not set
CONFIG_XFRM_IPCOMP=m
CONFIG_NET_KEY=m
CONFIG_NET_KEY_MIGRATE=y
CONFIG_INET=y
CONFIG_IP_MULTICAST=y
# CONFIG_IP_ADVANCED_ROUTER is not set
CONFIG_IP_ROUTE_CLASSID=y
CONFIG_IP_PNP=y
CONFIG_IP_PNP_DHCP=y
# CONFIG_IP_PNP_BOOTP is not set
CONFIG_IP_PNP_RARP=y
# CONFIG_NET_IPIP is not set
CONFIG_NET_IPGRE_DEMUX=m
# CONFIG_NET_IPGRE is not set
CONFIG_IP_MROUTE=y
CONFIG_IP_PIMSM_V1=y
CONFIG_IP_PIMSM_V2=y
CONFIG_ARPD=y
# CONFIG_SYN_COOKIES is not set
# CONFIG_INET_AH is not set
# CONFIG_INET_ESP is not set
CONFIG_INET_IPCOMP=m
CONFIG_INET_XFRM_TUNNEL=m
CONFIG_INET_TUNNEL=m
CONFIG_INET_XFRM_MODE_TRANSPORT=m
CONFIG_INET_XFRM_MODE_TUNNEL=m
CONFIG_INET_XFRM_MODE_BEET=m
CONFIG_INET_LRO=m
# CONFIG_INET_DIAG is not set
# CONFIG_TCP_CONG_ADVANCED is not set
CONFIG_TCP_CONG_CUBIC=y
CONFIG_DEFAULT_TCP_CONG="cubic"
# CONFIG_TCP_MD5SIG is not set
CONFIG_IPV6=m
CONFIG_IPV6_PRIVACY=y
CONFIG_IPV6_ROUTER_PREF=y
# CONFIG_IPV6_ROUTE_INFO is not set
CONFIG_IPV6_OPTIMISTIC_DAD=y
CONFIG_INET6_AH=m
CONFIG_INET6_ESP=m
CONFIG_INET6_IPCOMP=m
# CONFIG_IPV6_MIP6 is not set
CONFIG_INET6_XFRM_TUNNEL=m
CONFIG_INET6_TUNNEL=m
# CONFIG_INET6_XFRM_MODE_TRANSPORT is not set
CONFIG_INET6_XFRM_MODE_TUNNEL=m
# CONFIG_INET6_XFRM_MODE_BEET is not set
CONFIG_INET6_XFRM_MODE_ROUTEOPTIMIZATION=m
# CONFIG_IPV6_SIT is not set
# CONFIG_IPV6_TUNNEL is not set
CONFIG_IPV6_MULTIPLE_TABLES=y
CONFIG_IPV6_SUBTREES=y
CONFIG_IPV6_MROUTE=y
# CONFIG_IPV6_MROUTE_MULTIPLE_TABLES is not set
CONFIG_IPV6_PIMSM_V2=y
# CONFIG_NETWORK_SECMARK is not set
# CONFIG_NETWORK_PHY_TIMESTAMPING is not set
# CONFIG_NETFILTER is not set
# CONFIG_IP_DCCP is not set
# CONFIG_IP_SCTP is not set
CONFIG_RDS=m
CONFIG_RDS_TCP=m
CONFIG_RDS_DEBUG=y
# CONFIG_TIPC is not set
CONFIG_ATM=m
# CONFIG_ATM_CLIP is not set
# CONFIG_ATM_LANE is not set
CONFIG_ATM_BR2684=m
CONFIG_ATM_BR2684_IPFILTER=y
CONFIG_L2TP=m
CONFIG_L2TP_DEBUGFS=m
CONFIG_L2TP_V3=y
# CONFIG_L2TP_IP is not set
# CONFIG_L2TP_ETH is not set
# CONFIG_BRIDGE is not set
CONFIG_NET_DSA=m
CONFIG_NET_DSA_TAG_DSA=y
# CONFIG_NET_DSA_TAG_EDSA is not set
CONFIG_NET_DSA_TAG_TRAILER=y
# 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=m
# CONFIG_LAPB is not set
# CONFIG_ECONET is not set
# CONFIG_WAN_ROUTER is not set
# CONFIG_PHONET is not set
CONFIG_IEEE802154=m
# CONFIG_IEEE802154_6LOWPAN is not set
CONFIG_NET_SCHED=y
#
# Queueing/Scheduling
#
# CONFIG_NET_SCH_CBQ is not set
CONFIG_NET_SCH_HTB=m
CONFIG_NET_SCH_HFSC=m
# CONFIG_NET_SCH_ATM is not set
# CONFIG_NET_SCH_PRIO is not set
CONFIG_NET_SCH_MULTIQ=m
# CONFIG_NET_SCH_RED is not set
CONFIG_NET_SCH_SFB=m
# CONFIG_NET_SCH_SFQ is not set
# CONFIG_NET_SCH_TEQL is not set
CONFIG_NET_SCH_TBF=m
# CONFIG_NET_SCH_GRED is not set
CONFIG_NET_SCH_DSMARK=m
CONFIG_NET_SCH_NETEM=m
# CONFIG_NET_SCH_DRR is not set
CONFIG_NET_SCH_MQPRIO=m
CONFIG_NET_SCH_CHOKE=m
CONFIG_NET_SCH_QFQ=m
CONFIG_NET_SCH_INGRESS=m
# CONFIG_NET_SCH_PLUG is not set
#
# Classification
#
CONFIG_NET_CLS=y
CONFIG_NET_CLS_BASIC=m
# CONFIG_NET_CLS_TCINDEX is not set
CONFIG_NET_CLS_ROUTE4=m
# CONFIG_NET_CLS_FW is not set
# CONFIG_NET_CLS_U32 is not set
# CONFIG_NET_CLS_RSVP is not set
# CONFIG_NET_CLS_RSVP6 is not set
# CONFIG_NET_CLS_FLOW is not set
CONFIG_NET_CLS_CGROUP=m
CONFIG_NET_EMATCH=y
CONFIG_NET_EMATCH_STACK=32
# CONFIG_NET_EMATCH_CMP is not set
# CONFIG_NET_EMATCH_NBYTE is not set
# CONFIG_NET_EMATCH_U32 is not set
CONFIG_NET_EMATCH_META=m
CONFIG_NET_EMATCH_TEXT=m
CONFIG_NET_CLS_ACT=y
# CONFIG_NET_ACT_POLICE is not set
# CONFIG_NET_ACT_GACT is not set
# CONFIG_NET_ACT_MIRRED is not set
CONFIG_NET_ACT_NAT=m
CONFIG_NET_ACT_PEDIT=m
CONFIG_NET_ACT_SIMP=m
CONFIG_NET_ACT_SKBEDIT=m
CONFIG_NET_ACT_CSUM=m
CONFIG_NET_SCH_FIFO=y
# CONFIG_DCB is not set
CONFIG_DNS_RESOLVER=m
# CONFIG_BATMAN_ADV is not set
CONFIG_OPENVSWITCH=m
CONFIG_RPS=y
CONFIG_RFS_ACCEL=y
CONFIG_XPS=y
# CONFIG_NETPRIO_CGROUP is not set
CONFIG_BQL=y
#
# Network testing
#
CONFIG_NET_PKTGEN=m
CONFIG_HAMRADIO=y
#
# Packet Radio protocols
#
# CONFIG_AX25 is not set
CONFIG_CAN=m
CONFIG_CAN_RAW=m
# CONFIG_CAN_BCM is not set
# CONFIG_CAN_GW is not set
#
# CAN Device Drivers
#
CONFIG_CAN_VCAN=m
CONFIG_CAN_SLCAN=m
# CONFIG_CAN_DEV is not set
# CONFIG_CAN_DEBUG_DEVICES is not set
CONFIG_IRDA=m
#
# IrDA protocols
#
# CONFIG_IRLAN is not set
# CONFIG_IRNET is not set
# CONFIG_IRCOMM is not set
CONFIG_IRDA_ULTRA=y
#
# IrDA options
#
# CONFIG_IRDA_CACHE_LAST_LSAP is not set
CONFIG_IRDA_FAST_RR=y
CONFIG_IRDA_DEBUG=y
#
# Infrared-port device drivers
#
#
# SIR device drivers
#
CONFIG_IRTTY_SIR=m
#
# Dongle support
#
CONFIG_DONGLE=y
# CONFIG_ESI_DONGLE is not set
# CONFIG_ACTISYS_DONGLE is not set
CONFIG_TEKRAM_DONGLE=m
CONFIG_TOIM3232_DONGLE=m
CONFIG_LITELINK_DONGLE=m
# CONFIG_MA600_DONGLE is not set
CONFIG_GIRBIL_DONGLE=m
CONFIG_MCP2120_DONGLE=m
CONFIG_OLD_BELKIN_DONGLE=m
# CONFIG_ACT200L_DONGLE is not set
# CONFIG_KINGSUN_DONGLE is not set
CONFIG_KSDAZZLE_DONGLE=m
# CONFIG_KS959_DONGLE is not set
#
# FIR device drivers
#
# CONFIG_USB_IRDA is not set
CONFIG_SIGMATEL_FIR=m
CONFIG_NSC_FIR=m
# CONFIG_WINBOND_FIR is not set
CONFIG_TOSHIBA_FIR=m
CONFIG_SMC_IRCC_FIR=m
CONFIG_ALI_FIR=m
# CONFIG_VLSI_FIR is not set
CONFIG_VIA_FIR=m
CONFIG_MCS_FIR=m
CONFIG_BT=m
CONFIG_BT_RFCOMM=m
CONFIG_BT_RFCOMM_TTY=y
CONFIG_BT_BNEP=m
CONFIG_BT_BNEP_MC_FILTER=y
CONFIG_BT_BNEP_PROTO_FILTER=y
#
# Bluetooth device drivers
#
# CONFIG_BT_HCIBTUSB is not set
CONFIG_BT_HCIUART=m
# CONFIG_BT_HCIUART_H4 is not set
CONFIG_BT_HCIUART_BCSP=y
CONFIG_BT_HCIUART_ATH3K=y
# CONFIG_BT_HCIUART_LL is not set
CONFIG_BT_HCIBCM203X=m
CONFIG_BT_HCIBPA10X=m
# CONFIG_BT_HCIBFUSB is not set
CONFIG_BT_HCIVHCI=m
CONFIG_BT_MRVL=m
CONFIG_BT_WILINK=m
CONFIG_AF_RXRPC=m
CONFIG_AF_RXRPC_DEBUG=y
# CONFIG_RXKAD is not set
CONFIG_FIB_RULES=y
CONFIG_WIRELESS=y
CONFIG_CFG80211=m
# CONFIG_NL80211_TESTMODE is not set
# CONFIG_CFG80211_DEVELOPER_WARNINGS is not set
# CONFIG_CFG80211_REG_DEBUG is not set
# CONFIG_CFG80211_DEFAULT_PS is not set
# CONFIG_CFG80211_DEBUGFS is not set
CONFIG_CFG80211_INTERNAL_REGDB=y
# CONFIG_CFG80211_WEXT is not set
CONFIG_LIB80211=m
# CONFIG_LIB80211_DEBUG is not set
CONFIG_MAC80211=m
CONFIG_MAC80211_HAS_RC=y
CONFIG_MAC80211_RC_PID=y
# CONFIG_MAC80211_RC_MINSTREL is not set
CONFIG_MAC80211_RC_DEFAULT_PID=y
CONFIG_MAC80211_RC_DEFAULT="pid"
CONFIG_MAC80211_MESH=y
CONFIG_MAC80211_LEDS=y
CONFIG_MAC80211_DEBUGFS=y
CONFIG_MAC80211_DEBUG_MENU=y
CONFIG_MAC80211_NOINLINE=y
CONFIG_MAC80211_VERBOSE_DEBUG=y
# CONFIG_MAC80211_HT_DEBUG is not set
# CONFIG_MAC80211_TKIP_DEBUG is not set
# CONFIG_MAC80211_IBSS_DEBUG is not set
# CONFIG_MAC80211_VERBOSE_PS_DEBUG is not set
CONFIG_MAC80211_VERBOSE_MPL_DEBUG=y
# CONFIG_MAC80211_VERBOSE_MPATH_DEBUG is not set
CONFIG_MAC80211_VERBOSE_MHWMP_DEBUG=y
# CONFIG_MAC80211_VERBOSE_MESH_SYNC_DEBUG is not set
# CONFIG_MAC80211_VERBOSE_TDLS_DEBUG is not set
# CONFIG_MAC80211_DEBUG_COUNTERS is not set
# CONFIG_WIMAX is not set
CONFIG_RFKILL=m
CONFIG_RFKILL_LEDS=y
# CONFIG_RFKILL_INPUT is not set
CONFIG_RFKILL_REGULATOR=m
CONFIG_NET_9P=y
CONFIG_NET_9P_VIRTIO=y
CONFIG_NET_9P_DEBUG=y
CONFIG_CAIF=m
CONFIG_CAIF_DEBUG=y
CONFIG_CAIF_NETDEV=m
# CONFIG_CAIF_USB is not set
# CONFIG_CEPH_LIB is not set
# CONFIG_NFC is not set
#
# Device Drivers
#
#
# Generic Driver Options
#
CONFIG_STANDALONE=y
CONFIG_PREVENT_FIRMWARE_BUILD=y
CONFIG_FW_LOADER=m
# CONFIG_FIRMWARE_IN_KERNEL is not set
CONFIG_EXTRA_FIRMWARE=""
CONFIG_DEBUG_DRIVER=y
CONFIG_DEBUG_DEVRES=y
# CONFIG_SYS_HYPERVISOR is not set
# CONFIG_GENERIC_CPU_DEVICES is not set
CONFIG_REGMAP=y
CONFIG_REGMAP_I2C=y
CONFIG_REGMAP_SPI=y
CONFIG_REGMAP_IRQ=y
# CONFIG_DMA_SHARED_BUFFER is not set
# CONFIG_CONNECTOR is not set
# CONFIG_MTD is not set
CONFIG_OF=y
#
# Device Tree and Open Firmware support
#
# CONFIG_PROC_DEVICETREE is not set
# CONFIG_OF_SELFTEST is not set
CONFIG_OF_PROMTREE=y
CONFIG_OF_ADDRESS=y
CONFIG_OF_IRQ=y
CONFIG_OF_DEVICE=y
CONFIG_OF_I2C=y
CONFIG_OF_NET=y
CONFIG_OF_MDIO=m
CONFIG_OF_PCI=y
CONFIG_OF_PCI_IRQ=y
CONFIG_PARPORT=m
# CONFIG_PARPORT_PC is not set
# CONFIG_PARPORT_GSC is not set
CONFIG_PARPORT_AX88796=m
CONFIG_PARPORT_1284=y
CONFIG_PARPORT_NOT_PC=y
CONFIG_PNP=y
# CONFIG_PNP_DEBUG_MESSAGES is not set
#
# Protocols
#
CONFIG_ISAPNP=y
CONFIG_PNPBIOS=y
CONFIG_PNPBIOS_PROC_FS=y
CONFIG_PNPACPI=y
CONFIG_BLK_DEV=y
# CONFIG_BLK_DEV_FD is not set
# CONFIG_BLK_DEV_XD is not set
# CONFIG_BLK_DEV_PCIESSD_MTIP32XX is not set
# CONFIG_BLK_CPQ_DA is not set
# CONFIG_BLK_CPQ_CISS_DA is not set
CONFIG_BLK_DEV_DAC960=m
# CONFIG_BLK_DEV_UMEM is not set
# CONFIG_BLK_DEV_COW_COMMON is not set
# CONFIG_BLK_DEV_LOOP is not set
#
# DRBD disabled because PROC_FS, INET or CONNECTOR not selected
#
# CONFIG_BLK_DEV_NBD is not set
CONFIG_BLK_DEV_NVME=m
# CONFIG_BLK_DEV_OSD is not set
CONFIG_BLK_DEV_SX8=m
CONFIG_BLK_DEV_UB=m
# CONFIG_BLK_DEV_RAM is not set
# CONFIG_CDROM_PKTCDVD is not set
# CONFIG_ATA_OVER_ETH is not set
CONFIG_VIRTIO_BLK=y
# CONFIG_BLK_DEV_HD is not set
# CONFIG_BLK_DEV_RBD is not set
#
# Misc devices
#
CONFIG_SENSORS_LIS3LV02D=m
# CONFIG_AD525X_DPOT is not set
# CONFIG_IBM_ASM is not set
CONFIG_PHANTOM=m
CONFIG_INTEL_MID_PTI=m
# CONFIG_SGI_IOC4 is not set
# CONFIG_TIFM_CORE is not set
# CONFIG_ICS932S401 is not set
CONFIG_ENCLOSURE_SERVICES=m
# CONFIG_CS5535_MFGPT is not set
CONFIG_HP_ILO=m
# CONFIG_APDS9802ALS is not set
CONFIG_ISL29003=m
CONFIG_ISL29020=m
# CONFIG_SENSORS_TSL2550 is not set
CONFIG_SENSORS_BH1780=m
# CONFIG_SENSORS_BH1770 is not set
# CONFIG_SENSORS_APDS990X is not set
CONFIG_HMC6352=m
# CONFIG_DS1682 is not set
CONFIG_TI_DAC7512=m
CONFIG_VMWARE_BALLOON=m
CONFIG_BMP085=y
CONFIG_BMP085_I2C=m
# CONFIG_BMP085_SPI is not set
CONFIG_PCH_PHUB=m
# CONFIG_USB_SWITCH_FSA9480 is not set
CONFIG_C2PORT=m
CONFIG_C2PORT_DURAMAR_2150=m
#
# EEPROM support
#
CONFIG_EEPROM_AT24=m
# CONFIG_EEPROM_AT25 is not set
# CONFIG_EEPROM_LEGACY is not set
# CONFIG_EEPROM_MAX6875 is not set
# CONFIG_EEPROM_93CX6 is not set
# CONFIG_EEPROM_93XX46 is not set
CONFIG_CB710_CORE=m
CONFIG_CB710_DEBUG=y
CONFIG_CB710_DEBUG_ASSUMPTIONS=y
#
# Texas Instruments shared transport line discipline
#
CONFIG_TI_ST=m
# CONFIG_SENSORS_LIS3_I2C is not set
#
# Altera FPGA firmware download module
#
# CONFIG_ALTERA_STAPL is not set
CONFIG_HAVE_IDE=y
CONFIG_IDE=m
#
# Please see Documentation/ide/ide.txt for help/info on IDE drives
#
CONFIG_IDE_XFER_MODE=y
CONFIG_IDE_TIMINGS=y
CONFIG_IDE_ATAPI=y
CONFIG_IDE_LEGACY=y
# CONFIG_BLK_DEV_IDE_SATA is not set
CONFIG_IDE_GD=m
CONFIG_IDE_GD_ATA=y
# CONFIG_IDE_GD_ATAPI is not set
# CONFIG_BLK_DEV_IDECD is not set
CONFIG_BLK_DEV_IDETAPE=m
CONFIG_BLK_DEV_IDEACPI=y
CONFIG_IDE_TASK_IOCTL=y
# CONFIG_IDE_PROC_FS is not set
#
# IDE chipset support/bugfixes
#
CONFIG_IDE_GENERIC=m
CONFIG_BLK_DEV_PLATFORM=m
CONFIG_BLK_DEV_CMD640=m
# CONFIG_BLK_DEV_CMD640_ENHANCED is not set
# CONFIG_BLK_DEV_IDEPNP is not set
CONFIG_BLK_DEV_IDEDMA_SFF=y
#
# PCI IDE chipsets support
#
CONFIG_BLK_DEV_IDEPCI=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 is not set
CONFIG_BLK_DEV_IDEDMA_PCI=y
# CONFIG_BLK_DEV_AEC62XX is not set
CONFIG_BLK_DEV_ALI15X3=m
CONFIG_BLK_DEV_AMD74XX=m
# CONFIG_BLK_DEV_ATIIXP is not set
CONFIG_BLK_DEV_CMD64X=m
# CONFIG_BLK_DEV_TRIFLEX is not set
# CONFIG_BLK_DEV_CS5520 is not set
CONFIG_BLK_DEV_CS5530=m
# CONFIG_BLK_DEV_CS5535 is not set
CONFIG_BLK_DEV_CS5536=m
CONFIG_BLK_DEV_HPT366=m
CONFIG_BLK_DEV_JMICRON=m
# CONFIG_BLK_DEV_SC1200 is not set
# CONFIG_BLK_DEV_PIIX is not set
# CONFIG_BLK_DEV_IT8172 is not set
# CONFIG_BLK_DEV_IT8213 is not set
CONFIG_BLK_DEV_IT821X=m
# CONFIG_BLK_DEV_NS87415 is not set
CONFIG_BLK_DEV_PDC202XX_OLD=m
# CONFIG_BLK_DEV_PDC202XX_NEW is not set
CONFIG_BLK_DEV_SVWKS=m
CONFIG_BLK_DEV_SIIMAGE=m
# CONFIG_BLK_DEV_SIS5513 is not set
CONFIG_BLK_DEV_SLC90E66=m
CONFIG_BLK_DEV_TRM290=m
# CONFIG_BLK_DEV_VIA82CXXX is not set
# CONFIG_BLK_DEV_TC86C001 is not set
#
# Other IDE chipsets support
#
#
# Note: most of these also require special kernel boot parameters
#
CONFIG_BLK_DEV_4DRIVES=m
CONFIG_BLK_DEV_ALI14XX=m
CONFIG_BLK_DEV_DTC2278=m
# CONFIG_BLK_DEV_HT6560B is not set
# CONFIG_BLK_DEV_QD65XX is not set
# CONFIG_BLK_DEV_UMC8672 is not set
CONFIG_BLK_DEV_IDEDMA=y
#
# SCSI device support
#
CONFIG_SCSI_MOD=m
CONFIG_RAID_ATTRS=m
CONFIG_SCSI=m
CONFIG_SCSI_DMA=y
CONFIG_SCSI_TGT=m
CONFIG_SCSI_NETLINK=y
# CONFIG_SCSI_PROC_FS is not set
#
# SCSI support type (disk, tape, CD-ROM)
#
# CONFIG_BLK_DEV_SD is not set
# 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=m
CONFIG_CHR_DEV_SCH=m
# CONFIG_SCSI_ENCLOSURE is not set
CONFIG_SCSI_MULTI_LUN=y
CONFIG_SCSI_CONSTANTS=y
CONFIG_SCSI_LOGGING=y
CONFIG_SCSI_SCAN_ASYNC=y
CONFIG_SCSI_WAIT_SCAN=m
#
# SCSI Transports
#
CONFIG_SCSI_SPI_ATTRS=m
CONFIG_SCSI_FC_ATTRS=m
# CONFIG_SCSI_FC_TGT_ATTRS is not set
CONFIG_SCSI_ISCSI_ATTRS=m
CONFIG_SCSI_SAS_ATTRS=m
CONFIG_SCSI_SAS_LIBSAS=m
CONFIG_SCSI_SAS_ATA=y
# CONFIG_SCSI_SAS_HOST_SMP is not set
# CONFIG_SCSI_SRP_ATTRS is not set
CONFIG_SCSI_LOWLEVEL=y
CONFIG_ISCSI_TCP=m
# CONFIG_ISCSI_BOOT_SYSFS is not set
CONFIG_SCSI_CXGB3_ISCSI=m
# CONFIG_SCSI_CXGB4_ISCSI is not set
CONFIG_SCSI_BNX2_ISCSI=m
# CONFIG_SCSI_BNX2X_FCOE is not set
# CONFIG_BE2ISCSI is not set
CONFIG_BLK_DEV_3W_XXXX_RAID=m
CONFIG_SCSI_HPSA=m
# CONFIG_SCSI_3W_9XXX is not set
# CONFIG_SCSI_3W_SAS is not set
# CONFIG_SCSI_7000FASST is not set
CONFIG_SCSI_ACARD=m
# CONFIG_SCSI_AHA152X is not set
CONFIG_SCSI_AHA1542=m
# CONFIG_SCSI_AHA1740 is not set
CONFIG_SCSI_AACRAID=m
CONFIG_SCSI_AIC7XXX=m
CONFIG_AIC7XXX_CMDS_PER_DEVICE=32
CONFIG_AIC7XXX_RESET_DELAY_MS=5000
# CONFIG_AIC7XXX_DEBUG_ENABLE is not set
CONFIG_AIC7XXX_DEBUG_MASK=0
CONFIG_AIC7XXX_REG_PRETTY_PRINT=y
# CONFIG_SCSI_AIC7XXX_OLD is not set
CONFIG_SCSI_AIC79XX=m
CONFIG_AIC79XX_CMDS_PER_DEVICE=32
CONFIG_AIC79XX_RESET_DELAY_MS=5000
# CONFIG_AIC79XX_DEBUG_ENABLE is not set
CONFIG_AIC79XX_DEBUG_MASK=0
# CONFIG_AIC79XX_REG_PRETTY_PRINT is not set
CONFIG_SCSI_AIC94XX=m
# CONFIG_AIC94XX_DEBUG is not set
# CONFIG_SCSI_MVSAS is not set
# CONFIG_SCSI_MVUMI is not set
CONFIG_SCSI_DPT_I2O=m
CONFIG_SCSI_ADVANSYS=m
CONFIG_SCSI_IN2000=m
CONFIG_SCSI_ARCMSR=m
CONFIG_MEGARAID_NEWGEN=y
CONFIG_MEGARAID_MM=m
CONFIG_MEGARAID_MAILBOX=m
CONFIG_MEGARAID_LEGACY=m
CONFIG_MEGARAID_SAS=m
CONFIG_SCSI_MPT2SAS=m
CONFIG_SCSI_MPT2SAS_MAX_SGE=128
CONFIG_SCSI_MPT2SAS_LOGGING=y
# CONFIG_SCSI_UFSHCD is not set
CONFIG_SCSI_HPTIOP=m
CONFIG_SCSI_BUSLOGIC=m
CONFIG_SCSI_FLASHPOINT=y
CONFIG_VMWARE_PVSCSI=m
CONFIG_LIBFC=m
CONFIG_LIBFCOE=m
CONFIG_FCOE=m
CONFIG_FCOE_FNIC=m
# CONFIG_SCSI_DMX3191D is not set
# CONFIG_SCSI_DTC3280 is not set
CONFIG_SCSI_EATA=m
CONFIG_SCSI_EATA_TAGGED_QUEUE=y
CONFIG_SCSI_EATA_LINKED_COMMANDS=y
CONFIG_SCSI_EATA_MAX_TAGS=16
# CONFIG_SCSI_FUTURE_DOMAIN is not set
# CONFIG_SCSI_GDTH is not set
CONFIG_SCSI_ISCI=m
CONFIG_SCSI_GENERIC_NCR5380=m
CONFIG_SCSI_GENERIC_NCR5380_MMIO=m
CONFIG_SCSI_GENERIC_NCR53C400=y
# CONFIG_SCSI_IPS is not set
# CONFIG_SCSI_INITIO is not set
# CONFIG_SCSI_INIA100 is not set
# CONFIG_SCSI_NCR53C406A is not set
CONFIG_SCSI_STEX=m
CONFIG_SCSI_SYM53C8XX_2=m
CONFIG_SCSI_SYM53C8XX_DMA_ADDRESSING_MODE=1
CONFIG_SCSI_SYM53C8XX_DEFAULT_TAGS=16
CONFIG_SCSI_SYM53C8XX_MAX_TAGS=64
# CONFIG_SCSI_SYM53C8XX_MMIO is not set
CONFIG_SCSI_IPR=m
# CONFIG_SCSI_IPR_TRACE is not set
CONFIG_SCSI_IPR_DUMP=y
# CONFIG_SCSI_PAS16 is not set
CONFIG_SCSI_QLOGIC_FAS=m
# CONFIG_SCSI_QLOGIC_1280 is not set
CONFIG_SCSI_QLA_FC=m
# CONFIG_SCSI_QLA_ISCSI is not set
CONFIG_SCSI_LPFC=m
CONFIG_SCSI_LPFC_DEBUG_FS=y
CONFIG_SCSI_SIM710=m
# CONFIG_SCSI_SYM53C416 is not set
# CONFIG_SCSI_DC395x is not set
# CONFIG_SCSI_DC390T is not set
# CONFIG_SCSI_T128 is not set
# CONFIG_SCSI_U14_34F is not set
CONFIG_SCSI_ULTRASTOR=m
# CONFIG_SCSI_NSP32 is not set
# CONFIG_SCSI_DEBUG is not set
# CONFIG_SCSI_PMCRAID is not set
# CONFIG_SCSI_PM8001 is not set
CONFIG_SCSI_SRP=m
CONFIG_SCSI_BFA_FC=m
CONFIG_SCSI_VIRTIO=m
# CONFIG_SCSI_DH is not set
CONFIG_SCSI_OSD_INITIATOR=m
CONFIG_SCSI_OSD_ULD=m
CONFIG_SCSI_OSD_DPRINT_SENSE=1
# CONFIG_SCSI_OSD_DEBUG is not set
CONFIG_ATA=m
# CONFIG_ATA_NONSTANDARD is not set
# CONFIG_ATA_VERBOSE_ERROR is not set
# CONFIG_ATA_ACPI is not set
CONFIG_SATA_PMP=y
#
# Controllers with non-SFF native interface
#
# CONFIG_SATA_AHCI is not set
# CONFIG_SATA_AHCI_PLATFORM is not set
CONFIG_SATA_INIC162X=m
# CONFIG_SATA_ACARD_AHCI is not set
CONFIG_SATA_SIL24=m
# CONFIG_ATA_SFF is not set
CONFIG_MD=y
CONFIG_BLK_DEV_MD=m
# CONFIG_MD_LINEAR is not set
CONFIG_MD_RAID0=m
CONFIG_MD_RAID1=m
# CONFIG_MD_RAID10 is not set
CONFIG_MD_RAID456=m
# CONFIG_MULTICORE_RAID456 is not set
# CONFIG_MD_MULTIPATH is not set
CONFIG_MD_FAULTY=m
CONFIG_BLK_DEV_DM=m
# CONFIG_DM_DEBUG is not set
CONFIG_DM_BUFIO=m
CONFIG_DM_CRYPT=m
CONFIG_DM_SNAPSHOT=m
# CONFIG_DM_THIN_PROVISIONING is not set
CONFIG_DM_MIRROR=m
CONFIG_DM_RAID=m
# CONFIG_DM_LOG_USERSPACE is not set
# CONFIG_DM_ZERO is not set
# CONFIG_DM_MULTIPATH is not set
# CONFIG_DM_DELAY is not set
# CONFIG_DM_UEVENT is not set
CONFIG_DM_FLAKEY=m
CONFIG_DM_VERITY=m
# CONFIG_TARGET_CORE is not set
CONFIG_FUSION=y
CONFIG_FUSION_SPI=m
CONFIG_FUSION_FC=m
# CONFIG_FUSION_SAS is not set
CONFIG_FUSION_MAX_SGE=128
CONFIG_FUSION_CTL=m
CONFIG_FUSION_LOGGING=y
#
# IEEE 1394 (FireWire) support
#
# CONFIG_FIREWIRE is not set
CONFIG_FIREWIRE_NOSY=m
# CONFIG_I2O is not set
CONFIG_MACINTOSH_DRIVERS=y
CONFIG_NETDEVICES=y
CONFIG_NET_CORE=y
# CONFIG_BONDING is not set
CONFIG_DUMMY=m
CONFIG_EQUALIZER=m
# CONFIG_NET_FC is not set
CONFIG_MII=m
# CONFIG_IEEE802154_DRIVERS is not set
# CONFIG_IFB is not set
# CONFIG_NET_TEAM is not set
# CONFIG_MACVLAN is not set
# CONFIG_NETCONSOLE is not set
# CONFIG_NETPOLL is not set
# CONFIG_NET_POLL_CONTROLLER is not set
CONFIG_TUN=m
# CONFIG_VETH is not set
CONFIG_VIRTIO_NET=y
CONFIG_ARCNET=m
CONFIG_ARCNET_1201=m
# CONFIG_ARCNET_1051 is not set
CONFIG_ARCNET_RAW=m
CONFIG_ARCNET_CAP=m
CONFIG_ARCNET_COM90xx=m
# CONFIG_ARCNET_COM90xxIO is not set
# CONFIG_ARCNET_RIM_I is not set
CONFIG_ARCNET_COM20020=m
CONFIG_ARCNET_COM20020_ISA=m
CONFIG_ARCNET_COM20020_PCI=m
CONFIG_ATM_DRIVERS=y
CONFIG_ATM_DUMMY=m
CONFIG_ATM_TCP=m
CONFIG_ATM_LANAI=m
# CONFIG_ATM_ENI is not set
# CONFIG_ATM_FIRESTREAM is not set
CONFIG_ATM_ZATM=m
# CONFIG_ATM_ZATM_DEBUG is not set
# CONFIG_ATM_NICSTAR is not set
CONFIG_ATM_IDT77252=m
CONFIG_ATM_IDT77252_DEBUG=y
# CONFIG_ATM_IDT77252_RCV_ALL is not set
CONFIG_ATM_IDT77252_USE_SUNI=y
# CONFIG_ATM_AMBASSADOR is not set
CONFIG_ATM_HORIZON=m
CONFIG_ATM_HORIZON_DEBUG=y
CONFIG_ATM_IA=m
CONFIG_ATM_IA_DEBUG=y
# CONFIG_ATM_FORE200E is not set
# CONFIG_ATM_HE is not set
# CONFIG_ATM_SOLOS is not set
#
# CAIF transport drivers
#
# CONFIG_CAIF_TTY is not set
CONFIG_CAIF_SPI_SLAVE=m
# CONFIG_CAIF_SPI_SYNC is not set
CONFIG_CAIF_HSI=m
#
# Distributed Switch Architecture drivers
#
CONFIG_NET_DSA_MV88E6XXX=m
CONFIG_NET_DSA_MV88E6060=m
CONFIG_NET_DSA_MV88E6XXX_NEED_PPU=y
CONFIG_NET_DSA_MV88E6131=m
# CONFIG_NET_DSA_MV88E6123_61_65 is not set
CONFIG_ETHERNET=y
CONFIG_MDIO=m
CONFIG_NET_VENDOR_3COM=y
CONFIG_EL1=m
# CONFIG_EL3 is not set
# CONFIG_3C515 is not set
CONFIG_VORTEX=m
CONFIG_TYPHOON=m
CONFIG_NET_VENDOR_ADAPTEC=y
# CONFIG_ADAPTEC_STARFIRE is not set
# CONFIG_NET_VENDOR_ALTEON is not set
# CONFIG_NET_VENDOR_AMD is not set
CONFIG_NET_VENDOR_ATHEROS=y
# CONFIG_ATL2 is not set
# CONFIG_ATL1 is not set
# CONFIG_ATL1E is not set
CONFIG_ATL1C=m
CONFIG_NET_VENDOR_BROADCOM=y
CONFIG_B44=m
CONFIG_B44_PCI_AUTOSELECT=y
CONFIG_B44_PCICORE_AUTOSELECT=y
CONFIG_B44_PCI=y
CONFIG_BNX2=m
CONFIG_CNIC=m
CONFIG_TIGON3=m
# CONFIG_BNX2X is not set
# CONFIG_NET_VENDOR_BROCADE is not set
CONFIG_NET_CALXEDA_XGMAC=m
CONFIG_NET_VENDOR_CHELSIO=y
CONFIG_CHELSIO_T1=m
CONFIG_CHELSIO_T1_1G=y
CONFIG_CHELSIO_T3=m
CONFIG_CHELSIO_T4=m
# CONFIG_CHELSIO_T4VF is not set
CONFIG_NET_VENDOR_CIRRUS=y
CONFIG_CS89x0=m
CONFIG_CS89x0_PLATFORM=y
# CONFIG_NET_VENDOR_CISCO is not set
# CONFIG_DNET is not set
CONFIG_NET_VENDOR_DEC=y
# CONFIG_EWRK3 is not set
CONFIG_NET_TULIP=y
CONFIG_DE2104X=m
CONFIG_DE2104X_DSL=0
CONFIG_TULIP=m
# CONFIG_TULIP_MWI is not set
# CONFIG_TULIP_MMIO is not set
# CONFIG_TULIP_NAPI is not set
# CONFIG_DE4X5 is not set
# CONFIG_WINBOND_840 is not set
CONFIG_DM9102=m
CONFIG_ULI526X=m
# CONFIG_NET_VENDOR_DLINK is not set
CONFIG_NET_VENDOR_EMULEX=y
# CONFIG_BE2NET is not set
# CONFIG_NET_VENDOR_EXAR is not set
# CONFIG_NET_VENDOR_FUJITSU is not set
CONFIG_NET_VENDOR_HP=y
# CONFIG_HP100 is not set
# CONFIG_NET_VENDOR_INTEL is not set
# CONFIG_IP1000 is not set
CONFIG_JME=m
# CONFIG_NET_VENDOR_MARVELL is not set
CONFIG_NET_VENDOR_MELLANOX=y
CONFIG_MLX4_EN=m
CONFIG_MLX4_CORE=m
CONFIG_MLX4_DEBUG=y
CONFIG_NET_VENDOR_MICREL=y
# CONFIG_KS8842 is not set
# CONFIG_KS8851 is not set
# CONFIG_KS8851_MLL is not set
CONFIG_KSZ884X_PCI=m
# CONFIG_NET_VENDOR_MICROCHIP is not set
# CONFIG_NET_VENDOR_MYRI is not set
CONFIG_FEALNX=m
CONFIG_NET_VENDOR_NATSEMI=y
# CONFIG_NATSEMI is not set
# CONFIG_NS83820 is not set
CONFIG_NET_VENDOR_8390=y
# CONFIG_EL2 is not set
# CONFIG_AC3200 is not set
# CONFIG_E2100 is not set
CONFIG_ES3210=m
CONFIG_HPLAN_PLUS=m
# CONFIG_HPLAN is not set
CONFIG_LNE390=m
# CONFIG_NE2000 is not set
# CONFIG_NE2K_PCI is not set
# CONFIG_NE3210 is not set
# CONFIG_ULTRA is not set
CONFIG_ULTRA32=m
# CONFIG_WD80x3 is not set
# CONFIG_NET_VENDOR_NVIDIA is not set
CONFIG_NET_VENDOR_OKI=y
# CONFIG_PCH_GBE is not set
CONFIG_ETHOC=m
CONFIG_NET_PACKET_ENGINE=y
CONFIG_HAMACHI=m
CONFIG_YELLOWFIN=m
# CONFIG_NET_VENDOR_QLOGIC is not set
CONFIG_NET_VENDOR_RACAL=y
CONFIG_NET_VENDOR_REALTEK=y
CONFIG_ATP=m
CONFIG_8139CP=m
CONFIG_8139TOO=m
# CONFIG_8139TOO_PIO is not set
CONFIG_8139TOO_TUNE_TWISTER=y
# CONFIG_8139TOO_8129 is not set
# CONFIG_8139_OLD_RX_RESET is not set
# CONFIG_R8169 is not set
CONFIG_NET_VENDOR_RDC=y
# CONFIG_R6040 is not set
# CONFIG_NET_VENDOR_SEEQ is not set
# CONFIG_NET_VENDOR_SILAN is not set
# CONFIG_NET_VENDOR_SIS is not set
# CONFIG_SFC is not set
# CONFIG_NET_VENDOR_SMSC is not set
# CONFIG_NET_VENDOR_STMICRO is not set
CONFIG_NET_VENDOR_SUN=y
# CONFIG_HAPPYMEAL is not set
# CONFIG_SUNGEM is not set
CONFIG_CASSINI=m
# CONFIG_NIU is not set
CONFIG_NET_VENDOR_TEHUTI=y
# CONFIG_TEHUTI is not set
# CONFIG_NET_VENDOR_TI is not set
CONFIG_NET_VENDOR_VIA=y
# CONFIG_VIA_RHINE is not set
# CONFIG_VIA_VELOCITY is not set
# CONFIG_NET_VENDOR_WIZNET is not set
CONFIG_FDDI=m
CONFIG_DEFXX=m
CONFIG_DEFXX_MMIO=y
CONFIG_SKFP=m
CONFIG_HIPPI=y
# CONFIG_ROADRUNNER is not set
# CONFIG_NET_SB1000 is not set
CONFIG_PHYLIB=m
#
# MII PHY device drivers
#
CONFIG_AMD_PHY=m
# CONFIG_MARVELL_PHY is not set
# CONFIG_DAVICOM_PHY is not set
CONFIG_QSEMI_PHY=m
CONFIG_LXT_PHY=m
# CONFIG_CICADA_PHY is not set
# CONFIG_VITESSE_PHY is not set
CONFIG_SMSC_PHY=m
CONFIG_BROADCOM_PHY=m
# CONFIG_ICPLUS_PHY is not set
# CONFIG_REALTEK_PHY is not set
CONFIG_NATIONAL_PHY=m
CONFIG_STE10XP=m
# CONFIG_LSI_ET1011C_PHY is not set
# CONFIG_MICREL_PHY is not set
CONFIG_MDIO_BITBANG=m
CONFIG_MDIO_GPIO=m
CONFIG_MDIO_BUS_MUX=m
CONFIG_MDIO_BUS_MUX_GPIO=m
# CONFIG_MICREL_KS8995MA is not set
CONFIG_PLIP=m
CONFIG_PPP=m
# CONFIG_PPP_BSDCOMP is not set
# CONFIG_PPP_DEFLATE is not set
# CONFIG_PPP_FILTER is not set
# CONFIG_PPP_MPPE is not set
# CONFIG_PPP_MULTILINK is not set
# CONFIG_PPPOATM is not set
CONFIG_PPPOE=m
CONFIG_PPTP=m
# CONFIG_PPPOL2TP is not set
# CONFIG_PPP_ASYNC is not set
CONFIG_PPP_SYNC_TTY=m
CONFIG_SLIP=m
CONFIG_SLHC=m
CONFIG_SLIP_COMPRESSED=y
CONFIG_SLIP_SMART=y
# CONFIG_SLIP_MODE_SLIP6 is not set
# CONFIG_TR is not set
#
# USB Network Adapters
#
# CONFIG_USB_CATC is not set
# CONFIG_USB_KAWETH is not set
CONFIG_USB_PEGASUS=m
CONFIG_USB_RTL8150=m
CONFIG_USB_USBNET=m
# CONFIG_USB_NET_AX8817X is not set
CONFIG_USB_NET_CDCETHER=m
# CONFIG_USB_NET_CDC_EEM is not set
# CONFIG_USB_NET_CDC_NCM is not set
# CONFIG_USB_NET_DM9601 is not set
# CONFIG_USB_NET_SMSC75XX is not set
# CONFIG_USB_NET_SMSC95XX is not set
CONFIG_USB_NET_GL620A=m
CONFIG_USB_NET_NET1080=m
# CONFIG_USB_NET_PLUSB is not set
CONFIG_USB_NET_MCS7830=m
# CONFIG_USB_NET_RNDIS_HOST is not set
# CONFIG_USB_NET_CDC_SUBSET is not set
CONFIG_USB_NET_ZAURUS=m
CONFIG_USB_NET_CX82310_ETH=m
# CONFIG_USB_NET_KALMIA is not set
CONFIG_USB_NET_QMI_WWAN=m
# CONFIG_USB_HSO is not set
# CONFIG_USB_NET_INT51X1 is not set
CONFIG_USB_IPHETH=m
CONFIG_USB_SIERRA_NET=m
CONFIG_USB_VL600=m
# CONFIG_WLAN is not set
#
# Enable WiMAX (Networking options) to see the WiMAX drivers
#
CONFIG_WAN=y
# CONFIG_HDLC is not set
CONFIG_DLCI=m
CONFIG_DLCI_MAX=8
CONFIG_SDLA=m
# CONFIG_SBNI is not set
CONFIG_VMXNET3=m
# CONFIG_ISDN is not set
#
# Input device support
#
CONFIG_INPUT=y
# CONFIG_INPUT_FF_MEMLESS is not set
CONFIG_INPUT_POLLDEV=m
CONFIG_INPUT_SPARSEKMAP=m
#
# Userland interfaces
#
CONFIG_INPUT_MOUSEDEV=m
# CONFIG_INPUT_MOUSEDEV_PSAUX is not set
CONFIG_INPUT_MOUSEDEV_SCREEN_X=1024
CONFIG_INPUT_MOUSEDEV_SCREEN_Y=768
CONFIG_INPUT_JOYDEV=m
CONFIG_INPUT_EVDEV=m
CONFIG_INPUT_EVBUG=m
#
# Input Device Drivers
#
# CONFIG_INPUT_KEYBOARD is not set
CONFIG_INPUT_MOUSE=y
CONFIG_MOUSE_PS2=m
CONFIG_MOUSE_PS2_ALPS=y
# CONFIG_MOUSE_PS2_LOGIPS2PP is not set
# CONFIG_MOUSE_PS2_SYNAPTICS is not set
CONFIG_MOUSE_PS2_LIFEBOOK=y
# CONFIG_MOUSE_PS2_TRACKPOINT is not set
# CONFIG_MOUSE_PS2_ELANTECH is not set
# CONFIG_MOUSE_PS2_SENTELIC is not set
# CONFIG_MOUSE_PS2_TOUCHKIT is not set
CONFIG_MOUSE_PS2_OLPC=y
CONFIG_MOUSE_SERIAL=m
# CONFIG_MOUSE_APPLETOUCH is not set
CONFIG_MOUSE_BCM5974=m
CONFIG_MOUSE_INPORT=m
CONFIG_MOUSE_ATIXL=y
# CONFIG_MOUSE_LOGIBM is not set
# CONFIG_MOUSE_PC110PAD is not set
# CONFIG_MOUSE_VSXXXAA is not set
# CONFIG_MOUSE_GPIO is not set
# CONFIG_MOUSE_SYNAPTICS_I2C is not set
CONFIG_MOUSE_SYNAPTICS_USB=m
# CONFIG_INPUT_JOYSTICK is not set
# CONFIG_INPUT_TABLET is not set
# CONFIG_INPUT_TOUCHSCREEN is not set
CONFIG_INPUT_MISC=y
CONFIG_INPUT_88PM860X_ONKEY=m
# CONFIG_INPUT_AD714X is not set
# CONFIG_INPUT_BMA150 is not set
# CONFIG_INPUT_MAX8925_ONKEY is not set
# CONFIG_INPUT_MMA8450 is not set
# CONFIG_INPUT_MPU3050 is not set
CONFIG_INPUT_APANEL=m
CONFIG_INPUT_GP2A=m
CONFIG_INPUT_GPIO_TILT_POLLED=m
CONFIG_INPUT_WISTRON_BTNS=m
# CONFIG_INPUT_ATLAS_BTNS is not set
CONFIG_INPUT_ATI_REMOTE2=m
CONFIG_INPUT_KEYSPAN_REMOTE=m
# CONFIG_INPUT_KXTJ9 is not set
CONFIG_INPUT_POWERMATE=m
# CONFIG_INPUT_YEALINK is not set
# CONFIG_INPUT_CM109 is not set
# CONFIG_INPUT_TWL4030_PWRBUTTON is not set
# CONFIG_INPUT_TWL4030_VIBRA is not set
CONFIG_INPUT_UINPUT=m
# CONFIG_INPUT_PCF8574 is not set
# CONFIG_INPUT_GPIO_ROTARY_ENCODER is not set
# CONFIG_INPUT_DA9052_ONKEY is not set
CONFIG_INPUT_WM831X_ON=m
CONFIG_INPUT_ADXL34X=m
CONFIG_INPUT_ADXL34X_I2C=m
# CONFIG_INPUT_ADXL34X_SPI is not set
CONFIG_INPUT_CMA3000=m
CONFIG_INPUT_CMA3000_I2C=m
#
# Hardware I/O ports
#
CONFIG_SERIO=m
CONFIG_SERIO_I8042=m
CONFIG_SERIO_SERPORT=m
CONFIG_SERIO_CT82C710=m
CONFIG_SERIO_PARKBD=m
CONFIG_SERIO_PCIPS2=m
CONFIG_SERIO_LIBPS2=m
CONFIG_SERIO_RAW=m
CONFIG_SERIO_ALTERA_PS2=m
CONFIG_SERIO_PS2MULT=m
CONFIG_GAMEPORT=m
CONFIG_GAMEPORT_NS558=m
# CONFIG_GAMEPORT_L4 is not set
# CONFIG_GAMEPORT_EMU10K1 is not set
# CONFIG_GAMEPORT_FM801 is not set
#
# Character devices
#
CONFIG_VT=y
CONFIG_CONSOLE_TRANSLATIONS=y
CONFIG_VT_CONSOLE=y
CONFIG_HW_CONSOLE=y
# CONFIG_VT_HW_CONSOLE_BINDING is not set
# CONFIG_UNIX98_PTYS is not set
CONFIG_LEGACY_PTYS=y
CONFIG_LEGACY_PTY_COUNT=256
CONFIG_SERIAL_NONSTANDARD=y
CONFIG_ROCKETPORT=m
# CONFIG_CYCLADES is not set
CONFIG_MOXA_INTELLIO=m
CONFIG_MOXA_SMARTIO=m
CONFIG_SYNCLINK=m
CONFIG_SYNCLINKMP=m
CONFIG_SYNCLINK_GT=m
# CONFIG_NOZOMI is not set
CONFIG_ISI=m
CONFIG_N_HDLC=m
# CONFIG_N_GSM is not set
# CONFIG_TRACE_SINK is not set
# CONFIG_DEVKMEM is not set
CONFIG_STALDRV=y
#
# Serial drivers
#
CONFIG_SERIAL_8250=y
CONFIG_SERIAL_8250_CONSOLE=y
CONFIG_FIX_EARLYCON_MEM=y
CONFIG_SERIAL_8250_PCI=m
# CONFIG_SERIAL_8250_PNP is not set
CONFIG_SERIAL_8250_NR_UARTS=4
CONFIG_SERIAL_8250_RUNTIME_UARTS=4
# CONFIG_SERIAL_8250_EXTENDED is not set
CONFIG_SERIAL_8250_DW=m
#
# Non-8250 serial port support
#
CONFIG_SERIAL_MAX3100=m
# CONFIG_SERIAL_MAX3107 is not set
# CONFIG_SERIAL_MRST_MAX3110 is not set
# CONFIG_SERIAL_MFD_HSU is not set
CONFIG_SERIAL_CORE=y
CONFIG_SERIAL_CORE_CONSOLE=y
CONFIG_CONSOLE_POLL=y
# CONFIG_SERIAL_JSM is not set
CONFIG_SERIAL_OF_PLATFORM=m
# CONFIG_SERIAL_TIMBERDALE is not set
CONFIG_SERIAL_ALTERA_JTAGUART=m
# CONFIG_SERIAL_ALTERA_UART is not set
CONFIG_SERIAL_IFX6X60=m
CONFIG_SERIAL_PCH_UART=m
# CONFIG_SERIAL_XILINX_PS_UART is not set
CONFIG_TTY_PRINTK=y
CONFIG_PRINTER=m
CONFIG_LP_CONSOLE=y
# CONFIG_PPDEV is not set
CONFIG_HVC_DRIVER=y
CONFIG_VIRTIO_CONSOLE=y
CONFIG_IPMI_HANDLER=m
# CONFIG_IPMI_PANIC_EVENT is not set
# CONFIG_IPMI_DEVICE_INTERFACE is not set
CONFIG_IPMI_SI=m
# CONFIG_IPMI_WATCHDOG is not set
# CONFIG_IPMI_POWEROFF is not set
CONFIG_HW_RANDOM=m
CONFIG_HW_RANDOM_TIMERIOMEM=m
# CONFIG_HW_RANDOM_INTEL is not set
CONFIG_HW_RANDOM_AMD=m
# CONFIG_HW_RANDOM_GEODE is not set
# CONFIG_HW_RANDOM_VIA is not set
# CONFIG_HW_RANDOM_VIRTIO is not set
# CONFIG_NVRAM is not set
# CONFIG_DTLK is not set
CONFIG_R3964=m
# CONFIG_APPLICOM is not set
CONFIG_SONYPI=m
CONFIG_MWAVE=m
# CONFIG_SCx200_GPIO is not set
CONFIG_PC8736x_GPIO=m
CONFIG_NSC_GPIO=m
CONFIG_RAW_DRIVER=m
CONFIG_MAX_RAW_DEVS=256
CONFIG_HPET=y
# CONFIG_HPET_MMAP is not set
CONFIG_HANGCHECK_TIMER=m
CONFIG_TCG_TPM=m
# CONFIG_TCG_TIS is not set
# CONFIG_TCG_NSC is not set
CONFIG_TCG_ATMEL=m
# CONFIG_TCG_INFINEON is not set
CONFIG_TELCLOCK=m
CONFIG_DEVPORT=y
CONFIG_I2C=y
CONFIG_I2C_BOARDINFO=y
# CONFIG_I2C_COMPAT is not set
# CONFIG_I2C_CHARDEV is not set
# CONFIG_I2C_MUX is not set
CONFIG_I2C_HELPER_AUTO=y
CONFIG_I2C_ALGOBIT=m
CONFIG_I2C_ALGOPCA=m
#
# I2C Hardware Bus support
#
#
# PC SMBus host controller drivers
#
# CONFIG_I2C_ALI1535 is not set
# CONFIG_I2C_ALI1563 is not set
# CONFIG_I2C_ALI15X3 is not set
CONFIG_I2C_AMD756=m
# CONFIG_I2C_AMD756_S4882 is not set
CONFIG_I2C_AMD8111=m
CONFIG_I2C_I801=m
CONFIG_I2C_ISCH=m
CONFIG_I2C_PIIX4=m
# CONFIG_I2C_NFORCE2 is not set
CONFIG_I2C_SIS5595=m
CONFIG_I2C_SIS630=m
# CONFIG_I2C_SIS96X is not set
# CONFIG_I2C_VIA is not set
# CONFIG_I2C_VIAPRO is not set
#
# ACPI drivers
#
# CONFIG_I2C_SCMI is not set
#
# I2C system bus drivers (mostly embedded / system-on-chip)
#
# CONFIG_I2C_DESIGNWARE_PCI is not set
# CONFIG_I2C_EG20T is not set
# CONFIG_I2C_GPIO is not set
CONFIG_I2C_INTEL_MID=m
# CONFIG_I2C_OCORES is not set
CONFIG_I2C_PCA_PLATFORM=m
# CONFIG_I2C_PXA is not set
# CONFIG_I2C_PXA_PCI is not set
CONFIG_I2C_SIMTEC=m
# CONFIG_I2C_XILINX is not set
#
# External I2C/SMBus adapter drivers
#
CONFIG_I2C_DIOLAN_U2C=m
# CONFIG_I2C_PARPORT is not set
# CONFIG_I2C_PARPORT_LIGHT is not set
CONFIG_I2C_TAOS_EVM=m
CONFIG_I2C_TINY_USB=m
#
# Other I2C/SMBus bus drivers
#
CONFIG_I2C_PCA_ISA=m
# CONFIG_I2C_STUB is not set
# CONFIG_SCx200_ACB is not set
CONFIG_I2C_DEBUG_CORE=y
CONFIG_I2C_DEBUG_ALGO=y
CONFIG_I2C_DEBUG_BUS=y
CONFIG_SPI=y
CONFIG_SPI_DEBUG=y
CONFIG_SPI_MASTER=y
#
# SPI Master Controller Drivers
#
# CONFIG_SPI_ALTERA is not set
CONFIG_SPI_BITBANG=m
CONFIG_SPI_BUTTERFLY=m
# CONFIG_SPI_GPIO is not set
CONFIG_SPI_LM70_LLP=m
# CONFIG_SPI_OC_TINY is not set
CONFIG_SPI_PXA2XX=m
CONFIG_SPI_PXA2XX_PCI=y
# CONFIG_SPI_TOPCLIFF_PCH is not set
CONFIG_SPI_XILINX=m
CONFIG_SPI_DESIGNWARE=m
CONFIG_SPI_DW_PCI=m
#
# SPI Protocol Masters
#
# CONFIG_SPI_SPIDEV is not set
CONFIG_SPI_TLE62X0=m
CONFIG_HSI=m
CONFIG_HSI_BOARDINFO=y
#
# HSI clients
#
CONFIG_HSI_CHAR=m
#
# PPS support
#
# CONFIG_PPS is not set
#
# PPS generators support
#
#
# PTP clock support
#
#
# Enable Device Drivers -> PPS to see the PTP clock options.
#
CONFIG_ARCH_WANT_OPTIONAL_GPIOLIB=y
CONFIG_ARCH_REQUIRE_GPIOLIB=y
CONFIG_GPIOLIB=y
CONFIG_OF_GPIO=y
CONFIG_DEBUG_GPIO=y
# CONFIG_GPIO_SYSFS is not set
CONFIG_GPIO_GENERIC=y
CONFIG_GPIO_MAX730X=m
#
# Memory mapped GPIO drivers:
#
CONFIG_GPIO_GENERIC_PLATFORM=m
# CONFIG_GPIO_IT8761E is not set
# CONFIG_GPIO_STA2X11 is not set
CONFIG_GPIO_SCH=m
# CONFIG_GPIO_ICH is not set
# CONFIG_GPIO_VX855 is not set
#
# I2C GPIO expanders:
#
CONFIG_GPIO_MAX7300=m
# CONFIG_GPIO_MAX732X is not set
# CONFIG_GPIO_PCA953X is not set
CONFIG_GPIO_PCF857X=m
CONFIG_GPIO_SX150X=y
CONFIG_GPIO_STMPE=y
# CONFIG_GPIO_TC3589X is not set
CONFIG_GPIO_TPS65912=m
CONFIG_GPIO_TWL4030=m
CONFIG_GPIO_WM831X=m
# CONFIG_GPIO_WM8350 is not set
# CONFIG_GPIO_ADP5588 is not set
#
# PCI GPIO expanders:
#
# CONFIG_GPIO_CS5535 is not set
# CONFIG_GPIO_BT8XX is not set
CONFIG_GPIO_LANGWELL=y
# CONFIG_GPIO_PCH is not set
# CONFIG_GPIO_ML_IOH is not set
CONFIG_GPIO_SODAVILLE=y
CONFIG_GPIO_RDC321X=m
#
# SPI GPIO expanders:
#
CONFIG_GPIO_MAX7301=m
# CONFIG_GPIO_MCP23S08 is not set
# CONFIG_GPIO_MC33880 is not set
CONFIG_GPIO_74X164=m
#
# AC97 GPIO expanders:
#
#
# MODULbus GPIO expanders:
#
# CONFIG_W1 is not set
CONFIG_POWER_SUPPLY=y
# CONFIG_POWER_SUPPLY_DEBUG is not set
CONFIG_PDA_POWER=m
CONFIG_MAX8925_POWER=m
# CONFIG_WM831X_BACKUP is not set
# CONFIG_WM831X_POWER is not set
CONFIG_WM8350_POWER=m
# CONFIG_TEST_POWER is not set
# CONFIG_BATTERY_DS2780 is not set
# CONFIG_BATTERY_DS2781 is not set
CONFIG_BATTERY_DS2782=m
CONFIG_BATTERY_OLPC=m
CONFIG_BATTERY_SBS=m
# CONFIG_BATTERY_BQ27x00 is not set
CONFIG_BATTERY_MAX17040=m
# CONFIG_BATTERY_MAX17042 is not set
# CONFIG_BATTERY_INTEL_MID is not set
# CONFIG_CHARGER_ISP1704 is not set
CONFIG_CHARGER_MAX8903=m
# CONFIG_CHARGER_TWL4030 is not set
# CONFIG_CHARGER_LP8727 is not set
CONFIG_CHARGER_GPIO=m
CONFIG_CHARGER_MANAGER=y
CONFIG_CHARGER_SMB347=m
CONFIG_HWMON=m
CONFIG_HWMON_VID=m
CONFIG_HWMON_DEBUG_CHIP=y
#
# Native drivers
#
CONFIG_SENSORS_ABITUGURU=m
# CONFIG_SENSORS_ABITUGURU3 is not set
CONFIG_SENSORS_AD7314=m
CONFIG_SENSORS_AD7414=m
CONFIG_SENSORS_AD7418=m
# CONFIG_SENSORS_ADCXX is not set
CONFIG_SENSORS_ADM1021=m
# CONFIG_SENSORS_ADM1025 is not set
CONFIG_SENSORS_ADM1026=m
# CONFIG_SENSORS_ADM1029 is not set
# CONFIG_SENSORS_ADM1031 is not set
# CONFIG_SENSORS_ADM9240 is not set
# CONFIG_SENSORS_ADT7411 is not set
# CONFIG_SENSORS_ADT7462 is not set
# CONFIG_SENSORS_ADT7470 is not set
CONFIG_SENSORS_ADT7475=m
CONFIG_SENSORS_ASC7621=m
CONFIG_SENSORS_K8TEMP=m
# CONFIG_SENSORS_K10TEMP is not set
# CONFIG_SENSORS_FAM15H_POWER is not set
CONFIG_SENSORS_ASB100=m
CONFIG_SENSORS_ATXP1=m
CONFIG_SENSORS_DS620=m
# CONFIG_SENSORS_DS1621 is not set
# CONFIG_SENSORS_I5K_AMB is not set
# CONFIG_SENSORS_F71805F is not set
# CONFIG_SENSORS_F71882FG is not set
CONFIG_SENSORS_F75375S=m
# CONFIG_SENSORS_FSCHMD is not set
# CONFIG_SENSORS_G760A is not set
CONFIG_SENSORS_GL518SM=m
# CONFIG_SENSORS_GL520SM is not set
# CONFIG_SENSORS_GPIO_FAN is not set
# CONFIG_SENSORS_CORETEMP is not set
# CONFIG_SENSORS_IBMAEM is not set
# CONFIG_SENSORS_IBMPEX is not set
# CONFIG_SENSORS_IT87 is not set
CONFIG_SENSORS_JC42=m
# CONFIG_SENSORS_LINEAGE is not set
# CONFIG_SENSORS_LM63 is not set
CONFIG_SENSORS_LM70=m
# CONFIG_SENSORS_LM73 is not set
CONFIG_SENSORS_LM75=m
# CONFIG_SENSORS_LM77 is not set
# CONFIG_SENSORS_LM78 is not set
CONFIG_SENSORS_LM80=m
# CONFIG_SENSORS_LM83 is not set
# CONFIG_SENSORS_LM85 is not set
# CONFIG_SENSORS_LM87 is not set
CONFIG_SENSORS_LM90=m
CONFIG_SENSORS_LM92=m
# CONFIG_SENSORS_LM93 is not set
CONFIG_SENSORS_LTC4151=m
CONFIG_SENSORS_LTC4215=m
# CONFIG_SENSORS_LTC4245 is not set
# CONFIG_SENSORS_LTC4261 is not set
CONFIG_SENSORS_LM95241=m
CONFIG_SENSORS_LM95245=m
# CONFIG_SENSORS_MAX1111 is not set
# CONFIG_SENSORS_MAX16065 is not set
# CONFIG_SENSORS_MAX1619 is not set
CONFIG_SENSORS_MAX1668=m
# CONFIG_SENSORS_MAX6639 is not set
# CONFIG_SENSORS_MAX6642 is not set
CONFIG_SENSORS_MAX6650=m
# CONFIG_SENSORS_MCP3021 is not set
CONFIG_SENSORS_NTC_THERMISTOR=m
CONFIG_SENSORS_PC87360=m
CONFIG_SENSORS_PC87427=m
# CONFIG_SENSORS_PCF8591 is not set
CONFIG_PMBUS=m
CONFIG_SENSORS_PMBUS=m
CONFIG_SENSORS_ADM1275=m
# CONFIG_SENSORS_LM25066 is not set
CONFIG_SENSORS_LTC2978=m
CONFIG_SENSORS_MAX16064=m
CONFIG_SENSORS_MAX34440=m
CONFIG_SENSORS_MAX8688=m
# CONFIG_SENSORS_UCD9000 is not set
# CONFIG_SENSORS_UCD9200 is not set
CONFIG_SENSORS_ZL6100=m
# CONFIG_SENSORS_SHT15 is not set
# CONFIG_SENSORS_SHT21 is not set
# CONFIG_SENSORS_SIS5595 is not set
CONFIG_SENSORS_SMM665=m
CONFIG_SENSORS_DME1737=m
CONFIG_SENSORS_EMC1403=m
CONFIG_SENSORS_EMC2103=m
CONFIG_SENSORS_EMC6W201=m
CONFIG_SENSORS_SMSC47M1=m
# CONFIG_SENSORS_SMSC47M192 is not set
CONFIG_SENSORS_SMSC47B397=m
CONFIG_SENSORS_SCH56XX_COMMON=m
CONFIG_SENSORS_SCH5627=m
CONFIG_SENSORS_SCH5636=m
# CONFIG_SENSORS_ADS1015 is not set
CONFIG_SENSORS_ADS7828=m
# CONFIG_SENSORS_ADS7871 is not set
# CONFIG_SENSORS_AMC6821 is not set
# CONFIG_SENSORS_THMC50 is not set
# CONFIG_SENSORS_TMP102 is not set
# CONFIG_SENSORS_TMP401 is not set
CONFIG_SENSORS_TMP421=m
# CONFIG_SENSORS_VIA_CPUTEMP is not set
CONFIG_SENSORS_VIA686A=m
# CONFIG_SENSORS_VT1211 is not set
CONFIG_SENSORS_VT8231=m
CONFIG_SENSORS_W83781D=m
# CONFIG_SENSORS_W83791D is not set
# CONFIG_SENSORS_W83792D is not set
# CONFIG_SENSORS_W83793 is not set
# CONFIG_SENSORS_W83795 is not set
CONFIG_SENSORS_W83L785TS=m
# CONFIG_SENSORS_W83L786NG is not set
CONFIG_SENSORS_W83627HF=m
# CONFIG_SENSORS_W83627EHF is not set
CONFIG_SENSORS_WM831X=m
# CONFIG_SENSORS_WM8350 is not set
# CONFIG_SENSORS_APPLESMC is not set
#
# ACPI drivers
#
# CONFIG_SENSORS_ACPI_POWER is not set
CONFIG_SENSORS_ATK0110=m
CONFIG_THERMAL=m
CONFIG_THERMAL_HWMON=y
# CONFIG_WATCHDOG is not set
CONFIG_SSB_POSSIBLE=y
#
# Sonics Silicon Backplane
#
CONFIG_SSB=m
CONFIG_SSB_SPROM=y
CONFIG_SSB_PCIHOST_POSSIBLE=y
CONFIG_SSB_PCIHOST=y
# CONFIG_SSB_B43_PCI_BRIDGE is not set
# CONFIG_SSB_SILENT is not set
CONFIG_SSB_DEBUG=y
CONFIG_SSB_DRIVER_PCICORE_POSSIBLE=y
CONFIG_SSB_DRIVER_PCICORE=y
CONFIG_BCMA_POSSIBLE=y
#
# Broadcom specific AMBA
#
CONFIG_BCMA=m
CONFIG_BCMA_HOST_PCI_POSSIBLE=y
CONFIG_BCMA_HOST_PCI=y
# CONFIG_BCMA_DEBUG is not set
#
# Multifunction device drivers
#
CONFIG_MFD_CORE=y
CONFIG_MFD_88PM860X=y
# CONFIG_MFD_SM501 is not set
# CONFIG_HTC_PASIC3 is not set
CONFIG_HTC_I2CPLD=y
CONFIG_MFD_LM3533=m
# CONFIG_TPS6105X is not set
# CONFIG_TPS65010 is not set
# CONFIG_TPS6507X is not set
CONFIG_MFD_TPS65217=m
# CONFIG_MFD_TPS6586X is not set
# CONFIG_MFD_TPS65910 is not set
CONFIG_MFD_TPS65912=y
CONFIG_MFD_TPS65912_I2C=y
# CONFIG_MFD_TPS65912_SPI is not set
CONFIG_TWL4030_CORE=y
# CONFIG_TWL4030_MADC is not set
# CONFIG_MFD_TWL4030_AUDIO is not set
# CONFIG_TWL6030_PWM is not set
# CONFIG_TWL6040_CORE is not set
CONFIG_MFD_STMPE=y
#
# STMPE Interface Drivers
#
CONFIG_STMPE_I2C=y
CONFIG_STMPE_SPI=y
CONFIG_MFD_TC3589X=y
# CONFIG_MFD_TMIO is not set
# CONFIG_PMIC_DA903X is not set
CONFIG_PMIC_DA9052=y
# CONFIG_MFD_DA9052_SPI is not set
CONFIG_MFD_DA9052_I2C=y
# CONFIG_PMIC_ADP5520 is not set
CONFIG_MFD_MAX8925=y
# CONFIG_MFD_MAX8997 is not set
CONFIG_MFD_MAX8998=y
# CONFIG_MFD_S5M_CORE is not set
CONFIG_MFD_WM8400=m
CONFIG_MFD_WM831X=y
# CONFIG_MFD_WM831X_I2C is not set
CONFIG_MFD_WM831X_SPI=y
CONFIG_MFD_WM8350=y
CONFIG_MFD_WM8350_I2C=y
# CONFIG_MFD_WM8994 is not set
# CONFIG_MFD_PCF50633 is not set
# CONFIG_MFD_MC13XXX is not set
CONFIG_ABX500_CORE=y
CONFIG_AB3100_CORE=y
CONFIG_AB3100_OTP=m
# CONFIG_EZX_PCAP is not set
# CONFIG_AB8500_CORE is not set
CONFIG_MFD_CS5535=m
# CONFIG_MFD_TIMBERDALE is not set
CONFIG_LPC_SCH=m
# CONFIG_LPC_ICH is not set
CONFIG_MFD_RDC321X=m
# CONFIG_MFD_JANZ_CMODIO is not set
CONFIG_MFD_VX855=m
CONFIG_MFD_WL1273_CORE=m
# CONFIG_MFD_TPS65090 is not set
# CONFIG_MFD_AAT2870_CORE is not set
CONFIG_MFD_INTEL_MSIC=y
CONFIG_MFD_RC5T583=y
CONFIG_MFD_STA2X11=y
CONFIG_REGULATOR=y
CONFIG_REGULATOR_DEBUG=y
# CONFIG_REGULATOR_DUMMY is not set
CONFIG_REGULATOR_FIXED_VOLTAGE=m
# CONFIG_REGULATOR_VIRTUAL_CONSUMER is not set
# CONFIG_REGULATOR_USERSPACE_CONSUMER is not set
CONFIG_REGULATOR_GPIO=m
CONFIG_REGULATOR_AD5398=m
# CONFIG_REGULATOR_DA9052 is not set
CONFIG_REGULATOR_ISL6271A=m
# CONFIG_REGULATOR_88PM8607 is not set
# CONFIG_REGULATOR_MAX1586 is not set
CONFIG_REGULATOR_MAX8649=m
CONFIG_REGULATOR_MAX8660=m
CONFIG_REGULATOR_MAX8925=m
CONFIG_REGULATOR_MAX8952=m
# CONFIG_REGULATOR_MAX8998 is not set
CONFIG_REGULATOR_LP3971=m
# CONFIG_REGULATOR_LP3972 is not set
# CONFIG_REGULATOR_RC5T583 is not set
CONFIG_REGULATOR_AB3100=m
CONFIG_REGULATOR_TPS62360=m
# CONFIG_REGULATOR_TPS65023 is not set
CONFIG_REGULATOR_TPS6507X=m
# CONFIG_REGULATOR_TPS65217 is not set
CONFIG_REGULATOR_TPS6524X=m
CONFIG_REGULATOR_TPS65912=m
# CONFIG_REGULATOR_TWL4030 is not set
CONFIG_REGULATOR_WM831X=m
CONFIG_REGULATOR_WM8350=m
CONFIG_REGULATOR_WM8400=m
# CONFIG_MEDIA_SUPPORT is not set
#
# Graphics support
#
CONFIG_AGP=m
CONFIG_AGP_ALI=m
CONFIG_AGP_ATI=m
CONFIG_AGP_AMD=m
# CONFIG_AGP_AMD64 is not set
CONFIG_AGP_INTEL=m
# CONFIG_AGP_NVIDIA is not set
CONFIG_AGP_SIS=m
CONFIG_AGP_SWORKS=m
# CONFIG_AGP_VIA is not set
CONFIG_AGP_EFFICEON=m
CONFIG_VGA_ARB=y
CONFIG_VGA_ARB_MAX_GPUS=16
# CONFIG_VGA_SWITCHEROO is not set
# CONFIG_DRM is not set
# CONFIG_STUB_POULSBO is not set
CONFIG_VGASTATE=m
# CONFIG_VIDEO_OUTPUT_CONTROL is not set
CONFIG_FB=m
# CONFIG_FIRMWARE_EDID is not set
CONFIG_FB_DDC=m
# CONFIG_FB_BOOT_VESA_SUPPORT is not set
CONFIG_FB_CFB_FILLRECT=m
CONFIG_FB_CFB_COPYAREA=m
CONFIG_FB_CFB_IMAGEBLIT=m
# CONFIG_FB_CFB_REV_PIXELS_IN_BYTE is not set
CONFIG_FB_SYS_FILLRECT=m
CONFIG_FB_SYS_COPYAREA=m
CONFIG_FB_SYS_IMAGEBLIT=m
# CONFIG_FB_FOREIGN_ENDIAN is not set
CONFIG_FB_SYS_FOPS=m
# CONFIG_FB_WMT_GE_ROPS is not set
CONFIG_FB_DEFERRED_IO=y
CONFIG_FB_SVGALIB=m
# CONFIG_FB_MACMODES is not set
# CONFIG_FB_BACKLIGHT is not set
CONFIG_FB_MODE_HELPERS=y
CONFIG_FB_TILEBLITTING=y
#
# Frame buffer hardware drivers
#
CONFIG_FB_CIRRUS=m
CONFIG_FB_PM2=m
CONFIG_FB_PM2_FIFO_DISCONNECT=y
CONFIG_FB_CYBER2000=m
CONFIG_FB_CYBER2000_DDC=y
CONFIG_FB_ARC=m
CONFIG_FB_VGA16=m
# CONFIG_FB_N411 is not set
# CONFIG_FB_HGA is not set
# CONFIG_FB_S1D13XXX is not set
# CONFIG_FB_NVIDIA is not set
# CONFIG_FB_RIVA is not set
CONFIG_FB_I740=m
CONFIG_FB_I810=m
# CONFIG_FB_I810_GTF is not set
CONFIG_FB_LE80578=m
CONFIG_FB_CARILLO_RANCH=m
# CONFIG_FB_INTEL is not set
# CONFIG_FB_MATROX is not set
CONFIG_FB_RADEON=m
CONFIG_FB_RADEON_I2C=y
# CONFIG_FB_RADEON_BACKLIGHT is not set
CONFIG_FB_RADEON_DEBUG=y
# CONFIG_FB_ATY128 is not set
# CONFIG_FB_ATY is not set
CONFIG_FB_S3=m
# CONFIG_FB_S3_DDC is not set
CONFIG_FB_SAVAGE=m
# CONFIG_FB_SAVAGE_I2C is not set
# CONFIG_FB_SAVAGE_ACCEL is not set
# CONFIG_FB_SIS is not set
CONFIG_FB_VIA=m
# CONFIG_FB_VIA_DIRECT_PROCFS is not set
CONFIG_FB_VIA_X_COMPATIBILITY=y
# CONFIG_FB_NEOMAGIC is not set
# CONFIG_FB_KYRO is not set
CONFIG_FB_3DFX=m
CONFIG_FB_3DFX_ACCEL=y
# CONFIG_FB_3DFX_I2C is not set
CONFIG_FB_VOODOO1=m
# CONFIG_FB_VT8623 is not set
CONFIG_FB_TRIDENT=m
# CONFIG_FB_ARK is not set
CONFIG_FB_PM3=m
# CONFIG_FB_CARMINE is not set
CONFIG_FB_GEODE=y
# CONFIG_FB_GEODE_LX is not set
CONFIG_FB_GEODE_GX=m
# CONFIG_FB_GEODE_GX1 is not set
CONFIG_FB_TMIO=m
CONFIG_FB_TMIO_ACCELL=y
CONFIG_FB_SMSCUFX=m
CONFIG_FB_UDL=m
# CONFIG_FB_VIRTUAL is not set
CONFIG_FB_METRONOME=m
CONFIG_FB_MB862XX=m
CONFIG_FB_MB862XX_PCI_GDC=y
CONFIG_FB_MB862XX_I2C=y
CONFIG_FB_BROADSHEET=m
CONFIG_FB_AUO_K190X=m
CONFIG_FB_AUO_K1900=m
# CONFIG_FB_AUO_K1901 is not set
CONFIG_EXYNOS_VIDEO=y
CONFIG_BACKLIGHT_LCD_SUPPORT=y
CONFIG_LCD_CLASS_DEVICE=m
CONFIG_LCD_L4F00242T03=m
# CONFIG_LCD_LMS283GF05 is not set
CONFIG_LCD_LTV350QV=m
CONFIG_LCD_TDO24M=m
# CONFIG_LCD_VGG2432A4 is not set
# CONFIG_LCD_PLATFORM is not set
# CONFIG_LCD_S6E63M0 is not set
# CONFIG_LCD_LD9040 is not set
# CONFIG_LCD_AMS369FG06 is not set
CONFIG_BACKLIGHT_CLASS_DEVICE=m
CONFIG_BACKLIGHT_GENERIC=m
# CONFIG_BACKLIGHT_PROGEAR is not set
CONFIG_BACKLIGHT_CARILLO_RANCH=m
# CONFIG_BACKLIGHT_DA9052 is not set
CONFIG_BACKLIGHT_MAX8925=m
CONFIG_BACKLIGHT_APPLE=m
# CONFIG_BACKLIGHT_SAHARA is not set
# CONFIG_BACKLIGHT_WM831X is not set
# CONFIG_BACKLIGHT_ADP8860 is not set
CONFIG_BACKLIGHT_ADP8870=m
# CONFIG_BACKLIGHT_88PM860X is not set
CONFIG_BACKLIGHT_LP855X=m
CONFIG_BACKLIGHT_PANDORA=m
#
# Console display driver support
#
# CONFIG_VGA_CONSOLE is not set
# CONFIG_MDA_CONSOLE is not set
CONFIG_DUMMY_CONSOLE=y
# CONFIG_FRAMEBUFFER_CONSOLE is not set
# CONFIG_LOGO is not set
CONFIG_SOUND=m
# CONFIG_SOUND_OSS_CORE is not set
# CONFIG_SND is not set
# CONFIG_SOUND_PRIME is not set
# CONFIG_HID_SUPPORT is not set
CONFIG_USB_ARCH_HAS_OHCI=y
CONFIG_USB_ARCH_HAS_EHCI=y
CONFIG_USB_ARCH_HAS_XHCI=y
CONFIG_USB_SUPPORT=y
CONFIG_USB_COMMON=m
CONFIG_USB_ARCH_HAS_HCD=y
CONFIG_USB=m
CONFIG_USB_DEBUG=y
# CONFIG_USB_ANNOUNCE_NEW_DEVICES is not set
#
# Miscellaneous USB options
#
CONFIG_USB_DYNAMIC_MINORS=y
CONFIG_USB_SUSPEND=y
# CONFIG_USB_OTG is not set
# CONFIG_USB_OTG_WHITELIST is not set
CONFIG_USB_OTG_BLACKLIST_HUB=y
CONFIG_USB_MON=m
CONFIG_USB_WUSB=m
CONFIG_USB_WUSB_CBAF=m
CONFIG_USB_WUSB_CBAF_DEBUG=y
#
# USB Host Controller Drivers
#
# CONFIG_USB_C67X00_HCD is not set
# CONFIG_USB_XHCI_HCD is not set
CONFIG_USB_EHCI_HCD=m
# CONFIG_USB_EHCI_ROOT_HUB_TT is not set
CONFIG_USB_EHCI_TT_NEWSCHED=y
CONFIG_USB_OXU210HP_HCD=m
# CONFIG_USB_ISP116X_HCD is not set
# CONFIG_USB_ISP1760_HCD is not set
CONFIG_USB_ISP1362_HCD=m
CONFIG_USB_OHCI_HCD=m
CONFIG_USB_OHCI_HCD_SSB=y
CONFIG_USB_OHCI_HCD_PLATFORM=y
CONFIG_USB_EHCI_HCD_PLATFORM=y
# CONFIG_USB_OHCI_BIG_ENDIAN_DESC is not set
# CONFIG_USB_OHCI_BIG_ENDIAN_MMIO is not set
CONFIG_USB_OHCI_LITTLE_ENDIAN=y
# CONFIG_USB_UHCI_HCD is not set
CONFIG_USB_U132_HCD=m
CONFIG_USB_SL811_HCD=m
# CONFIG_USB_SL811_HCD_ISO is not set
CONFIG_USB_R8A66597_HCD=m
CONFIG_USB_WHCI_HCD=m
CONFIG_USB_HWA_HCD=m
CONFIG_USB_HCD_BCMA=m
CONFIG_USB_HCD_SSB=m
#
# USB Device Class drivers
#
CONFIG_USB_ACM=m
CONFIG_USB_PRINTER=m
CONFIG_USB_WDM=m
# CONFIG_USB_TMC is not set
#
# NOTE: USB_STORAGE depends on SCSI but BLK_DEV_SD may
#
#
# also be needed; see USB_STORAGE Help for more info
#
# CONFIG_USB_STORAGE is not set
CONFIG_USB_UAS=m
# CONFIG_USB_LIBUSUAL is not set
#
# USB Imaging devices
#
# CONFIG_USB_MDC800 is not set
# CONFIG_USB_MICROTEK is not set
#
# USB port drivers
#
# CONFIG_USB_USS720 is not set
CONFIG_USB_SERIAL=m
CONFIG_USB_EZUSB=y
# CONFIG_USB_SERIAL_GENERIC is not set
# CONFIG_USB_SERIAL_AIRCABLE is not set
# CONFIG_USB_SERIAL_ARK3116 is not set
CONFIG_USB_SERIAL_BELKIN=m
# CONFIG_USB_SERIAL_CH341 is not set
CONFIG_USB_SERIAL_WHITEHEAT=m
CONFIG_USB_SERIAL_DIGI_ACCELEPORT=m
CONFIG_USB_SERIAL_CP210X=m
# CONFIG_USB_SERIAL_CYPRESS_M8 is not set
CONFIG_USB_SERIAL_EMPEG=m
CONFIG_USB_SERIAL_FTDI_SIO=m
CONFIG_USB_SERIAL_FUNSOFT=m
# CONFIG_USB_SERIAL_VISOR is not set
CONFIG_USB_SERIAL_IPAQ=m
# CONFIG_USB_SERIAL_IR is not set
# CONFIG_USB_SERIAL_EDGEPORT is not set
# CONFIG_USB_SERIAL_EDGEPORT_TI is not set
# CONFIG_USB_SERIAL_F81232 is not set
# CONFIG_USB_SERIAL_GARMIN is not set
# CONFIG_USB_SERIAL_IPW is not set
CONFIG_USB_SERIAL_IUU=m
# CONFIG_USB_SERIAL_KEYSPAN_PDA is not set
CONFIG_USB_SERIAL_KEYSPAN=m
CONFIG_USB_SERIAL_KLSI=m
# CONFIG_USB_SERIAL_KOBIL_SCT is not set
CONFIG_USB_SERIAL_MCT_U232=m
# CONFIG_USB_SERIAL_METRO is not set
# CONFIG_USB_SERIAL_MOS7720 is not set
CONFIG_USB_SERIAL_MOS7840=m
CONFIG_USB_SERIAL_MOTOROLA=m
# CONFIG_USB_SERIAL_NAVMAN is not set
# CONFIG_USB_SERIAL_PL2303 is not set
# CONFIG_USB_SERIAL_OTI6858 is not set
# CONFIG_USB_SERIAL_QCAUX is not set
# CONFIG_USB_SERIAL_QUALCOMM is not set
# CONFIG_USB_SERIAL_SPCP8X5 is not set
CONFIG_USB_SERIAL_HP4X=m
CONFIG_USB_SERIAL_SAFE=m
# CONFIG_USB_SERIAL_SAFE_PADDED is not set
# CONFIG_USB_SERIAL_SIEMENS_MPI is not set
CONFIG_USB_SERIAL_SIERRAWIRELESS=m
CONFIG_USB_SERIAL_SYMBOL=m
CONFIG_USB_SERIAL_TI=m
CONFIG_USB_SERIAL_CYBERJACK=m
# CONFIG_USB_SERIAL_XIRCOM is not set
CONFIG_USB_SERIAL_WWAN=m
CONFIG_USB_SERIAL_OPTION=m
CONFIG_USB_SERIAL_OMNINET=m
CONFIG_USB_SERIAL_OPTICON=m
# CONFIG_USB_SERIAL_VIVOPAY_SERIAL is not set
# CONFIG_USB_SERIAL_ZIO is not set
CONFIG_USB_SERIAL_SSU100=m
# CONFIG_USB_SERIAL_DEBUG is not set
#
# USB Miscellaneous drivers
#
CONFIG_USB_EMI62=m
CONFIG_USB_EMI26=m
# CONFIG_USB_ADUTUX is not set
# CONFIG_USB_SEVSEG is not set
CONFIG_USB_RIO500=m
CONFIG_USB_LEGOTOWER=m
CONFIG_USB_LCD=m
# CONFIG_USB_LED is not set
CONFIG_USB_CYPRESS_CY7C63=m
CONFIG_USB_CYTHERM=m
CONFIG_USB_IDMOUSE=m
CONFIG_USB_FTDI_ELAN=m
# CONFIG_USB_APPLEDISPLAY is not set
CONFIG_USB_SISUSBVGA=m
# CONFIG_USB_SISUSBVGA_CON is not set
# CONFIG_USB_LD is not set
# CONFIG_USB_TRANCEVIBRATOR is not set
CONFIG_USB_IOWARRIOR=m
CONFIG_USB_TEST=m
# CONFIG_USB_ISIGHTFW is not set
CONFIG_USB_YUREX=m
#
# USB Physical Layer drivers
#
CONFIG_USB_ISP1301=m
CONFIG_USB_ATM=m
CONFIG_USB_SPEEDTOUCH=m
# CONFIG_USB_CXACRU is not set
# CONFIG_USB_UEAGLEATM is not set
# CONFIG_USB_XUSBATM is not set
# CONFIG_USB_GADGET is not set
#
# OTG and related infrastructure
#
CONFIG_USB_OTG_UTILS=y
# CONFIG_USB_GPIO_VBUS is not set
CONFIG_TWL6030_USB=m
CONFIG_NOP_USB_XCEIV=m
CONFIG_UWB=m
CONFIG_UWB_HWA=m
CONFIG_UWB_WHCI=m
CONFIG_UWB_I1480U=m
# CONFIG_MMC is not set
# CONFIG_MEMSTICK is not set
CONFIG_NEW_LEDS=y
CONFIG_LEDS_CLASS=m
#
# LED drivers
#
# CONFIG_LEDS_88PM860X is not set
# CONFIG_LEDS_LM3530 is not set
CONFIG_LEDS_PCA9532=m
# CONFIG_LEDS_PCA9532_GPIO is not set
CONFIG_LEDS_GPIO=m
CONFIG_LEDS_LP3944=m
CONFIG_LEDS_LP5521=m
# CONFIG_LEDS_LP5523 is not set
CONFIG_LEDS_CLEVO_MAIL=m
# CONFIG_LEDS_PCA955X is not set
# CONFIG_LEDS_PCA9633 is not set
# CONFIG_LEDS_WM831X_STATUS is not set
CONFIG_LEDS_WM8350=m
CONFIG_LEDS_DA9052=m
# CONFIG_LEDS_DAC124S085 is not set
# CONFIG_LEDS_REGULATOR is not set
# CONFIG_LEDS_BD2802 is not set
# CONFIG_LEDS_INTEL_SS4200 is not set
CONFIG_LEDS_LT3593=m
CONFIG_LEDS_TCA6507=m
CONFIG_LEDS_LM3556=m
# CONFIG_LEDS_OT200 is not set
CONFIG_LEDS_TRIGGERS=y
#
# LED Triggers
#
CONFIG_LEDS_TRIGGER_TIMER=m
# CONFIG_LEDS_TRIGGER_IDE_DISK is not set
# CONFIG_LEDS_TRIGGER_HEARTBEAT is not set
# CONFIG_LEDS_TRIGGER_BACKLIGHT is not set
# CONFIG_LEDS_TRIGGER_GPIO is not set
CONFIG_LEDS_TRIGGER_DEFAULT_ON=m
#
# iptables trigger is under Netfilter config (LED target)
#
# CONFIG_LEDS_TRIGGER_TRANSIENT is not set
CONFIG_ACCESSIBILITY=y
CONFIG_A11Y_BRAILLE_CONSOLE=y
# CONFIG_INFINIBAND is not set
# CONFIG_EDAC is not set
CONFIG_RTC_LIB=y
CONFIG_RTC_CLASS=y
# CONFIG_RTC_HCTOSYS is not set
# CONFIG_RTC_DEBUG is not set
#
# RTC interfaces
#
CONFIG_RTC_INTF_SYSFS=y
# CONFIG_RTC_INTF_PROC is not set
# CONFIG_RTC_INTF_DEV is not set
CONFIG_RTC_DRV_TEST=m
#
# I2C RTC drivers
#
# CONFIG_RTC_DRV_88PM860X is not set
CONFIG_RTC_DRV_DS1307=m
# CONFIG_RTC_DRV_DS1374 is not set
# CONFIG_RTC_DRV_DS1672 is not set
CONFIG_RTC_DRV_DS3232=m
# CONFIG_RTC_DRV_MAX6900 is not set
# CONFIG_RTC_DRV_MAX8925 is not set
CONFIG_RTC_DRV_MAX8998=m
# CONFIG_RTC_DRV_RS5C372 is not set
# CONFIG_RTC_DRV_ISL1208 is not set
# CONFIG_RTC_DRV_ISL12022 is not set
CONFIG_RTC_DRV_X1205=m
CONFIG_RTC_DRV_PCF8563=m
CONFIG_RTC_DRV_PCF8583=m
CONFIG_RTC_DRV_M41T80=m
CONFIG_RTC_DRV_M41T80_WDT=y
# CONFIG_RTC_DRV_BQ32K is not set
# CONFIG_RTC_DRV_TWL4030 is not set
# CONFIG_RTC_DRV_S35390A is not set
# CONFIG_RTC_DRV_FM3130 is not set
# CONFIG_RTC_DRV_RX8581 is not set
# CONFIG_RTC_DRV_RX8025 is not set
# CONFIG_RTC_DRV_EM3027 is not set
# CONFIG_RTC_DRV_RV3029C2 is not set
#
# SPI RTC drivers
#
# CONFIG_RTC_DRV_M41T93 is not set
CONFIG_RTC_DRV_M41T94=m
# CONFIG_RTC_DRV_DS1305 is not set
CONFIG_RTC_DRV_DS1390=m
# CONFIG_RTC_DRV_MAX6902 is not set
# CONFIG_RTC_DRV_R9701 is not set
# CONFIG_RTC_DRV_RS5C348 is not set
# CONFIG_RTC_DRV_DS3234 is not set
CONFIG_RTC_DRV_PCF2123=m
#
# Platform RTC drivers
#
# CONFIG_RTC_DRV_CMOS is not set
CONFIG_RTC_DRV_VRTC=m
# CONFIG_RTC_DRV_DS1286 is not set
CONFIG_RTC_DRV_DS1511=m
CONFIG_RTC_DRV_DS1553=m
CONFIG_RTC_DRV_DS1742=m
# CONFIG_RTC_DRV_DA9052 is not set
CONFIG_RTC_DRV_STK17TA8=m
CONFIG_RTC_DRV_M48T86=m
CONFIG_RTC_DRV_M48T35=m
CONFIG_RTC_DRV_M48T59=m
# CONFIG_RTC_DRV_MSM6242 is not set
CONFIG_RTC_DRV_BQ4802=m
# CONFIG_RTC_DRV_RP5C01 is not set
# CONFIG_RTC_DRV_V3020 is not set
# CONFIG_RTC_DRV_WM831X is not set
# CONFIG_RTC_DRV_WM8350 is not set
# CONFIG_RTC_DRV_AB3100 is not set
#
# on-CPU RTC drivers
#
CONFIG_DMADEVICES=y
# CONFIG_DMADEVICES_DEBUG is not set
#
# DMA Devices
#
# CONFIG_INTEL_MID_DMAC is not set
CONFIG_INTEL_IOATDMA=m
CONFIG_TIMB_DMA=m
CONFIG_PCH_DMA=m
CONFIG_DMA_ENGINE=y
#
# DMA Clients
#
CONFIG_NET_DMA=y
# CONFIG_ASYNC_TX_DMA is not set
CONFIG_DMATEST=m
CONFIG_DCA=m
CONFIG_AUXDISPLAY=y
CONFIG_UIO=m
# CONFIG_UIO_CIF is not set
# CONFIG_UIO_PDRV is not set
# CONFIG_UIO_PDRV_GENIRQ is not set
CONFIG_UIO_AEC=m
CONFIG_UIO_SERCOS3=m
# CONFIG_UIO_PCI_GENERIC is not set
CONFIG_UIO_NETX=m
CONFIG_VIRTIO=y
CONFIG_VIRTIO_RING=y
#
# Virtio drivers
#
CONFIG_VIRTIO_PCI=y
# CONFIG_VIRTIO_BALLOON is not set
# CONFIG_VIRTIO_MMIO is not set
#
# Microsoft Hyper-V guest support
#
# CONFIG_HYPERV is not set
CONFIG_STAGING=y
# CONFIG_IPACK_BUS is not set
CONFIG_ET131X=m
# CONFIG_SLICOSS is not set
CONFIG_USBIP_CORE=m
CONFIG_USBIP_VHCI_HCD=m
# CONFIG_USBIP_HOST is not set
# CONFIG_USBIP_DEBUG is not set
CONFIG_ECHO=m
CONFIG_COMEDI=m
# CONFIG_COMEDI_DEBUG is not set
CONFIG_COMEDI_DEFAULT_BUF_SIZE_KB=2048
CONFIG_COMEDI_DEFAULT_BUF_MAXSIZE_KB=20480
CONFIG_COMEDI_MISC_DRIVERS=m
CONFIG_COMEDI_KCOMEDILIB=m
# CONFIG_COMEDI_BOND is not set
CONFIG_COMEDI_TEST=m
# CONFIG_COMEDI_PARPORT is not set
CONFIG_COMEDI_SERIAL2002=m
# CONFIG_COMEDI_SKEL is not set
# CONFIG_COMEDI_ISA_DRIVERS is not set
CONFIG_COMEDI_PCI_DRIVERS=m
CONFIG_COMEDI_ADDI_APCI_035=m
# CONFIG_COMEDI_ADDI_APCI_1032 is not set
CONFIG_COMEDI_ADDI_APCI_1500=m
CONFIG_COMEDI_ADDI_APCI_1516=m
CONFIG_COMEDI_ADDI_APCI_1564=m
# CONFIG_COMEDI_ADDI_APCI_16XX is not set
# CONFIG_COMEDI_ADDI_APCI_2016 is not set
CONFIG_COMEDI_ADDI_APCI_2032=m
# CONFIG_COMEDI_ADDI_APCI_2200 is not set
# CONFIG_COMEDI_ADDI_APCI_3001 is not set
CONFIG_COMEDI_ADDI_APCI_3120=m
CONFIG_COMEDI_ADDI_APCI_3501=m
CONFIG_COMEDI_ADDI_APCI_3XXX=m
# CONFIG_COMEDI_ADL_PCI6208 is not set
CONFIG_COMEDI_ADL_PCI7230=m
# CONFIG_COMEDI_ADL_PCI7296 is not set
# CONFIG_COMEDI_ADL_PCI7432 is not set
# CONFIG_COMEDI_ADL_PCI8164 is not set
CONFIG_COMEDI_ADL_PCI9111=m
# CONFIG_COMEDI_ADL_PCI9118 is not set
# CONFIG_COMEDI_ADV_PCI1710 is not set
CONFIG_COMEDI_ADV_PCI1723=m
# CONFIG_COMEDI_ADV_PCI_DIO is not set
CONFIG_COMEDI_AMPLC_DIO200_PCI=m
CONFIG_COMEDI_AMPLC_PC236_PCI=m
# CONFIG_COMEDI_AMPLC_PC263_PCI is not set
# CONFIG_COMEDI_AMPLC_PCI224 is not set
CONFIG_COMEDI_AMPLC_PCI230=m
# CONFIG_COMEDI_CONTEC_PCI_DIO is not set
CONFIG_COMEDI_DAS08_PCI=m
# CONFIG_COMEDI_DT3000 is not set
# CONFIG_COMEDI_DYNA_PCI10XX is not set
# CONFIG_COMEDI_UNIOXX5 is not set
# CONFIG_COMEDI_GSC_HPDI is not set
# CONFIG_COMEDI_ICP_MULTI is not set
# CONFIG_COMEDI_II_PCI20KC is not set
CONFIG_COMEDI_DAQBOARD2000=m
CONFIG_COMEDI_JR3_PCI=m
# CONFIG_COMEDI_KE_COUNTER is not set
# CONFIG_COMEDI_CB_PCIDAS64 is not set
# CONFIG_COMEDI_CB_PCIDAS is not set
# CONFIG_COMEDI_CB_PCIDDA is not set
CONFIG_COMEDI_CB_PCIDIO=m
CONFIG_COMEDI_CB_PCIMDAS=m
CONFIG_COMEDI_CB_PCIMDDA=m
# CONFIG_COMEDI_ME4000 is not set
# CONFIG_COMEDI_ME_DAQ is not set
CONFIG_COMEDI_RTD520=m
# CONFIG_COMEDI_S526 is not set
# CONFIG_COMEDI_S626 is not set
CONFIG_COMEDI_SSV_DNP=m
# CONFIG_COMEDI_USB_DRIVERS is not set
CONFIG_COMEDI_NI_COMMON=m
# CONFIG_COMEDI_MITE is not set
CONFIG_COMEDI_8255=m
CONFIG_COMEDI_FC=m
CONFIG_COMEDI_AMPLC_DIO200=m
CONFIG_COMEDI_AMPLC_PC236=m
# CONFIG_COMEDI_AMPLC_PC263 is not set
CONFIG_COMEDI_DAS08=m
# CONFIG_FB_OLPC_DCON is not set
CONFIG_ASUS_OLED=m
# CONFIG_PANEL is not set
# CONFIG_RTS_PSTOR is not set
# CONFIG_RTS5139 is not set
# CONFIG_TRANZPORT is not set
# CONFIG_USB_SERIAL_QUATECH2 is not set
CONFIG_USB_SERIAL_QUATECH_USB2=m
# CONFIG_DX_SEP is not set
#
# IIO staging drivers
#
CONFIG_IIO_ST_HWMON=m
CONFIG_IIO_SW_RING=m
#
# Accelerometers
#
# CONFIG_ADIS16201 is not set
CONFIG_ADIS16203=m
# CONFIG_ADIS16204 is not set
CONFIG_ADIS16209=m
CONFIG_ADIS16220=m
CONFIG_ADIS16240=m
# CONFIG_KXSD9 is not set
# CONFIG_LIS3L02DQ is not set
CONFIG_SCA3000=m
#
# Analog to digital converters
#
CONFIG_AD7291=m
CONFIG_AD7298=m
# CONFIG_AD7606 is not set
# CONFIG_AD799X is not set
CONFIG_AD7476=m
# CONFIG_AD7887 is not set
# CONFIG_AD7780 is not set
CONFIG_AD7793=m
CONFIG_AD7816=m
CONFIG_AD7192=m
# CONFIG_ADT7310 is not set
# CONFIG_ADT7410 is not set
# CONFIG_AD7280 is not set
CONFIG_MAX1363=m
CONFIG_MAX1363_RING_BUFFER=y
#
# Analog digital bi-direction converters
#
CONFIG_ADT7316=m
# CONFIG_ADT7316_SPI is not set
CONFIG_ADT7316_I2C=m
#
# Capacitance to digital converters
#
CONFIG_AD7150=m
# CONFIG_AD7152 is not set
CONFIG_AD7746=m
#
# Digital to analog converters
#
CONFIG_AD5064=m
CONFIG_AD5360=m
# CONFIG_AD5380 is not set
# CONFIG_AD5421 is not set
CONFIG_AD5624R_SPI=m
# CONFIG_AD5446 is not set
CONFIG_AD5504=m
CONFIG_AD5764=m
CONFIG_AD5791=m
CONFIG_AD5686=m
# CONFIG_MAX517 is not set
#
# Direct Digital Synthesis
#
CONFIG_AD5930=m
CONFIG_AD9832=m
CONFIG_AD9834=m
CONFIG_AD9850=m
CONFIG_AD9852=m
CONFIG_AD9910=m
# CONFIG_AD9951 is not set
#
# Digital gyroscope sensors
#
# CONFIG_ADIS16060 is not set
# CONFIG_ADIS16080 is not set
CONFIG_ADIS16130=m
# CONFIG_ADIS16260 is not set
CONFIG_ADXRS450=m
#
# Network Analyzer, Impedance Converters
#
# CONFIG_AD5933 is not set
#
# Inertial measurement units
#
# CONFIG_ADIS16400 is not set
#
# Light sensors
#
# CONFIG_SENSORS_ISL29018 is not set
CONFIG_SENSORS_ISL29028=m
# CONFIG_SENSORS_TSL2563 is not set
CONFIG_TSL2583=m
CONFIG_TSL2x7x=m
#
# Magnetometer sensors
#
CONFIG_SENSORS_AK8975=m
CONFIG_SENSORS_HMC5843=m
#
# Active energy metering IC
#
CONFIG_ADE7753=m
CONFIG_ADE7754=m
CONFIG_ADE7758=m
# CONFIG_ADE7759 is not set
CONFIG_ADE7854=m
CONFIG_ADE7854_I2C=m
CONFIG_ADE7854_SPI=m
#
# Resolver to digital converters
#
CONFIG_AD2S90=m
CONFIG_AD2S1200=m
CONFIG_AD2S1210=m
#
# Triggers - standalone
#
CONFIG_IIO_PERIODIC_RTC_TRIGGER=m
CONFIG_IIO_GPIO_TRIGGER=m
# CONFIG_IIO_SYSFS_TRIGGER is not set
# CONFIG_IIO_SIMPLE_DUMMY is not set
CONFIG_ZRAM=m
# CONFIG_ZRAM_DEBUG is not set
CONFIG_ZCACHE=y
CONFIG_ZSMALLOC=y
CONFIG_FB_SM7XX=m
CONFIG_CRYSTALHD=m
CONFIG_FB_XGI=m
CONFIG_ACPI_QUICKSTART=m
# CONFIG_USB_ENESTORAGE is not set
CONFIG_BCM_WIMAX=m
CONFIG_FT1000=m
# CONFIG_FT1000_USB is not set
#
# Speakup console speech
#
# CONFIG_SPEAKUP is not set
# CONFIG_TOUCHSCREEN_CLEARPAD_TM1217 is not set
# CONFIG_TOUCHSCREEN_SYNAPTICS_I2C_RMI4 is not set
# CONFIG_STAGING_MEDIA is not set
#
# Android
#
CONFIG_ANDROID=y
CONFIG_ANDROID_BINDER_IPC=y
# CONFIG_ASHMEM is not set
CONFIG_ANDROID_LOGGER=m
# CONFIG_ANDROID_RAM_CONSOLE is not set
CONFIG_ANDROID_TIMED_OUTPUT=y
# CONFIG_ANDROID_TIMED_GPIO is not set
CONFIG_ANDROID_LOW_MEMORY_KILLER=y
CONFIG_ANDROID_INTF_ALARM_DEV=y
CONFIG_PHONE=m
CONFIG_PHONE_IXJ=m
# CONFIG_USB_WPAN_HCD is not set
CONFIG_X86_PLATFORM_DEVICES=y
# CONFIG_ACERHDF is not set
CONFIG_ASUS_LAPTOP=m
# CONFIG_DELL_LAPTOP is not set
CONFIG_FUJITSU_LAPTOP=m
# CONFIG_FUJITSU_LAPTOP_DEBUG is not set
# CONFIG_FUJITSU_TABLET is not set
# CONFIG_AMILO_RFKILL is not set
CONFIG_HP_ACCEL=m
CONFIG_MSI_LAPTOP=m
CONFIG_PANASONIC_LAPTOP=m
CONFIG_COMPAL_LAPTOP=m
CONFIG_SONY_LAPTOP=m
# CONFIG_SONYPI_COMPAT is not set
# CONFIG_IDEAPAD_LAPTOP is not set
# CONFIG_THINKPAD_ACPI is not set
# CONFIG_SENSORS_HDAPS is not set
# CONFIG_ACPI_WMI is not set
# CONFIG_TOPSTAR_LAPTOP is not set
CONFIG_TOSHIBA_BT_RFKILL=m
# CONFIG_ACPI_CMPC is not set
CONFIG_INTEL_SCU_IPC=y
# CONFIG_INTEL_SCU_IPC_UTIL is not set
CONFIG_GPIO_INTEL_PMIC=y
# CONFIG_INTEL_MID_POWER_BUTTON is not set
CONFIG_INTEL_MFLD_THERMAL=m
CONFIG_INTEL_IPS=m
CONFIG_IBM_RTL=m
# CONFIG_XO1_RFKILL is not set
CONFIG_XO15_EBOOK=m
CONFIG_SAMSUNG_LAPTOP=m
# CONFIG_INTEL_OAKTRAIL is not set
CONFIG_SAMSUNG_Q10=m
CONFIG_APPLE_GMUX=m
#
# Hardware Spinlock drivers
#
CONFIG_CLKSRC_I8253=y
CONFIG_CLKEVT_I8253=y
CONFIG_CLKBLD_I8253=y
CONFIG_DW_APB_TIMER=y
# CONFIG_IOMMU_SUPPORT is not set
#
# Remoteproc drivers (EXPERIMENTAL)
#
#
# Rpmsg drivers (EXPERIMENTAL)
#
# CONFIG_VIRT_DRIVERS is not set
# CONFIG_PM_DEVFREQ is not set
# CONFIG_EXTCON is not set
# CONFIG_MEMORY is not set
CONFIG_IIO=m
CONFIG_IIO_BUFFER=y
CONFIG_IIO_KFIFO_BUF=m
CONFIG_IIO_TRIGGER=y
CONFIG_IIO_CONSUMERS_PER_TRIGGER=2
CONFIG_VME_BUS=m
#
# VME Bridge Drivers
#
CONFIG_VME_CA91CX42=m
CONFIG_VME_TSI148=m
#
# VME Board Drivers
#
CONFIG_VMIVME_7805=m
#
# VME Device Drivers
#
CONFIG_VME_USER=m
# CONFIG_VME_PIO2 is not set
# CONFIG_MODEM_SHM is not set
#
# Firmware Drivers
#
# CONFIG_EDD is not set
# CONFIG_FIRMWARE_MEMMAP is not set
CONFIG_DELL_RBU=m
CONFIG_DCDBAS=m
CONFIG_DMIID=y
# CONFIG_DMI_SYSFS is not set
CONFIG_ISCSI_IBFT_FIND=y
# CONFIG_ISCSI_IBFT is not set
# CONFIG_GOOGLE_FIRMWARE is not set
#
# File systems
#
CONFIG_DCACHE_WORD_ACCESS=y
# CONFIG_EXT2_FS is not set
CONFIG_EXT3_FS=m
CONFIG_EXT3_DEFAULTS_TO_ORDERED=y
# CONFIG_EXT3_FS_XATTR is not set
CONFIG_EXT4_FS=m
CONFIG_EXT4_USE_FOR_EXT23=y
CONFIG_EXT4_FS_XATTR=y
CONFIG_EXT4_FS_POSIX_ACL=y
CONFIG_EXT4_FS_SECURITY=y
# CONFIG_EXT4_DEBUG is not set
CONFIG_JBD=m
CONFIG_JBD_DEBUG=y
CONFIG_JBD2=m
# CONFIG_JBD2_DEBUG is not set
CONFIG_FS_MBCACHE=m
CONFIG_REISERFS_FS=m
CONFIG_REISERFS_CHECK=y
CONFIG_REISERFS_PROC_INFO=y
CONFIG_REISERFS_FS_XATTR=y
# CONFIG_REISERFS_FS_POSIX_ACL is not set
# CONFIG_REISERFS_FS_SECURITY is not set
CONFIG_JFS_FS=m
# CONFIG_JFS_POSIX_ACL is not set
# CONFIG_JFS_SECURITY is not set
# CONFIG_JFS_DEBUG is not set
CONFIG_JFS_STATISTICS=y
# CONFIG_XFS_FS is not set
CONFIG_BTRFS_FS=m
# CONFIG_BTRFS_FS_POSIX_ACL is not set
CONFIG_BTRFS_FS_CHECK_INTEGRITY=y
CONFIG_NILFS2_FS=m
CONFIG_FS_POSIX_ACL=y
CONFIG_EXPORTFS=y
# CONFIG_FILE_LOCKING is not set
# CONFIG_FSNOTIFY is not set
# CONFIG_DNOTIFY is not set
# CONFIG_INOTIFY_USER is not set
# CONFIG_FANOTIFY is not set
# CONFIG_QUOTA is not set
# CONFIG_QUOTACTL is not set
# CONFIG_AUTOFS4_FS is not set
# CONFIG_FUSE_FS is not set
#
# Caches
#
# CONFIG_FSCACHE is not set
#
# CD-ROM/DVD Filesystems
#
# CONFIG_ISO9660_FS is not set
# CONFIG_UDF_FS is not set
#
# DOS/FAT/NT Filesystems
#
# CONFIG_MSDOS_FS is not set
# CONFIG_VFAT_FS is not set
# CONFIG_NTFS_FS is not set
#
# Pseudo filesystems
#
CONFIG_PROC_FS=y
CONFIG_PROC_KCORE=y
# CONFIG_PROC_SYSCTL is not set
# CONFIG_PROC_PAGE_MONITOR is not set
CONFIG_SYSFS=y
CONFIG_TMPFS=y
# CONFIG_TMPFS_POSIX_ACL is not set
# CONFIG_TMPFS_XATTR is not set
# CONFIG_HUGETLBFS is not set
# CONFIG_HUGETLB_PAGE is not set
# CONFIG_CONFIGFS_FS is not set
# CONFIG_MISC_FILESYSTEMS is not set
CONFIG_NETWORK_FILESYSTEMS=y
# CONFIG_CEPH_FS is not set
CONFIG_CIFS=m
# CONFIG_CIFS_STATS is not set
CONFIG_CIFS_WEAK_PW_HASH=y
CONFIG_CIFS_UPCALL=y
# CONFIG_CIFS_XATTR is not set
# CONFIG_CIFS_DEBUG2 is not set
CONFIG_CIFS_DFS_UPCALL=y
# CONFIG_NCP_FS is not set
CONFIG_CODA_FS=m
CONFIG_AFS_FS=m
CONFIG_AFS_DEBUG=y
CONFIG_9P_FS=y
# CONFIG_9P_FS_POSIX_ACL is not set
CONFIG_NLS=y
CONFIG_NLS_DEFAULT="iso8859-1"
# CONFIG_NLS_CODEPAGE_437 is not set
CONFIG_NLS_CODEPAGE_737=m
# CONFIG_NLS_CODEPAGE_775 is not set
# CONFIG_NLS_CODEPAGE_850 is not set
CONFIG_NLS_CODEPAGE_852=m
# CONFIG_NLS_CODEPAGE_855 is not set
CONFIG_NLS_CODEPAGE_857=m
CONFIG_NLS_CODEPAGE_860=m
CONFIG_NLS_CODEPAGE_861=m
CONFIG_NLS_CODEPAGE_862=m
# CONFIG_NLS_CODEPAGE_863 is not set
# CONFIG_NLS_CODEPAGE_864 is not set
CONFIG_NLS_CODEPAGE_865=m
CONFIG_NLS_CODEPAGE_866=m
CONFIG_NLS_CODEPAGE_869=m
CONFIG_NLS_CODEPAGE_936=m
CONFIG_NLS_CODEPAGE_950=m
# 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=m
# CONFIG_NLS_ISO8859_1 is not set
CONFIG_NLS_ISO8859_2=m
CONFIG_NLS_ISO8859_3=m
# 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=m
CONFIG_NLS_ISO8859_14=m
# CONFIG_NLS_ISO8859_15 is not set
# CONFIG_NLS_KOI8_R is not set
# CONFIG_NLS_KOI8_U is not set
CONFIG_NLS_UTF8=m
# CONFIG_PROTECTED_LINKS is not set
#
# Kernel hacking
#
CONFIG_TRACE_IRQFLAGS_SUPPORT=y
CONFIG_DEFAULT_MESSAGE_LOGLEVEL=4
# CONFIG_ENABLE_WARN_DEPRECATED is not set
# CONFIG_ENABLE_MUST_CHECK is not set
CONFIG_FRAME_WARN=1024
CONFIG_MAGIC_SYSRQ=y
# CONFIG_STRIP_ASM_SYMS is not set
# CONFIG_READABLE_ASM is not set
CONFIG_UNUSED_SYMBOLS=y
CONFIG_DEBUG_FS=y
# CONFIG_HEADERS_CHECK is not set
CONFIG_DEBUG_SECTION_MISMATCH=y
CONFIG_DEBUG_KERNEL=y
# CONFIG_DEBUG_SHIRQ is not set
# CONFIG_LOCKUP_DETECTOR is not set
# CONFIG_HARDLOCKUP_DETECTOR is not set
# CONFIG_PANIC_ON_OOPS is not set
CONFIG_PANIC_ON_OOPS_VALUE=0
CONFIG_DETECT_HUNG_TASK=y
CONFIG_DEFAULT_HUNG_TASK_TIMEOUT=120
# CONFIG_BOOTPARAM_HUNG_TASK_PANIC is not set
CONFIG_BOOTPARAM_HUNG_TASK_PANIC_VALUE=0
CONFIG_SCHED_DEBUG=y
CONFIG_SCHEDSTATS=y
# CONFIG_TIMER_STATS is not set
CONFIG_DEBUG_OBJECTS=y
CONFIG_DEBUG_OBJECTS_SELFTEST=y
CONFIG_DEBUG_OBJECTS_FREE=y
CONFIG_DEBUG_OBJECTS_TIMERS=y
# CONFIG_DEBUG_OBJECTS_WORK is not set
# CONFIG_DEBUG_OBJECTS_RCU_HEAD is not set
CONFIG_DEBUG_OBJECTS_PERCPU_COUNTER=y
CONFIG_DEBUG_OBJECTS_ENABLE_DEFAULT=1
CONFIG_DEBUG_KMEMLEAK=y
CONFIG_DEBUG_KMEMLEAK_EARLY_LOG_SIZE=400
# CONFIG_DEBUG_KMEMLEAK_TEST is not set
# CONFIG_DEBUG_KMEMLEAK_DEFAULT_OFF is not set
CONFIG_DEBUG_RT_MUTEXES=y
CONFIG_DEBUG_PI_LIST=y
# CONFIG_RT_MUTEX_TESTER is not set
CONFIG_DEBUG_SPINLOCK=y
CONFIG_DEBUG_MUTEXES=y
CONFIG_DEBUG_LOCK_ALLOC=y
# CONFIG_PROVE_LOCKING is not set
CONFIG_SPARSE_RCU_POINTER=y
CONFIG_LOCKDEP=y
CONFIG_LOCK_STAT=y
# CONFIG_DEBUG_LOCKDEP is not set
# CONFIG_DEBUG_ATOMIC_SLEEP is not set
CONFIG_DEBUG_LOCKING_API_SELFTESTS=y
CONFIG_STACKTRACE=y
# CONFIG_DEBUG_STACK_USAGE is not set
# CONFIG_DEBUG_KOBJECT is not set
# CONFIG_DEBUG_HIGHMEM is not set
# CONFIG_DEBUG_INFO is not set
CONFIG_DEBUG_VM=y
CONFIG_DEBUG_VIRTUAL=y
# CONFIG_DEBUG_WRITECOUNT is not set
CONFIG_DEBUG_MEMORY_INIT=y
# CONFIG_DEBUG_LIST is not set
# CONFIG_TEST_LIST_SORT is not set
# CONFIG_DEBUG_SG is not set
CONFIG_DEBUG_NOTIFIERS=y
# CONFIG_DEBUG_CREDENTIALS is not set
CONFIG_ARCH_WANT_FRAME_POINTERS=y
CONFIG_FRAME_POINTER=y
# CONFIG_RCU_TORTURE_TEST is not set
CONFIG_RCU_CPU_STALL_TIMEOUT=60
CONFIG_RCU_CPU_STALL_INFO=y
CONFIG_RCU_TRACE=y
CONFIG_BACKTRACE_SELF_TEST=m
CONFIG_DEBUG_BLOCK_EXT_DEVT=y
# CONFIG_DEBUG_FORCE_WEAK_PER_CPU is not set
CONFIG_DEBUG_PER_CPU_MAPS=y
CONFIG_LKDTM=m
# CONFIG_FAULT_INJECTION is not set
# CONFIG_LATENCYTOP is not set
# CONFIG_DEBUG_PAGEALLOC is not set
CONFIG_USER_STACKTRACE_SUPPORT=y
CONFIG_HAVE_FUNCTION_TRACER=y
CONFIG_HAVE_FUNCTION_GRAPH_TRACER=y
CONFIG_HAVE_FUNCTION_GRAPH_FP_TEST=y
CONFIG_HAVE_FUNCTION_TRACE_MCOUNT_TEST=y
CONFIG_HAVE_DYNAMIC_FTRACE=y
CONFIG_HAVE_FTRACE_MCOUNT_RECORD=y
CONFIG_HAVE_SYSCALL_TRACEPOINTS=y
CONFIG_HAVE_C_RECORDMCOUNT=y
CONFIG_RING_BUFFER=y
CONFIG_RING_BUFFER_ALLOW_SWAP=y
CONFIG_TRACING_SUPPORT=y
# CONFIG_FTRACE is not set
CONFIG_PROVIDE_OHCI1394_DMA_INIT=y
# CONFIG_DMA_API_DEBUG is not set
# CONFIG_ATOMIC64_SELFTEST is not set
# CONFIG_ASYNC_RAID6_TEST is not set
# CONFIG_SAMPLES is not set
CONFIG_HAVE_ARCH_KGDB=y
CONFIG_KGDB=y
CONFIG_KGDB_SERIAL_CONSOLE=y
CONFIG_KGDB_TESTS=y
CONFIG_KGDB_TESTS_ON_BOOT=y
CONFIG_KGDB_TESTS_BOOT_STRING="V1F100"
CONFIG_KGDB_LOW_LEVEL_TRAP=y
# CONFIG_KGDB_KDB is not set
CONFIG_HAVE_ARCH_KMEMCHECK=y
CONFIG_TEST_KSTRTOX=m
# CONFIG_STRICT_DEVMEM is not set
CONFIG_X86_VERBOSE_BOOTUP=y
CONFIG_EARLY_PRINTK=y
CONFIG_EARLY_PRINTK_INTEL_MID=y
CONFIG_EARLY_PRINTK_DBGP=y
CONFIG_DEBUG_STACKOVERFLOW=y
# CONFIG_X86_PTDUMP is not set
# CONFIG_DEBUG_RODATA is not set
CONFIG_DEBUG_SET_MODULE_RONX=y
# CONFIG_DEBUG_NX_TEST is not set
# CONFIG_DOUBLEFAULT is not set
CONFIG_IOMMU_STRESS=y
CONFIG_HAVE_MMIOTRACE_SUPPORT=y
CONFIG_IO_DELAY_TYPE_0X80=0
CONFIG_IO_DELAY_TYPE_0XED=1
CONFIG_IO_DELAY_TYPE_UDELAY=2
CONFIG_IO_DELAY_TYPE_NONE=3
# CONFIG_IO_DELAY_0X80 is not set
CONFIG_IO_DELAY_0XED=y
# CONFIG_IO_DELAY_UDELAY is not set
# CONFIG_IO_DELAY_NONE is not set
CONFIG_DEFAULT_IO_DELAY_TYPE=1
CONFIG_DEBUG_BOOT_PARAMS=y
CONFIG_CPA_DEBUG=y
# CONFIG_OPTIMIZE_INLINING is not set
# CONFIG_DEBUG_STRICT_USER_COPY_CHECKS is not set
CONFIG_DEBUG_NMI_SELFTEST=y
#
# Security options
#
CONFIG_KEYS=y
# CONFIG_TRUSTED_KEYS is not set
# CONFIG_ENCRYPTED_KEYS is not set
# CONFIG_KEYS_DEBUG_PROC_KEYS is not set
CONFIG_SECURITY_DMESG_RESTRICT=y
# CONFIG_SECURITY is not set
CONFIG_SECURITYFS=y
CONFIG_DEFAULT_SECURITY_DAC=y
CONFIG_DEFAULT_SECURITY=""
CONFIG_XOR_BLOCKS=m
CONFIG_ASYNC_CORE=m
CONFIG_ASYNC_MEMCPY=m
CONFIG_ASYNC_XOR=m
CONFIG_ASYNC_PQ=m
CONFIG_ASYNC_RAID6_RECOV=m
CONFIG_ASYNC_TX_DISABLE_PQ_VAL_DMA=y
CONFIG_ASYNC_TX_DISABLE_XOR_VAL_DMA=y
CONFIG_CRYPTO=y
#
# Crypto core or helper
#
CONFIG_CRYPTO_ALGAPI=y
CONFIG_CRYPTO_ALGAPI2=y
CONFIG_CRYPTO_AEAD=m
CONFIG_CRYPTO_AEAD2=y
CONFIG_CRYPTO_BLKCIPHER=m
CONFIG_CRYPTO_BLKCIPHER2=y
CONFIG_CRYPTO_HASH=m
CONFIG_CRYPTO_HASH2=y
CONFIG_CRYPTO_RNG=m
CONFIG_CRYPTO_RNG2=y
CONFIG_CRYPTO_PCOMP2=y
CONFIG_CRYPTO_MANAGER=m
CONFIG_CRYPTO_MANAGER2=y
CONFIG_CRYPTO_USER=m
# CONFIG_CRYPTO_MANAGER_DISABLE_TESTS is not set
CONFIG_CRYPTO_GF128MUL=m
# CONFIG_CRYPTO_NULL is not set
# CONFIG_CRYPTO_PCRYPT is not set
CONFIG_CRYPTO_WORKQUEUE=y
CONFIG_CRYPTO_CRYPTD=m
CONFIG_CRYPTO_AUTHENC=m
# CONFIG_CRYPTO_TEST is not set
#
# Authenticated Encryption with Associated Data
#
# CONFIG_CRYPTO_CCM is not set
# CONFIG_CRYPTO_GCM is not set
CONFIG_CRYPTO_SEQIV=m
#
# Block modes
#
CONFIG_CRYPTO_CBC=m
CONFIG_CRYPTO_CTR=m
# CONFIG_CRYPTO_CTS is not set
CONFIG_CRYPTO_ECB=m
CONFIG_CRYPTO_LRW=m
CONFIG_CRYPTO_PCBC=m
CONFIG_CRYPTO_XTS=m
#
# Hash modes
#
CONFIG_CRYPTO_HMAC=m
CONFIG_CRYPTO_XCBC=m
# CONFIG_CRYPTO_VMAC is not set
#
# Digest
#
CONFIG_CRYPTO_CRC32C=m
# CONFIG_CRYPTO_CRC32C_INTEL is not set
CONFIG_CRYPTO_GHASH=m
CONFIG_CRYPTO_MD4=m
CONFIG_CRYPTO_MD5=m
CONFIG_CRYPTO_MICHAEL_MIC=m
CONFIG_CRYPTO_RMD128=m
# CONFIG_CRYPTO_RMD160 is not set
CONFIG_CRYPTO_RMD256=m
CONFIG_CRYPTO_RMD320=m
CONFIG_CRYPTO_SHA1=m
# CONFIG_CRYPTO_SHA256 is not set
# CONFIG_CRYPTO_SHA512 is not set
# CONFIG_CRYPTO_TGR192 is not set
# CONFIG_CRYPTO_WP512 is not set
#
# Ciphers
#
CONFIG_CRYPTO_AES=m
CONFIG_CRYPTO_AES_586=m
CONFIG_CRYPTO_AES_NI_INTEL=m
# CONFIG_CRYPTO_ANUBIS is not set
CONFIG_CRYPTO_ARC4=m
CONFIG_CRYPTO_BLOWFISH=m
CONFIG_CRYPTO_BLOWFISH_COMMON=m
# CONFIG_CRYPTO_CAMELLIA is not set
CONFIG_CRYPTO_CAST5=m
# CONFIG_CRYPTO_CAST6 is not set
CONFIG_CRYPTO_DES=m
CONFIG_CRYPTO_FCRYPT=m
# CONFIG_CRYPTO_KHAZAD is not set
# CONFIG_CRYPTO_SALSA20 is not set
# CONFIG_CRYPTO_SALSA20_586 is not set
# CONFIG_CRYPTO_SEED is not set
CONFIG_CRYPTO_SERPENT=m
CONFIG_CRYPTO_SERPENT_SSE2_586=m
CONFIG_CRYPTO_TEA=m
# CONFIG_CRYPTO_TWOFISH is not set
CONFIG_CRYPTO_TWOFISH_COMMON=m
CONFIG_CRYPTO_TWOFISH_586=m
#
# Compression
#
CONFIG_CRYPTO_DEFLATE=m
# CONFIG_CRYPTO_ZLIB is not set
CONFIG_CRYPTO_LZO=y
#
# Random Number Generation
#
# CONFIG_CRYPTO_ANSI_CPRNG is not set
CONFIG_CRYPTO_USER_API=m
CONFIG_CRYPTO_USER_API_HASH=m
# CONFIG_CRYPTO_USER_API_SKCIPHER is not set
# CONFIG_CRYPTO_HW is not set
CONFIG_HAVE_KVM=y
CONFIG_VIRTUALIZATION=y
# CONFIG_KVM is not set
CONFIG_VHOST_NET=m
# CONFIG_LGUEST is not set
# CONFIG_BINARY_PRINTF is not set
#
# Library routines
#
CONFIG_RAID6_PQ=m
CONFIG_BITREVERSE=y
CONFIG_GENERIC_FIND_FIRST_BIT=y
CONFIG_GENERIC_PCI_IOMAP=y
CONFIG_GENERIC_IOMAP=y
CONFIG_GENERIC_IO=y
CONFIG_CRC_CCITT=m
CONFIG_CRC16=m
# CONFIG_CRC_T10DIF is not set
# CONFIG_CRC_ITU_T is not set
CONFIG_CRC32=y
CONFIG_CRC32_SELFTEST=y
# CONFIG_CRC32_SLICEBY8 is not set
# CONFIG_CRC32_SLICEBY4 is not set
# CONFIG_CRC32_SARWATE is not set
CONFIG_CRC32_BIT=y
CONFIG_CRC7=m
CONFIG_LIBCRC32C=m
# CONFIG_CRC8 is not set
CONFIG_ZLIB_INFLATE=m
CONFIG_ZLIB_DEFLATE=m
CONFIG_LZO_COMPRESS=y
CONFIG_LZO_DECOMPRESS=y
# CONFIG_XZ_DEC is not set
# CONFIG_XZ_DEC_BCJ is not set
CONFIG_TEXTSEARCH=y
CONFIG_TEXTSEARCH_KMP=m
CONFIG_TEXTSEARCH_BM=m
CONFIG_TEXTSEARCH_FSM=m
CONFIG_HAS_IOMEM=y
CONFIG_HAS_IOPORT=y
CONFIG_HAS_DMA=y
CONFIG_CHECK_SIGNATURE=y
# CONFIG_CPUMASK_OFFSTACK is not set
CONFIG_CPU_RMAP=y
CONFIG_DQL=y
CONFIG_NLATTR=y
CONFIG_AVERAGE=y
# CONFIG_CORDIC is not set
CONFIG_DDR=y
^ permalink raw reply
* RE: [net-next 06/12] ixgbe: Hardware Timestamping + PTP Hardware Clock (PHC)
From: Keller, Jacob E @ 2012-05-10 21:53 UTC (permalink / raw)
To: Richard Cochran, Kirsher, Jeffrey T
Cc: davem@davemloft.net, netdev@vger.kernel.org, gospo@redhat.com,
sassmann@redhat.com
In-Reply-To: <20120510141122.GB3392@localhost.localdomain>
> -----Original Message-----
> From: Richard Cochran [mailto:richardcochran@gmail.com]
> Sent: Thursday, May 10, 2012 7:11 AM
> To: Kirsher, Jeffrey T
> Cc: davem@davemloft.net; Keller, Jacob E; netdev@vger.kernel.org;
> gospo@redhat.com; sassmann@redhat.com
> Subject: Re: [net-next 06/12] ixgbe: Hardware Timestamping + PTP Hardware
> Clock (PHC)
>
> Mostly, this looks very good. I do have one concern and a nit, though.
>
> On Wed, May 09, 2012 at 11:46:47PM -0700, Jeff Kirsher wrote:
> > diff --git a/drivers/net/ethernet/intel/ixgbe/ixgbe_main.c
> > b/drivers/net/ethernet/intel/ixgbe/ixgbe_main.c
> > index 1693ec3..9a83c40 100644
> > --- a/drivers/net/ethernet/intel/ixgbe/ixgbe_main.c
> > +++ b/drivers/net/ethernet/intel/ixgbe/ixgbe_main.c
> > @@ -789,6 +789,13 @@ static bool ixgbe_clean_tx_irq(struct ixgbe_q_vector
> *q_vector,
> > total_bytes += tx_buffer->bytecount;
> > total_packets += tx_buffer->gso_segs;
> >
> > +#ifdef CONFIG_IXGBE_PTP
> > + if (unlikely(tx_buffer->tx_flags &
> > + IXGBE_TX_FLAGS_TSTAMP))
> > + ixgbe_ptp_tx_hwtstamp(q_vector,
> > + tx_buffer->skb);
>
> This looks strangely wrapped.
>
> > +
> > +#endif
> > /* free the skb */
> > dev_kfree_skb_any(tx_buffer->skb);
> >
>
> ...
>
> > diff --git a/drivers/net/ethernet/intel/ixgbe/ixgbe_ptp.c
> > b/drivers/net/ethernet/intel/ixgbe/ixgbe_ptp.c
> > new file mode 100644
> > index 0000000..0b6553e
> > --- /dev/null
> > +++ b/drivers/net/ethernet/intel/ixgbe/ixgbe_ptp.c
>
> ...
>
> > +/**
> > + * ixgbe_ptp_rx_hwtstamp - utility function which checks for RX time
> > +stamp
> > + * @q_vector: structure containing interrupt and ring information
> > + * @skb: particular skb to send timestamp with
> > + *
> > + * if the timestamp is valid, we convert it into the timecounter ns
> > + * value, then store that result into the shhwtstamps structure which
> > + * is passed up the network stack
> > + */
> > +void ixgbe_ptp_rx_hwtstamp(struct ixgbe_q_vector *q_vector,
> > + struct sk_buff *skb)
> > +{
> > + struct ixgbe_adapter *adapter;
> > + struct ixgbe_hw *hw;
> > + struct skb_shared_hwtstamps *shhwtstamps;
> > + u64 regval = 0, ns;
> > + u32 tsyncrxctl;
> > + unsigned long flags;
> > +
> > + /* we cannot process timestamps on a ring without a q_vector */
> > + if (!q_vector || !q_vector->adapter)
> > + return;
> > +
> > + adapter = q_vector->adapter;
> > + hw = &adapter->hw;
> > +
> > + tsyncrxctl = IXGBE_READ_REG(hw, IXGBE_TSYNCRXCTL);
> > + regval |= (u64)IXGBE_READ_REG(hw, IXGBE_RXSTMPL);
> > + regval |= (u64)IXGBE_READ_REG(hw, IXGBE_RXSTMPH) << 32;
> > +
> > + /*
> > + * If this bit is set, then the RX registers contain the time stamp. No
> > + * other packet will be time stamped until we read these registers, so
> > + * read the registers to make them available again. Because only one
> > + * packet can be time stamped at a time, we know that the register
> > + * values must belong to this one here and therefore we don't need to
> > + * compare any of the additional attributes stored for it.
>
> I suspect that this assumption is wrong. What happens if the time stamping
> logic locks a value but the packet is lost because the ring is full?
>
> BTW, the IGB driver also has this defect.
>
Note how I read the rx registers first? So it will always clear the value.
That should unlock the value for the next rx stamp packet.
> Thanks,
> Richard
^ permalink raw reply
* RE: [net-next 07/12] ixgbe: Enable timesync clock-out feature for PPS support on X540
From: Keller, Jacob E @ 2012-05-10 21:54 UTC (permalink / raw)
To: Richard Cochran, Kirsher, Jeffrey T
Cc: davem@davemloft.net, netdev@vger.kernel.org, gospo@redhat.com,
sassmann@redhat.com
In-Reply-To: <20120510141721.GC3392@localhost.localdomain>
> -----Original Message-----
> From: Richard Cochran [mailto:richardcochran@gmail.com]
> Sent: Thursday, May 10, 2012 7:17 AM
> To: Kirsher, Jeffrey T
> Cc: davem@davemloft.net; Keller, Jacob E; netdev@vger.kernel.org;
> gospo@redhat.com; sassmann@redhat.com
> Subject: Re: [net-next 07/12] ixgbe: Enable timesync clock-out feature for PPS
> support on X540
>
> On Wed, May 09, 2012 at 11:46:48PM -0700, Jeff Kirsher wrote:
> > From: Jacob E Keller <jacob.e.keller@intel.com>
> >
> > This patch enables the PPS system in the PHC framework, by enabling
> > the clock-out feature on the X540 device. Causes the SDP0 to be set as
> > a 1Hz clock. Also configures the timesync interrupt cause in order to
> > report each pulse to the PPS via the PHC framework, which can be used
> > for general system clock synchronization. (This allows a stable method
> > for tuning the general system time via the on-board SYSTIM register
> > based clock.)
>
> Glad to see the PPS output and internal PPS support.
>
> > diff --git a/drivers/net/ethernet/intel/ixgbe/ixgbe_main.c
> > b/drivers/net/ethernet/intel/ixgbe/ixgbe_main.c
> > index 9a83c40..1ad6e2a 100644
> > --- a/drivers/net/ethernet/intel/ixgbe/ixgbe_main.c
> > +++ b/drivers/net/ethernet/intel/ixgbe/ixgbe_main.c
>
> ...
>
> > /**
> > + * ixgbe_ptp_check_pps_event
> > + * @adapter - the private adapter structure
> > + * @eicr - the interrupt cause register value
> > + *
> > + * This function is called by the interrupt routine when checking for
> > + * interrupts. It will check and handle a pps event.
> > + */
> > +void ixgbe_ptp_check_pps_event(struct ixgbe_adapter *adapter, u32
> > +eicr) {
> > + struct ixgbe_hw *hw = &adapter->hw;
> > + struct ptp_clock_event event;
> > +
> > + event.type = PTP_CLOCK_PPS;
> > +
> > + /* Make sure ptp clock is valid, and PPS event enabled */
> > + if (!adapter->ptp_clock ||
> > + !(adapter->flags2 & IXGBE_FLAG2_PTP_PPS_ENABLED))
> > + return;
> > +
> > + switch (hw->mac.type) {
> > + case ixgbe_mac_X540:
> > + if (eicr & IXGBE_EICR_TIMESYNC)
>
> Since this function is called in every interrupt, I would check this flag
> first thing.
>
Not sure what you mean? Check this before checking the other interrupts?
I can do that.
> > + ptp_clock_event(adapter->ptp_clock, &event);
> > + break;
> > + default:
> > + break;
> > + }
> > +}
>
> Thanks,
> Richard
^ permalink raw reply
* RE: [net-next 07/12] ixgbe: Enable timesync clock-out feature for PPS support on X540
From: Keller, Jacob E @ 2012-05-10 22:08 UTC (permalink / raw)
To: Keller, Jacob E, Richard Cochran, Kirsher, Jeffrey T
Cc: davem@davemloft.net, netdev@vger.kernel.org, gospo@redhat.com,
sassmann@redhat.com
In-Reply-To: <20120510141721.GC3392@localhost.localdomain>
> -----Original Message-----
> From: Keller, Jacob E
> Sent: Thursday, May 10, 2012 2:55 PM
> To: 'Richard Cochran'; Kirsher, Jeffrey T
> Cc: davem@davemloft.net; netdev@vger.kernel.org; gospo@redhat.com;
> sassmann@redhat.com
> Subject: RE: [net-next 07/12] ixgbe: Enable timesync clock-out feature for PPS
> support on X540
>
>
>
> > -----Original Message-----
> > From: Richard Cochran [mailto:richardcochran@gmail.com]
> > Sent: Thursday, May 10, 2012 7:17 AM
> > To: Kirsher, Jeffrey T
> > Cc: davem@davemloft.net; Keller, Jacob E; netdev@vger.kernel.org;
> > gospo@redhat.com; sassmann@redhat.com
> > Subject: Re: [net-next 07/12] ixgbe: Enable timesync clock-out feature
> > for PPS support on X540
> >
> > On Wed, May 09, 2012 at 11:46:48PM -0700, Jeff Kirsher wrote:
> > > From: Jacob E Keller <jacob.e.keller@intel.com>
> > >
> > > This patch enables the PPS system in the PHC framework, by enabling
> > > the clock-out feature on the X540 device. Causes the SDP0 to be set
> > > as a 1Hz clock. Also configures the timesync interrupt cause in
> > > order to report each pulse to the PPS via the PHC framework, which
> > > can be used for general system clock synchronization. (This allows a
> > > stable method for tuning the general system time via the on-board
> > > SYSTIM register based clock.)
> >
> > Glad to see the PPS output and internal PPS support.
> >
> > > diff --git a/drivers/net/ethernet/intel/ixgbe/ixgbe_main.c
> > > b/drivers/net/ethernet/intel/ixgbe/ixgbe_main.c
> > > index 9a83c40..1ad6e2a 100644
> > > --- a/drivers/net/ethernet/intel/ixgbe/ixgbe_main.c
> > > +++ b/drivers/net/ethernet/intel/ixgbe/ixgbe_main.c
> >
> > ...
> >
> > > /**
> > > + * ixgbe_ptp_check_pps_event
> > > + * @adapter - the private adapter structure
> > > + * @eicr - the interrupt cause register value
> > > + *
> > > + * This function is called by the interrupt routine when checking
> > > +for
> > > + * interrupts. It will check and handle a pps event.
> > > + */
> > > +void ixgbe_ptp_check_pps_event(struct ixgbe_adapter *adapter, u32
> > > +eicr) {
> > > + struct ixgbe_hw *hw = &adapter->hw;
> > > + struct ptp_clock_event event;
> > > +
> > > + event.type = PTP_CLOCK_PPS;
> > > +
> > > + /* Make sure ptp clock is valid, and PPS event enabled */
> > > + if (!adapter->ptp_clock ||
> > > + !(adapter->flags2 & IXGBE_FLAG2_PTP_PPS_ENABLED))
> > > + return;
> > > +
> > > + switch (hw->mac.type) {
> > > + case ixgbe_mac_X540:
> > > + if (eicr & IXGBE_EICR_TIMESYNC)
> >
> > Since this function is called in every interrupt, I would check this
> > flag first thing.
> >
> Not sure what you mean? Check this before checking the other interrupts?
> I can do that.
>
> > > + ptp_clock_event(adapter->ptp_clock, &event);
> > > + break;
> > > + default:
> > > + break;
> > > + }
> > > +}
> >
> > Thanks,
> > Richard
Oops stupid mail program sent that on accident. Anyways: I think you might be
right, Richard. We don't read those timestamp values unless the stat err bit
for timestamps is set on the descriptor. But I am not sure what happens when the
tjmestamped packet is dropped off the end of the ring. What would you propose
here? How can we detect if this timestamp doesn't match the packet? I can look
into using the extra hardware features for matching timestamps. That might be
a more useful, in that it would help prevent this case.
- Jake
^ permalink raw reply
* RE: [NET_NEXT RFC PATCH 2/3] ixgbe: added netdev_ops file to debugfs
From: Sullivan, Catherine @ 2012-05-10 22:29 UTC (permalink / raw)
To: Stephen Hemminger; +Cc: David Miller, netdev@vger.kernel.org
In-Reply-To: <20120510143539.5584e87e@nehalam.linuxnetplumber.net>
> From: Stephen Hemminger [mailto:shemminger@vyatta.com]
> Sent: Thursday, May 10, 2012 2:36 PM
>
> On Thu, 10 May 2012 21:14:49 +0000
> "Sullivan, Catherine" <catherine.sullivan@intel.com> wrote:
>
> > I was aware of this, however this does not allow a call to the
> ndo_tx_timeout function which is what my patch does. Is there a way to
> do this with sysfs? I could not find this functionality.
> >
> > -----Original Message-----
> > From: David Miller [mailto:davem@davemloft.net]
> > Sent: Thursday, May 10, 2012 1:32 PM
> >
> > From: "Sullivan, Catherine" <catherine.sullivan@intel.com>
> > Date: Thu, 10 May 2012 20:28:28 +0000
> >
> > > Could you point me to where this is available in sysfs please? I'm
> > > not familiar with it.
> >
> > Is the 'find' program not properly functioning on your computer?
> >
> > [davem@drr net-next]$ find /sys -type f -name tx_timeout
> > /sys/devices/virtual/net/lo/queues/tx-0/tx_timeout
> > /sys/devices/virtual/net/redhat0/queues/tx-0/tx_timeout
> >
> /sys/devices/pci0000:00/0000:00:1c.2/0000:06:00.0/net/p34p1/queues/tx-
> > 0/tx_timeout
> > [davem@drr net-next]$
>
> Are you trying to induce timeout for some tests or code coverage?
Yes, we are using this for testing and debugging purposes.
^ permalink raw reply
* [PATCH] ks8851: Update link status during link change interrupt
From: Stephen Boyd @ 2012-05-10 22:51 UTC (permalink / raw)
To: netdev; +Cc: linux-kernel, Ben Dooks
If a link change interrupt comes in we just clear the interrupt
and continue along without notifying the upper networking layers
that the link has changed. Use the mii_check_link() function to
update the link status whenever a link change interrupt occurs.
Cc: Ben Dooks <ben-linux@fluff.org>
Signed-off-by: Stephen Boyd <sboyd@codeaurora.org>
---
drivers/net/ethernet/micrel/ks8851.c | 7 ++++---
1 file changed, 4 insertions(+), 3 deletions(-)
diff --git a/drivers/net/ethernet/micrel/ks8851.c b/drivers/net/ethernet/micrel/ks8851.c
index f8dda00..5e313e9 100644
--- a/drivers/net/ethernet/micrel/ks8851.c
+++ b/drivers/net/ethernet/micrel/ks8851.c
@@ -618,10 +618,8 @@ static void ks8851_irq_work(struct work_struct *work)
netif_dbg(ks, intr, ks->netdev,
"%s: status 0x%04x\n", __func__, status);
- if (status & IRQ_LCI) {
- /* should do something about checking link status */
+ if (status & IRQ_LCI)
handled |= IRQ_LCI;
- }
if (status & IRQ_LDI) {
u16 pmecr = ks8851_rdreg16(ks, KS_PMECR);
@@ -684,6 +682,9 @@ static void ks8851_irq_work(struct work_struct *work)
mutex_unlock(&ks->lock);
+ if (status & IRQ_LCI)
+ mii_check_link(&ks->mii);
+
if (status & IRQ_TXI)
netif_wake_queue(ks->netdev);
--
Sent by an employee of the Qualcomm Innovation Center, Inc.
The Qualcomm Innovation Center, Inc. is a member of the Code Aurora Forum.
^ permalink raw reply related
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