* [PATCH] netfilter: nfnetlink: silence warning if CONFIG_PROVE_RCU isn't set
From: Paul Bolle @ 2013-03-04 12:45 UTC (permalink / raw)
To: Pablo Neira Ayuso, Patrick McHardy, David S. Miller
Cc: netfilter-devel, netfilter, coreteam, netdev, linux-kernel
Since commit c14b78e7decd0d1d5add6a4604feb8609fe920a9 ("netfilter:
nfnetlink: add mutex per subsystem") building nefnetlink.o without
CONFIG_PROVE_RCU set, triggers this GCC warning:
net/netfilter/nfnetlink.c:65:22: warning: ‘nfnl_get_lock’ defined but not used [-Wunused-function]
The cause of that warning is, in short, that rcu_lockdep_assert()
compiles away if CONFIG_PROVE_RCU is not set. Silence this warning by
open coding nfnl_get_lock() in the sole place it was called, which
allows to remove that function.
Signed-off-by: Paul Bolle <pebolle@tiscali.nl>
---
0) Compile tested only, but without CONFIG_PROVE_RCU set! This patch
needs building and running by someone who actually uses that option.
1) This patch triggers a checkpatch "line over 80 characters" warning.
But note that it actually shortens the line checkpatch complains about
(by one character!).
net/netfilter/nfnetlink.c | 7 +------
1 file changed, 1 insertion(+), 6 deletions(-)
diff --git a/net/netfilter/nfnetlink.c b/net/netfilter/nfnetlink.c
index d578ec2..0b1b32c 100644
--- a/net/netfilter/nfnetlink.c
+++ b/net/netfilter/nfnetlink.c
@@ -62,11 +62,6 @@ void nfnl_unlock(__u8 subsys_id)
}
EXPORT_SYMBOL_GPL(nfnl_unlock);
-static struct mutex *nfnl_get_lock(__u8 subsys_id)
-{
- return &table[subsys_id].mutex;
-}
-
int nfnetlink_subsys_register(const struct nfnetlink_subsystem *n)
{
nfnl_lock(n->subsys_id);
@@ -199,7 +194,7 @@ replay:
rcu_read_unlock();
nfnl_lock(subsys_id);
if (rcu_dereference_protected(table[subsys_id].subsys,
- lockdep_is_held(nfnl_get_lock(subsys_id))) != ss ||
+ lockdep_is_held(&table[subsys_id].mutex)) != ss ||
nfnetlink_find_client(type, ss) != nc)
err = -EAGAIN;
else if (nc->call)
--
1.7.11.7
^ permalink raw reply related
* RE: [PATCH 2/2] benet: Wait I/O while resuming device
From: Perla, Sathya @ 2013-03-04 11:11 UTC (permalink / raw)
To: Gavin Shan
Cc: netdev@vger.kernel.org, Seetharaman, Subramanian, Khaparde, Ajit
In-Reply-To: <20130304101841.GA20882@shangw.(null)>
> -----Original Message-----
> From: Gavin Shan [mailto:shangw@linux.vnet.ibm.com]
>
> On Mon, Mar 04, 2013 at 09:17:22AM +0000, Perla, Sathya wrote:
> >> -----Original Message-----
> >> From: Gavin Shan [mailto:shangw@linux.vnet.ibm.com]
> >>
> >> After resetting the adapter, the config space register (0x7c) might
> >> give fake information to indicate the f/w is ready. In turn, 0xFF's
> >> is always returned while accessing on I/O space registers. The patch
> >> adds more check to make sure the I/O space is ready for access before
> accessing that region.
> >>
> >...
> >>
> >> +int be_cmd_fw_wait_io(struct be_adapter *adapter) {
> >> + void __iomem *db = adapter->db + MPU_MAILBOX_DB_OFFSET;
> >> + int timeout = 0;
> >> + u32 val;
> >> +
> >> + if (lancer_chip(adapter))
> >> + return 0;
> >> +
> >> + do {
> >> + val = ioread32(db);
> >> + if (val != 0xffffffff)
> >> + return 0;
> >Wouldn't reading 0xffffffff from a register cause a new EEH flow to be
> triggered?
> >
>
> I don't think 0xffffffff here indicates a new EEH error and the adapter was
> recovering from EEH error, which already happened before.
>
> Actually, I'm developing new feature to support EEH for PowerNV (PPC)
> platform. While the benet adapter detected EEH error and tried to resume, the
> I/O access always returned 0xffffffff even through I could get correct values
> from the config space. Since I don't have the specification, I would guess the
> config space becomes ready prior to I/O space after resetting the adapter and
> its firmware.
The root-cause here is that the config-space/0x7c register is incorrectly
reflecting the POST state to be FW_READY. This causes the driver to go ahead
and read I/O space "prematurely" causing a 0xffffffff read.
The config-space/0x7c register reflects the correct
value a little later. This happens only for BE2/3 chips.
I propose to fix this by polling instead on CSR-BAR/0xac register for POST status
for BE2/3 chips.
thanks,
-Sathya
^ permalink raw reply
* Re: [PATCH] net: ipv6: Don't purge default router if accept_ra=2
From: YOSHIFUJI Hideaki @ 2013-03-04 10:09 UTC (permalink / raw)
To: David Miller; +Cc: Lorenzo Colitti, netdev, Eric Dumazet
In-Reply-To: <CAKD1Yr2e8Z8CDAM3tgp=nUR58OO9QZYEx8zkWwwcQ1S=14D2Qw@mail.gmail.com>
Lorenzo Colitti wrote:
> Setting net.ipv6.conf.<interface>.accept_ra=2 causes the kernel
> to accept RAs even when forwarding is enabled. However, enabling
> forwarding purges all default routes on the system, breaking
> connectivity until the next RA is received. Fix this by not
> purging default routes on interfaces that have accept_ra=2.
>
> Signed-off-by: Lorenzo Colitti <lorenzo@google.com>
> ---
> net/ipv6/route.c | 3 ++-
> 1 file changed, 2 insertions(+), 1 deletion(-)
>
> diff --git a/net/ipv6/route.c b/net/ipv6/route.c
> index 9282665..e5fe004 100644
> --- a/net/ipv6/route.c
> +++ b/net/ipv6/route.c
> @@ -1915,7 +1915,8 @@ void rt6_purge_dflt_routers(struct net *net)
> restart:
> read_lock_bh(&table->tb6_lock);
> for (rt = table->tb6_root.leaf; rt; rt = rt->dst.rt6_next) {
> - if (rt->rt6i_flags & (RTF_DEFAULT | RTF_ADDRCONF)) {
> + if (rt->rt6i_flags & (RTF_DEFAULT | RTF_ADDRCONF) &&
> + (!rt->rt6i_idev || rt->rt6i_idev->cnf.accept_ra != 2)) {
> dst_hold(&rt->dst);
> read_unlock_bh(&table->tb6_lock);
> ip6_del_rt(rt);
>
Acked-by: YOSHIFUJI Hideaki <yoshfuji@linux-ipv6.org>
--yoshfuji
^ permalink raw reply
* [PATCH 3.8-stable] usbnet: smsc95xx: fix suspend failure
From: Ming Lei @ 2013-03-04 10:07 UTC (permalink / raw)
To: David S. Miller, Greg Kroah-Hartman
Cc: Oliver Neukum, netdev, linux-usb, Ming Lei, stable,
Steve Glendinning
The three below functions:
smsc95xx_enter_suspend0()
smsc95xx_enter_suspend1()
smsc95xx_enter_suspend2()
return > 0 in case of success, so they will cause smsc95xx_suspend()
to return > 0 and suspend failure.
This patch is backported from the upstream commit:
From 7643721471117d5f62ca36f328d3dc8d84af4402 Mon Sep 17 00:00:00 2001
Subject: [PATCH] usbnet: smsc95xx: fix suspend failure
Cc: <stable@vger.kernel.org>
Cc: Steve Glendinning <steve.glendinning@shawell.net>
Signed-off-by: Ming Lei <ming.lei@canonical.com>
---
drivers/net/usb/smsc95xx.c | 6 ++++++
1 file changed, 6 insertions(+)
diff --git a/drivers/net/usb/smsc95xx.c b/drivers/net/usb/smsc95xx.c
index 9b73670..6214181 100644
--- a/drivers/net/usb/smsc95xx.c
+++ b/drivers/net/usb/smsc95xx.c
@@ -1340,6 +1340,8 @@ static int smsc95xx_enter_suspend0(struct usbnet *dev)
ret = smsc95xx_read_reg_nopm(dev, PM_CTRL, &val);
if (ret < 0)
netdev_warn(dev->net, "Error reading PM_CTRL\n");
+ else
+ ret = 0;
return ret;
}
@@ -1392,6 +1394,8 @@ static int smsc95xx_enter_suspend1(struct usbnet *dev)
ret = smsc95xx_write_reg_nopm(dev, PM_CTRL, val);
if (ret < 0)
netdev_warn(dev->net, "Error writing PM_CTRL\n");
+ else
+ ret = 0;
return ret;
}
@@ -1413,6 +1417,8 @@ static int smsc95xx_enter_suspend2(struct usbnet *dev)
ret = smsc95xx_write_reg_nopm(dev, PM_CTRL, val);
if (ret < 0)
netdev_warn(dev->net, "Error writing PM_CTRL\n");
+ else
+ ret = 0;
return ret;
}
--
1.7.9.5
^ permalink raw reply related
* Re: [Patch net] garp: fix a NULL pointer dereference bug
From: Cong Wang @ 2013-03-04 9:55 UTC (permalink / raw)
To: Eric Dumazet; +Cc: netdev, bugs, David Ward, Stephen Hemminger, David S. Miller
In-Reply-To: <1362374790.15793.87.camel@edumazet-glaptop>
On Sun, 2013-03-03 at 21:26 -0800, Eric Dumazet wrote:
>
> Nope this patch doesnt solve the problem
>
> Crash is in :
>
> 49 8b 1c c6 mov (%r14,%rax,8),%rbx
>
> Thats because r14 (port) is NULL
>
>
>
Hmm, but I can't see how it can be NULL, the only place of NULL'ing it
is inside garp_release_port(), right after the piece of code that I
patched.
Thanks!
^ permalink raw reply
* RE: [PATCH 2/2] benet: Wait I/O while resuming device
From: Perla, Sathya @ 2013-03-04 9:17 UTC (permalink / raw)
To: Gavin Shan, netdev@vger.kernel.org
Cc: Seetharaman, Subramanian, Khaparde, Ajit
In-Reply-To: <1362383327-32362-2-git-send-email-shangw@linux.vnet.ibm.com>
> -----Original Message-----
> From: Gavin Shan [mailto:shangw@linux.vnet.ibm.com]
>
> After resetting the adapter, the config space register (0x7c) might give fake
> information to indicate the f/w is ready. In turn, 0xFF's is always returned while
> accessing on I/O space registers. The patch adds more check to make sure the
> I/O space is ready for access before accessing that region.
>
...
>
> +int be_cmd_fw_wait_io(struct be_adapter *adapter) {
> + void __iomem *db = adapter->db + MPU_MAILBOX_DB_OFFSET;
> + int timeout = 0;
> + u32 val;
> +
> + if (lancer_chip(adapter))
> + return 0;
> +
> + do {
> + val = ioread32(db);
> + if (val != 0xffffffff)
> + return 0;
Wouldn't reading 0xffffffff from a register cause a new EEH flow to be triggered?
Anyway, the SLIPORT_SEMAPHORE register that returns a valid POST
state *always* is available in the CSR BAR space. This will be for BE2 and BE3
chips. For Skyhawk-R chips config-space/0x7c will work fine.
I can give a patch with these changes in a few days if that works for you....
> +
> + dev_info(&adapter->pdev->dev,
> + "Wating for I/O (0x%08x), %ds elapsed\n",
> + val, timeout);
> + if (msleep_interruptible(2000)) {
> + dev_err(&adapter->pdev->dev,
> + "Waiting for I/O aborted\n");
> + return -EIO;
> + }
> + timeout += 2;
> + } while (timeout < 60);
> +
> + dev_err(&adapter->pdev->dev, "Timeout waiting for I/O (%d)\n",
> timeout);
> + return -1;
> +}
> +
^ permalink raw reply
* Re: [RFC PATCH 0/5] net: low latency Ethernet device polling
From: Eliezer Tamir @ 2013-03-04 8:46 UTC (permalink / raw)
To: Cong Wang
Cc: Eliezer Tamir, linux-kernel, netdev, Dave Miller,
Jesse Brandeburg, e1000-devel, Willem de Bruijn, Andi Kleen, HPA,
Eliezer Tamir
In-Reply-To: <5134592E.6050508@linux.intel.com>
>>>
>>
>>
>> A dumb question: is bypassing tcpdump/netfilters/qdisc etc. what we
>> always want? Isn't this a security issue?
>
> We are not bypassing any of the regular stack checks/hooks, we call the
> normal netif_rx_skb().
correction, netif_receive_skb()
^ permalink raw reply
* Re: [RFC PATCH 1/5] net: implement support for low latency socket polling
From: Eliezer Tamir @ 2013-03-04 8:43 UTC (permalink / raw)
To: Eric Dumazet
Cc: Eliezer Tamir, linux-kernel, netdev, Dave Miller,
Jesse Brandeburg, e1000-devel, Willem de Bruijn, Andi Kleen, HPA,
Eliezer Tamir
In-Reply-To: <1362335704.15793.81.camel@edumazet-glaptop>
On 03/03/2013 20:35, Eric Dumazet wrote:
> On Wed, 2013-02-27 at 09:55 -0800, Eliezer Tamir wrote:
>
>> index 821c7f4..d1d1016 100644
>> --- a/include/linux/skbuff.h
>> +++ b/include/linux/skbuff.h
>> @@ -408,6 +408,10 @@ struct sk_buff {
>> struct sock *sk;
>> struct net_device *dev;
>>
>> +#ifdef CONFIG_INET_LL_RX_POLL
>> + struct napi_struct *dev_ref; /* where this skb came from */
>> +#endif
>> +
>> /*
>> * This is the control buffer. It is free to use for every
>> * layer. Please put your private variables there. If you
>
> Yes, thats the killer, because :
>
> 1) It adds 8 bytes per skb, and we are going to reach the 256 bytes per
> sk_buff boundary. cloned skbs will use an extra cache line.
>
> It might make sense to union this on dma_cookie, as dma_cookie is only
> used on TX path.
I will try this out.
> 2) We need to reference count napi structs.
>
> For 2) , we would need to add a percpu ref counter (a bit like struct
> netdevice -> pcpu_refcnt)
>
> Alternative to 2) would be to use a generation id, incremented every
> time a napi used in spin polling enabled driver is dismantled (and freed
> after RCU grace period)
I like this option, because one would assume that the life expectancy of
a napi is rather long. We can just increment the generation id any time
any napi is disabled, which simplifies things.
There could be other configuration changes that would make our notion on
where to poll outdated, for example, someone may have reprogrammed an RX
filter. This is not as catastrophic as a napi going away but still.
Would it make sense to make this a generic mechanism?
One could for example increment the generation id every time the RTNL is
taken. or is this too much?
Thanks,
Eliezer
^ permalink raw reply
* regression: fd0f979 no long authenticates w/ath9k_htc
From: Corey Richardson @ 2013-03-04 8:42 UTC (permalink / raw)
To: John W. Linville, Johannes Berg, David S. Miller, linux-wireless,
netdev, linux-kernel, Johannes Berg
[-- Attachment #1: Type: text/plain, Size: 660 bytes --]
ath9k_htc driver , AR9271 (at least according to lsusb)
commit fd0f979a1b67f0889aea24a7c7d2a54d6706a1cf
Author: Johannes Berg <johannes.berg@intel.com>
Date: Thu Feb 7 00:14:51 2013 +0100
mac80211: simplify idle handling
Now that we have channel contexts, idle is (pretty
much) equivalent to not having a channel context.
Change the code to use this relation so that there
no longer is a need for a lot of idle recalculate
calls everywhere.
Signed-off-by: Johannes Berg <johannes.berg@intel.com>
:040000 040000 85b3d4d114efb012773b4c7e1728b5bcae2e6b37
3ff33170763520b03e84e067f91cc0a8334e4d36 M net
any more info needed?
[-- Attachment #2: dmesg --]
[-- Type: application/octet-stream, Size: 61043 bytes --]
[ 0.000000] Initializing cgroup subsys cpuset
[ 0.000000] Initializing cgroup subsys cpu
[ 0.000000] Linux version 3.8.0-rc1-cmr+ (root@roger) (gcc version 4.7.2 (GCC) ) #8 SMP PREEMPT Mon Mar 4 03:19:02 EST 2013
[ 0.000000] Command line: root=/dev/sda2 quiet rootfstype=ext4 ro init=/bin/systemd libahci.ignore_sss=1 radeon.pcie_gen2=1 vga=current splash BOOT_IMAGE=../vmlinuz-cmr-staging
[ 0.000000] e820: BIOS-provided physical RAM map:
[ 0.000000] BIOS-e820: [mem 0x0000000000000000-0x000000000009d7ff] usable
[ 0.000000] BIOS-e820: [mem 0x000000000009d800-0x000000000009ffff] reserved
[ 0.000000] BIOS-e820: [mem 0x00000000000e0000-0x00000000000fffff] reserved
[ 0.000000] BIOS-e820: [mem 0x0000000000100000-0x00000000de1e3fff] usable
[ 0.000000] BIOS-e820: [mem 0x00000000de1e4000-0x00000000de947fff] reserved
[ 0.000000] BIOS-e820: [mem 0x00000000de948000-0x00000000debc7fff] ACPI NVS
[ 0.000000] BIOS-e820: [mem 0x00000000debc8000-0x00000000debccfff] ACPI data
[ 0.000000] BIOS-e820: [mem 0x00000000debcd000-0x00000000dec0ffff] ACPI NVS
[ 0.000000] BIOS-e820: [mem 0x00000000dec10000-0x00000000df4c2fff] usable
[ 0.000000] BIOS-e820: [mem 0x00000000df4c3000-0x00000000df7dcfff] reserved
[ 0.000000] BIOS-e820: [mem 0x00000000df7dd000-0x00000000df7fffff] usable
[ 0.000000] BIOS-e820: [mem 0x00000000f8000000-0x00000000fbffffff] reserved
[ 0.000000] BIOS-e820: [mem 0x00000000fec00000-0x00000000fec00fff] reserved
[ 0.000000] BIOS-e820: [mem 0x00000000fed00000-0x00000000fed03fff] reserved
[ 0.000000] BIOS-e820: [mem 0x00000000fed1c000-0x00000000fed1ffff] reserved
[ 0.000000] BIOS-e820: [mem 0x00000000fee00000-0x00000000fee00fff] reserved
[ 0.000000] BIOS-e820: [mem 0x00000000ff000000-0x00000000ffffffff] reserved
[ 0.000000] BIOS-e820: [mem 0x0000000100000000-0x000000041effffff] usable
[ 0.000000] NX (Execute Disable) protection: active
[ 0.000000] SMBIOS 2.7 present.
[ 0.000000] DMI: Gigabyte Technology Co., Ltd. To be filled by O.E.M./H77M-D3H, BIOS F5 03/29/2012
[ 0.000000] e820: update [mem 0x00000000-0x0000ffff] usable ==> reserved
[ 0.000000] e820: remove [mem 0x000a0000-0x000fffff] usable
[ 0.000000] No AGP bridge found
[ 0.000000] e820: last_pfn = 0x41f000 max_arch_pfn = 0x400000000
[ 0.000000] MTRR default type: uncachable
[ 0.000000] MTRR fixed ranges enabled:
[ 0.000000] 00000-9FFFF write-back
[ 0.000000] A0000-BFFFF uncachable
[ 0.000000] C0000-CFFFF write-protect
[ 0.000000] D0000-E7FFF uncachable
[ 0.000000] E8000-FFFFF write-protect
[ 0.000000] MTRR variable ranges enabled:
[ 0.000000] 0 base 000000000 mask C00000000 write-back
[ 0.000000] 1 base 400000000 mask FF0000000 write-back
[ 0.000000] 2 base 410000000 mask FF8000000 write-back
[ 0.000000] 3 base 418000000 mask FFC000000 write-back
[ 0.000000] 4 base 41C000000 mask FFE000000 write-back
[ 0.000000] 5 base 41E000000 mask FFF000000 write-back
[ 0.000000] 6 base 0E0000000 mask FE0000000 uncachable
[ 0.000000] 7 disabled
[ 0.000000] 8 disabled
[ 0.000000] 9 disabled
[ 0.000000] x86 PAT enabled: cpu 0, old 0x7040600070406, new 0x7010600070106
[ 0.000000] e820: update [mem 0xe0000000-0xffffffff] usable ==> reserved
[ 0.000000] e820: last_pfn = 0xdf800 max_arch_pfn = 0x400000000
[ 0.000000] initial memory mapped: [mem 0x00000000-0x1fffffff]
[ 0.000000] Base memory trampoline at [ffff880000097000] 97000 size 24576
[ 0.000000] init_memory_mapping: [mem 0x00000000-0xdf7fffff]
[ 0.000000] [mem 0x00000000-0xdf7fffff] page 2M
[ 0.000000] kernel direct mapping tables up to 0xdf7fffff @ [mem 0x1fffb000-0x1fffffff]
[ 0.000000] init_memory_mapping: [mem 0x100000000-0x41effffff]
[ 0.000000] [mem 0x100000000-0x41effffff] page 2M
[ 0.000000] kernel direct mapping tables up to 0x41effffff @ [mem 0xdf7f2000-0xdf7fffff]
[ 0.000000] ACPI: RSDP 00000000000f0490 00024 (v02 ALASKA)
[ 0.000000] ACPI: XSDT 00000000debaf070 00064 (v01 ALASKA A M I 01072009 AMI 00010013)
[ 0.000000] ACPI: FACP 00000000debb8d08 000F4 (v04 ALASKA A M I 01072009 AMI 00010013)
[ 0.000000] ACPI: DSDT 00000000debaf170 09B94 (v02 ALASKA A M I 00000012 INTL 20051117)
[ 0.000000] ACPI: FACS 00000000debc6f80 00040
[ 0.000000] ACPI: APIC 00000000debb8e00 00092 (v03 ALASKA A M I 01072009 AMI 00010013)
[ 0.000000] ACPI: MCFG 00000000debb8e98 0003C (v01 ALASKA A M I 01072009 MSFT 00000097)
[ 0.000000] ACPI: HPET 00000000debb8ed8 00038 (v01 ALASKA A M I 01072009 AMI. 00000005)
[ 0.000000] ACPI: SSDT 00000000debb8f10 0036D (v01 SataRe SataTabl 00001000 INTL 20091112)
[ 0.000000] ACPI: SSDT 00000000debb9280 009AA (v01 PmRef Cpu0Ist 00003000 INTL 20051117)
[ 0.000000] ACPI: SSDT 00000000debb9c30 00A92 (v01 PmRef CpuPm 00003000 INTL 20051117)
[ 0.000000] ACPI: DMAR 00000000debba6c8 00080 (v01 INTEL SNB 00000001 INTL 00000001)
[ 0.000000] ACPI: Local APIC address 0xfee00000
[ 0.000000] No NUMA configuration found
[ 0.000000] Faking a node at [mem 0x0000000000000000-0x000000041effffff]
[ 0.000000] Initmem setup node 0 [mem 0x00000000-0x41effffff]
[ 0.000000] NODE_DATA [mem 0x41effc000-0x41effffff]
[ 0.000000] [ffffea0000000000-ffffea00107fffff] PMD -> [ffff88040e600000-ffff88041e5fffff] on node 0
[ 0.000000] Zone ranges:
[ 0.000000] DMA [mem 0x00010000-0x00ffffff]
[ 0.000000] DMA32 [mem 0x01000000-0xffffffff]
[ 0.000000] Normal [mem 0x100000000-0x41effffff]
[ 0.000000] Movable zone start for each node
[ 0.000000] Early memory node ranges
[ 0.000000] node 0: [mem 0x00010000-0x0009cfff]
[ 0.000000] node 0: [mem 0x00100000-0xde1e3fff]
[ 0.000000] node 0: [mem 0xdec10000-0xdf4c2fff]
[ 0.000000] node 0: [mem 0xdf7dd000-0xdf7fffff]
[ 0.000000] node 0: [mem 0x100000000-0x41effffff]
[ 0.000000] On node 0 totalpages: 4184647
[ 0.000000] DMA zone: 64 pages used for memmap
[ 0.000000] DMA zone: 6 pages reserved
[ 0.000000] DMA zone: 3911 pages, LIFO batch:0
[ 0.000000] DMA32 zone: 14187 pages used for memmap
[ 0.000000] DMA32 zone: 893775 pages, LIFO batch:31
[ 0.000000] Normal zone: 51136 pages used for memmap
[ 0.000000] Normal zone: 3221568 pages, LIFO batch:31
[ 0.000000] ACPI: PM-Timer IO Port: 0x408
[ 0.000000] ACPI: Local APIC address 0xfee00000
[ 0.000000] ACPI: LAPIC (acpi_id[0x01] lapic_id[0x00] enabled)
[ 0.000000] ACPI: LAPIC (acpi_id[0x02] lapic_id[0x02] enabled)
[ 0.000000] ACPI: LAPIC (acpi_id[0x03] lapic_id[0x04] enabled)
[ 0.000000] ACPI: LAPIC (acpi_id[0x04] lapic_id[0x06] enabled)
[ 0.000000] ACPI: LAPIC (acpi_id[0x05] lapic_id[0x01] enabled)
[ 0.000000] ACPI: LAPIC (acpi_id[0x06] lapic_id[0x03] enabled)
[ 0.000000] ACPI: LAPIC (acpi_id[0x07] lapic_id[0x05] enabled)
[ 0.000000] ACPI: LAPIC (acpi_id[0x08] lapic_id[0x07] enabled)
[ 0.000000] ACPI: LAPIC_NMI (acpi_id[0xff] high edge lint[0x1])
[ 0.000000] ACPI: IOAPIC (id[0x02] address[0xfec00000] gsi_base[0])
[ 0.000000] IOAPIC[0]: apic_id 2, version 32, address 0xfec00000, GSI 0-23
[ 0.000000] ACPI: INT_SRC_OVR (bus 0 bus_irq 0 global_irq 2 dfl dfl)
[ 0.000000] ACPI: INT_SRC_OVR (bus 0 bus_irq 9 global_irq 9 high level)
[ 0.000000] ACPI: IRQ0 used by override.
[ 0.000000] ACPI: IRQ2 used by override.
[ 0.000000] ACPI: IRQ9 used by override.
[ 0.000000] Using ACPI (MADT) for SMP configuration information
[ 0.000000] ACPI: HPET id: 0x8086a701 base: 0xfed00000
[ 0.000000] smpboot: Allowing 8 CPUs, 0 hotplug CPUs
[ 0.000000] nr_irqs_gsi: 40
[ 0.000000] e820: [mem 0xdf800000-0xf7ffffff] available for PCI devices
[ 0.000000] setup_percpu: NR_CPUS:8 nr_cpumask_bits:8 nr_cpu_ids:8 nr_node_ids:1
[ 0.000000] PERCPU: Embedded 25 pages/cpu @ffff88041ec00000 s72960 r8192 d21248 u262144
[ 0.000000] pcpu-alloc: s72960 r8192 d21248 u262144 alloc=1*2097152
[ 0.000000] pcpu-alloc: [0] 0 1 2 3 4 5 6 7
[ 0.000000] Built 1 zonelists in Zone order, mobility grouping on. Total pages: 4119254
[ 0.000000] Policy zone: Normal
[ 0.000000] Kernel command line: root=/dev/sda2 quiet rootfstype=ext4 ro init=/bin/systemd libahci.ignore_sss=1 radeon.pcie_gen2=1 vga=current splash BOOT_IMAGE=../vmlinuz-cmr-staging
[ 0.000000] PID hash table entries: 4096 (order: 3, 32768 bytes)
[ 0.000000] __ex_table already sorted, skipping sort
[ 0.000000] xsave: enabled xstate_bv 0x7, cntxt size 0x340
[ 0.000000] Checking aperture...
[ 0.000000] No AGP bridge found
[ 0.000000] Memory: 16401772k/17285120k available (4672k kernel code, 546532k absent, 336816k reserved, 1787k data, 456k init)
[ 0.000000] SLUB: Genslabs=15, HWalign=64, Order=0-3, MinObjects=0, CPUs=8, Nodes=1
[ 0.000000] Preemptible hierarchical RCU implementation.
[ 0.000000] NR_IRQS:4352 nr_irqs:744 16
[ 0.000000] Extended CMOS year: 2000
[ 0.000000] Console: colour dummy device 80x25
[ 0.000000] console [tty0] enabled
[ 0.000000] allocated 67108864 bytes of page_cgroup
[ 0.000000] please try 'cgroup_disable=memory' option if you don't want memory cgroups
[ 0.000000] hpet clockevent registered
[ 0.000000] tsc: Fast TSC calibration using PIT
[ 0.003333] tsc: Detected 3292.700 MHz processor
[ 0.000001] Calibrating delay loop (skipped), value calculated using timer frequency.. 6588.79 BogoMIPS (lpj=10975666)
[ 0.000003] pid_max: default: 32768 minimum: 301
[ 0.000630] Dentry cache hash table entries: 2097152 (order: 12, 16777216 bytes)
[ 0.003553] Inode-cache hash table entries: 1048576 (order: 11, 8388608 bytes)
[ 0.004853] Mount-cache hash table entries: 256
[ 0.004945] Initializing cgroup subsys cpuacct
[ 0.004946] Initializing cgroup subsys memory
[ 0.004950] Initializing cgroup subsys freezer
[ 0.004951] Initializing cgroup subsys blkio
[ 0.004967] CPU: Physical Processor ID: 0
[ 0.004968] CPU: Processor Core ID: 0
[ 0.004970] ENERGY_PERF_BIAS: Set to 'normal', was 'performance'
ENERGY_PERF_BIAS: View and update with x86_energy_perf_policy(8)
[ 0.005238] mce: CPU supports 9 MCE banks
[ 0.005247] CPU0: Thermal monitoring enabled (TM1)
[ 0.005252] process: using mwait in idle threads
[ 0.005254] Last level iTLB entries: 4KB 512, 2MB 0, 4MB 0
Last level dTLB entries: 4KB 512, 2MB 32, 4MB 32
tlb_flushall_shift: 1
[ 0.005347] Freeing SMP alternatives: 20k freed
[ 0.005353] ACPI: Core revision 20121018
[ 0.010903] ..TIMER: vector=0x30 apic1=0 pin1=2 apic2=-1 pin2=-1
[ 0.043801] smpboot: CPU0: Intel(R) Xeon(R) CPU E3-1230 V2 @ 3.30GHz (fam: 06, model: 3a, stepping: 09)
[ 0.043805] TSC deadline timer enabled
[ 0.043807] Performance Events: PEBS fmt1+, 16-deep LBR, IvyBridge events, Intel PMU driver.
[ 0.043812] ... version: 3
[ 0.043812] ... bit width: 48
[ 0.043813] ... generic registers: 4
[ 0.043814] ... value mask: 0000ffffffffffff
[ 0.043814] ... max period: 000000007fffffff
[ 0.043815] ... fixed-purpose events: 3
[ 0.043815] ... event mask: 000000070000000f
[ 0.070444] smpboot: Booting Node 0, Processors #1 #2 #3 #4 #5 #6 #7 OK
[ 0.204926] Brought up 8 CPUs
[ 0.204928] smpboot: Total of 8 processors activated (52704.33 BogoMIPS)
[ 0.210591] devtmpfs: initialized
[ 0.210698] PM: Registering ACPI NVS region [mem 0xde948000-0xdebc7fff] (2621440 bytes)
[ 0.210720] PM: Registering ACPI NVS region [mem 0xdebcd000-0xdec0ffff] (274432 bytes)
[ 0.210759] NET: Registered protocol family 16
[ 0.210837] ACPI FADT declares the system doesn't support PCIe ASPM, so disable it
[ 0.210838] ACPI: bus type pci registered
[ 0.210862] PCI: MMCONFIG for domain 0000 [bus 00-3f] at [mem 0xf8000000-0xfbffffff] (base 0xf8000000)
[ 0.210864] PCI: MMCONFIG at [mem 0xf8000000-0xfbffffff] reserved in E820
[ 0.215195] PCI: Using configuration type 1 for base access
[ 0.215570] bio: create slab <bio-0> at 0
[ 0.215601] ACPI: Added _OSI(Module Device)
[ 0.215602] ACPI: Added _OSI(Processor Device)
[ 0.215603] ACPI: Added _OSI(3.0 _SCP Extensions)
[ 0.215604] ACPI: Added _OSI(Processor Aggregator Device)
[ 0.216499] ACPI: EC: Look up EC in DSDT
[ 0.217569] ACPI: Executed 1 blocks of module-level executable AML code
[ 0.233999] ACPI: SSDT 00000000de8ea018 0083B (v01 PmRef Cpu0Cst 00003001 INTL 20051117)
[ 0.234224] ACPI: Dynamic OEM Table Load:
[ 0.234225] ACPI: SSDT (null) 0083B (v01 PmRef Cpu0Cst 00003001 INTL 20051117)
[ 0.250516] ACPI: SSDT 00000000de8eba98 00303 (v01 PmRef ApIst 00003000 INTL 20051117)
[ 0.250758] ACPI: Dynamic OEM Table Load:
[ 0.250759] ACPI: SSDT (null) 00303 (v01 PmRef ApIst 00003000 INTL 20051117)
[ 0.263739] ACPI: SSDT 00000000de8f7c18 00119 (v01 PmRef ApCst 00003000 INTL 20051117)
[ 0.263959] ACPI: Dynamic OEM Table Load:
[ 0.263960] ACPI: SSDT (null) 00119 (v01 PmRef ApCst 00003000 INTL 20051117)
[ 0.277728] ACPI: Interpreter enabled
[ 0.277731] ACPI: (supports S0 S3 S5)
[ 0.277739] ACPI: Using IOAPIC for interrupt routing
[ 0.280693] ACPI: Power Resource [FN00] (off)
[ 0.280732] ACPI: Power Resource [FN01] (off)
[ 0.280769] ACPI: Power Resource [FN02] (off)
[ 0.280807] ACPI: Power Resource [FN03] (off)
[ 0.280842] ACPI: Power Resource [FN04] (off)
[ 0.280994] PCI: Using host bridge windows from ACPI; if necessary, use "pci=nocrs" and report a bug
[ 0.281141] ACPI: PCI Root Bridge [PCI0] (domain 0000 [bus 00-3e])
[ 0.281142] ACPI: PCI Interrupt Routing Table [\_SB_.PCI0._PRT]
[ 0.281268] \_SB_.PCI0:_OSC invalid UUID
[ 0.281269] _OSC request data:1 8 1f
[ 0.281295] \_SB_.PCI0:_OSC invalid UUID
[ 0.281296] _OSC request data:1 1f 1f
[ 0.281298] pci_root PNP0A08:00: ACPI _OSC support notification failed, disabling PCIe ASPM
[ 0.281299] pci_root PNP0A08:00: Unable to request _OSC control (_OSC support mask: 0x08)
[ 0.281574] PCI host bridge to bus 0000:00
[ 0.281576] pci_bus 0000:00: root bus resource [bus 00-3e]
[ 0.281577] pci_bus 0000:00: root bus resource [io 0x0000-0x0cf7]
[ 0.281578] pci_bus 0000:00: root bus resource [io 0x0d00-0xffff]
[ 0.281579] pci_bus 0000:00: root bus resource [mem 0x000a0000-0x000bffff]
[ 0.281580] pci_bus 0000:00: root bus resource [mem 0x000d0000-0x000d3fff]
[ 0.281581] pci_bus 0000:00: root bus resource [mem 0x000d4000-0x000d7fff]
[ 0.281582] pci_bus 0000:00: root bus resource [mem 0x000d8000-0x000dbfff]
[ 0.281583] pci_bus 0000:00: root bus resource [mem 0x000dc000-0x000dffff]
[ 0.281584] pci_bus 0000:00: root bus resource [mem 0x000e0000-0x000e3fff]
[ 0.281585] pci_bus 0000:00: root bus resource [mem 0x000e4000-0x000e7fff]
[ 0.281586] pci_bus 0000:00: root bus resource [mem 0xe0000000-0xfeafffff]
[ 0.281587] pci_bus 0000:00: root bus resource [mem 0x41f000000-0xfffffffff]
[ 0.281593] pci 0000:00:00.0: [8086:0158] type 00 class 0x060000
[ 0.281638] pci 0000:00:14.0: [8086:1e31] type 00 class 0x0c0330
[ 0.281658] pci 0000:00:14.0: reg 10: [mem 0xf7f00000-0xf7f0ffff 64bit]
[ 0.281724] pci 0000:00:14.0: PME# supported from D3hot D3cold
[ 0.281743] pci 0000:00:16.0: [8086:1e3a] type 00 class 0x078000
[ 0.281764] pci 0000:00:16.0: reg 10: [mem 0xf7f1a000-0xf7f1a00f 64bit]
[ 0.281832] pci 0000:00:16.0: PME# supported from D0 D3hot D3cold
[ 0.281861] pci 0000:00:1a.0: [8086:1e2d] type 00 class 0x0c0320
[ 0.281879] pci 0000:00:1a.0: reg 10: [mem 0xf7f18000-0xf7f183ff]
[ 0.281962] pci 0000:00:1a.0: PME# supported from D0 D3hot D3cold
[ 0.281984] pci 0000:00:1b.0: [8086:1e20] type 00 class 0x040300
[ 0.281997] pci 0000:00:1b.0: reg 10: [mem 0xf7f10000-0xf7f13fff 64bit]
[ 0.282059] pci 0000:00:1b.0: PME# supported from D0 D3hot D3cold
[ 0.282077] pci 0000:00:1c.0: [8086:1e10] type 01 class 0x060400
[ 0.282149] pci 0000:00:1c.0: PME# supported from D0 D3hot D3cold
[ 0.282171] pci 0000:00:1c.4: [8086:1e18] type 01 class 0x060400
[ 0.282243] pci 0000:00:1c.4: PME# supported from D0 D3hot D3cold
[ 0.282264] pci 0000:00:1c.6: [8086:244e] type 01 class 0x060401
[ 0.282335] pci 0000:00:1c.6: PME# supported from D0 D3hot D3cold
[ 0.282360] pci 0000:00:1d.0: [8086:1e26] type 00 class 0x0c0320
[ 0.282378] pci 0000:00:1d.0: reg 10: [mem 0xf7f17000-0xf7f173ff]
[ 0.282461] pci 0000:00:1d.0: PME# supported from D0 D3hot D3cold
[ 0.282483] pci 0000:00:1f.0: [8086:1e4a] type 00 class 0x060100
[ 0.282597] pci 0000:00:1f.2: [8086:1e02] type 00 class 0x010601
[ 0.282613] pci 0000:00:1f.2: reg 10: [io 0xf070-0xf077]
[ 0.282619] pci 0000:00:1f.2: reg 14: [io 0xf060-0xf063]
[ 0.282625] pci 0000:00:1f.2: reg 18: [io 0xf050-0xf057]
[ 0.282632] pci 0000:00:1f.2: reg 1c: [io 0xf040-0xf043]
[ 0.282638] pci 0000:00:1f.2: reg 20: [io 0xf020-0xf03f]
[ 0.282644] pci 0000:00:1f.2: reg 24: [mem 0xf7f16000-0xf7f167ff]
[ 0.282684] pci 0000:00:1f.2: PME# supported from D3hot
[ 0.282698] pci 0000:00:1f.3: [8086:1e22] type 00 class 0x0c0500
[ 0.282711] pci 0000:00:1f.3: reg 10: [mem 0xf7f15000-0xf7f150ff 64bit]
[ 0.282729] pci 0000:00:1f.3: reg 20: [io 0xf000-0xf01f]
[ 0.282807] pci 0000:01:00.0: [1002:6739] type 00 class 0x030000
[ 0.282830] pci 0000:01:00.0: reg 10: [mem 0xe0000000-0xefffffff 64bit pref]
[ 0.282849] pci 0000:01:00.0: reg 18: [mem 0xf7e20000-0xf7e3ffff 64bit]
[ 0.282861] pci 0000:01:00.0: reg 20: [io 0xe000-0xe0ff]
[ 0.282884] pci 0000:01:00.0: reg 30: [mem 0xf7e00000-0xf7e1ffff pref]
[ 0.282944] pci 0000:01:00.0: supports D1 D2
[ 0.282977] pci 0000:01:00.1: [1002:aa88] type 00 class 0x040300
[ 0.283000] pci 0000:01:00.1: reg 10: [mem 0xf7e40000-0xf7e43fff 64bit]
[ 0.283115] pci 0000:01:00.1: supports D1 D2
[ 0.286942] pci 0000:00:1c.0: PCI bridge to [bus 01]
[ 0.286947] pci 0000:00:1c.0: bridge window [io 0xe000-0xefff]
[ 0.286952] pci 0000:00:1c.0: bridge window [mem 0xf7e00000-0xf7efffff]
[ 0.286959] pci 0000:00:1c.0: bridge window [mem 0xe0000000-0xefffffff 64bit pref]
[ 0.287032] pci 0000:02:00.0: [1969:1083] type 00 class 0x020000
[ 0.287058] pci 0000:02:00.0: reg 10: [mem 0xf7d00000-0xf7d3ffff 64bit]
[ 0.287071] pci 0000:02:00.0: reg 18: [io 0xd000-0xd07f]
[ 0.287192] pci 0000:02:00.0: PME# supported from D0 D1 D2 D3hot D3cold
[ 0.293590] pci 0000:00:1c.4: PCI bridge to [bus 02]
[ 0.293594] pci 0000:00:1c.4: bridge window [io 0xd000-0xdfff]
[ 0.293599] pci 0000:00:1c.4: bridge window [mem 0xf7d00000-0xf7dfffff]
[ 0.293678] pci 0000:03:00.0: [1283:8892] type 01 class 0x060401
[ 0.293825] pci 0000:03:00.0: supports D1 D2
[ 0.293826] pci 0000:03:00.0: PME# supported from D0 D1 D2 D3hot D3cold
[ 0.293847] pci 0000:00:1c.6: PCI bridge to [bus 03-04] (subtractive decode)
[ 0.293856] pci 0000:00:1c.6: bridge window [io 0x0000-0x0cf7] (subtractive decode)
[ 0.293857] pci 0000:00:1c.6: bridge window [io 0x0d00-0xffff] (subtractive decode)
[ 0.293858] pci 0000:00:1c.6: bridge window [mem 0x000a0000-0x000bffff] (subtractive decode)
[ 0.293860] pci 0000:00:1c.6: bridge window [mem 0x000d0000-0x000d3fff] (subtractive decode)
[ 0.293861] pci 0000:00:1c.6: bridge window [mem 0x000d4000-0x000d7fff] (subtractive decode)
[ 0.293862] pci 0000:00:1c.6: bridge window [mem 0x000d8000-0x000dbfff] (subtractive decode)
[ 0.293863] pci 0000:00:1c.6: bridge window [mem 0x000dc000-0x000dffff] (subtractive decode)
[ 0.293864] pci 0000:00:1c.6: bridge window [mem 0x000e0000-0x000e3fff] (subtractive decode)
[ 0.293865] pci 0000:00:1c.6: bridge window [mem 0x000e4000-0x000e7fff] (subtractive decode)
[ 0.293866] pci 0000:00:1c.6: bridge window [mem 0xe0000000-0xfeafffff] (subtractive decode)
[ 0.293867] pci 0000:00:1c.6: bridge window [mem 0x41f000000-0xfffffffff] (subtractive decode)
[ 0.294009] pci 0000:03:00.0: PCI bridge to [bus 04] (subtractive decode)
[ 0.294033] pci 0000:03:00.0: bridge window [??? 0x00000000 flags 0x0] (subtractive decode)
[ 0.294034] pci 0000:03:00.0: bridge window [??? 0x00000000 flags 0x0] (subtractive decode)
[ 0.294036] pci 0000:03:00.0: bridge window [??? 0x00000000 flags 0x0] (subtractive decode)
[ 0.294037] pci 0000:03:00.0: bridge window [??? 0x00000000 flags 0x0] (subtractive decode)
[ 0.294038] pci 0000:03:00.0: bridge window [io 0x0000-0x0cf7] (subtractive decode)
[ 0.294039] pci 0000:03:00.0: bridge window [io 0x0d00-0xffff] (subtractive decode)
[ 0.294040] pci 0000:03:00.0: bridge window [mem 0x000a0000-0x000bffff] (subtractive decode)
[ 0.294041] pci 0000:03:00.0: bridge window [mem 0x000d0000-0x000d3fff] (subtractive decode)
[ 0.294043] pci 0000:03:00.0: bridge window [mem 0x000d4000-0x000d7fff] (subtractive decode)
[ 0.294044] pci 0000:03:00.0: bridge window [mem 0x000d8000-0x000dbfff] (subtractive decode)
[ 0.294045] pci 0000:03:00.0: bridge window [mem 0x000dc000-0x000dffff] (subtractive decode)
[ 0.294046] pci 0000:03:00.0: bridge window [mem 0x000e0000-0x000e3fff] (subtractive decode)
[ 0.294047] pci 0000:03:00.0: bridge window [mem 0x000e4000-0x000e7fff] (subtractive decode)
[ 0.294048] pci 0000:03:00.0: bridge window [mem 0xe0000000-0xfeafffff] (subtractive decode)
[ 0.294049] pci 0000:03:00.0: bridge window [mem 0x41f000000-0xfffffffff] (subtractive decode)
[ 0.294078] ACPI: Invalid Power Resource to register!
[ 0.294088] ACPI: Invalid Power Resource to register!
[ 0.294089] ACPI: PCI Interrupt Routing Table [\_SB_.PCI0.RP01._PRT]
[ 0.294108] ACPI: Invalid Power Resource to register!
[ 0.294113] ACPI: Invalid Power Resource to register!
[ 0.294114] ACPI: PCI Interrupt Routing Table [\_SB_.PCI0.RP05._PRT]
[ 0.294130] ACPI: Invalid Power Resource to register!
[ 0.294133] ACPI: Invalid Power Resource to register!
[ 0.294134] ACPI: PCI Interrupt Routing Table [\_SB_.PCI0.RP07._PRT]
[ 0.294150] ACPI: Invalid Power Resource to register!
[ 0.294158] ACPI: Invalid Power Resource to register!
[ 0.294159] ACPI: Invalid Power Resource to register!
[ 0.294161] ACPI: Invalid Power Resource to register!
[ 0.294163] ACPI: Invalid Power Resource to register!
[ 0.294165] ACPI: Invalid Power Resource to register!
[ 0.294168] ACPI: Invalid Power Resource to register!
[ 0.294170] ACPI _OSC control for PCIe not granted, disabling ASPM
[ 0.296154] ACPI: PCI Interrupt Link [LNKA] (IRQs 3 4 5 6 10 *11 12 14 15)
[ 0.296181] ACPI: PCI Interrupt Link [LNKB] (IRQs *3 4 5 6 10 11 12 14 15)
[ 0.296205] ACPI: PCI Interrupt Link [LNKC] (IRQs 3 *4 5 6 10 11 12 14 15)
[ 0.296229] ACPI: PCI Interrupt Link [LNKD] (IRQs 3 4 5 6 *10 11 12 14 15)
[ 0.296252] ACPI: PCI Interrupt Link [LNKE] (IRQs 3 4 5 6 10 11 12 14 15) *0, disabled.
[ 0.296276] ACPI: PCI Interrupt Link [LNKF] (IRQs 3 4 5 6 10 11 12 14 15) *0, disabled.
[ 0.296301] ACPI: PCI Interrupt Link [LNKG] (IRQs 3 4 *5 6 10 11 12 14 15)
[ 0.296324] ACPI: PCI Interrupt Link [LNKH] (IRQs 3 4 5 6 10 *11 12 14 15)
[ 0.296363] vgaarb: device added: PCI:0000:01:00.0,decodes=io+mem,owns=io+mem,locks=none
[ 0.296364] vgaarb: loaded
[ 0.296364] vgaarb: bridge control possible 0000:01:00.0
[ 0.296392] SCSI subsystem initialized
[ 0.296393] ACPI: bus type scsi registered
[ 0.296398] libata version 3.00 loaded.
[ 0.296399] ACPI: bus type usb registered
[ 0.296406] usbcore: registered new interface driver usbfs
[ 0.296410] usbcore: registered new interface driver hub
[ 0.296422] usbcore: registered new device driver usb
[ 0.296429] Linux video capture interface: v2.00
[ 0.296439] Advanced Linux Sound Architecture Driver Initialized.
[ 0.296440] PCI: Using ACPI for IRQ routing
[ 0.297843] PCI: pci_cache_line_size set to 64 bytes
[ 0.297888] e820: reserve RAM buffer [mem 0x0009d800-0x0009ffff]
[ 0.297889] e820: reserve RAM buffer [mem 0xde1e4000-0xdfffffff]
[ 0.297890] e820: reserve RAM buffer [mem 0xdf4c3000-0xdfffffff]
[ 0.297891] e820: reserve RAM buffer [mem 0xdf800000-0xdfffffff]
[ 0.297892] e820: reserve RAM buffer [mem 0x41f000000-0x41fffffff]
[ 0.297967] cfg80211: Calling CRDA to update world regulatory domain
[ 0.298072] hpet0: at MMIO 0xfed00000, IRQs 2, 8, 0, 0, 0, 0, 0, 0
[ 0.298076] hpet0: 8 comparators, 64-bit 14.318180 MHz counter
[ 0.301077] Switching to clocksource hpet
[ 0.301115] pnp: PnP ACPI init
[ 0.301120] ACPI: bus type pnp registered
[ 0.301157] system 00:00: [mem 0xfed40000-0xfed44fff] has been reserved
[ 0.301159] system 00:00: Plug and Play ACPI device, IDs PNP0c01 (active)
[ 0.301166] pnp 00:01: [dma 4]
[ 0.301172] pnp 00:01: Plug and Play ACPI device, IDs PNP0200 (active)
[ 0.301182] pnp 00:02: Plug and Play ACPI device, IDs INT0800 (active)
[ 0.301234] pnp 00:03: Plug and Play ACPI device, IDs PNP0103 (active)
[ 0.301253] system 00:04: [io 0x0680-0x069f] has been reserved
[ 0.301254] system 00:04: [io 0x0200-0x020f] has been reserved
[ 0.301256] system 00:04: [io 0xffff] has been reserved
[ 0.301257] system 00:04: [io 0xffff] has been reserved
[ 0.301258] system 00:04: [io 0x0400-0x0453] has been reserved
[ 0.301259] system 00:04: [io 0x0458-0x047f] has been reserved
[ 0.301260] system 00:04: [io 0x0500-0x057f] has been reserved
[ 0.301261] system 00:04: [io 0x164e-0x164f] has been reserved
[ 0.301263] system 00:04: Plug and Play ACPI device, IDs PNP0c02 (active)
[ 0.301277] pnp 00:05: Plug and Play ACPI device, IDs PNP0b00 (active)
[ 0.301299] system 00:06: [io 0x0454-0x0457] has been reserved
[ 0.301301] system 00:06: Plug and Play ACPI device, IDs INT3f0d PNP0c02 (active)
[ 0.301367] system 00:07: [io 0x0a00-0x0a0f] has been reserved
[ 0.301368] system 00:07: [io 0x0a30-0x0a3f] has been reserved
[ 0.301369] system 00:07: [io 0x0a20-0x0a2f] has been reserved
[ 0.301370] system 00:07: Plug and Play ACPI device, IDs PNP0c02 (active)
[ 0.301547] system 00:08: [io 0x04d0-0x04d1] has been reserved
[ 0.301549] system 00:08: Plug and Play ACPI device, IDs PNP0c02 (active)
[ 0.301562] pnp 00:09: Plug and Play ACPI device, IDs PNP0c04 (active)
[ 0.301695] system 00:0a: [mem 0xfed1c000-0xfed1ffff] has been reserved
[ 0.301696] system 00:0a: [mem 0xfed10000-0xfed17fff] has been reserved
[ 0.301698] system 00:0a: [mem 0xfed18000-0xfed18fff] has been reserved
[ 0.301699] system 00:0a: [mem 0xfed19000-0xfed19fff] has been reserved
[ 0.301700] system 00:0a: [mem 0xf8000000-0xfbffffff] has been reserved
[ 0.301701] system 00:0a: [mem 0xfed20000-0xfed3ffff] has been reserved
[ 0.301702] system 00:0a: [mem 0xfed90000-0xfed93fff] has been reserved
[ 0.301704] system 00:0a: [mem 0xfed45000-0xfed8ffff] has been reserved
[ 0.301705] system 00:0a: [mem 0xff000000-0xffffffff] has been reserved
[ 0.301706] system 00:0a: [mem 0xfee00000-0xfeefffff] could not be reserved
[ 0.301707] system 00:0a: [mem 0xf0000000-0xf0000fff] has been reserved
[ 0.301708] system 00:0a: Plug and Play ACPI device, IDs PNP0c02 (active)
[ 0.301782] pnp: PnP ACPI: found 11 devices
[ 0.301783] ACPI: ACPI bus type pnp unregistered
[ 0.307042] pci 0000:00:1c.0: PCI bridge to [bus 01]
[ 0.307044] pci 0000:00:1c.0: bridge window [io 0xe000-0xefff]
[ 0.307048] pci 0000:00:1c.0: bridge window [mem 0xf7e00000-0xf7efffff]
[ 0.307052] pci 0000:00:1c.0: bridge window [mem 0xe0000000-0xefffffff 64bit pref]
[ 0.307056] pci 0000:00:1c.4: PCI bridge to [bus 02]
[ 0.307058] pci 0000:00:1c.4: bridge window [io 0xd000-0xdfff]
[ 0.307062] pci 0000:00:1c.4: bridge window [mem 0xf7d00000-0xf7dfffff]
[ 0.307069] pci 0000:03:00.0: PCI bridge to [bus 04]
[ 0.307090] pci 0000:00:1c.6: PCI bridge to [bus 03-04]
[ 0.307124] pci 0000:03:00.0: setting latency timer to 64
[ 0.307128] pci_bus 0000:00: resource 4 [io 0x0000-0x0cf7]
[ 0.307129] pci_bus 0000:00: resource 5 [io 0x0d00-0xffff]
[ 0.307130] pci_bus 0000:00: resource 6 [mem 0x000a0000-0x000bffff]
[ 0.307131] pci_bus 0000:00: resource 7 [mem 0x000d0000-0x000d3fff]
[ 0.307132] pci_bus 0000:00: resource 8 [mem 0x000d4000-0x000d7fff]
[ 0.307133] pci_bus 0000:00: resource 9 [mem 0x000d8000-0x000dbfff]
[ 0.307134] pci_bus 0000:00: resource 10 [mem 0x000dc000-0x000dffff]
[ 0.307135] pci_bus 0000:00: resource 11 [mem 0x000e0000-0x000e3fff]
[ 0.307136] pci_bus 0000:00: resource 12 [mem 0x000e4000-0x000e7fff]
[ 0.307137] pci_bus 0000:00: resource 13 [mem 0xe0000000-0xfeafffff]
[ 0.307138] pci_bus 0000:00: resource 14 [mem 0x41f000000-0xfffffffff]
[ 0.307140] pci_bus 0000:01: resource 0 [io 0xe000-0xefff]
[ 0.307141] pci_bus 0000:01: resource 1 [mem 0xf7e00000-0xf7efffff]
[ 0.307142] pci_bus 0000:01: resource 2 [mem 0xe0000000-0xefffffff 64bit pref]
[ 0.307143] pci_bus 0000:02: resource 0 [io 0xd000-0xdfff]
[ 0.307144] pci_bus 0000:02: resource 1 [mem 0xf7d00000-0xf7dfffff]
[ 0.307145] pci_bus 0000:03: resource 4 [io 0x0000-0x0cf7]
[ 0.307146] pci_bus 0000:03: resource 5 [io 0x0d00-0xffff]
[ 0.307147] pci_bus 0000:03: resource 6 [mem 0x000a0000-0x000bffff]
[ 0.307148] pci_bus 0000:03: resource 7 [mem 0x000d0000-0x000d3fff]
[ 0.307149] pci_bus 0000:03: resource 8 [mem 0x000d4000-0x000d7fff]
[ 0.307150] pci_bus 0000:03: resource 9 [mem 0x000d8000-0x000dbfff]
[ 0.307151] pci_bus 0000:03: resource 10 [mem 0x000dc000-0x000dffff]
[ 0.307152] pci_bus 0000:03: resource 11 [mem 0x000e0000-0x000e3fff]
[ 0.307153] pci_bus 0000:03: resource 12 [mem 0x000e4000-0x000e7fff]
[ 0.307154] pci_bus 0000:03: resource 13 [mem 0xe0000000-0xfeafffff]
[ 0.307155] pci_bus 0000:03: resource 14 [mem 0x41f000000-0xfffffffff]
[ 0.307157] pci_bus 0000:04: resource 8 [io 0x0000-0x0cf7]
[ 0.307158] pci_bus 0000:04: resource 9 [io 0x0d00-0xffff]
[ 0.307159] pci_bus 0000:04: resource 10 [mem 0x000a0000-0x000bffff]
[ 0.307160] pci_bus 0000:04: resource 11 [mem 0x000d0000-0x000d3fff]
[ 0.307161] pci_bus 0000:04: resource 12 [mem 0x000d4000-0x000d7fff]
[ 0.307162] pci_bus 0000:04: resource 13 [mem 0x000d8000-0x000dbfff]
[ 0.307163] pci_bus 0000:04: resource 14 [mem 0x000dc000-0x000dffff]
[ 0.307164] pci_bus 0000:04: resource 15 [mem 0x000e0000-0x000e3fff]
[ 0.307165] pci_bus 0000:04: resource 16 [mem 0x000e4000-0x000e7fff]
[ 0.307166] pci_bus 0000:04: resource 17 [mem 0xe0000000-0xfeafffff]
[ 0.307167] pci_bus 0000:04: resource 18 [mem 0x41f000000-0xfffffffff]
[ 0.307186] NET: Registered protocol family 2
[ 0.307318] TCP established hash table entries: 131072 (order: 9, 2097152 bytes)
[ 0.307528] TCP bind hash table entries: 65536 (order: 8, 1048576 bytes)
[ 0.307608] TCP: Hash tables configured (established 131072 bind 65536)
[ 0.307618] TCP: reno registered
[ 0.307629] UDP hash table entries: 8192 (order: 6, 262144 bytes)
[ 0.307662] UDP-Lite hash table entries: 8192 (order: 6, 262144 bytes)
[ 0.307712] NET: Registered protocol family 1
[ 0.340982] pci 0000:01:00.0: Boot video device
[ 0.340995] PCI: CLS 64 bytes, default 64
[ 0.341014] PCI-DMA: Using software bounce buffering for IO (SWIOTLB)
[ 0.341016] software IO TLB [mem 0xda1e4000-0xde1e4000] (64MB) mapped at [ffff8800da1e4000-ffff8800de1e3fff]
[ 0.341366] microcode: CPU0 sig=0x306a9, pf=0x2, revision=0x10
[ 0.341368] microcode: CPU1 sig=0x306a9, pf=0x2, revision=0x10
[ 0.341373] microcode: CPU2 sig=0x306a9, pf=0x2, revision=0x10
[ 0.341377] microcode: CPU3 sig=0x306a9, pf=0x2, revision=0x10
[ 0.341381] microcode: CPU4 sig=0x306a9, pf=0x2, revision=0x10
[ 0.341385] microcode: CPU5 sig=0x306a9, pf=0x2, revision=0x10
[ 0.341389] microcode: CPU6 sig=0x306a9, pf=0x2, revision=0x10
[ 0.341393] microcode: CPU7 sig=0x306a9, pf=0x2, revision=0x10
[ 0.341406] microcode: Microcode Update Driver: v2.00 <tigran@aivazian.fsnet.co.uk>, Peter Oruba
[ 0.342147] HugeTLB registered 2 MB page size, pre-allocated 0 pages
[ 0.343242] msgmni has been set to 32034
[ 0.343431] Block layer SCSI generic (bsg) driver version 0.4 loaded (major 253)
[ 0.343447] io scheduler noop registered
[ 0.343460] io scheduler cfq registered (default)
[ 0.343576] intel_idle: MWAIT substates: 0x1120
[ 0.343577] intel_idle: v0.4 model 0x3A
[ 0.343578] intel_idle: lapic_timer_reliable_states 0xffffffff
[ 0.344953] ahci 0000:00:1f.2: version 3.0
[ 0.344992] ahci 0000:00:1f.2: irq 40 for MSI/MSI-X
[ 0.357603] ahci 0000:00:1f.2: AHCI 0001.0300 32 slots 6 ports 6 Gbps 0x36 impl SATA mode
[ 0.357607] ahci 0000:00:1f.2: flags: 64bit ncq led clo pio slum part ems apst
[ 0.357611] ahci 0000:00:1f.2: setting latency timer to 64
[ 0.377706] scsi0 : ahci
[ 0.377738] scsi1 : ahci
[ 0.377763] scsi2 : ahci
[ 0.377787] scsi3 : ahci
[ 0.377810] scsi4 : ahci
[ 0.377834] scsi5 : ahci
[ 0.377847] ata1: DUMMY
[ 0.377849] ata2: SATA max UDMA/133 abar m2048@0xf7f16000 port 0xf7f16180 irq 40
[ 0.377850] ata3: SATA max UDMA/133 abar m2048@0xf7f16000 port 0xf7f16200 irq 40
[ 0.377851] ata4: DUMMY
[ 0.377853] ata5: SATA max UDMA/133 abar m2048@0xf7f16000 port 0xf7f16300 irq 40
[ 0.377854] ata6: SATA max UDMA/133 abar m2048@0xf7f16000 port 0xf7f16380 irq 40
[ 0.377910] ehci_hcd: USB 2.0 'Enhanced' Host Controller (EHCI) Driver
[ 0.377911] ehci-pci: EHCI PCI platform driver
[ 0.377929] ehci-pci 0000:00:1a.0: setting latency timer to 64
[ 0.377932] ehci-pci 0000:00:1a.0: EHCI Host Controller
[ 0.377935] ehci-pci 0000:00:1a.0: new USB bus registered, assigned bus number 1
[ 0.381818] ehci-pci 0000:00:1a.0: debug port 2
[ 0.381824] ehci-pci 0000:00:1a.0: cache line size of 64 is not supported
[ 0.381833] ehci-pci 0000:00:1a.0: irq 16, io mem 0xf7f18000
[ 0.390804] ehci-pci 0000:00:1a.0: USB 2.0 started, EHCI 1.00
[ 0.390890] hub 1-0:1.0: USB hub found
[ 0.390892] hub 1-0:1.0: 2 ports detected
[ 0.390958] ehci-pci 0000:00:1d.0: setting latency timer to 64
[ 0.390960] ehci-pci 0000:00:1d.0: EHCI Host Controller
[ 0.390962] ehci-pci 0000:00:1d.0: new USB bus registered, assigned bus number 2
[ 0.394836] ehci-pci 0000:00:1d.0: debug port 2
[ 0.394841] ehci-pci 0000:00:1d.0: cache line size of 64 is not supported
[ 0.394849] ehci-pci 0000:00:1d.0: irq 23, io mem 0xf7f17000
[ 0.404098] ehci-pci 0000:00:1d.0: USB 2.0 started, EHCI 1.00
[ 0.404172] hub 2-0:1.0: USB hub found
[ 0.404174] hub 2-0:1.0: 2 ports detected
[ 0.404243] xhci_hcd 0000:00:14.0: setting latency timer to 64
[ 0.404245] xhci_hcd 0000:00:14.0: xHCI Host Controller
[ 0.404247] xhci_hcd 0000:00:14.0: new USB bus registered, assigned bus number 3
[ 0.404317] xhci_hcd 0000:00:14.0: cache line size of 64 is not supported
[ 0.404319] xhci_hcd 0000:00:14.0: irq 16, io mem 0xf7f00000
[ 0.404354] xhci_hcd 0000:00:14.0: irq 41 for MSI/MSI-X
[ 0.404418] xHCI xhci_add_endpoint called for root hub
[ 0.404419] xHCI xhci_check_bandwidth called for root hub
[ 0.404428] hub 3-0:1.0: USB hub found
[ 0.404432] hub 3-0:1.0: 4 ports detected
[ 0.404674] xhci_hcd 0000:00:14.0: xHCI Host Controller
[ 0.404677] xhci_hcd 0000:00:14.0: new USB bus registered, assigned bus number 4
[ 0.404721] xHCI xhci_add_endpoint called for root hub
[ 0.404722] xHCI xhci_check_bandwidth called for root hub
[ 0.404730] hub 4-0:1.0: USB hub found
[ 0.404735] hub 4-0:1.0: 4 ports detected
[ 0.420714] Initializing USB Mass Storage driver...
[ 0.420741] usbcore: registered new interface driver usb-storage
[ 0.420742] USB Mass Storage support registered.
[ 0.420767] i8042: PNP: No PS/2 controller found. Probing ports directly.
[ 0.421136] serio: i8042 KBD port at 0x60,0x64 irq 1
[ 0.421139] serio: i8042 AUX port at 0x60,0x64 irq 12
[ 0.421174] mousedev: PS/2 mouse device common for all mice
[ 0.421197] rtc_cmos 00:05: RTC can wake from S4
[ 0.421292] rtc_cmos 00:05: rtc core: registered rtc_cmos as rtc0
[ 0.421315] rtc0: alarms up to one month, y3k, 242 bytes nvram, hpet irqs
[ 0.421318] i2c /dev entries driver
[ 0.421376] cpuidle: using governor ladder
[ 0.421456] cpuidle: using governor menu
[ 0.421493] usbcore: registered new interface driver usbhid
[ 0.421493] usbhid: USB HID core driver
[ 0.421556] TCP: cubic registered
[ 0.421602] NET: Registered protocol family 10
[ 0.421684] NET: Registered protocol family 17
[ 0.421825] registered taskstats version 1
[ 0.422381] ALSA device list:
[ 0.422382] No soundcards found.
[ 0.696495] ata2: SATA link up 6.0 Gbps (SStatus 133 SControl 300)
[ 0.696511] usb 1-1: new high-speed USB device number 2 using ehci-pci
[ 0.696528] ata6: SATA link up 3.0 Gbps (SStatus 123 SControl 300)
[ 0.696547] ata3: SATA link up 1.5 Gbps (SStatus 113 SControl 300)
[ 0.696564] ata5: SATA link up 3.0 Gbps (SStatus 123 SControl 300)
[ 0.696845] ACPI Error: [DSSP] Namespace lookup failure, AE_NOT_FOUND (20121018/psargs-359)
[ 0.696848] ACPI Error: Method parse/execution failed [\_SB_.PCI0.SAT0.SPT1._GTF] (Node ffff880408470a78), AE_NOT_FOUND (20121018/psparse-537)
[ 0.696930] ata2.00: ATA-9: M4-CT064M4SSD2, 040H, max UDMA/100
[ 0.696934] ata2.00: 125045424 sectors, multi 16: LBA48 NCQ (depth 31/32), AA
[ 0.696981] ata2.00: failed to get Identify Device Data, Emask 0x1
[ 0.697392] ACPI Error: [DSSP] Namespace lookup failure, AE_NOT_FOUND (20121018/psargs-359)
[ 0.697394] ACPI Error: Method parse/execution failed [\_SB_.PCI0.SAT0.SPT1._GTF] (Node ffff880408470a78), AE_NOT_FOUND (20121018/psparse-537)
[ 0.697596] ata2.00: failed to get Identify Device Data, Emask 0x1
[ 0.697602] ata2.00: configured for UDMA/100
[ 0.697727] ACPI Error: [DSSP] Namespace lookup failure, AE_NOT_FOUND (20121018/psargs-359)
[ 0.697731] ACPI Error: Method parse/execution failed [\_SB_.PCI0.SAT0.SPT5._GTF] (Node ffff880408470c58), AE_NOT_FOUND (20121018/psparse-537)
[ 0.697751] scsi 1:0:0:0: Direct-Access ATA M4-CT064M4SSD2 040H PQ: 0 ANSI: 5
[ 0.698998] ACPI Error: [DSSP] Namespace lookup failure, AE_NOT_FOUND (20121018/psargs-359)
[ 0.699001] ACPI Error: Method parse/execution failed [\_SB_.PCI0.SAT0.SPT4._GTF] (Node ffff880408470be0), AE_NOT_FOUND (20121018/psparse-537)
[ 0.699061] sd 1:0:0:0: [sda] 125045424 512-byte logical blocks: (64.0 GB/59.6 GiB)
[ 0.699105] ACPI: Invalid Power Resource to register!
[ 0.699140] ata5.00: ATA-8: ST31500541AS, CC34, max UDMA/133
[ 0.699141] ata5.00: 2930277168 sectors, multi 16: LBA48 NCQ (depth 31/32)
[ 0.699214] sd 1:0:0:0: [sda] Write Protect is off
[ 0.699216] sd 1:0:0:0: [sda] Mode Sense: 00 3a 00 00
[ 0.699297] sd 1:0:0:0: [sda] Write cache: enabled, read cache: enabled, doesn't support DPO or FUA
[ 0.699308] ata5.00: failed to get Identify Device Data, Emask 0x1
[ 0.699700] ata6.00: ATA-8: ST95005620AS, SD28, max UDMA/133
[ 0.699702] ata6.00: 976773168 sectors, multi 16: LBA48 NCQ (depth 31/32)
[ 0.699805] sda: sda1 sda2
[ 0.700027] ACPI Error: [DSSP] Namespace lookup failure, AE_NOT_FOUND (20121018/psargs-359)
[ 0.700031] ACPI Error: Method parse/execution failed [\_SB_.PCI0.SAT0.SPT2._GTF] (Node ffff880408470af0), AE_NOT_FOUND (20121018/psparse-537)
[ 0.700036] ata3.00: ATAPI: HL-DT-ST DVDRAM GH24NS90, IN01, max UDMA/100
[ 0.700398] sd 1:0:0:0: [sda] Attached SCSI disk
[ 0.700655] ACPI Error: [DSSP] Namespace lookup failure, AE_NOT_FOUND (20121018/psargs-359)
[ 0.700658] ACPI Error: Method parse/execution failed [\_SB_.PCI0.SAT0.SPT4._GTF] (Node ffff880408470be0), AE_NOT_FOUND (20121018/psparse-537)
[ 0.700953] ata6.00: failed to get Identify Device Data, Emask 0x1
[ 0.700988] ata5.00: failed to get Identify Device Data, Emask 0x1
[ 0.700992] ata5.00: configured for UDMA/133
[ 0.701399] ACPI Error: [DSSP] Namespace lookup failure, AE_NOT_FOUND (20121018/psargs-359)
[ 0.701401] ACPI Error: Method parse/execution failed [\_SB_.PCI0.SAT0.SPT2._GTF] (Node ffff880408470af0), AE_NOT_FOUND (20121018/psparse-537)
[ 0.701406] ata3.00: configured for UDMA/100
[ 0.704423] ACPI Error: [DSSP] Namespace lookup failure, AE_NOT_FOUND (20121018/psargs-359)
[ 0.704426] ACPI Error: Method parse/execution failed [\_SB_.PCI0.SAT0.SPT5._GTF] (Node ffff880408470c58), AE_NOT_FOUND (20121018/psparse-537)
[ 0.707674] ata6.00: failed to get Identify Device Data, Emask 0x1
[ 0.707679] ata6.00: configured for UDMA/133
[ 0.708755] scsi 2:0:0:0: CD-ROM HL-DT-ST DVDRAM GH24NS90 IN01 PQ: 0 ANSI: 5
[ 0.708981] ACPI: Invalid Power Resource to register!
[ 0.709073] scsi 4:0:0:0: Direct-Access ATA ST31500541AS CC34 PQ: 0 ANSI: 5
[ 0.709187] sd 4:0:0:0: [sdb] 2930277168 512-byte logical blocks: (1.50 TB/1.36 TiB)
[ 0.709201] ACPI: Invalid Power Resource to register!
[ 0.709214] sd 4:0:0:0: [sdb] Write Protect is off
[ 0.709216] sd 4:0:0:0: [sdb] Mode Sense: 00 3a 00 00
[ 0.709226] sd 4:0:0:0: [sdb] Write cache: enabled, read cache: enabled, doesn't support DPO or FUA
[ 0.709285] scsi 5:0:0:0: Direct-Access ATA ST95005620AS SD28 PQ: 0 ANSI: 5
[ 0.709384] sd 5:0:0:0: [sdc] 976773168 512-byte logical blocks: (500 GB/465 GiB)
[ 0.709410] sd 5:0:0:0: [sdc] Write Protect is off
[ 0.709412] sd 5:0:0:0: [sdc] Mode Sense: 00 3a 00 00
[ 0.709416] ACPI: Invalid Power Resource to register!
[ 0.709424] sd 5:0:0:0: [sdc] Write cache: enabled, read cache: enabled, doesn't support DPO or FUA
[ 0.710014] sdc: sdc1 sdc2
[ 0.710287] sd 5:0:0:0: [sdc] Attached SCSI disk
[ 0.716784] sdb: sdb1 sdb2 sdb3 sdb4
[ 0.717158] sd 4:0:0:0: [sdb] Attached SCSI disk
[ 0.720902] EXT4-fs (sda2): mounted filesystem with ordered data mode. Opts: (null)
[ 0.720907] VFS: Mounted root (ext4 filesystem) readonly on device 8:2.
[ 0.721341] Freeing unused kernel memory: 456k freed
[ 0.820160] hub 1-1:1.0: USB hub found
[ 0.820238] hub 1-1:1.0: 6 ports detected
[ 0.882619] systemd[1]: systemd 197 running in system mode. (+PAM -LIBWRAP -AUDIT -SELINUX -IMA -SYSVINIT +LIBCRYPTSETUP +GCRYPT +ACL +XZ)
[ 0.890425] systemd[1]: Inserted module 'autofs4'
[ 0.890730] systemd[1]: Set hostname to <roger>.
[ 0.925760] usb 2-1: new high-speed USB device number 2 using ehci-pci
[ 0.968044] systemd[1]: Cannot add dependency job for unit qingy@tty1.service, ignoring: Unit qingy@tty1.service failed to load: No such file or directory. See system logs and 'systemctl status qingy@tty1.service' for details.
[ 0.968123] systemd[1]: Starting Forward Password Requests to Wall Directory Watch.
[ 0.968158] systemd[1]: Started Forward Password Requests to Wall Directory Watch.
[ 0.968166] systemd[1]: Starting Remote File Systems.
[ 0.968174] systemd[1]: Reached target Remote File Systems.
[ 0.968181] systemd[1]: Starting /dev/initctl Compatibility Named Pipe.
[ 0.968195] systemd[1]: Listening on /dev/initctl Compatibility Named Pipe.
[ 0.968201] systemd[1]: Starting Delayed Shutdown Socket.
[ 0.968214] systemd[1]: Listening on Delayed Shutdown Socket.
[ 0.968220] systemd[1]: Starting Device-mapper event daemon FIFOs.
[ 0.968234] systemd[1]: Listening on Device-mapper event daemon FIFOs.
[ 0.968240] systemd[1]: Starting LVM2 metadata daemon socket.
[ 0.968253] systemd[1]: Listening on LVM2 metadata daemon socket.
[ 0.968259] systemd[1]: Starting Encrypted Volumes.
[ 0.968265] systemd[1]: Reached target Encrypted Volumes.
[ 0.968300] systemd[1]: Starting udev Kernel Socket.
[ 0.968314] systemd[1]: Listening on udev Kernel Socket.
[ 0.968343] systemd[1]: Starting udev Control Socket.
[ 0.968358] systemd[1]: Listening on udev Control Socket.
[ 0.968365] systemd[1]: Starting Dispatch Password Requests to Console Directory Watch.
[ 0.968384] systemd[1]: Started Dispatch Password Requests to Console Directory Watch.
[ 0.968401] systemd[1]: Starting Arbitrary Executable File Formats File System Automount Point.
[ 0.968448] systemd[1]: Set up automount Arbitrary Executable File Formats File System Automount Point.
[ 0.968454] systemd[1]: Starting Swap.
[ 0.968460] systemd[1]: Reached target Swap.
[ 0.968466] systemd[1]: Expecting device dev-disk-by\x2duuid-e13b5386\x2d102c\x2d44fd\x2da004\x2d4d6140c7ceae.device...
[ 0.968474] systemd[1]: Starting Journal Socket.
[ 0.968495] systemd[1]: Listening on Journal Socket.
[ 0.968502] systemd[1]: Mounting Temporary Directory...
[ 0.969660] systemd[1]: tmp.mount: Directory /tmp to mount over is not empty, mounting anyway.
[ 1.015540] systemd[1]: Starting File System Check on Root Device...
[ 1.049397] hub 2-1:1.0: USB hub found
[ 1.049487] hub 2-1:1.0: 8 ports detected
[ 1.055459] systemd[1]: Starting udev Kernel Device Manager...
[ 1.095307] systemd[1]: Starting Setup Virtual Console...
[ 1.148650] systemd-udevd[119]: starting version 197
[ 1.151989] systemd[1]: Starting Apply Kernel Variables...
[ 1.204917] systemd[1]: Mounted Debug File System.
[ 1.207774] systemd[1]: Starting Set Up Additional Binary Formats...
[ 1.211503] usb 3-3: new high-speed USB device number 2 using xhci_hcd
[ 1.235381] usb 3-3: ep 0x1 - rounding interval to 32768 microframes, ep desc says 0 microframes
[ 1.235385] usb 3-3: ep 0x82 - rounding interval to 32768 microframes, ep desc says 0 microframes
[ 1.235388] usb 3-3: ep 0x5 - rounding interval to 32768 microframes, ep desc says 0 microframes
[ 1.235390] usb 3-3: ep 0x6 - rounding interval to 32768 microframes, ep desc says 0 microframes
[ 1.255373] systemd[1]: Started Load Kernel Modules.
[ 1.255386] systemd[1]: Mounted Configuration File System.
[ 1.255395] systemd[1]: Mounting POSIX Message Queue File System...
[ 1.314573] systemd[1]: Mounted FUSE Control File System.
[ 1.314611] systemd[1]: Starting udev Coldplug all Devices...
[ 1.341103] tsc: Refined TSC clocksource calibration: 3292.520 MHz
[ 1.341108] Switching to clocksource tsc
[ 1.347777] systemd[1]: Mounting Huge Pages File System...
[ 1.381005] systemd[1]: Starting Journal Service...
[ 1.394253] usb 3-4: new low-speed USB device number 3 using xhci_hcd
[ 1.412830] usb 3-4: ep 0x81 - rounding interval to 64 microframes, ep desc says 80 microframes
[ 1.415435] input: Logitech USB-PS/2 Optical Mouse as /devices/pci0000:00/0000:00:14.0/usb3/3-4/3-4:1.0/input/input0
[ 1.415612] hid-generic 0003:046D:C01A.0001: input,hidraw0: USB HID v1.10 Mouse [Logitech USB-PS/2 Optical Mouse] on usb-0000:00:14.0-4/input0
[ 1.424190] systemd[1]: Started Journal Service.
[ 1.424422] systemd[1]: Started udev Kernel Device Manager.
[ 1.424461] systemd[1]: Mounted Temporary Directory.
[ 1.432689] usb 3-3: ath9k_htc: Firmware htc_9271.fw requested
[ 1.432834] usbcore: registered new interface driver ath9k_htc
[ 1.464075] systemd[1]: Started File System Check on Root Device.
[ 1.480694] usb 1-1.3: new high-speed USB device number 3 using ehci-pci
[ 1.493948] systemd[1]: Started Setup Virtual Console.
[ 1.520552] systemd[1]: Started Apply Kernel Variables.
[ 1.520611] systemd[1]: Mounted POSIX Message Queue File System.
[ 1.563803] systemd[1]: Mounted Huge Pages File System.
[ 1.563825] systemd[1]: Starting Remount Root and Kernel File Systems...
[ 1.569665] input: Power Button as /devices/LNXSYSTM:00/device:00/PNP0C0C:00/input/input1
[ 1.569705] ACPI: Power Button [PWRB]
[ 1.569743] input: Power Button as /devices/LNXSYSTM:00/LNXPWRBN:00/input/input2
[ 1.569786] ACPI: Power Button [PWRF]
[ 1.570378] ACPI: Requesting acpi_cpufreq
[ 1.571512] ACPI: Fan [FAN0] (off)
[ 1.571543] ACPI: Fan [FAN1] (off)
[ 1.571570] ACPI: Fan [FAN2] (off)
[ 1.571595] ACPI: Fan [FAN3] (off)
[ 1.571619] ACPI: Fan [FAN4] (off)
[ 1.581619] snd_hda_intel 0000:00:1b.0: irq 42 for MSI/MSI-X
[ 1.582992] [drm] Initialized drm 1.1.0 20060810
[ 1.592570] sr0: scsi3-mmc drive: 48x/12x writer dvd-ram cd/rw xa/form2 cdda tray
[ 1.592574] cdrom: Uniform CD-ROM driver Revision: 3.20
[ 1.592661] sr 2:0:0:0: Attached scsi CD-ROM sr0
[ 1.593376] [drm] radeon defaulting to kernel modesetting.
[ 1.593377] [drm] radeon kernel modesetting enabled.
[ 1.593491] [drm] initializing kernel modesetting (BARTS 0x1002:0x6739 0x174B:0x174B).
[ 1.593530] [drm] register mmio base: 0xF7E20000
[ 1.593531] [drm] register mmio size: 131072
[ 1.593793] ATOM BIOS: BARTS
[ 1.593828] radeon 0000:01:00.0: VRAM: 1024M 0x0000000000000000 - 0x000000003FFFFFFF (1024M used)
[ 1.593829] radeon 0000:01:00.0: GTT: 512M 0x0000000040000000 - 0x000000005FFFFFFF
[ 1.593833] mtrr: type mismatch for e0000000,10000000 old: write-back new: write-combining
[ 1.593833] [drm] Detected VRAM RAM=1024M, BAR=256M
[ 1.593834] [drm] RAM width 256bits DDR
[ 1.593860] [TTM] Zone kernel: Available graphics memory: 8201124 kiB
[ 1.593861] [TTM] Zone dma32: Available graphics memory: 2097152 kiB
[ 1.593862] [TTM] Initializing pool allocator
[ 1.593864] [TTM] Initializing DMA pool allocator
[ 1.593877] [drm] radeon: 1024M of VRAM memory ready
[ 1.593878] [drm] radeon: 512M of GTT memory ready.
[ 1.593879] [drm] Supports vblank timestamp caching Rev 1 (10.10.2010).
[ 1.593880] [drm] Driver supports precise vblank timestamp query.
[ 1.593944] radeon 0000:01:00.0: irq 43 for MSI/MSI-X
[ 1.593959] radeon 0000:01:00.0: radeon: using MSI.
[ 1.594000] [drm] radeon: irq initialized.
[ 1.594002] [drm] GART: num cpu pages 131072, num gpu pages 131072
[ 1.594276] [drm] probing gen 2 caps for device 8086:1e10 = 2/0
[ 1.594282] [drm] enabling PCIE gen 2 link speeds, disable with radeon.pcie_gen2=0
[ 1.594358] [drm] Loading BARTS Microcode
[ 1.604107] input: HDA Intel PCH Line as /devices/pci0000:00/0000:00:1b.0/sound/card0/input3
[ 1.604151] input: HDA Intel PCH Rear Mic as /devices/pci0000:00/0000:00:1b.0/sound/card0/input4
[ 1.604221] input: HDA Intel PCH Front Mic as /devices/pci0000:00/0000:00:1b.0/sound/card0/input5
[ 1.604258] input: HDA Intel PCH Front Headphone as /devices/pci0000:00/0000:00:1b.0/sound/card0/input6
[ 1.604294] input: HDA Intel PCH Line Out as /devices/pci0000:00/0000:00:1b.0/sound/card0/input7
[ 1.605012] atl1c 0000:02:00.0: version 1.0.1.0-NAPI
[ 1.607581] thermal LNXTHERM:00: registered as thermal_zone0
[ 1.607583] ACPI: Thermal Zone [TZ00] (28 C)
[ 1.608344] thermal LNXTHERM:01: registered as thermal_zone1
[ 1.608346] ACPI: Thermal Zone [TZ01] (30 C)
[ 1.610529] systemd[1]: Mounting Arbitrary Executable File Formats File System...
[ 1.611313] uvcvideo: Unable to create debugfs directory
[ 1.611336] uvcvideo: Found UVC 1.00 device USB2.0 Camera (1871:0101)
[ 1.612153] input: USB2.0 Camera as /devices/pci0000:00/0000:00:1a.0/usb1/1-1/1-1.3/1-1.3:1.0/input/input8
[ 1.612187] usbcore: registered new interface driver uvcvideo
[ 1.612188] USB Video Class driver (1.1.1)
[ 1.626779] [drm] PCIE GART of 512M enabled (table at 0x0000000000040000).
[ 1.626903] radeon 0000:01:00.0: WB enabled
[ 1.626905] radeon 0000:01:00.0: fence driver on ring 0 use gpu addr 0x0000000040000c00 and cpu addr 0xffff88040315fc00
[ 1.626906] radeon 0000:01:00.0: fence driver on ring 3 use gpu addr 0x0000000040000c0c and cpu addr 0xffff88040315fc0c
[ 1.640148] usb 1-1.4: new low-speed USB device number 4 using ehci-pci
[ 1.643304] [drm] ring test on 0 succeeded in 2 usecs
[ 1.643371] [drm] ring test on 3 succeeded in 1 usecs
[ 1.643592] [drm] ib test on ring 0 succeeded in 0 usecs
[ 1.643658] [drm] ib test on ring 3 succeeded in 0 usecs
[ 1.644353] [drm] Radeon Display Connectors
[ 1.644354] [drm] Connector 0:
[ 1.644355] [drm] DP-1
[ 1.644355] [drm] HPD4
[ 1.644356] [drm] DDC: 0x6430 0x6430 0x6434 0x6434 0x6438 0x6438 0x643c 0x643c
[ 1.644357] [drm] Encoders:
[ 1.644357] [drm] DFP1: INTERNAL_UNIPHY2
[ 1.644358] [drm] Connector 1:
[ 1.644359] [drm] HDMI-A-1
[ 1.644359] [drm] HPD3
[ 1.644360] [drm] DDC: 0x6460 0x6460 0x6464 0x6464 0x6468 0x6468 0x646c 0x646c
[ 1.644361] [drm] Encoders:
[ 1.644361] [drm] DFP2: INTERNAL_UNIPHY2
[ 1.644362] [drm] Connector 2:
[ 1.644362] [drm] DVI-I-1
[ 1.644363] [drm] HPD6
[ 1.644364] [drm] DDC: 0x6470 0x6470 0x6474 0x6474 0x6478 0x6478 0x647c 0x647c
[ 1.644364] [drm] Encoders:
[ 1.644365] [drm] DFP3: INTERNAL_UNIPHY
[ 1.644365] [drm] CRT1: INTERNAL_KLDSCP_DAC1
[ 1.644366] [drm] Connector 3:
[ 1.644366] [drm] DVI-D-1
[ 1.644367] [drm] HPD1
[ 1.644368] [drm] DDC: 0x6480 0x6480 0x6484 0x6484 0x6488 0x6488 0x648c 0x648c
[ 1.644368] [drm] Encoders:
[ 1.644369] [drm] DFP4: INTERNAL_UNIPHY1
[ 1.644500] [drm] Internal thermal controller with fan control
[ 1.645873] [drm] radeon: power management initialized
[ 1.683299] systemd[1]: Started udev Coldplug all Devices.
[ 1.683373] systemd[1]: Mounted Arbitrary Executable File Formats File System.
[ 1.714166] usb 3-3: ath9k_htc: Transferred FW: htc_9271.fw, size: 51272
[ 1.734936] input: Logitech USB Trackball as /devices/pci0000:00/0000:00:1a.0/usb1/1-1/1-1.4/1-1.4:1.0/input/input9
[ 1.735075] hid-generic 0003:046D:C408.0002: input,hidraw1: USB HID v1.10 Mouse [Logitech USB Trackball] on usb-0000:00:1a.0-1.4/input0
[ 1.746428] systemd[1]: Started Set Up Additional Binary Formats.
[ 1.748539] [drm] fb mappable at 0xE0142000
[ 1.748540] [drm] vram apper at 0xE0000000
[ 1.748540] [drm] size 8294400
[ 1.748541] [drm] fb depth is 24
[ 1.748542] [drm] pitch is 7680
[ 1.748594] fbcon: radeondrmfb (fb0) is primary device
[ 1.799633] usb 1-1.5: new low-speed USB device number 5 using ehci-pci
[ 1.812339] systemd[1]: Found device M4-CT064M4SSD2.
[ 1.812354] systemd[1]: Starting File System Check on /dev/disk/by-uuid/e13b5386-102c-44fd-a004-4d6140c7ceae...
[ 1.909254] systemd[1]: Started File System Check on /dev/disk/by-uuid/e13b5386-102c-44fd-a004-4d6140c7ceae.
[ 1.921264] input: USB Keyboard as /devices/pci0000:00/0000:00:1a.0/usb1/1-1/1-1.5/1-1.5:1.0/input/input10
[ 1.921358] hid-generic 0003:09DA:0260.0003: input,hidraw2: USB HID v1.10 Keyboard [ USB Keyboard] on usb-0000:00:1a.0-1.5/input0
[ 1.941101] input: USB Keyboard as /devices/pci0000:00/0000:00:1a.0/usb1/1-1/1-1.5/1-1.5:1.1/input/input11
[ 1.941193] hid-generic 0003:09DA:0260.0004: input,hidraw3: USB HID v1.10 Device [ USB Keyboard] on usb-0000:00:1a.0-1.5/input1
[ 1.950773] ath9k_htc 3-3:1.0: ath9k_htc: HTC initialized with 33 credits
[ 1.957034] Console: switching to colour frame buffer device 240x67
[ 1.962894] radeon 0000:01:00.0: fb0: radeondrmfb frame buffer device
[ 1.962895] radeon 0000:01:00.0: registered panic notifier
[ 1.962904] [drm] Initialized radeon 2.27.0 20080528 for 0000:01:00.0 on minor 0
[ 1.963024] snd_hda_intel 0000:01:00.1: irq 44 for MSI/MSI-X
[ 1.966931] systemd[1]: Starting Sound Card.
[ 1.966939] systemd[1]: Reached target Sound Card.
[ 2.005746] usb 1-1.6: new full-speed USB device number 6 using ehci-pci
[ 2.101323] input: Wacom Intuos5 touch S Pen as /devices/pci0000:00/0000:00:1a.0/usb1/1-1/1-1.6/1-1.6:1.0/input/input12
[ 2.104684] input: Wacom Intuos5 touch S Finger as /devices/pci0000:00/0000:00:1a.0/usb1/1-1/1-1.6/1-1.6:1.1/input/input13
[ 2.104761] usbcore: registered new interface driver wacom
[ 2.215785] ath9k_htc 3-3:1.0: ath9k_htc: FW Version: 1.3
[ 2.215789] ath: EEPROM regdomain: 0x60
[ 2.215790] ath: EEPROM indicates we should expect a direct regpair map
[ 2.215792] ath: Country alpha2 being used: 00
[ 2.215793] ath: Regpair used: 0x60
[ 2.215961] ieee80211 phy0: Atheros AR9271 Rev:1
[ 2.349726] EXT4-fs (sda2): re-mounted. Opts: discard
[ 2.364525] systemd[1]: Started Remount Root and Kernel File Systems.
[ 2.364544] systemd[1]: Starting Local File Systems (Pre).
[ 2.364551] systemd[1]: Reached target Local File Systems (Pre).
[ 2.364556] systemd[1]: Mounting /boot...
[ 2.407675] systemd[1]: Starting Load Random Seed...
[ 2.440969] systemd[1]: Mounted /boot.
[ 2.440985] systemd[1]: Starting Local File Systems.
[ 2.440991] systemd[1]: Reached target Local File Systems.
[ 2.441585] systemd[1]: Starting Recreate Volatile Files and Directories...
[ 2.484115] systemd[1]: Starting Trigger Flushing of Journal to Persistent Storage...
[ 2.557178] systemd[1]: Started Load Random Seed.
[ 2.583728] systemd[1]: Started Recreate Volatile Files and Directories.
[ 2.583749] systemd[1]: Starting System Initialization.
[ 2.583755] systemd[1]: Reached target System Initialization.
[ 2.583762] systemd[1]: Starting CUPS Printing Service Sockets.
[ 2.583782] systemd[1]: Listening on CUPS Printing Service Sockets.
[ 2.583788] systemd[1]: Starting postgresql.socket.
[ 2.583862] systemd[1]: Listening on postgresql.socket.
[ 2.583869] systemd[1]: Starting CUPS Printer Service Spool.
[ 2.585308] systemd[1]: Started CUPS Printer Service Spool.
[ 2.585318] systemd[1]: Starting ACPID Listen Socket.
[ 2.585334] systemd[1]: Listening on ACPID Listen Socket.
[ 2.585340] systemd[1]: Starting D-Bus System Message Bus Socket.
[ 2.585353] systemd[1]: Listening on D-Bus System Message Bus Socket.
[ 2.585358] systemd[1]: Starting Sockets.
[ 2.585364] systemd[1]: Reached target Sockets.
[ 2.585369] systemd[1]: Starting Daily Cleanup of Temporary Directories.
[ 2.585380] systemd[1]: Started Daily Cleanup of Temporary Directories.
[ 2.585385] systemd[1]: Starting Restore Sound Card State...
[ 2.626961] systemd[1]: Starting Basic System.
[ 2.626969] systemd[1]: Reached target Basic System.
[ 2.626980] systemd[1]: Starting CUPS Printing Service...
[ 2.673501] systemd[1]: Started CUPS Printing Service.
[ 2.673521] systemd[1]: Starting Network Manager...
[ 2.720673] systemd[1]: Started SSH Key Generation.
[ 2.720694] systemd[1]: Starting OpenSSH Daemon...
[ 2.783146] systemd[1]: Started OpenSSH Daemon.
[ 2.783167] systemd[1]: Starting ACPI event daemon...
[ 2.836307] systemd[1]: Started ACPI event daemon.
[ 2.836324] systemd[1]: Starting Initialize hardware monitoring sensors...
[ 2.872833] systemd[1]: Starting D-Bus System Message Bus...
[ 2.874362] it87: Found IT8728F chip at 0xa30, revision 1
[ 2.874378] it87: Beeping is supported
[ 2.922699] systemd[1]: Started D-Bus System Message Bus.
[ 2.922803] systemd[1]: Starting Login Service...
[ 3.009032] systemd[1]: Started Restore Sound Card State.
[ 3.069410] systemd-journald[145]: Received SIGUSR1
[ 3.599437] IPv6: ADDRCONF(NETDEV_UP): wlan0: link is not ready
[ 3.603634] atl1c 0000:02:00.0: irq 45 for MSI/MSI-X
[ 3.618237] IPv6: ADDRCONF(NETDEV_UP): eth0: link is not ready
[ 3.667363] Bridge firewalling registered
[ 3.747771] ip_tables: (C) 2000-2006 Netfilter Core Team
[ 3.766406] nf_conntrack version 0.5.0 (16384 buckets, 65536 max)
[ 3.777277] IPv6: ADDRCONF(NETDEV_UP): virbr0: link is not ready
[ 3.890499] ip6_tables: (C) 2000-2006 Netfilter Core Team
[ 3.905602] cgroup: libvirtd (444) created nested cgroup for controller "memory" which has incomplete hierarchy support. Nested cgroups may change behavior in the future.
[ 3.905604] cgroup: "memory" requires setting use_hierarchy to 1 on the root.
[ 3.905640] cgroup: libvirtd (444) created nested cgroup for controller "blkio" which has incomplete hierarchy support. Nested cgroups may change behavior in the future.
[ 7.292037] wlan0: authenticate with 98:fc:11:47:d3:64
[ 7.725959] wlan0: send auth to 98:fc:11:47:d3:64 (try 1/3)
[ 7.726018] wlan0: send auth to 98:fc:11:47:d3:64 (try 2/3)
[ 12.714842] wlan0: deauthenticating from 98:fc:11:47:d3:64 by local choice (reason=3)
[ 12.714870] xhci_hcd 0000:00:14.0: WARN Event TRB for slot 1 ep 1 with no TDs queued?
[ 14.787486] wlan0: authenticate with 98:fc:11:47:d3:64
[ 15.221536] wlan0: send auth to 98:fc:11:47:d3:64 (try 1/3)
[ 15.221596] wlan0: send auth to 98:fc:11:47:d3:64 (try 2/3)
[ 20.210368] wlan0: deauthenticating from 98:fc:11:47:d3:64 by local choice (reason=3)
[ 22.681842] wlan0: authenticate with 98:fc:11:47:d3:64
[ 23.115938] wlan0: send auth to 98:fc:11:47:d3:64 (try 1/3)
[ 23.115978] wlan0: send auth to 98:fc:11:47:d3:64 (try 2/3)
[ 28.104174] wlan0: deauthenticating from 98:fc:11:47:d3:64 by local choice (reason=3)
[ 28.104204] xhci_hcd 0000:00:14.0: WARN Event TRB for slot 1 ep 1 with no TDs queued?
[-- Attachment #3: .config --]
[-- Type: application/octet-stream, Size: 73703 bytes --]
#
# Automatically generated file; DO NOT EDIT.
# Linux/x86_64 3.8.1 Kernel Configuration
#
CONFIG_64BIT=y
CONFIG_X86_64=y
CONFIG_X86=y
CONFIG_INSTRUCTION_DECODER=y
CONFIG_OUTPUT_FORMAT="elf64-x86-64"
CONFIG_ARCH_DEFCONFIG="arch/x86/configs/x86_64_defconfig"
CONFIG_LOCKDEP_SUPPORT=y
CONFIG_STACKTRACE_SUPPORT=y
CONFIG_HAVE_LATENCYTOP_SUPPORT=y
CONFIG_MMU=y
CONFIG_NEED_DMA_MAP_STATE=y
CONFIG_NEED_SG_DMA_LENGTH=y
CONFIG_GENERIC_ISA_DMA=y
CONFIG_GENERIC_BUG=y
CONFIG_GENERIC_BUG_RELATIVE_POINTERS=y
CONFIG_GENERIC_HWEIGHT=y
CONFIG_ARCH_MAY_HAVE_PC_FDC=y
CONFIG_RWSEM_XCHGADD_ALGORITHM=y
CONFIG_GENERIC_CALIBRATE_DELAY=y
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=y
CONFIG_AUDIT_ARCH=y
CONFIG_ARCH_SUPPORTS_OPTIMIZED_INLINING=y
CONFIG_ARCH_SUPPORTS_DEBUG_PAGEALLOC=y
CONFIG_X86_64_SMP=y
CONFIG_X86_HT=y
CONFIG_ARCH_HWEIGHT_CFLAGS="-fcall-saved-rdi -fcall-saved-rsi -fcall-saved-rdx -fcall-saved-rcx -fcall-saved-r8 -fcall-saved-r9 -fcall-saved-r10 -fcall-saved-r11"
CONFIG_ARCH_CPU_PROBE_RELEASE=y
CONFIG_ARCH_SUPPORTS_UPROBES=y
CONFIG_DEFCONFIG_LIST="/lib/modules/$UNAME_RELEASE/.config"
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="-cmr"
# CONFIG_LOCALVERSION_AUTO is not set
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_SYSVIPC_SYSCTL=y
CONFIG_POSIX_MQUEUE=y
CONFIG_POSIX_MQUEUE_SYSCTL=y
CONFIG_FHANDLE=y
# 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_IRQ_FORCED_THREADING=y
CONFIG_SPARSE_IRQ=y
CONFIG_CLOCKSOURCE_WATCHDOG=y
CONFIG_ARCH_CLOCKSOURCE_DATA=y
CONFIG_GENERIC_TIME_VSYSCALL=y
CONFIG_GENERIC_CLOCKEVENTS=y
CONFIG_GENERIC_CLOCKEVENTS_BUILD=y
CONFIG_GENERIC_CLOCKEVENTS_BROADCAST=y
CONFIG_GENERIC_CLOCKEVENTS_MIN_ADJUST=y
CONFIG_GENERIC_CMOS_UPDATE=y
#
# Timers subsystem
#
CONFIG_TICK_ONESHOT=y
CONFIG_NO_HZ=y
CONFIG_HIGH_RES_TIMERS=y
#
# CPU/Task time and stats accounting
#
# CONFIG_TICK_CPU_ACCOUNTING is not set
CONFIG_IRQ_TIME_ACCOUNTING=y
CONFIG_BSD_PROCESS_ACCT=y
CONFIG_BSD_PROCESS_ACCT_V3=y
CONFIG_TASKSTATS=y
CONFIG_TASK_DELAY_ACCT=y
CONFIG_TASK_XACCT=y
CONFIG_TASK_IO_ACCOUNTING=y
#
# RCU Subsystem
#
CONFIG_TREE_PREEMPT_RCU=y
CONFIG_PREEMPT_RCU=y
# CONFIG_RCU_USER_QS is not set
CONFIG_RCU_FANOUT=64
CONFIG_RCU_FANOUT_LEAF=16
# CONFIG_RCU_FANOUT_EXACT is not set
# CONFIG_RCU_FAST_NO_HZ is not set
# CONFIG_TREE_RCU_TRACE is not set
# CONFIG_RCU_BOOST is not set
# CONFIG_RCU_NOCB_CPU is not set
# CONFIG_IKCONFIG is not set
CONFIG_LOG_BUF_SHIFT=18
CONFIG_HAVE_UNSTABLE_SCHED_CLOCK=y
CONFIG_ARCH_SUPPORTS_NUMA_BALANCING=y
CONFIG_ARCH_WANTS_PROT_NUMA_PROT_NONE=y
# CONFIG_NUMA_BALANCING is not set
CONFIG_CGROUPS=y
# CONFIG_CGROUP_DEBUG is not set
CONFIG_CGROUP_FREEZER=y
# CONFIG_CGROUP_DEVICE is not set
CONFIG_CPUSETS=y
CONFIG_PROC_PID_CPUSET=y
CONFIG_CGROUP_CPUACCT=y
CONFIG_RESOURCE_COUNTERS=y
CONFIG_MEMCG=y
CONFIG_MEMCG_SWAP=y
# CONFIG_MEMCG_SWAP_ENABLED is not set
CONFIG_MEMCG_KMEM=y
# CONFIG_CGROUP_HUGETLB is not set
# CONFIG_CGROUP_PERF is not set
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=y
# CONFIG_DEBUG_BLK_CGROUP is not set
# CONFIG_CHECKPOINT_RESTORE is not set
CONFIG_NAMESPACES=y
CONFIG_UTS_NS=y
CONFIG_IPC_NS=y
# CONFIG_USER_NS is not set
CONFIG_PID_NS=y
CONFIG_NET_NS=y
CONFIG_UIDGID_CONVERTED=y
# CONFIG_UIDGID_STRICT_TYPE_CHECKS is not set
CONFIG_SCHED_AUTOGROUP=y
CONFIG_MM_OWNER=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_SYSCTL=y
CONFIG_ANON_INODES=y
# CONFIG_EXPERT is not set
CONFIG_HAVE_UID16=y
CONFIG_UID16=y
# CONFIG_SYSCTL_SYSCALL is not set
CONFIG_SYSCTL_EXCEPTION_TRACE=y
CONFIG_KALLSYMS=y
CONFIG_HOTPLUG=y
CONFIG_PRINTK=y
CONFIG_BUG=y
CONFIG_ELF_CORE=y
CONFIG_PCSPKR_PLATFORM=y
CONFIG_HAVE_PCSPKR_PLATFORM=y
CONFIG_BASE_FULL=y
CONFIG_FUTEX=y
CONFIG_EPOLL=y
CONFIG_SIGNALFD=y
CONFIG_TIMERFD=y
CONFIG_EVENTFD=y
CONFIG_SHMEM=y
CONFIG_AIO=y
# CONFIG_EMBEDDED is not set
CONFIG_HAVE_PERF_EVENTS=y
#
# Kernel Performance Events And Counters
#
CONFIG_PERF_EVENTS=y
CONFIG_VM_EVENT_COUNTERS=y
CONFIG_PCI_QUIRKS=y
CONFIG_SLUB_DEBUG=y
# CONFIG_COMPAT_BRK is not set
# CONFIG_SLAB is not set
CONFIG_SLUB=y
CONFIG_PROFILING=y
CONFIG_OPROFILE=m
# CONFIG_OPROFILE_EVENT_MULTIPLEX is not set
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_USER_RETURN_NOTIFIER=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_PERF_REGS=y
CONFIG_HAVE_PERF_USER_STACK_DUMP=y
CONFIG_HAVE_ARCH_JUMP_LABEL=y
CONFIG_ARCH_HAVE_NMI_SAFE_CMPXCHG=y
CONFIG_HAVE_ALIGNED_STRUCT_PAGE=y
CONFIG_HAVE_CMPXCHG_LOCAL=y
CONFIG_HAVE_CMPXCHG_DOUBLE=y
CONFIG_ARCH_WANT_COMPAT_IPC_PARSE_VERSION=y
CONFIG_ARCH_WANT_OLD_COMPAT_IPC=y
CONFIG_HAVE_ARCH_SECCOMP_FILTER=y
CONFIG_SECCOMP_FILTER=y
CONFIG_HAVE_CONTEXT_TRACKING=y
CONFIG_HAVE_IRQ_TIME_ACCOUNTING=y
CONFIG_HAVE_ARCH_TRANSPARENT_HUGEPAGE=y
CONFIG_MODULES_USE_ELF_RELA=y
CONFIG_GENERIC_SIGALTSTACK=y
#
# GCOV-based kernel profiling
#
# CONFIG_HAVE_GENERIC_DMA_COHERENT is not set
CONFIG_SLABINFO=y
CONFIG_RT_MUTEXES=y
CONFIG_BASE_SMALL=0
CONFIG_MODULES=y
# CONFIG_MODULE_FORCE_LOAD is not set
CONFIG_MODULE_UNLOAD=y
# CONFIG_MODULE_FORCE_UNLOAD is not set
# CONFIG_MODVERSIONS is not set
# CONFIG_MODULE_SRCVERSION_ALL is not set
# CONFIG_MODULE_SIG is not set
CONFIG_STOP_MACHINE=y
CONFIG_BLOCK=y
CONFIG_BLK_DEV_BSG=y
CONFIG_BLK_DEV_BSGLIB=y
CONFIG_BLK_DEV_INTEGRITY=y
CONFIG_BLK_DEV_THROTTLING=y
#
# Partition Types
#
# CONFIG_PARTITION_ADVANCED is not set
CONFIG_MSDOS_PARTITION=y
CONFIG_EFI_PARTITION=y
CONFIG_BLOCK_COMPAT=y
#
# IO Schedulers
#
CONFIG_IOSCHED_NOOP=y
# CONFIG_IOSCHED_DEADLINE is not set
CONFIG_IOSCHED_CFQ=y
# CONFIG_CFQ_GROUP_IOSCHED is not set
CONFIG_DEFAULT_CFQ=y
# CONFIG_DEFAULT_NOOP is not set
CONFIG_DEFAULT_IOSCHED="cfq"
CONFIG_PREEMPT_NOTIFIERS=y
CONFIG_PADATA=y
CONFIG_UNINLINE_SPIN_UNLOCK=y
CONFIG_MUTEX_SPIN_ON_OWNER=y
CONFIG_FREEZER=y
#
# Processor type and features
#
CONFIG_ZONE_DMA=y
CONFIG_SMP=y
# CONFIG_X86_MPPARSE is not set
# CONFIG_X86_EXTENDED_PLATFORM is not set
CONFIG_X86_SUPPORTS_MEMORY_FAILURE=y
CONFIG_SCHED_OMIT_FRAME_POINTER=y
# CONFIG_PARAVIRT_GUEST is not set
CONFIG_NO_BOOTMEM=y
# CONFIG_MEMTEST is not set
# CONFIG_MK8 is not set
# CONFIG_MPSC is not set
CONFIG_MCORE2=y
# CONFIG_MATOM is not set
# CONFIG_GENERIC_CPU is not set
CONFIG_X86_INTERNODE_CACHE_SHIFT=6
CONFIG_X86_L1_CACHE_SHIFT=6
CONFIG_X86_INTEL_USERCOPY=y
CONFIG_X86_USE_PPRO_CHECKSUM=y
CONFIG_X86_P6_NOP=y
CONFIG_X86_TSC=y
CONFIG_X86_CMPXCHG64=y
CONFIG_X86_CMOV=y
CONFIG_X86_MINIMUM_CPU_FAMILY=64
CONFIG_X86_DEBUGCTLMSR=y
CONFIG_CPU_SUP_INTEL=y
CONFIG_CPU_SUP_AMD=y
CONFIG_CPU_SUP_CENTAUR=y
CONFIG_HPET_TIMER=y
CONFIG_HPET_EMULATE_RTC=y
CONFIG_DMI=y
CONFIG_GART_IOMMU=y
# CONFIG_CALGARY_IOMMU is not set
CONFIG_SWIOTLB=y
CONFIG_IOMMU_HELPER=y
CONFIG_NR_CPUS=8
CONFIG_SCHED_SMT=y
CONFIG_SCHED_MC=y
# CONFIG_PREEMPT_NONE is not set
# CONFIG_PREEMPT_VOLUNTARY is not set
CONFIG_PREEMPT=y
CONFIG_PREEMPT_COUNT=y
CONFIG_X86_LOCAL_APIC=y
CONFIG_X86_IO_APIC=y
# CONFIG_X86_REROUTE_FOR_BROKEN_BOOT_IRQS is not set
CONFIG_X86_MCE=y
CONFIG_X86_MCE_INTEL=y
# CONFIG_X86_MCE_AMD is not set
CONFIG_X86_MCE_THRESHOLD=y
# CONFIG_X86_MCE_INJECT is not set
CONFIG_X86_THERMAL_VECTOR=y
# CONFIG_I8K is not set
CONFIG_MICROCODE=y
CONFIG_MICROCODE_INTEL=y
# CONFIG_MICROCODE_AMD is not set
CONFIG_MICROCODE_OLD_INTERFACE=y
CONFIG_X86_MSR=y
CONFIG_X86_CPUID=y
CONFIG_ARCH_PHYS_ADDR_T_64BIT=y
CONFIG_ARCH_DMA_ADDR_T_64BIT=y
CONFIG_DIRECT_GBPAGES=y
CONFIG_NUMA=y
# CONFIG_AMD_NUMA is not set
CONFIG_X86_64_ACPI_NUMA=y
CONFIG_NODES_SPAN_OTHER_NODES=y
# CONFIG_NUMA_EMU is not set
CONFIG_NODES_SHIFT=6
CONFIG_ARCH_SPARSEMEM_ENABLE=y
CONFIG_ARCH_SPARSEMEM_DEFAULT=y
CONFIG_ARCH_SELECT_MEMORY_MODEL=y
CONFIG_ARCH_PROC_KCORE_TEXT=y
CONFIG_ILLEGAL_POINTER_VALUE=0xdead000000000000
CONFIG_SELECT_MEMORY_MODEL=y
CONFIG_SPARSEMEM_MANUAL=y
CONFIG_SPARSEMEM=y
CONFIG_NEED_MULTIPLE_NODES=y
CONFIG_HAVE_MEMORY_PRESENT=y
CONFIG_SPARSEMEM_EXTREME=y
CONFIG_SPARSEMEM_VMEMMAP_ENABLE=y
CONFIG_SPARSEMEM_ALLOC_MEM_MAP_TOGETHER=y
CONFIG_SPARSEMEM_VMEMMAP=y
CONFIG_HAVE_MEMBLOCK=y
CONFIG_HAVE_MEMBLOCK_NODE_MAP=y
CONFIG_ARCH_DISCARD_MEMBLOCK=y
# CONFIG_MOVABLE_NODE is not set
# CONFIG_MEMORY_HOTPLUG is not set
CONFIG_PAGEFLAGS_EXTENDED=y
CONFIG_SPLIT_PTLOCK_CPUS=4
CONFIG_COMPACTION=y
CONFIG_MIGRATION=y
CONFIG_PHYS_ADDR_T_64BIT=y
CONFIG_ZONE_DMA_FLAG=1
CONFIG_BOUNCE=y
CONFIG_VIRT_TO_BUS=y
CONFIG_MMU_NOTIFIER=y
CONFIG_KSM=y
CONFIG_DEFAULT_MMAP_MIN_ADDR=4096
CONFIG_ARCH_SUPPORTS_MEMORY_FAILURE=y
# CONFIG_MEMORY_FAILURE is not set
CONFIG_TRANSPARENT_HUGEPAGE=y
CONFIG_TRANSPARENT_HUGEPAGE_ALWAYS=y
# CONFIG_TRANSPARENT_HUGEPAGE_MADVISE is not set
# CONFIG_CROSS_MEMORY_ATTACH is not set
CONFIG_CLEANCACHE=y
# CONFIG_FRONTSWAP is not set
# CONFIG_X86_CHECK_BIOS_CORRUPTION is not set
CONFIG_X86_RESERVE_LOW=64
CONFIG_MTRR=y
# CONFIG_MTRR_SANITIZER is not set
CONFIG_X86_PAT=y
CONFIG_ARCH_USES_PG_UNCACHED=y
CONFIG_ARCH_RANDOM=y
CONFIG_X86_SMAP=y
# 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 is not set
# CONFIG_CRASH_DUMP is not set
CONFIG_PHYSICAL_START=0x1000000
# CONFIG_RELOCATABLE is not set
CONFIG_PHYSICAL_ALIGN=0x1000000
CONFIG_HOTPLUG_CPU=y
# CONFIG_BOOTPARAM_HOTPLUG_CPU0 is not set
# CONFIG_DEBUG_HOTPLUG_CPU0 is not set
# CONFIG_COMPAT_VDSO is not set
# CONFIG_CMDLINE_BOOL is not set
CONFIG_ARCH_ENABLE_MEMORY_HOTPLUG=y
CONFIG_USE_PERCPU_NUMA_NODE_ID=y
#
# Power management and ACPI options
#
CONFIG_SUSPEND=y
CONFIG_SUSPEND_FREEZER=y
# CONFIG_HIBERNATION is not set
CONFIG_PM_SLEEP=y
CONFIG_PM_SLEEP_SMP=y
# CONFIG_PM_AUTOSLEEP is not set
# CONFIG_PM_WAKELOCKS is not set
CONFIG_PM_RUNTIME=y
CONFIG_PM=y
# CONFIG_PM_DEBUG is not set
CONFIG_ACPI=y
CONFIG_ACPI_SLEEP=y
CONFIG_ACPI_PROCFS=y
CONFIG_ACPI_PROCFS_POWER=y
# CONFIG_ACPI_EC_DEBUGFS is not set
CONFIG_ACPI_PROC_EVENT=y
# CONFIG_ACPI_AC is not set
# CONFIG_ACPI_BATTERY is not set
CONFIG_ACPI_BUTTON=m
CONFIG_ACPI_VIDEO=m
CONFIG_ACPI_FAN=m
# CONFIG_ACPI_DOCK is not set
CONFIG_ACPI_I2C=y
CONFIG_ACPI_PROCESSOR=m
CONFIG_ACPI_HOTPLUG_CPU=y
# CONFIG_ACPI_PROCESSOR_AGGREGATOR is not set
CONFIG_ACPI_THERMAL=m
CONFIG_ACPI_NUMA=y
# CONFIG_ACPI_CUSTOM_DSDT is not set
# CONFIG_ACPI_INITRD_TABLE_OVERRIDE is not set
CONFIG_ACPI_BLACKLIST_YEAR=0
# CONFIG_ACPI_DEBUG is not set
# CONFIG_ACPI_PCI_SLOT is not set
CONFIG_X86_PM_TIMER=y
CONFIG_ACPI_CONTAINER=m
# CONFIG_ACPI_SBS is not set
# CONFIG_ACPI_HED is not set
# CONFIG_ACPI_APEI is not set
# CONFIG_SFI is not set
#
# CPU Frequency scaling
#
CONFIG_CPU_FREQ=y
CONFIG_CPU_FREQ_TABLE=y
CONFIG_CPU_FREQ_GOV_COMMON=y
CONFIG_CPU_FREQ_STAT=y
# CONFIG_CPU_FREQ_STAT_DETAILS is not set
CONFIG_CPU_FREQ_DEFAULT_GOV_PERFORMANCE=y
# 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=m
CONFIG_CPU_FREQ_GOV_CONSERVATIVE=m
#
# x86 CPU frequency scaling drivers
#
# CONFIG_X86_PCC_CPUFREQ is not set
CONFIG_X86_ACPI_CPUFREQ=m
# CONFIG_X86_ACPI_CPUFREQ_CPB is not set
# CONFIG_X86_POWERNOW_K8 is not set
# CONFIG_X86_SPEEDSTEP_CENTRINO is not set
# CONFIG_X86_P4_CLOCKMOD is not set
#
# shared options
#
# CONFIG_X86_SPEEDSTEP_LIB is not set
CONFIG_CPU_IDLE=y
# CONFIG_CPU_IDLE_MULTIPLE_DRIVERS is not set
CONFIG_CPU_IDLE_GOV_LADDER=y
CONFIG_CPU_IDLE_GOV_MENU=y
# CONFIG_ARCH_NEEDS_CPU_IDLE_COUPLED is not set
CONFIG_INTEL_IDLE=y
#
# Memory power savings
#
# CONFIG_I7300_IDLE is not set
#
# Bus options (PCI etc.)
#
CONFIG_PCI=y
CONFIG_PCI_DIRECT=y
CONFIG_PCI_MMCONFIG=y
CONFIG_PCI_DOMAINS=y
CONFIG_PCIEPORTBUS=y
CONFIG_PCIEAER=y
# CONFIG_PCIE_ECRC is not set
# CONFIG_PCIEAER_INJECT is not set
CONFIG_PCIEASPM=y
# CONFIG_PCIEASPM_DEBUG is not set
CONFIG_PCIEASPM_DEFAULT=y
# CONFIG_PCIEASPM_POWERSAVE is not set
# CONFIG_PCIEASPM_PERFORMANCE is not set
CONFIG_PCIE_PME=y
CONFIG_ARCH_SUPPORTS_MSI=y
CONFIG_PCI_MSI=y
# CONFIG_PCI_REALLOC_ENABLE_AUTO is not set
# CONFIG_PCI_STUB is not set
CONFIG_HT_IRQ=y
# CONFIG_PCI_IOV is not set
# CONFIG_PCI_PRI is not set
# CONFIG_PCI_PASID is not set
CONFIG_PCI_IOAPIC=y
CONFIG_PCI_LABEL=y
CONFIG_ISA_DMA_API=y
CONFIG_AMD_NB=y
# CONFIG_PCCARD is not set
# CONFIG_HOTPLUG_PCI is not set
# CONFIG_RAPIDIO is not set
#
# Executable file formats / Emulations
#
CONFIG_BINFMT_ELF=y
CONFIG_COMPAT_BINFMT_ELF=y
CONFIG_ARCH_BINFMT_ELF_RANDOMIZE_PIE=y
CONFIG_CORE_DUMP_DEFAULT_ELF_HEADERS=y
# CONFIG_HAVE_AOUT is not set
CONFIG_BINFMT_MISC=m
CONFIG_COREDUMP=y
CONFIG_IA32_EMULATION=y
CONFIG_IA32_AOUT=m
CONFIG_X86_X32=y
CONFIG_COMPAT=y
CONFIG_COMPAT_FOR_U64_ALIGNMENT=y
CONFIG_SYSVIPC_COMPAT=y
CONFIG_HAVE_TEXT_POKE_SMP=y
CONFIG_X86_DEV_DMA_OPS=y
CONFIG_NET=y
#
# Networking options
#
CONFIG_PACKET=y
# CONFIG_PACKET_DIAG is not set
CONFIG_UNIX=y
# CONFIG_UNIX_DIAG is not set
# CONFIG_XFRM_USER is not set
# CONFIG_NET_KEY is not set
CONFIG_INET=y
# CONFIG_IP_MULTICAST is not set
# CONFIG_IP_ADVANCED_ROUTER is not set
CONFIG_IP_ROUTE_CLASSID=y
# CONFIG_IP_PNP is not set
# CONFIG_NET_IPIP is not set
# CONFIG_NET_IPGRE_DEMUX is not set
# CONFIG_ARPD is not set
# CONFIG_SYN_COOKIES is not set
# CONFIG_INET_AH is not set
# CONFIG_INET_ESP is not set
# CONFIG_INET_IPCOMP is not set
# CONFIG_INET_XFRM_TUNNEL is not set
# CONFIG_INET_TUNNEL is not set
# CONFIG_INET_XFRM_MODE_TRANSPORT is not set
# CONFIG_INET_XFRM_MODE_TUNNEL is not set
# CONFIG_INET_XFRM_MODE_BEET is not set
CONFIG_INET_LRO=y
# 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=y
# CONFIG_IPV6_PRIVACY is not set
# CONFIG_IPV6_ROUTER_PREF is not set
# CONFIG_IPV6_OPTIMISTIC_DAD is not set
# CONFIG_INET6_AH is not set
# CONFIG_INET6_ESP is not set
# CONFIG_INET6_IPCOMP is not set
# CONFIG_IPV6_MIP6 is not set
# CONFIG_INET6_XFRM_TUNNEL is not set
# CONFIG_INET6_TUNNEL is not set
# CONFIG_INET6_XFRM_MODE_TRANSPORT is not set
# CONFIG_INET6_XFRM_MODE_TUNNEL is not set
# CONFIG_INET6_XFRM_MODE_BEET is not set
# CONFIG_INET6_XFRM_MODE_ROUTEOPTIMIZATION is not set
# CONFIG_IPV6_SIT is not set
# CONFIG_IPV6_TUNNEL is not set
# CONFIG_IPV6_GRE is not set
# CONFIG_IPV6_MULTIPLE_TABLES is not set
# CONFIG_IPV6_MROUTE is not set
CONFIG_NETWORK_SECMARK=y
# CONFIG_NETWORK_PHY_TIMESTAMPING is not set
CONFIG_NETFILTER=y
# CONFIG_NETFILTER_DEBUG is not set
CONFIG_NETFILTER_ADVANCED=y
CONFIG_BRIDGE_NETFILTER=y
#
# Core Netfilter Configuration
#
CONFIG_NETFILTER_NETLINK=m
CONFIG_NETFILTER_NETLINK_ACCT=m
CONFIG_NETFILTER_NETLINK_QUEUE=m
CONFIG_NETFILTER_NETLINK_LOG=m
CONFIG_NF_CONNTRACK=m
CONFIG_NF_CONNTRACK_MARK=y
CONFIG_NF_CONNTRACK_SECMARK=y
CONFIG_NF_CONNTRACK_ZONES=y
CONFIG_NF_CONNTRACK_PROCFS=y
CONFIG_NF_CONNTRACK_EVENTS=y
CONFIG_NF_CONNTRACK_TIMEOUT=y
CONFIG_NF_CONNTRACK_TIMESTAMP=y
CONFIG_NF_CT_PROTO_DCCP=m
CONFIG_NF_CT_PROTO_GRE=m
CONFIG_NF_CT_PROTO_SCTP=m
CONFIG_NF_CT_PROTO_UDPLITE=m
CONFIG_NF_CONNTRACK_AMANDA=m
CONFIG_NF_CONNTRACK_FTP=m
CONFIG_NF_CONNTRACK_H323=m
CONFIG_NF_CONNTRACK_IRC=m
CONFIG_NF_CONNTRACK_BROADCAST=m
CONFIG_NF_CONNTRACK_NETBIOS_NS=m
CONFIG_NF_CONNTRACK_SNMP=m
CONFIG_NF_CONNTRACK_PPTP=m
CONFIG_NF_CONNTRACK_SANE=m
CONFIG_NF_CONNTRACK_SIP=m
CONFIG_NF_CONNTRACK_TFTP=m
CONFIG_NF_CT_NETLINK=m
CONFIG_NF_CT_NETLINK_TIMEOUT=m
CONFIG_NF_CT_NETLINK_HELPER=m
CONFIG_NETFILTER_NETLINK_QUEUE_CT=y
CONFIG_NF_NAT=m
CONFIG_NF_NAT_NEEDED=y
CONFIG_NF_NAT_PROTO_DCCP=m
CONFIG_NF_NAT_PROTO_UDPLITE=m
CONFIG_NF_NAT_PROTO_SCTP=m
CONFIG_NF_NAT_AMANDA=m
CONFIG_NF_NAT_FTP=m
CONFIG_NF_NAT_IRC=m
CONFIG_NF_NAT_SIP=m
CONFIG_NF_NAT_TFTP=m
CONFIG_NETFILTER_TPROXY=m
CONFIG_NETFILTER_XTABLES=y
#
# Xtables combined modules
#
CONFIG_NETFILTER_XT_MARK=m
CONFIG_NETFILTER_XT_CONNMARK=m
#
# Xtables targets
#
CONFIG_NETFILTER_XT_TARGET_CHECKSUM=m
CONFIG_NETFILTER_XT_TARGET_CLASSIFY=m
CONFIG_NETFILTER_XT_TARGET_CONNMARK=m
CONFIG_NETFILTER_XT_TARGET_CONNSECMARK=m
CONFIG_NETFILTER_XT_TARGET_CT=m
CONFIG_NETFILTER_XT_TARGET_DSCP=m
CONFIG_NETFILTER_XT_TARGET_HL=m
CONFIG_NETFILTER_XT_TARGET_HMARK=m
CONFIG_NETFILTER_XT_TARGET_IDLETIMER=m
CONFIG_NETFILTER_XT_TARGET_LED=m
CONFIG_NETFILTER_XT_TARGET_LOG=m
CONFIG_NETFILTER_XT_TARGET_MARK=m
CONFIG_NETFILTER_XT_TARGET_NETMAP=m
CONFIG_NETFILTER_XT_TARGET_NFLOG=m
CONFIG_NETFILTER_XT_TARGET_NFQUEUE=m
# CONFIG_NETFILTER_XT_TARGET_NOTRACK is not set
CONFIG_NETFILTER_XT_TARGET_RATEEST=m
CONFIG_NETFILTER_XT_TARGET_REDIRECT=m
CONFIG_NETFILTER_XT_TARGET_TEE=m
CONFIG_NETFILTER_XT_TARGET_TPROXY=m
CONFIG_NETFILTER_XT_TARGET_TRACE=m
CONFIG_NETFILTER_XT_TARGET_SECMARK=m
CONFIG_NETFILTER_XT_TARGET_TCPMSS=m
CONFIG_NETFILTER_XT_TARGET_TCPOPTSTRIP=m
#
# Xtables matches
#
CONFIG_NETFILTER_XT_MATCH_ADDRTYPE=m
CONFIG_NETFILTER_XT_MATCH_CLUSTER=m
CONFIG_NETFILTER_XT_MATCH_COMMENT=m
CONFIG_NETFILTER_XT_MATCH_CONNBYTES=m
CONFIG_NETFILTER_XT_MATCH_CONNLIMIT=m
CONFIG_NETFILTER_XT_MATCH_CONNMARK=m
CONFIG_NETFILTER_XT_MATCH_CONNTRACK=m
CONFIG_NETFILTER_XT_MATCH_CPU=m
CONFIG_NETFILTER_XT_MATCH_DCCP=m
CONFIG_NETFILTER_XT_MATCH_DEVGROUP=m
CONFIG_NETFILTER_XT_MATCH_DSCP=m
CONFIG_NETFILTER_XT_MATCH_ECN=m
CONFIG_NETFILTER_XT_MATCH_ESP=m
CONFIG_NETFILTER_XT_MATCH_HASHLIMIT=m
CONFIG_NETFILTER_XT_MATCH_HELPER=m
CONFIG_NETFILTER_XT_MATCH_HL=m
CONFIG_NETFILTER_XT_MATCH_IPRANGE=m
CONFIG_NETFILTER_XT_MATCH_LENGTH=m
CONFIG_NETFILTER_XT_MATCH_LIMIT=m
CONFIG_NETFILTER_XT_MATCH_MAC=m
CONFIG_NETFILTER_XT_MATCH_MARK=m
CONFIG_NETFILTER_XT_MATCH_MULTIPORT=m
CONFIG_NETFILTER_XT_MATCH_NFACCT=m
CONFIG_NETFILTER_XT_MATCH_OSF=m
CONFIG_NETFILTER_XT_MATCH_OWNER=m
# CONFIG_NETFILTER_XT_MATCH_PHYSDEV is not set
CONFIG_NETFILTER_XT_MATCH_PKTTYPE=m
CONFIG_NETFILTER_XT_MATCH_QUOTA=m
CONFIG_NETFILTER_XT_MATCH_RATEEST=m
CONFIG_NETFILTER_XT_MATCH_REALM=m
CONFIG_NETFILTER_XT_MATCH_RECENT=m
CONFIG_NETFILTER_XT_MATCH_SCTP=m
CONFIG_NETFILTER_XT_MATCH_SOCKET=m
CONFIG_NETFILTER_XT_MATCH_STATE=m
CONFIG_NETFILTER_XT_MATCH_STATISTIC=m
CONFIG_NETFILTER_XT_MATCH_STRING=m
CONFIG_NETFILTER_XT_MATCH_TCPMSS=m
CONFIG_NETFILTER_XT_MATCH_TIME=m
CONFIG_NETFILTER_XT_MATCH_U32=m
# CONFIG_IP_SET is not set
# CONFIG_IP_VS is not set
#
# IP: Netfilter Configuration
#
CONFIG_NF_DEFRAG_IPV4=m
CONFIG_NF_CONNTRACK_IPV4=m
CONFIG_NF_CONNTRACK_PROC_COMPAT=y
# CONFIG_IP_NF_QUEUE is not set
CONFIG_IP_NF_IPTABLES=m
CONFIG_IP_NF_MATCH_AH=m
CONFIG_IP_NF_MATCH_ECN=m
CONFIG_IP_NF_MATCH_RPFILTER=m
CONFIG_IP_NF_MATCH_TTL=m
CONFIG_IP_NF_FILTER=m
CONFIG_IP_NF_TARGET_REJECT=m
CONFIG_IP_NF_TARGET_ULOG=m
CONFIG_NF_NAT_IPV4=m
CONFIG_IP_NF_TARGET_MASQUERADE=m
CONFIG_IP_NF_TARGET_NETMAP=m
CONFIG_IP_NF_TARGET_REDIRECT=m
CONFIG_NF_NAT_SNMP_BASIC=m
CONFIG_NF_NAT_PROTO_GRE=m
CONFIG_NF_NAT_PPTP=m
CONFIG_NF_NAT_H323=m
CONFIG_IP_NF_MANGLE=m
CONFIG_IP_NF_TARGET_CLUSTERIP=m
CONFIG_IP_NF_TARGET_ECN=m
CONFIG_IP_NF_TARGET_TTL=m
CONFIG_IP_NF_RAW=m
CONFIG_IP_NF_ARPTABLES=m
CONFIG_IP_NF_ARPFILTER=m
CONFIG_IP_NF_ARP_MANGLE=m
#
# IPv6: Netfilter Configuration
#
CONFIG_NF_DEFRAG_IPV6=m
# CONFIG_NF_CONNTRACK_IPV6 is not set
CONFIG_IP6_NF_IPTABLES=m
CONFIG_IP6_NF_MATCH_AH=m
CONFIG_IP6_NF_MATCH_EUI64=m
CONFIG_IP6_NF_MATCH_FRAG=m
CONFIG_IP6_NF_MATCH_OPTS=m
CONFIG_IP6_NF_MATCH_HL=m
CONFIG_IP6_NF_MATCH_IPV6HEADER=m
CONFIG_IP6_NF_MATCH_MH=m
CONFIG_IP6_NF_MATCH_RPFILTER=m
CONFIG_IP6_NF_MATCH_RT=m
CONFIG_IP6_NF_TARGET_HL=m
CONFIG_IP6_NF_FILTER=m
CONFIG_IP6_NF_TARGET_REJECT=m
CONFIG_IP6_NF_MANGLE=m
CONFIG_IP6_NF_RAW=m
# CONFIG_BRIDGE_NF_EBTABLES is not set
# CONFIG_IP_DCCP is not set
# CONFIG_IP_SCTP is not set
# CONFIG_RDS is not set
# CONFIG_TIPC is not set
# CONFIG_ATM is not set
# CONFIG_L2TP is not set
CONFIG_STP=m
CONFIG_BRIDGE=m
CONFIG_BRIDGE_IGMP_SNOOPING=y
CONFIG_HAVE_NET_DSA=y
# CONFIG_VLAN_8021Q is not set
# CONFIG_DECNET is not set
CONFIG_LLC=m
# CONFIG_LLC2 is not set
# CONFIG_IPX is not set
# CONFIG_ATALK is not set
# CONFIG_X25 is not set
# CONFIG_LAPB is not set
# CONFIG_WAN_ROUTER is not set
# CONFIG_PHONET is not set
# CONFIG_IEEE802154 is not set
# CONFIG_NET_SCHED is not set
# CONFIG_DCB is not set
# CONFIG_BATMAN_ADV is not set
# CONFIG_OPENVSWITCH is not set
CONFIG_RPS=y
CONFIG_RFS_ACCEL=y
CONFIG_XPS=y
# CONFIG_NETPRIO_CGROUP is not set
CONFIG_BQL=y
CONFIG_BPF_JIT=y
#
# Network testing
#
# CONFIG_NET_PKTGEN is not set
# CONFIG_HAMRADIO is not set
# CONFIG_CAN is not set
# CONFIG_IRDA is not set
# CONFIG_BT is not set
# CONFIG_AF_RXRPC is not set
CONFIG_WIRELESS=y
CONFIG_CFG80211=y
# CONFIG_NL80211_TESTMODE is not set
# CONFIG_CFG80211_DEVELOPER_WARNINGS is not set
# CONFIG_CFG80211_REG_DEBUG is not set
CONFIG_CFG80211_DEFAULT_PS=y
# CONFIG_CFG80211_INTERNAL_REGDB is not set
# CONFIG_CFG80211_WEXT is not set
# CONFIG_LIB80211 is not set
CONFIG_MAC80211=y
CONFIG_MAC80211_HAS_RC=y
CONFIG_MAC80211_RC_MINSTREL=y
CONFIG_MAC80211_RC_MINSTREL_HT=y
CONFIG_MAC80211_RC_DEFAULT_MINSTREL=y
CONFIG_MAC80211_RC_DEFAULT="minstrel_ht"
# CONFIG_MAC80211_MESH is not set
CONFIG_MAC80211_LEDS=y
# CONFIG_MAC80211_MESSAGE_TRACING is not set
# CONFIG_MAC80211_DEBUG_MENU is not set
# CONFIG_WIMAX is not set
CONFIG_RFKILL=y
CONFIG_RFKILL_LEDS=y
CONFIG_RFKILL_INPUT=y
# CONFIG_NET_9P is not set
# CONFIG_CAIF is not set
# CONFIG_CEPH_LIB is not set
# CONFIG_NFC is not set
CONFIG_HAVE_BPF_JIT=y
#
# Device Drivers
#
#
# Generic Driver Options
#
CONFIG_UEVENT_HELPER_PATH=""
CONFIG_DEVTMPFS=y
# CONFIG_DEVTMPFS_MOUNT is not set
CONFIG_STANDALONE=y
CONFIG_PREVENT_FIRMWARE_BUILD=y
CONFIG_FW_LOADER=y
CONFIG_FIRMWARE_IN_KERNEL=y
CONFIG_EXTRA_FIRMWARE="radeon/BARTS_mc.bin radeon/BARTS_me.bin radeon/BARTS_pfp.bin radeon/BTC_rlc.bin"
CONFIG_EXTRA_FIRMWARE_DIR="/lib/firmware"
# CONFIG_SYS_HYPERVISOR is not set
# CONFIG_GENERIC_CPU_DEVICES is not set
CONFIG_DMA_SHARED_BUFFER=y
#
# Bus devices
#
CONFIG_CONNECTOR=y
CONFIG_PROC_EVENTS=y
# CONFIG_MTD is not set
# CONFIG_PARPORT is not set
CONFIG_PNP=y
# CONFIG_PNP_DEBUG_MESSAGES is not set
#
# Protocols
#
CONFIG_PNPACPI=y
CONFIG_BLK_DEV=y
# CONFIG_BLK_DEV_FD 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 is not set
# CONFIG_BLK_DEV_UMEM is not set
# CONFIG_BLK_DEV_COW_COMMON is not set
CONFIG_BLK_DEV_LOOP=m
CONFIG_BLK_DEV_LOOP_MIN_COUNT=8
# CONFIG_BLK_DEV_CRYPTOLOOP is not set
# CONFIG_BLK_DEV_DRBD is not set
# CONFIG_BLK_DEV_NBD is not set
# CONFIG_BLK_DEV_NVME is not set
# CONFIG_BLK_DEV_SX8 is not set
# CONFIG_BLK_DEV_RAM is not set
CONFIG_CDROM_PKTCDVD=m
CONFIG_CDROM_PKTCDVD_BUFFERS=8
# CONFIG_CDROM_PKTCDVD_WCACHE is not set
# CONFIG_ATA_OVER_ETH is not set
# CONFIG_BLK_DEV_HD is not set
# CONFIG_BLK_DEV_RBD is not set
#
# Misc devices
#
# CONFIG_SENSORS_LIS3LV02D is not set
# CONFIG_AD525X_DPOT is not set
# CONFIG_IBM_ASM is not set
# CONFIG_PHANTOM is not set
# CONFIG_INTEL_MID_PTI is not set
# CONFIG_SGI_IOC4 is not set
# CONFIG_TIFM_CORE is not set
# CONFIG_ICS932S401 is not set
# CONFIG_ENCLOSURE_SERVICES is not set
# CONFIG_HP_ILO is not set
# CONFIG_APDS9802ALS is not set
# CONFIG_ISL29003 is not set
# CONFIG_ISL29020 is not set
# CONFIG_SENSORS_TSL2550 is not set
# CONFIG_SENSORS_BH1780 is not set
# CONFIG_SENSORS_BH1770 is not set
# CONFIG_SENSORS_APDS990X is not set
# CONFIG_HMC6352 is not set
# CONFIG_DS1682 is not set
# CONFIG_VMWARE_BALLOON is not set
# CONFIG_BMP085_I2C is not set
# CONFIG_PCH_PHUB is not set
# CONFIG_USB_SWITCH_FSA9480 is not set
# CONFIG_C2PORT is not set
#
# EEPROM support
#
# CONFIG_EEPROM_AT24 is not set
# CONFIG_EEPROM_LEGACY is not set
# CONFIG_EEPROM_MAX6875 is not set
# CONFIG_EEPROM_93CX6 is not set
# CONFIG_CB710_CORE is not set
#
# Texas Instruments shared transport line discipline
#
# CONFIG_SENSORS_LIS3_I2C is not set
#
# Altera FPGA firmware download module
#
# CONFIG_ALTERA_STAPL is not set
CONFIG_HAVE_IDE=y
# CONFIG_IDE is not set
#
# SCSI device support
#
CONFIG_SCSI_MOD=y
# CONFIG_RAID_ATTRS is not set
CONFIG_SCSI=y
CONFIG_SCSI_DMA=y
# CONFIG_SCSI_TGT is not set
# CONFIG_SCSI_NETLINK is not set
CONFIG_SCSI_PROC_FS=y
#
# SCSI support type (disk, tape, CD-ROM)
#
CONFIG_BLK_DEV_SD=y
# CONFIG_CHR_DEV_ST is not set
# CONFIG_CHR_DEV_OSST is not set
CONFIG_BLK_DEV_SR=m
# CONFIG_BLK_DEV_SR_VENDOR is not set
CONFIG_CHR_DEV_SG=m
# CONFIG_CHR_DEV_SCH is not set
CONFIG_SCSI_MULTI_LUN=y
# CONFIG_SCSI_CONSTANTS is not set
# CONFIG_SCSI_LOGGING is not set
CONFIG_SCSI_SCAN_ASYNC=y
#
# SCSI Transports
#
# CONFIG_SCSI_SPI_ATTRS is not set
# CONFIG_SCSI_FC_ATTRS is not set
# CONFIG_SCSI_ISCSI_ATTRS is not set
# CONFIG_SCSI_SAS_ATTRS is not set
# CONFIG_SCSI_SAS_LIBSAS is not set
# CONFIG_SCSI_SRP_ATTRS is not set
# CONFIG_SCSI_LOWLEVEL is not set
# CONFIG_SCSI_DH is not set
# CONFIG_SCSI_OSD_INITIATOR is not set
CONFIG_ATA=y
# CONFIG_ATA_NONSTANDARD is not set
# CONFIG_ATA_VERBOSE_ERROR is not set
CONFIG_ATA_ACPI=y
# CONFIG_SATA_PMP is not set
#
# Controllers with non-SFF native interface
#
CONFIG_SATA_AHCI=y
# CONFIG_SATA_AHCI_PLATFORM is not set
# CONFIG_SATA_INIC162X is not set
# CONFIG_SATA_ACARD_AHCI is not set
# CONFIG_SATA_SIL24 is not set
# CONFIG_ATA_SFF is not set
# CONFIG_MD is not set
# CONFIG_TARGET_CORE is not set
# CONFIG_FUSION is not set
#
# IEEE 1394 (FireWire) support
#
# CONFIG_FIREWIRE is not set
# CONFIG_FIREWIRE_NOSY is not set
# CONFIG_I2O is not set
# CONFIG_MACINTOSH_DRIVERS is not set
CONFIG_NETDEVICES=y
CONFIG_NET_CORE=y
# CONFIG_BONDING is not set
CONFIG_DUMMY=y
# CONFIG_EQUALIZER is not set
# CONFIG_NET_FC is not set
CONFIG_MII=y
# CONFIG_NET_TEAM is not set
# CONFIG_MACVLAN is not set
# CONFIG_VXLAN 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_ARCNET is not set
#
# CAIF transport drivers
#
#
# Distributed Switch Architecture drivers
#
# CONFIG_NET_DSA_MV88E6XXX is not set
# CONFIG_NET_DSA_MV88E6060 is not set
# CONFIG_NET_DSA_MV88E6XXX_NEED_PPU is not set
# CONFIG_NET_DSA_MV88E6131 is not set
# CONFIG_NET_DSA_MV88E6123_61_65 is not set
CONFIG_ETHERNET=y
# CONFIG_NET_VENDOR_3COM is not set
# CONFIG_NET_VENDOR_ADAPTEC 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_CADENCE is not set
# CONFIG_NET_VENDOR_BROADCOM is not set
# CONFIG_NET_VENDOR_BROCADE is not set
# CONFIG_NET_CALXEDA_XGMAC is not set
# CONFIG_NET_VENDOR_CHELSIO is not set
# CONFIG_NET_VENDOR_CISCO is not set
# CONFIG_DNET is not set
# CONFIG_NET_VENDOR_DEC is not set
# CONFIG_NET_VENDOR_DLINK is not set
# CONFIG_NET_VENDOR_EMULEX is not set
# CONFIG_NET_VENDOR_EXAR is not set
# CONFIG_NET_VENDOR_HP is not set
# CONFIG_NET_VENDOR_INTEL is not set
# CONFIG_IP1000 is not set
# CONFIG_JME is not set
# CONFIG_NET_VENDOR_MARVELL is not set
# CONFIG_NET_VENDOR_MELLANOX is not set
# CONFIG_NET_VENDOR_MICREL is not set
# CONFIG_NET_VENDOR_MYRI is not set
# CONFIG_FEALNX is not set
# CONFIG_NET_VENDOR_NATSEMI is not set
# CONFIG_NET_VENDOR_NVIDIA is not set
# CONFIG_NET_VENDOR_OKI is not set
# CONFIG_ETHOC is not set
# CONFIG_NET_PACKET_ENGINE is not set
# CONFIG_NET_VENDOR_QLOGIC is not set
# CONFIG_NET_VENDOR_REALTEK is not set
# CONFIG_NET_VENDOR_RDC 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 is not set
# CONFIG_NET_VENDOR_TEHUTI is not set
# CONFIG_NET_VENDOR_TI is not set
# CONFIG_NET_VENDOR_VIA is not set
# CONFIG_NET_VENDOR_WIZNET is not set
# CONFIG_FDDI is not set
# CONFIG_HIPPI is not set
# CONFIG_NET_SB1000 is not set
# CONFIG_PHYLIB is not set
# CONFIG_PPP is not set
# CONFIG_SLIP is not set
#
# USB Network Adapters
#
# CONFIG_USB_CATC is not set
# CONFIG_USB_KAWETH is not set
# CONFIG_USB_PEGASUS is not set
# CONFIG_USB_RTL8150 is not set
# CONFIG_USB_USBNET is not set
# CONFIG_USB_HSO is not set
# CONFIG_USB_IPHETH is not set
CONFIG_WLAN=y
# CONFIG_LIBERTAS_THINFIRM is not set
# CONFIG_AIRO is not set
# CONFIG_ATMEL is not set
# CONFIG_AT76C50X_USB is not set
# CONFIG_PRISM54 is not set
# CONFIG_USB_ZD1201 is not set
# CONFIG_USB_NET_RNDIS_WLAN is not set
# CONFIG_RTL8180 is not set
# CONFIG_RTL8187 is not set
# CONFIG_ADM8211 is not set
# CONFIG_MAC80211_HWSIM is not set
# CONFIG_MWL8K is not set
CONFIG_ATH_COMMON=m
CONFIG_ATH_CARDS=m
# CONFIG_ATH_DEBUG is not set
# CONFIG_ATH5K is not set
# CONFIG_ATH5K_PCI is not set
CONFIG_ATH9K_HW=m
CONFIG_ATH9K_COMMON=m
# CONFIG_ATH9K_BTCOEX_SUPPORT is not set
# CONFIG_ATH9K is not set
CONFIG_ATH9K_HTC=m
# CONFIG_CARL9170 is not set
# CONFIG_ATH6KL is not set
# CONFIG_AR5523 is not set
# CONFIG_WIL6210 is not set
# CONFIG_B43 is not set
# CONFIG_B43LEGACY is not set
# CONFIG_BRCMFMAC is not set
# CONFIG_HOSTAP is not set
# CONFIG_IPW2100 is not set
# CONFIG_IWLWIFI is not set
# CONFIG_IWL4965 is not set
# CONFIG_IWL3945 is not set
# CONFIG_LIBERTAS is not set
# CONFIG_P54_COMMON is not set
# CONFIG_RT2X00 is not set
# CONFIG_RTL8192CE is not set
# CONFIG_RTL8192SE is not set
# CONFIG_RTL8192DE is not set
# CONFIG_RTL8723AE is not set
# CONFIG_RTL8192CU is not set
# CONFIG_WL_TI is not set
# CONFIG_ZD1211RW is not set
# CONFIG_MWIFIEX is not set
#
# Enable WiMAX (Networking options) to see the WiMAX drivers
#
# CONFIG_WAN is not set
# CONFIG_VMXNET3 is not set
# CONFIG_ISDN is not set
#
# Input device support
#
CONFIG_INPUT=y
# CONFIG_INPUT_FF_MEMLESS is not set
# CONFIG_INPUT_POLLDEV is not set
# CONFIG_INPUT_SPARSEKMAP is not set
# CONFIG_INPUT_MATRIXKMAP is not set
#
# Userland interfaces
#
CONFIG_INPUT_MOUSEDEV=y
CONFIG_INPUT_MOUSEDEV_PSAUX=y
CONFIG_INPUT_MOUSEDEV_SCREEN_X=1024
CONFIG_INPUT_MOUSEDEV_SCREEN_Y=768
# CONFIG_INPUT_JOYDEV is not set
CONFIG_INPUT_EVDEV=y
# CONFIG_INPUT_EVBUG is not set
#
# Input Device Drivers
#
CONFIG_INPUT_KEYBOARD=y
# CONFIG_KEYBOARD_ADP5588 is not set
# CONFIG_KEYBOARD_ADP5589 is not set
CONFIG_KEYBOARD_ATKBD=y
# CONFIG_KEYBOARD_QT1070 is not set
# CONFIG_KEYBOARD_QT2160 is not set
# CONFIG_KEYBOARD_LKKBD is not set
# CONFIG_KEYBOARD_TCA6416 is not set
# CONFIG_KEYBOARD_TCA8418 is not set
# CONFIG_KEYBOARD_LM8323 is not set
# CONFIG_KEYBOARD_LM8333 is not set
# CONFIG_KEYBOARD_MAX7359 is not set
# CONFIG_KEYBOARD_MCS is not set
# CONFIG_KEYBOARD_MPR121 is not set
# CONFIG_KEYBOARD_NEWTON is not set
# CONFIG_KEYBOARD_OPENCORES is not set
# CONFIG_KEYBOARD_STOWAWAY is not set
# CONFIG_KEYBOARD_SUNKBD is not set
# CONFIG_KEYBOARD_XTKBD is not set
CONFIG_INPUT_MOUSE=y
CONFIG_MOUSE_PS2=m
CONFIG_MOUSE_PS2_ALPS=y
CONFIG_MOUSE_PS2_LOGIPS2PP=y
CONFIG_MOUSE_PS2_SYNAPTICS=y
CONFIG_MOUSE_PS2_LIFEBOOK=y
CONFIG_MOUSE_PS2_TRACKPOINT=y
# CONFIG_MOUSE_PS2_ELANTECH is not set
# CONFIG_MOUSE_PS2_SENTELIC is not set
# CONFIG_MOUSE_PS2_TOUCHKIT is not set
# CONFIG_MOUSE_SERIAL is not set
# CONFIG_MOUSE_APPLETOUCH is not set
# CONFIG_MOUSE_BCM5974 is not set
# CONFIG_MOUSE_VSXXXAA is not set
# CONFIG_MOUSE_SYNAPTICS_I2C is not set
# CONFIG_MOUSE_SYNAPTICS_USB is not set
# CONFIG_INPUT_JOYSTICK is not set
CONFIG_INPUT_TABLET=y
# CONFIG_TABLET_USB_ACECAD is not set
# CONFIG_TABLET_USB_AIPTEK is not set
# CONFIG_TABLET_USB_GTCO is not set
# CONFIG_TABLET_USB_HANWANG is not set
# CONFIG_TABLET_USB_KBTAB is not set
CONFIG_TABLET_USB_WACOM=m
# CONFIG_INPUT_TOUCHSCREEN is not set
# CONFIG_INPUT_MISC is not set
#
# Hardware I/O ports
#
CONFIG_SERIO=y
CONFIG_SERIO_I8042=y
# CONFIG_SERIO_SERPORT is not set
# CONFIG_SERIO_CT82C710 is not set
# CONFIG_SERIO_PCIPS2 is not set
CONFIG_SERIO_LIBPS2=y
# CONFIG_SERIO_RAW is not set
# CONFIG_SERIO_ALTERA_PS2 is not set
# CONFIG_SERIO_PS2MULT is not set
# CONFIG_SERIO_ARC_PS2 is not set
# CONFIG_GAMEPORT is not set
#
# Character devices
#
CONFIG_VT=y
CONFIG_CONSOLE_TRANSLATIONS=y
CONFIG_VT_CONSOLE=y
CONFIG_VT_CONSOLE_SLEEP=y
CONFIG_HW_CONSOLE=y
# CONFIG_VT_HW_CONSOLE_BINDING is not set
CONFIG_UNIX98_PTYS=y
# CONFIG_DEVPTS_MULTIPLE_INSTANCES is not set
CONFIG_LEGACY_PTYS=y
CONFIG_LEGACY_PTY_COUNT=64
# CONFIG_SERIAL_NONSTANDARD is not set
# CONFIG_NOZOMI is not set
# CONFIG_N_GSM is not set
# CONFIG_TRACE_SINK is not set
# CONFIG_DEVKMEM is not set
#
# Serial drivers
#
# CONFIG_SERIAL_8250 is not set
CONFIG_FIX_EARLYCON_MEM=y
#
# Non-8250 serial port support
#
# CONFIG_SERIAL_MFD_HSU is not set
# CONFIG_SERIAL_JSM is not set
# CONFIG_SERIAL_SCCNXP is not set
# CONFIG_SERIAL_TIMBERDALE is not set
# CONFIG_SERIAL_ALTERA_JTAGUART is not set
# CONFIG_SERIAL_ALTERA_UART is not set
# CONFIG_SERIAL_PCH_UART is not set
# CONFIG_SERIAL_ARC is not set
# CONFIG_IPMI_HANDLER is not set
# CONFIG_HW_RANDOM is not set
# CONFIG_NVRAM is not set
# CONFIG_R3964 is not set
# CONFIG_APPLICOM is not set
# CONFIG_MWAVE is not set
# CONFIG_RAW_DRIVER is not set
CONFIG_HPET=y
# CONFIG_HPET_MMAP is not set
# CONFIG_HANGCHECK_TIMER is not set
# CONFIG_TCG_TPM is not set
# CONFIG_TELCLOCK is not set
CONFIG_DEVPORT=y
CONFIG_I2C=y
CONFIG_I2C_BOARDINFO=y
CONFIG_I2C_COMPAT=y
CONFIG_I2C_CHARDEV=y
# CONFIG_I2C_MUX is not set
CONFIG_I2C_HELPER_AUTO=y
CONFIG_I2C_ALGOBIT=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 is not set
# CONFIG_I2C_AMD8111 is not set
# CONFIG_I2C_I801 is not set
# CONFIG_I2C_ISCH is not set
# CONFIG_I2C_PIIX4 is not set
# CONFIG_I2C_NFORCE2 is not set
# CONFIG_I2C_SIS5595 is not set
# CONFIG_I2C_SIS630 is not set
# 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_INTEL_MID is not set
# CONFIG_I2C_OCORES is not set
# CONFIG_I2C_PCA_PLATFORM is not set
# CONFIG_I2C_PXA_PCI is not set
# CONFIG_I2C_SIMTEC is not set
# CONFIG_I2C_XILINX is not set
#
# External I2C/SMBus adapter drivers
#
# CONFIG_I2C_DIOLAN_U2C is not set
# CONFIG_I2C_PARPORT_LIGHT is not set
# CONFIG_I2C_TAOS_EVM is not set
# CONFIG_I2C_TINY_USB is not set
#
# Other I2C/SMBus bus drivers
#
# CONFIG_I2C_STUB is not set
# CONFIG_I2C_DEBUG_CORE is not set
# CONFIG_I2C_DEBUG_ALGO is not set
# CONFIG_I2C_DEBUG_BUS is not set
# CONFIG_SPI is not set
# CONFIG_HSI is not set
#
# PPS support
#
# CONFIG_PPS is not set
#
# PPS generators support
#
#
# PTP clock support
#
# CONFIG_PTP_1588_CLOCK is not set
#
# Enable PHYLIB and NETWORK_PHY_TIMESTAMPING to see the additional clocks.
#
# CONFIG_PTP_1588_CLOCK_PCH is not set
CONFIG_ARCH_WANT_OPTIONAL_GPIOLIB=y
# CONFIG_GPIOLIB is not set
# CONFIG_W1 is not set
CONFIG_POWER_SUPPLY=y
# CONFIG_POWER_SUPPLY_DEBUG is not set
# CONFIG_PDA_POWER is not set
# CONFIG_TEST_POWER is not set
# CONFIG_BATTERY_DS2780 is not set
# CONFIG_BATTERY_DS2781 is not set
# CONFIG_BATTERY_DS2782 is not set
# CONFIG_BATTERY_SBS is not set
# CONFIG_BATTERY_BQ27x00 is not set
# CONFIG_BATTERY_MAX17040 is not set
# CONFIG_BATTERY_MAX17042 is not set
# CONFIG_CHARGER_MAX8903 is not set
# CONFIG_CHARGER_LP8727 is not set
# CONFIG_CHARGER_BQ2415X is not set
# CONFIG_CHARGER_SMB347 is not set
# CONFIG_POWER_RESET is not set
# CONFIG_POWER_AVS is not set
CONFIG_HWMON=y
CONFIG_HWMON_VID=m
# CONFIG_HWMON_DEBUG_CHIP is not set
#
# Native drivers
#
# CONFIG_SENSORS_ABITUGURU is not set
# CONFIG_SENSORS_ABITUGURU3 is not set
# CONFIG_SENSORS_AD7414 is not set
# CONFIG_SENSORS_AD7418 is not set
# CONFIG_SENSORS_ADM1021 is not set
# CONFIG_SENSORS_ADM1025 is not set
# CONFIG_SENSORS_ADM1026 is not set
# CONFIG_SENSORS_ADM1029 is not set
# CONFIG_SENSORS_ADM1031 is not set
# CONFIG_SENSORS_ADM9240 is not set
# CONFIG_SENSORS_ADT7410 is not set
# CONFIG_SENSORS_ADT7411 is not set
# CONFIG_SENSORS_ADT7462 is not set
# CONFIG_SENSORS_ADT7470 is not set
# CONFIG_SENSORS_ADT7475 is not set
# CONFIG_SENSORS_ASC7621 is not set
# CONFIG_SENSORS_K8TEMP is not set
# CONFIG_SENSORS_K10TEMP is not set
# CONFIG_SENSORS_FAM15H_POWER is not set
# CONFIG_SENSORS_ASB100 is not set
# CONFIG_SENSORS_ATXP1 is not set
# CONFIG_SENSORS_DS620 is not set
# 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 is not set
# CONFIG_SENSORS_FSCHMD is not set
# CONFIG_SENSORS_G760A is not set
# CONFIG_SENSORS_GL518SM is not set
# CONFIG_SENSORS_GL520SM is not set
# CONFIG_SENSORS_HIH6130 is not set
CONFIG_SENSORS_CORETEMP=m
CONFIG_SENSORS_IT87=m
# CONFIG_SENSORS_JC42 is not set
# CONFIG_SENSORS_LINEAGE is not set
# CONFIG_SENSORS_LM63 is not set
# CONFIG_SENSORS_LM73 is not set
# CONFIG_SENSORS_LM75 is not set
# CONFIG_SENSORS_LM77 is not set
# CONFIG_SENSORS_LM78 is not set
# CONFIG_SENSORS_LM80 is not set
# CONFIG_SENSORS_LM83 is not set
# CONFIG_SENSORS_LM85 is not set
# CONFIG_SENSORS_LM87 is not set
# CONFIG_SENSORS_LM90 is not set
# CONFIG_SENSORS_LM92 is not set
# CONFIG_SENSORS_LM93 is not set
# CONFIG_SENSORS_LTC4151 is not set
# CONFIG_SENSORS_LTC4215 is not set
# CONFIG_SENSORS_LTC4245 is not set
# CONFIG_SENSORS_LTC4261 is not set
# CONFIG_SENSORS_LM95241 is not set
# CONFIG_SENSORS_LM95245 is not set
# CONFIG_SENSORS_MAX16065 is not set
# CONFIG_SENSORS_MAX1619 is not set
# CONFIG_SENSORS_MAX1668 is not set
# CONFIG_SENSORS_MAX197 is not set
# CONFIG_SENSORS_MAX6639 is not set
# CONFIG_SENSORS_MAX6642 is not set
# CONFIG_SENSORS_MAX6650 is not set
# CONFIG_SENSORS_MCP3021 is not set
# CONFIG_SENSORS_NTC_THERMISTOR is not set
# CONFIG_SENSORS_PC87360 is not set
# CONFIG_SENSORS_PC87427 is not set
# CONFIG_SENSORS_PCF8591 is not set
# CONFIG_PMBUS is not set
# CONFIG_SENSORS_SHT21 is not set
# CONFIG_SENSORS_SIS5595 is not set
# CONFIG_SENSORS_SMM665 is not set
# CONFIG_SENSORS_DME1737 is not set
# CONFIG_SENSORS_EMC1403 is not set
# CONFIG_SENSORS_EMC2103 is not set
# CONFIG_SENSORS_EMC6W201 is not set
# CONFIG_SENSORS_SMSC47M1 is not set
# CONFIG_SENSORS_SMSC47M192 is not set
# CONFIG_SENSORS_SMSC47B397 is not set
# CONFIG_SENSORS_SCH56XX_COMMON is not set
# CONFIG_SENSORS_ADS1015 is not set
# CONFIG_SENSORS_ADS7828 is not set
# CONFIG_SENSORS_AMC6821 is not set
# CONFIG_SENSORS_INA2XX is not set
# CONFIG_SENSORS_THMC50 is not set
# CONFIG_SENSORS_TMP102 is not set
# CONFIG_SENSORS_TMP401 is not set
# CONFIG_SENSORS_TMP421 is not set
# CONFIG_SENSORS_VIA_CPUTEMP is not set
# CONFIG_SENSORS_VIA686A is not set
# CONFIG_SENSORS_VT1211 is not set
# CONFIG_SENSORS_VT8231 is not set
# CONFIG_SENSORS_W83781D is not set
# 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 is not set
# CONFIG_SENSORS_W83L786NG is not set
# CONFIG_SENSORS_W83627HF is not set
# CONFIG_SENSORS_W83627EHF is not set
# CONFIG_SENSORS_APPLESMC is not set
#
# ACPI drivers
#
# CONFIG_SENSORS_ACPI_POWER is not set
# CONFIG_SENSORS_ATK0110 is not set
CONFIG_THERMAL=y
CONFIG_THERMAL_HWMON=y
CONFIG_THERMAL_DEFAULT_GOV_STEP_WISE=y
# CONFIG_THERMAL_DEFAULT_GOV_FAIR_SHARE is not set
# CONFIG_THERMAL_DEFAULT_GOV_USER_SPACE is not set
# CONFIG_FAIR_SHARE is not set
CONFIG_STEP_WISE=y
# CONFIG_USER_SPACE is not set
# CONFIG_CPU_THERMAL is not set
# CONFIG_WATCHDOG is not set
CONFIG_SSB_POSSIBLE=y
#
# Sonics Silicon Backplane
#
# CONFIG_SSB is not set
CONFIG_BCMA_POSSIBLE=y
#
# Broadcom specific AMBA
#
# CONFIG_BCMA is not set
#
# Multifunction device drivers
#
# CONFIG_MFD_CORE is not set
# CONFIG_MFD_88PM860X is not set
# CONFIG_MFD_88PM800 is not set
# CONFIG_MFD_88PM805 is not set
# CONFIG_MFD_SM501 is not set
# CONFIG_MFD_RTSX_PCI is not set
# CONFIG_MFD_TI_AM335X_TSCADC is not set
# CONFIG_HTC_PASIC3 is not set
# CONFIG_MFD_LM3533 is not set
# CONFIG_TPS6105X is not set
# CONFIG_TPS6507X is not set
# CONFIG_MFD_TPS65217 is not set
# CONFIG_MFD_TPS6586X is not set
# CONFIG_MFD_TPS80031 is not set
# CONFIG_TWL4030_CORE is not set
# CONFIG_TWL6040_CORE is not set
# CONFIG_MFD_STMPE is not set
# CONFIG_MFD_TC3589X is not set
# CONFIG_MFD_TMIO is not set
# CONFIG_MFD_SMSC is not set
# CONFIG_PMIC_DA903X is not set
# CONFIG_MFD_DA9052_I2C is not set
# CONFIG_MFD_DA9055 is not set
# CONFIG_PMIC_ADP5520 is not set
# CONFIG_MFD_LP8788 is not set
# CONFIG_MFD_MAX77686 is not set
# CONFIG_MFD_MAX77693 is not set
# CONFIG_MFD_MAX8907 is not set
# CONFIG_MFD_MAX8925 is not set
# CONFIG_MFD_MAX8997 is not set
# CONFIG_MFD_MAX8998 is not set
# CONFIG_MFD_SEC_CORE is not set
# CONFIG_MFD_ARIZONA_I2C is not set
# CONFIG_MFD_WM8400 is not set
# CONFIG_MFD_WM831X_I2C is not set
# CONFIG_MFD_WM8350_I2C is not set
# CONFIG_MFD_WM8994 is not set
# CONFIG_MFD_PCF50633 is not set
# CONFIG_MFD_MC13XXX_I2C is not set
# CONFIG_ABX500_CORE is not set
# CONFIG_MFD_CS5535 is not set
# CONFIG_LPC_SCH is not set
# CONFIG_LPC_ICH is not set
# CONFIG_MFD_RDC321X is not set
# CONFIG_MFD_JANZ_CMODIO is not set
# CONFIG_MFD_VX855 is not set
# CONFIG_MFD_WL1273_CORE is not set
# CONFIG_MFD_TPS65090 is not set
# CONFIG_MFD_RC5T583 is not set
# CONFIG_MFD_PALMAS is not set
# CONFIG_MFD_VIPERBOARD is not set
# CONFIG_MFD_RETU is not set
# CONFIG_MFD_AS3711 is not set
# CONFIG_REGULATOR is not set
CONFIG_MEDIA_SUPPORT=y
#
# Multimedia core support
#
CONFIG_MEDIA_CAMERA_SUPPORT=y
# CONFIG_MEDIA_ANALOG_TV_SUPPORT is not set
# CONFIG_MEDIA_DIGITAL_TV_SUPPORT is not set
# CONFIG_MEDIA_RADIO_SUPPORT is not set
# CONFIG_MEDIA_RC_SUPPORT is not set
# CONFIG_MEDIA_CONTROLLER is not set
CONFIG_VIDEO_DEV=y
CONFIG_VIDEO_V4L2=y
# CONFIG_VIDEO_ADV_DEBUG is not set
# CONFIG_VIDEO_FIXED_MINOR_RANGES is not set
CONFIG_VIDEOBUF2_CORE=m
CONFIG_VIDEOBUF2_MEMOPS=m
CONFIG_VIDEOBUF2_VMALLOC=m
#
# Media drivers
#
CONFIG_MEDIA_USB_SUPPORT=y
#
# Webcam devices
#
CONFIG_USB_VIDEO_CLASS=m
CONFIG_USB_VIDEO_CLASS_INPUT_EVDEV=y
CONFIG_USB_GSPCA=m
# CONFIG_USB_M5602 is not set
# CONFIG_USB_STV06XX is not set
# CONFIG_USB_GL860 is not set
# CONFIG_USB_GSPCA_BENQ is not set
# CONFIG_USB_GSPCA_CONEX is not set
# CONFIG_USB_GSPCA_CPIA1 is not set
# CONFIG_USB_GSPCA_ETOMS is not set
# CONFIG_USB_GSPCA_FINEPIX is not set
# CONFIG_USB_GSPCA_JEILINJ is not set
# CONFIG_USB_GSPCA_JL2005BCD is not set
# CONFIG_USB_GSPCA_KINECT is not set
# CONFIG_USB_GSPCA_KONICA is not set
# CONFIG_USB_GSPCA_MARS is not set
# CONFIG_USB_GSPCA_MR97310A is not set
# CONFIG_USB_GSPCA_NW80X is not set
# CONFIG_USB_GSPCA_OV519 is not set
# CONFIG_USB_GSPCA_OV534 is not set
# CONFIG_USB_GSPCA_OV534_9 is not set
# CONFIG_USB_GSPCA_PAC207 is not set
# CONFIG_USB_GSPCA_PAC7302 is not set
# CONFIG_USB_GSPCA_PAC7311 is not set
# CONFIG_USB_GSPCA_SE401 is not set
# CONFIG_USB_GSPCA_SN9C2028 is not set
# CONFIG_USB_GSPCA_SN9C20X is not set
# CONFIG_USB_GSPCA_SONIXB is not set
# CONFIG_USB_GSPCA_SONIXJ is not set
# CONFIG_USB_GSPCA_SPCA500 is not set
# CONFIG_USB_GSPCA_SPCA501 is not set
# CONFIG_USB_GSPCA_SPCA505 is not set
# CONFIG_USB_GSPCA_SPCA506 is not set
# CONFIG_USB_GSPCA_SPCA508 is not set
# CONFIG_USB_GSPCA_SPCA561 is not set
# CONFIG_USB_GSPCA_SPCA1528 is not set
# CONFIG_USB_GSPCA_SQ905 is not set
# CONFIG_USB_GSPCA_SQ905C is not set
# CONFIG_USB_GSPCA_SQ930X is not set
# CONFIG_USB_GSPCA_STK014 is not set
# CONFIG_USB_GSPCA_STV0680 is not set
# CONFIG_USB_GSPCA_SUNPLUS is not set
# CONFIG_USB_GSPCA_T613 is not set
# CONFIG_USB_GSPCA_TOPRO is not set
# CONFIG_USB_GSPCA_TV8532 is not set
# CONFIG_USB_GSPCA_VC032X is not set
# CONFIG_USB_GSPCA_VICAM is not set
# CONFIG_USB_GSPCA_XIRLINK_CIT is not set
# CONFIG_USB_GSPCA_ZC3XX is not set
# CONFIG_USB_PWC is not set
# CONFIG_VIDEO_CPIA2 is not set
# CONFIG_USB_ZR364XX is not set
# CONFIG_USB_STKWEBCAM is not set
# CONFIG_USB_S2255 is not set
# CONFIG_USB_SN9C102 is not set
#
# Webcam, TV (analog/digital) USB devices
#
# CONFIG_VIDEO_EM28XX is not set
# CONFIG_MEDIA_PCI_SUPPORT is not set
# CONFIG_V4L_PLATFORM_DRIVERS is not set
# CONFIG_V4L_MEM2MEM_DRIVERS is not set
# CONFIG_V4L_TEST_DRIVERS is not set
#
# Supported MMC/SDIO adapters
#
CONFIG_MEDIA_SUBDRV_AUTOSELECT=y
#
# Media ancillary drivers (tuners, sensors, i2c, frontends)
#
#
# Audio decoders, processors and mixers
#
#
# RDS decoders
#
#
# Video decoders
#
#
# Video and audio decoders
#
#
# MPEG video encoders
#
#
# Video encoders
#
#
# Camera sensor devices
#
#
# Flash devices
#
#
# Video improvement chips
#
#
# Miscelaneous helper chips
#
#
# Sensors used on soc_camera driver
#
#
# Tools to develop new frontends
#
# CONFIG_DVB_DUMMY_FE is not set
#
# Graphics support
#
# CONFIG_AGP is not set
CONFIG_VGA_ARB=y
CONFIG_VGA_ARB_MAX_GPUS=2
# CONFIG_VGA_SWITCHEROO is not set
CONFIG_DRM=m
CONFIG_DRM_KMS_HELPER=m
# CONFIG_DRM_LOAD_EDID_FIRMWARE is not set
CONFIG_DRM_TTM=m
# CONFIG_DRM_TDFX is not set
# CONFIG_DRM_R128 is not set
CONFIG_DRM_RADEON=m
CONFIG_DRM_RADEON_KMS=y
# CONFIG_DRM_NOUVEAU is not set
#
# I2C encoder or helper chips
#
# CONFIG_DRM_I2C_CH7006 is not set
# CONFIG_DRM_I2C_SIL164 is not set
# CONFIG_DRM_MGA is not set
# CONFIG_DRM_VIA is not set
# CONFIG_DRM_SAVAGE is not set
# CONFIG_DRM_VMWGFX is not set
# CONFIG_DRM_GMA500 is not set
# CONFIG_DRM_UDL is not set
# CONFIG_DRM_AST is not set
# CONFIG_DRM_MGAG200 is not set
# CONFIG_DRM_CIRRUS_QEMU is not set
# CONFIG_STUB_POULSBO is not set
# CONFIG_VGASTATE is not set
CONFIG_VIDEO_OUTPUT_CONTROL=y
CONFIG_FB=y
CONFIG_FIRMWARE_EDID=y
# CONFIG_FB_DDC is not set
CONFIG_FB_BOOT_VESA_SUPPORT=y
CONFIG_FB_CFB_FILLRECT=y
CONFIG_FB_CFB_COPYAREA=y
CONFIG_FB_CFB_IMAGEBLIT=y
# CONFIG_FB_CFB_REV_PIXELS_IN_BYTE is not set
# CONFIG_FB_SYS_FILLRECT is not set
# CONFIG_FB_SYS_COPYAREA is not set
# CONFIG_FB_SYS_IMAGEBLIT is not set
# CONFIG_FB_FOREIGN_ENDIAN is not set
# CONFIG_FB_SYS_FOPS is not set
# CONFIG_FB_WMT_GE_ROPS is not set
# CONFIG_FB_SVGALIB is not set
# CONFIG_FB_MACMODES is not set
# CONFIG_FB_BACKLIGHT is not set
CONFIG_FB_MODE_HELPERS=y
# CONFIG_FB_TILEBLITTING is not set
#
# Frame buffer hardware drivers
#
# CONFIG_FB_CIRRUS is not set
# CONFIG_FB_PM2 is not set
# CONFIG_FB_CYBER2000 is not set
# CONFIG_FB_ARC is not set
# CONFIG_FB_ASILIANT is not set
# CONFIG_FB_IMSTT is not set
# CONFIG_FB_VGA16 is not set
# CONFIG_FB_UVESA is not set
CONFIG_FB_VESA=y
# 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 is not set
# CONFIG_FB_LE80578 is not set
# CONFIG_FB_MATROX is not set
# CONFIG_FB_RADEON is not set
# CONFIG_FB_ATY128 is not set
# CONFIG_FB_ATY is not set
# CONFIG_FB_S3 is not set
# CONFIG_FB_SAVAGE is not set
# CONFIG_FB_SIS is not set
# CONFIG_FB_VIA is not set
# CONFIG_FB_NEOMAGIC is not set
# CONFIG_FB_KYRO is not set
# CONFIG_FB_3DFX is not set
# CONFIG_FB_VOODOO1 is not set
# CONFIG_FB_VT8623 is not set
# CONFIG_FB_TRIDENT is not set
# CONFIG_FB_ARK is not set
# CONFIG_FB_PM3 is not set
# CONFIG_FB_CARMINE is not set
# CONFIG_FB_GEODE is not set
# CONFIG_FB_SMSCUFX is not set
# CONFIG_FB_UDL is not set
# CONFIG_FB_VIRTUAL is not set
# CONFIG_FB_METRONOME is not set
# CONFIG_FB_MB862XX is not set
# CONFIG_FB_BROADSHEET is not set
# CONFIG_FB_AUO_K190X is not set
# CONFIG_EXYNOS_VIDEO is not set
CONFIG_BACKLIGHT_LCD_SUPPORT=y
CONFIG_LCD_CLASS_DEVICE=y
# CONFIG_LCD_PLATFORM is not set
CONFIG_BACKLIGHT_CLASS_DEVICE=y
# CONFIG_BACKLIGHT_GENERIC is not set
# CONFIG_BACKLIGHT_PWM is not set
# CONFIG_BACKLIGHT_APPLE is not set
# CONFIG_BACKLIGHT_SAHARA is not set
# CONFIG_BACKLIGHT_ADP8860 is not set
# CONFIG_BACKLIGHT_ADP8870 is not set
# CONFIG_BACKLIGHT_LM3630 is not set
# CONFIG_BACKLIGHT_LM3639 is not set
# CONFIG_BACKLIGHT_LP855X is not set
#
# Console display driver support
#
CONFIG_VGA_CONSOLE=y
CONFIG_VGACON_SOFT_SCROLLBACK=y
CONFIG_VGACON_SOFT_SCROLLBACK_SIZE=256
CONFIG_DUMMY_CONSOLE=y
CONFIG_FRAMEBUFFER_CONSOLE=y
CONFIG_FRAMEBUFFER_CONSOLE_DETECT_PRIMARY=y
# CONFIG_FRAMEBUFFER_CONSOLE_ROTATION is not set
# CONFIG_FONTS is not set
CONFIG_FONT_8x8=y
CONFIG_FONT_8x16=y
# CONFIG_LOGO is not set
CONFIG_SOUND=y
# CONFIG_SOUND_OSS_CORE is not set
CONFIG_SND=y
CONFIG_SND_TIMER=y
CONFIG_SND_PCM=m
CONFIG_SND_HWDEP=m
CONFIG_SND_RAWMIDI=m
CONFIG_SND_JACK=y
CONFIG_SND_SEQUENCER=y
# CONFIG_SND_SEQ_DUMMY is not set
# CONFIG_SND_MIXER_OSS is not set
# CONFIG_SND_PCM_OSS is not set
# CONFIG_SND_SEQUENCER_OSS is not set
# CONFIG_SND_HRTIMER is not set
# CONFIG_SND_DYNAMIC_MINORS is not set
CONFIG_SND_SUPPORT_OLD_API=y
CONFIG_SND_VERBOSE_PROCFS=y
# CONFIG_SND_VERBOSE_PRINTK is not set
# CONFIG_SND_DEBUG is not set
CONFIG_SND_VMASTER=y
CONFIG_SND_KCTL_JACK=y
CONFIG_SND_DMA_SGBUF=y
CONFIG_SND_RAWMIDI_SEQ=m
# CONFIG_SND_OPL3_LIB_SEQ is not set
# CONFIG_SND_OPL4_LIB_SEQ is not set
# CONFIG_SND_SBAWE_SEQ is not set
# CONFIG_SND_EMU10K1_SEQ is not set
# CONFIG_SND_DRIVERS is not set
CONFIG_SND_PCI=y
# CONFIG_SND_AD1889 is not set
# CONFIG_SND_ALS300 is not set
# CONFIG_SND_ALS4000 is not set
# CONFIG_SND_ALI5451 is not set
# CONFIG_SND_ASIHPI is not set
# CONFIG_SND_ATIIXP is not set
# CONFIG_SND_ATIIXP_MODEM is not set
# CONFIG_SND_AU8810 is not set
# CONFIG_SND_AU8820 is not set
# CONFIG_SND_AU8830 is not set
# CONFIG_SND_AW2 is not set
# CONFIG_SND_AZT3328 is not set
# CONFIG_SND_BT87X is not set
# CONFIG_SND_CA0106 is not set
# CONFIG_SND_CMIPCI is not set
# CONFIG_SND_OXYGEN is not set
# CONFIG_SND_CS4281 is not set
# CONFIG_SND_CS46XX is not set
# CONFIG_SND_CS5530 is not set
# CONFIG_SND_CS5535AUDIO is not set
# CONFIG_SND_CTXFI is not set
# CONFIG_SND_DARLA20 is not set
# CONFIG_SND_GINA20 is not set
# CONFIG_SND_LAYLA20 is not set
# CONFIG_SND_DARLA24 is not set
# CONFIG_SND_GINA24 is not set
# CONFIG_SND_LAYLA24 is not set
# CONFIG_SND_MONA is not set
# CONFIG_SND_MIA is not set
# CONFIG_SND_ECHO3G is not set
# CONFIG_SND_INDIGO is not set
# CONFIG_SND_INDIGOIO is not set
# CONFIG_SND_INDIGODJ is not set
# CONFIG_SND_INDIGOIOX is not set
# CONFIG_SND_INDIGODJX is not set
# CONFIG_SND_EMU10K1 is not set
# CONFIG_SND_EMU10K1X is not set
# CONFIG_SND_ENS1370 is not set
# CONFIG_SND_ENS1371 is not set
# CONFIG_SND_ES1938 is not set
# CONFIG_SND_ES1968 is not set
# CONFIG_SND_FM801 is not set
CONFIG_SND_HDA_INTEL=m
CONFIG_SND_HDA_PREALLOC_SIZE=64
# CONFIG_SND_HDA_HWDEP is not set
CONFIG_SND_HDA_INPUT_BEEP=y
CONFIG_SND_HDA_INPUT_BEEP_MODE=1
CONFIG_SND_HDA_INPUT_JACK=y
# CONFIG_SND_HDA_PATCH_LOADER is not set
# CONFIG_SND_HDA_CODEC_REALTEK is not set
# CONFIG_SND_HDA_CODEC_ANALOG is not set
# CONFIG_SND_HDA_CODEC_SIGMATEL is not set
CONFIG_SND_HDA_CODEC_VIA=y
# CONFIG_SND_HDA_CODEC_HDMI is not set
# CONFIG_SND_HDA_CODEC_CIRRUS is not set
# CONFIG_SND_HDA_CODEC_CONEXANT is not set
# CONFIG_SND_HDA_CODEC_CA0110 is not set
# CONFIG_SND_HDA_CODEC_CA0132 is not set
# CONFIG_SND_HDA_CODEC_CMEDIA is not set
# CONFIG_SND_HDA_CODEC_SI3054 is not set
CONFIG_SND_HDA_GENERIC=y
CONFIG_SND_HDA_POWER_SAVE_DEFAULT=0
# CONFIG_SND_HDSP is not set
# CONFIG_SND_HDSPM is not set
# CONFIG_SND_ICE1712 is not set
# CONFIG_SND_ICE1724 is not set
# CONFIG_SND_INTEL8X0 is not set
# CONFIG_SND_INTEL8X0M is not set
# CONFIG_SND_KORG1212 is not set
# CONFIG_SND_LOLA is not set
# CONFIG_SND_LX6464ES is not set
# CONFIG_SND_MAESTRO3 is not set
# CONFIG_SND_MIXART is not set
# CONFIG_SND_NM256 is not set
# CONFIG_SND_PCXHR is not set
# CONFIG_SND_RIPTIDE is not set
# CONFIG_SND_RME32 is not set
# CONFIG_SND_RME96 is not set
# CONFIG_SND_RME9652 is not set
# CONFIG_SND_SONICVIBES is not set
# CONFIG_SND_TRIDENT is not set
# CONFIG_SND_VIA82XX is not set
# CONFIG_SND_VIA82XX_MODEM is not set
# CONFIG_SND_VIRTUOSO is not set
# CONFIG_SND_VX222 is not set
# CONFIG_SND_YMFPCI is not set
CONFIG_SND_USB=y
CONFIG_SND_USB_AUDIO=m
# CONFIG_SND_USB_UA101 is not set
# CONFIG_SND_USB_USX2Y is not set
# CONFIG_SND_USB_CAIAQ is not set
# CONFIG_SND_USB_US122L is not set
# CONFIG_SND_USB_6FIRE is not set
# CONFIG_SND_SOC is not set
# CONFIG_SOUND_PRIME is not set
#
# HID support
#
CONFIG_HID=y
# CONFIG_HID_BATTERY_STRENGTH is not set
CONFIG_HIDRAW=y
# CONFIG_UHID is not set
CONFIG_HID_GENERIC=y
#
# Special HID drivers
#
CONFIG_HID_A4TECH=y
# CONFIG_HID_ACRUX is not set
CONFIG_HID_APPLE=y
# CONFIG_HID_AUREAL is not set
CONFIG_HID_BELKIN=y
CONFIG_HID_CHERRY=y
CONFIG_HID_CHICONY=y
# CONFIG_HID_PRODIKEYS is not set
CONFIG_HID_CYPRESS=y
# CONFIG_HID_DRAGONRISE is not set
# CONFIG_HID_EMS_FF is not set
CONFIG_HID_EZKEY=y
# CONFIG_HID_HOLTEK is not set
# CONFIG_HID_KEYTOUCH is not set
# CONFIG_HID_KYE is not set
# CONFIG_HID_UCLOGIC is not set
# CONFIG_HID_WALTOP is not set
# CONFIG_HID_GYRATION is not set
# CONFIG_HID_TWINHAN is not set
CONFIG_HID_KENSINGTON=y
# CONFIG_HID_LCPOWER is not set
# CONFIG_HID_LENOVO_TPKBD is not set
CONFIG_HID_LOGITECH=y
# CONFIG_HID_LOGITECH_DJ is not set
# CONFIG_LOGITECH_FF is not set
# CONFIG_LOGIRUMBLEPAD2_FF is not set
# CONFIG_LOGIG940_FF is not set
# CONFIG_LOGIWHEELS_FF is not set
CONFIG_HID_MICROSOFT=y
CONFIG_HID_MONTEREY=y
# CONFIG_HID_MULTITOUCH is not set
# CONFIG_HID_NTRIG is not set
# CONFIG_HID_ORTEK is not set
# CONFIG_HID_PANTHERLORD is not set
# CONFIG_HID_PETALYNX is not set
# CONFIG_HID_PICOLCD is not set
# CONFIG_HID_PRIMAX is not set
# CONFIG_HID_ROCCAT is not set
# CONFIG_HID_SAITEK is not set
# CONFIG_HID_SAMSUNG is not set
# CONFIG_HID_SONY is not set
# CONFIG_HID_SPEEDLINK is not set
# CONFIG_HID_SUNPLUS is not set
# CONFIG_HID_GREENASIA is not set
# CONFIG_HID_SMARTJOYPLUS is not set
# CONFIG_HID_TIVO is not set
# CONFIG_HID_TOPSEED is not set
# CONFIG_HID_THRUSTMASTER is not set
# CONFIG_HID_ZEROPLUS is not set
# CONFIG_HID_ZYDACRON is not set
# CONFIG_HID_SENSOR_HUB is not set
#
# USB HID support
#
CONFIG_USB_HID=y
# CONFIG_HID_PID is not set
CONFIG_USB_HIDDEV=y
#
# I2C HID support
#
# CONFIG_I2C_HID 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=y
CONFIG_USB_ARCH_HAS_HCD=y
CONFIG_USB=y
# CONFIG_USB_DEBUG is not set
# CONFIG_USB_ANNOUNCE_NEW_DEVICES is not set
#
# Miscellaneous USB options
#
# CONFIG_USB_DYNAMIC_MINORS is not set
# CONFIG_USB_SUSPEND is not set
# CONFIG_USB_MON is not set
# CONFIG_USB_WUSB_CBAF is not set
#
# USB Host Controller Drivers
#
# CONFIG_USB_C67X00_HCD is not set
CONFIG_USB_XHCI_HCD=y
# CONFIG_USB_XHCI_HCD_DEBUGGING is not set
CONFIG_USB_EHCI_HCD=y
# CONFIG_USB_EHCI_ROOT_HUB_TT is not set
# CONFIG_USB_EHCI_TT_NEWSCHED is not set
CONFIG_USB_EHCI_PCI=y
# CONFIG_USB_OXU210HP_HCD is not set
# CONFIG_USB_ISP116X_HCD is not set
# CONFIG_USB_ISP1760_HCD is not set
# CONFIG_USB_ISP1362_HCD is not set
CONFIG_USB_OHCI_HCD=m
# CONFIG_USB_OHCI_HCD_PLATFORM is not set
# CONFIG_USB_EHCI_HCD_PLATFORM is not set
# 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=m
# CONFIG_USB_SL811_HCD is not set
# CONFIG_USB_R8A66597_HCD is not set
# CONFIG_USB_CHIPIDEA is not set
#
# USB Device Class drivers
#
# CONFIG_USB_ACM is not set
# CONFIG_USB_PRINTER is not set
# CONFIG_USB_WDM is not set
# 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=y
# CONFIG_USB_STORAGE_DEBUG is not set
# CONFIG_USB_STORAGE_REALTEK is not set
# CONFIG_USB_STORAGE_DATAFAB is not set
# CONFIG_USB_STORAGE_FREECOM is not set
# CONFIG_USB_STORAGE_ISD200 is not set
# CONFIG_USB_STORAGE_USBAT is not set
# CONFIG_USB_STORAGE_SDDR09 is not set
# CONFIG_USB_STORAGE_SDDR55 is not set
# CONFIG_USB_STORAGE_JUMPSHOT is not set
# CONFIG_USB_STORAGE_ALAUDA is not set
# CONFIG_USB_STORAGE_ONETOUCH is not set
# CONFIG_USB_STORAGE_KARMA is not set
# CONFIG_USB_STORAGE_CYPRESS_ATACB is not set
# CONFIG_USB_STORAGE_ENE_UB6250 is not set
#
# USB Imaging devices
#
# CONFIG_USB_MDC800 is not set
# CONFIG_USB_MICROTEK is not set
#
# USB port drivers
#
CONFIG_USB_SERIAL=m
CONFIG_USB_SERIAL_GENERIC=y
# CONFIG_USB_SERIAL_AIRCABLE is not set
# CONFIG_USB_SERIAL_ARK3116 is not set
# CONFIG_USB_SERIAL_BELKIN is not set
# CONFIG_USB_SERIAL_CH341 is not set
# CONFIG_USB_SERIAL_WHITEHEAT is not set
# CONFIG_USB_SERIAL_DIGI_ACCELEPORT is not set
# CONFIG_USB_SERIAL_CP210X is not set
# CONFIG_USB_SERIAL_CYPRESS_M8 is not set
# CONFIG_USB_SERIAL_EMPEG is not set
# CONFIG_USB_SERIAL_FTDI_SIO is not set
# CONFIG_USB_SERIAL_FUNSOFT is not set
# CONFIG_USB_SERIAL_VISOR is not set
# CONFIG_USB_SERIAL_IPAQ is not set
# 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 is not set
# CONFIG_USB_SERIAL_KEYSPAN_PDA is not set
# CONFIG_USB_SERIAL_KEYSPAN is not set
# CONFIG_USB_SERIAL_KLSI is not set
# CONFIG_USB_SERIAL_KOBIL_SCT is not set
# CONFIG_USB_SERIAL_MCT_U232 is not set
# CONFIG_USB_SERIAL_METRO is not set
# CONFIG_USB_SERIAL_MOS7720 is not set
# CONFIG_USB_SERIAL_MOS7840 is not set
# CONFIG_USB_SERIAL_MOTOROLA is not set
# CONFIG_USB_SERIAL_NAVMAN is not set
CONFIG_USB_SERIAL_PL2303=m
# 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 is not set
# CONFIG_USB_SERIAL_SAFE is not set
# CONFIG_USB_SERIAL_SIEMENS_MPI is not set
# CONFIG_USB_SERIAL_SIERRAWIRELESS is not set
# CONFIG_USB_SERIAL_SYMBOL is not set
# CONFIG_USB_SERIAL_TI is not set
# CONFIG_USB_SERIAL_CYBERJACK is not set
# CONFIG_USB_SERIAL_XIRCOM is not set
# CONFIG_USB_SERIAL_OPTION is not set
# CONFIG_USB_SERIAL_OMNINET is not set
# CONFIG_USB_SERIAL_OPTICON is not set
# CONFIG_USB_SERIAL_VIVOPAY_SERIAL is not set
# CONFIG_USB_SERIAL_ZIO is not set
# CONFIG_USB_SERIAL_ZTE is not set
# CONFIG_USB_SERIAL_SSU100 is not set
# CONFIG_USB_SERIAL_QT2 is not set
CONFIG_USB_SERIAL_DEBUG=m
#
# USB Miscellaneous drivers
#
# CONFIG_USB_EMI62 is not set
# CONFIG_USB_EMI26 is not set
# CONFIG_USB_ADUTUX is not set
# CONFIG_USB_SEVSEG is not set
# CONFIG_USB_RIO500 is not set
# CONFIG_USB_LEGOTOWER is not set
# CONFIG_USB_LCD is not set
# CONFIG_USB_LED is not set
# CONFIG_USB_CYPRESS_CY7C63 is not set
# CONFIG_USB_CYTHERM is not set
# CONFIG_USB_IDMOUSE is not set
# CONFIG_USB_FTDI_ELAN is not set
# CONFIG_USB_APPLEDISPLAY is not set
# CONFIG_USB_SISUSBVGA is not set
# CONFIG_USB_LD is not set
# CONFIG_USB_TRANCEVIBRATOR is not set
# CONFIG_USB_IOWARRIOR is not set
# CONFIG_USB_TEST is not set
# CONFIG_USB_ISIGHTFW is not set
# CONFIG_USB_YUREX is not set
CONFIG_USB_EZUSB_FX2=m
#
# USB Physical Layer drivers
#
# CONFIG_USB_ISP1301 is not set
# CONFIG_USB_RCAR_PHY is not set
# CONFIG_USB_GADGET is not set
#
# OTG and related infrastructure
#
# CONFIG_NOP_USB_XCEIV is not set
# CONFIG_UWB is not set
# CONFIG_MMC is not set
# CONFIG_MEMSTICK is not set
CONFIG_NEW_LEDS=y
CONFIG_LEDS_CLASS=y
#
# LED drivers
#
# CONFIG_LEDS_LM3530 is not set
# CONFIG_LEDS_LM3642 is not set
# CONFIG_LEDS_PCA9532 is not set
# CONFIG_LEDS_LP3944 is not set
# CONFIG_LEDS_LP5521 is not set
# CONFIG_LEDS_LP5523 is not set
# CONFIG_LEDS_CLEVO_MAIL is not set
# CONFIG_LEDS_PCA955X is not set
# CONFIG_LEDS_PCA9633 is not set
# CONFIG_LEDS_BD2802 is not set
# CONFIG_LEDS_INTEL_SS4200 is not set
# CONFIG_LEDS_TCA6507 is not set
# CONFIG_LEDS_LM355x is not set
# CONFIG_LEDS_OT200 is not set
# CONFIG_LEDS_BLINKM is not set
CONFIG_LEDS_TRIGGERS=y
#
# LED Triggers
#
# CONFIG_LEDS_TRIGGER_TIMER is not set
# CONFIG_LEDS_TRIGGER_ONESHOT is not set
# CONFIG_LEDS_TRIGGER_HEARTBEAT is not set
# CONFIG_LEDS_TRIGGER_BACKLIGHT is not set
# CONFIG_LEDS_TRIGGER_CPU is not set
# CONFIG_LEDS_TRIGGER_DEFAULT_ON is not set
#
# iptables trigger is under Netfilter config (LED target)
#
# CONFIG_LEDS_TRIGGER_TRANSIENT is not set
# CONFIG_ACCESSIBILITY is not set
# 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=y
CONFIG_RTC_INTF_DEV=y
# CONFIG_RTC_INTF_DEV_UIE_EMUL is not set
# CONFIG_RTC_DRV_TEST is not set
#
# I2C RTC drivers
#
# CONFIG_RTC_DRV_DS1307 is not set
# CONFIG_RTC_DRV_DS1374 is not set
# CONFIG_RTC_DRV_DS1672 is not set
# CONFIG_RTC_DRV_DS3232 is not set
# CONFIG_RTC_DRV_MAX6900 is not set
# 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 is not set
# CONFIG_RTC_DRV_PCF8523 is not set
# CONFIG_RTC_DRV_PCF8563 is not set
# CONFIG_RTC_DRV_PCF8583 is not set
# CONFIG_RTC_DRV_M41T80 is not set
# CONFIG_RTC_DRV_BQ32K 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
#
#
# Platform RTC drivers
#
CONFIG_RTC_DRV_CMOS=y
# CONFIG_RTC_DRV_DS1286 is not set
# CONFIG_RTC_DRV_DS1511 is not set
# CONFIG_RTC_DRV_DS1553 is not set
# CONFIG_RTC_DRV_DS1742 is not set
# CONFIG_RTC_DRV_STK17TA8 is not set
# CONFIG_RTC_DRV_M48T86 is not set
# CONFIG_RTC_DRV_M48T35 is not set
# CONFIG_RTC_DRV_M48T59 is not set
# CONFIG_RTC_DRV_MSM6242 is not set
# CONFIG_RTC_DRV_BQ4802 is not set
# CONFIG_RTC_DRV_RP5C01 is not set
# CONFIG_RTC_DRV_V3020 is not set
# CONFIG_RTC_DRV_DS2404 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 is not set
# CONFIG_TIMB_DMA is not set
# CONFIG_PCH_DMA is not set
# CONFIG_AUXDISPLAY is not set
# CONFIG_UIO is not set
#
# Virtio drivers
#
# CONFIG_VIRTIO_PCI is not set
# CONFIG_VIRTIO_MMIO is not set
#
# Microsoft Hyper-V guest support
#
# CONFIG_HYPERV is not set
# CONFIG_STAGING is not set
# CONFIG_X86_PLATFORM_DEVICES is not set
#
# Hardware Spinlock drivers
#
CONFIG_CLKEVT_I8253=y
CONFIG_I8253_LOCK=y
CONFIG_CLKBLD_I8253=y
# CONFIG_IOMMU_SUPPORT is not set
#
# Remoteproc drivers (EXPERIMENTAL)
#
# CONFIG_STE_MODEM_RPROC is not set
#
# 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 is not set
# CONFIG_VME_BUS is not set
CONFIG_PWM=y
# CONFIG_IPACK_BUS is not set
#
# Firmware Drivers
#
# CONFIG_EDD is not set
CONFIG_FIRMWARE_MEMMAP=y
# CONFIG_DELL_RBU is not set
# CONFIG_DCDBAS is not set
CONFIG_DMIID=y
CONFIG_DMI_SYSFS=m
# CONFIG_ISCSI_IBFT_FIND is not set
# CONFIG_GOOGLE_FIRMWARE is not set
#
# File systems
#
CONFIG_DCACHE_WORD_ACCESS=y
CONFIG_EXT2_FS=y
# CONFIG_EXT2_FS_XATTR is not set
# CONFIG_EXT2_FS_XIP is not set
CONFIG_EXT3_FS=y
CONFIG_EXT3_DEFAULTS_TO_ORDERED=y
CONFIG_EXT3_FS_XATTR=y
CONFIG_EXT3_FS_POSIX_ACL=y
# CONFIG_EXT3_FS_SECURITY is not set
CONFIG_EXT4_FS=y
CONFIG_EXT4_FS_POSIX_ACL=y
# CONFIG_EXT4_FS_SECURITY is not set
# CONFIG_EXT4_DEBUG is not set
CONFIG_JBD=y
CONFIG_JBD2=y
CONFIG_FS_MBCACHE=y
# CONFIG_REISERFS_FS is not set
# CONFIG_JFS_FS is not set
# CONFIG_XFS_FS is not set
# CONFIG_GFS2_FS is not set
# CONFIG_BTRFS_FS is not set
# CONFIG_NILFS2_FS is not set
CONFIG_FS_POSIX_ACL=y
CONFIG_EXPORTFS=y
CONFIG_FILE_LOCKING=y
CONFIG_FSNOTIFY=y
CONFIG_DNOTIFY=y
CONFIG_INOTIFY_USER=y
CONFIG_FANOTIFY=y
# CONFIG_QUOTA is not set
# CONFIG_QUOTACTL is not set
CONFIG_AUTOFS4_FS=m
CONFIG_FUSE_FS=m
# CONFIG_CUSE is not set
CONFIG_GENERIC_ACL=y
#
# Caches
#
# CONFIG_FSCACHE is not set
#
# CD-ROM/DVD Filesystems
#
CONFIG_ISO9660_FS=m
CONFIG_JOLIET=y
CONFIG_ZISOFS=y
CONFIG_UDF_FS=m
CONFIG_UDF_NLS=y
#
# DOS/FAT/NT Filesystems
#
CONFIG_FAT_FS=m
CONFIG_MSDOS_FS=m
CONFIG_VFAT_FS=m
CONFIG_FAT_DEFAULT_CODEPAGE=437
CONFIG_FAT_DEFAULT_IOCHARSET="iso8859-1"
# CONFIG_NTFS_FS is not set
#
# Pseudo filesystems
#
CONFIG_PROC_FS=y
CONFIG_PROC_KCORE=y
CONFIG_PROC_SYSCTL=y
CONFIG_PROC_PAGE_MONITOR=y
CONFIG_SYSFS=y
CONFIG_TMPFS=y
CONFIG_TMPFS_POSIX_ACL=y
CONFIG_TMPFS_XATTR=y
CONFIG_HUGETLBFS=y
CONFIG_HUGETLB_PAGE=y
# CONFIG_CONFIGFS_FS is not set
# CONFIG_MISC_FILESYSTEMS is not set
# CONFIG_NETWORK_FILESYSTEMS is not set
CONFIG_NLS=y
CONFIG_NLS_DEFAULT="utf8"
CONFIG_NLS_CODEPAGE_437=y
# CONFIG_NLS_CODEPAGE_737 is not set
# CONFIG_NLS_CODEPAGE_775 is not set
# CONFIG_NLS_CODEPAGE_850 is not set
# CONFIG_NLS_CODEPAGE_852 is not set
# CONFIG_NLS_CODEPAGE_855 is not set
# CONFIG_NLS_CODEPAGE_857 is not set
# CONFIG_NLS_CODEPAGE_860 is not set
# CONFIG_NLS_CODEPAGE_861 is not set
# CONFIG_NLS_CODEPAGE_862 is not set
# CONFIG_NLS_CODEPAGE_863 is not set
# CONFIG_NLS_CODEPAGE_864 is not set
# CONFIG_NLS_CODEPAGE_865 is not set
# CONFIG_NLS_CODEPAGE_866 is not set
# CONFIG_NLS_CODEPAGE_869 is not set
# CONFIG_NLS_CODEPAGE_936 is not set
# CONFIG_NLS_CODEPAGE_950 is not set
# CONFIG_NLS_CODEPAGE_932 is not set
# CONFIG_NLS_CODEPAGE_949 is not set
# CONFIG_NLS_CODEPAGE_874 is not set
# CONFIG_NLS_ISO8859_8 is not set
# CONFIG_NLS_CODEPAGE_1250 is not set
# CONFIG_NLS_CODEPAGE_1251 is not set
CONFIG_NLS_ASCII=y
CONFIG_NLS_ISO8859_1=y
# CONFIG_NLS_ISO8859_2 is not set
# CONFIG_NLS_ISO8859_3 is not set
# CONFIG_NLS_ISO8859_4 is not set
# CONFIG_NLS_ISO8859_5 is not set
# CONFIG_NLS_ISO8859_6 is not set
# CONFIG_NLS_ISO8859_7 is not set
# CONFIG_NLS_ISO8859_9 is not set
# CONFIG_NLS_ISO8859_13 is not set
# CONFIG_NLS_ISO8859_14 is not set
# CONFIG_NLS_ISO8859_15 is not set
# CONFIG_NLS_KOI8_R is not set
# CONFIG_NLS_KOI8_U is not set
# CONFIG_NLS_MAC_ROMAN is not set
# CONFIG_NLS_MAC_CELTIC is not set
# CONFIG_NLS_MAC_CENTEURO is not set
# CONFIG_NLS_MAC_CROATIAN is not set
# CONFIG_NLS_MAC_CYRILLIC is not set
# CONFIG_NLS_MAC_GAELIC is not set
# CONFIG_NLS_MAC_GREEK is not set
# CONFIG_NLS_MAC_ICELAND is not set
# CONFIG_NLS_MAC_INUIT is not set
# CONFIG_NLS_MAC_ROMANIAN is not set
# CONFIG_NLS_MAC_TURKISH is not set
CONFIG_NLS_UTF8=y
#
# Kernel hacking
#
CONFIG_TRACE_IRQFLAGS_SUPPORT=y
CONFIG_PRINTK_TIME=y
CONFIG_DEFAULT_MESSAGE_LOGLEVEL=4
CONFIG_ENABLE_WARN_DEPRECATED=y
CONFIG_ENABLE_MUST_CHECK=y
CONFIG_FRAME_WARN=2048
CONFIG_MAGIC_SYSRQ=y
# CONFIG_STRIP_ASM_SYMS is not set
# CONFIG_UNUSED_SYMBOLS is not set
# CONFIG_DEBUG_FS is not set
# CONFIG_HEADERS_CHECK is not set
# CONFIG_DEBUG_SECTION_MISMATCH is not set
# CONFIG_DEBUG_KERNEL is not set
# CONFIG_PANIC_ON_OOPS is not set
CONFIG_PANIC_ON_OOPS_VALUE=0
# CONFIG_SLUB_DEBUG_ON is not set
# CONFIG_SLUB_STATS is not set
CONFIG_HAVE_DEBUG_KMEMLEAK=y
# CONFIG_SPARSE_RCU_POINTER is not set
CONFIG_DEBUG_BUGVERBOSE=y
CONFIG_DEBUG_MEMORY_INIT=y
CONFIG_ARCH_WANT_FRAME_POINTERS=y
# CONFIG_FRAME_POINTER is not set
CONFIG_RCU_CPU_STALL_TIMEOUT=60
CONFIG_RCU_CPU_STALL_VERBOSE=y
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_FENTRY=y
CONFIG_HAVE_C_RECORDMCOUNT=y
CONFIG_TRACE_CLOCK=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 is not set
# CONFIG_DMA_API_DEBUG is not set
# CONFIG_ATOMIC64_SELFTEST is not set
# CONFIG_SAMPLES is not set
CONFIG_HAVE_ARCH_KGDB=y
CONFIG_HAVE_ARCH_KMEMCHECK=y
# CONFIG_TEST_KSTRTOX is not set
# CONFIG_STRICT_DEVMEM is not set
# CONFIG_X86_VERBOSE_BOOTUP is not set
CONFIG_EARLY_PRINTK=y
# CONFIG_EARLY_PRINTK_DBGP is not set
# CONFIG_DEBUG_SET_MODULE_RONX is not set
# CONFIG_IOMMU_STRESS is not set
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 is not set
# CONFIG_IO_DELAY_UDELAY is not set
CONFIG_IO_DELAY_NONE=y
CONFIG_DEFAULT_IO_DELAY_TYPE=3
CONFIG_OPTIMIZE_INLINING=y
#
# Security options
#
# CONFIG_KEYS is not set
# CONFIG_SECURITY_DMESG_RESTRICT is not set
# CONFIG_SECURITY is not set
# CONFIG_SECURITYFS is not set
CONFIG_DEFAULT_SECURITY_DAC=y
CONFIG_DEFAULT_SECURITY=""
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=y
CONFIG_CRYPTO_BLKCIPHER2=y
CONFIG_CRYPTO_HASH=y
CONFIG_CRYPTO_HASH2=y
CONFIG_CRYPTO_RNG=m
CONFIG_CRYPTO_RNG2=y
CONFIG_CRYPTO_PCOMP=m
CONFIG_CRYPTO_PCOMP2=y
CONFIG_CRYPTO_MANAGER=y
CONFIG_CRYPTO_MANAGER2=y
CONFIG_CRYPTO_USER=y
CONFIG_CRYPTO_MANAGER_DISABLE_TESTS=y
CONFIG_CRYPTO_GF128MUL=y
# CONFIG_CRYPTO_NULL is not set
CONFIG_CRYPTO_PCRYPT=m
CONFIG_CRYPTO_WORKQUEUE=y
CONFIG_CRYPTO_CRYPTD=y
CONFIG_CRYPTO_AUTHENC=m
# CONFIG_CRYPTO_TEST is not set
CONFIG_CRYPTO_ABLK_HELPER_X86=y
CONFIG_CRYPTO_GLUE_HELPER_X86=m
#
# Authenticated Encryption with Associated Data
#
CONFIG_CRYPTO_CCM=m
CONFIG_CRYPTO_GCM=m
CONFIG_CRYPTO_SEQIV=m
#
# Block modes
#
CONFIG_CRYPTO_CBC=m
CONFIG_CRYPTO_CTR=m
CONFIG_CRYPTO_CTS=m
CONFIG_CRYPTO_ECB=y
CONFIG_CRYPTO_LRW=y
CONFIG_CRYPTO_PCBC=m
CONFIG_CRYPTO_XTS=y
#
# Hash modes
#
CONFIG_CRYPTO_HMAC=m
CONFIG_CRYPTO_XCBC=m
CONFIG_CRYPTO_VMAC=m
#
# Digest
#
CONFIG_CRYPTO_CRC32C=y
CONFIG_CRYPTO_CRC32C_X86_64=y
CONFIG_CRYPTO_CRC32C_INTEL=y
CONFIG_CRYPTO_GHASH=y
CONFIG_CRYPTO_MD4=m
CONFIG_CRYPTO_MD5=m
CONFIG_CRYPTO_MICHAEL_MIC=m
CONFIG_CRYPTO_RMD128=m
CONFIG_CRYPTO_RMD160=m
CONFIG_CRYPTO_RMD256=m
CONFIG_CRYPTO_RMD320=m
CONFIG_CRYPTO_SHA1=m
CONFIG_CRYPTO_SHA1_SSSE3=m
CONFIG_CRYPTO_SHA256=m
CONFIG_CRYPTO_SHA512=m
CONFIG_CRYPTO_TGR192=m
CONFIG_CRYPTO_WP512=m
CONFIG_CRYPTO_GHASH_CLMUL_NI_INTEL=y
#
# Ciphers
#
CONFIG_CRYPTO_AES=y
CONFIG_CRYPTO_AES_X86_64=y
CONFIG_CRYPTO_AES_NI_INTEL=y
CONFIG_CRYPTO_ANUBIS=m
CONFIG_CRYPTO_ARC4=y
CONFIG_CRYPTO_BLOWFISH=m
CONFIG_CRYPTO_BLOWFISH_COMMON=m
CONFIG_CRYPTO_BLOWFISH_X86_64=m
CONFIG_CRYPTO_CAMELLIA=m
CONFIG_CRYPTO_CAMELLIA_X86_64=m
CONFIG_CRYPTO_CAMELLIA_AESNI_AVX_X86_64=m
CONFIG_CRYPTO_CAST_COMMON=m
CONFIG_CRYPTO_CAST5=m
CONFIG_CRYPTO_CAST5_AVX_X86_64=m
CONFIG_CRYPTO_CAST6=m
CONFIG_CRYPTO_CAST6_AVX_X86_64=m
CONFIG_CRYPTO_DES=y
CONFIG_CRYPTO_FCRYPT=m
CONFIG_CRYPTO_KHAZAD=m
CONFIG_CRYPTO_SALSA20=m
CONFIG_CRYPTO_SALSA20_X86_64=m
CONFIG_CRYPTO_SEED=m
CONFIG_CRYPTO_SERPENT=m
CONFIG_CRYPTO_SERPENT_SSE2_X86_64=m
CONFIG_CRYPTO_SERPENT_AVX_X86_64=m
CONFIG_CRYPTO_TEA=m
CONFIG_CRYPTO_TWOFISH=m
CONFIG_CRYPTO_TWOFISH_COMMON=m
CONFIG_CRYPTO_TWOFISH_X86_64=m
CONFIG_CRYPTO_TWOFISH_X86_64_3WAY=m
CONFIG_CRYPTO_TWOFISH_AVX_X86_64=m
#
# Compression
#
CONFIG_CRYPTO_DEFLATE=m
CONFIG_CRYPTO_ZLIB=m
CONFIG_CRYPTO_LZO=m
#
# Random Number Generation
#
CONFIG_CRYPTO_ANSI_CPRNG=m
CONFIG_CRYPTO_USER_API=m
CONFIG_CRYPTO_USER_API_HASH=m
CONFIG_CRYPTO_USER_API_SKCIPHER=m
# CONFIG_CRYPTO_HW is not set
CONFIG_HAVE_KVM=y
CONFIG_HAVE_KVM_IRQCHIP=y
CONFIG_HAVE_KVM_EVENTFD=y
CONFIG_KVM_APIC_ARCHITECTURE=y
CONFIG_KVM_MMIO=y
CONFIG_KVM_ASYNC_PF=y
CONFIG_HAVE_KVM_MSI=y
CONFIG_HAVE_KVM_CPU_RELAX_INTERCEPT=y
CONFIG_VIRTUALIZATION=y
CONFIG_KVM=m
CONFIG_KVM_INTEL=m
# CONFIG_KVM_AMD is not set
# CONFIG_VHOST_NET is not set
# CONFIG_BINARY_PRINTF is not set
#
# Library routines
#
CONFIG_BITREVERSE=y
CONFIG_GENERIC_STRNCPY_FROM_USER=y
CONFIG_GENERIC_STRNLEN_USER=y
CONFIG_GENERIC_FIND_FIRST_BIT=y
CONFIG_GENERIC_PCI_IOMAP=y
CONFIG_GENERIC_IOMAP=y
CONFIG_GENERIC_IO=y
CONFIG_PERCPU_RWSEM=y
CONFIG_CRC_CCITT=m
CONFIG_CRC16=y
CONFIG_CRC_T10DIF=y
CONFIG_CRC_ITU_T=m
CONFIG_CRC32=y
# CONFIG_CRC32_SELFTEST is not set
CONFIG_CRC32_SLICEBY8=y
# CONFIG_CRC32_SLICEBY4 is not set
# CONFIG_CRC32_SARWATE is not set
# CONFIG_CRC32_BIT is not set
CONFIG_CRC7=m
CONFIG_LIBCRC32C=m
CONFIG_CRC8=m
CONFIG_ZLIB_INFLATE=m
CONFIG_ZLIB_DEFLATE=m
CONFIG_LZO_COMPRESS=m
CONFIG_LZO_DECOMPRESS=m
CONFIG_XZ_DEC=m
CONFIG_XZ_DEC_X86=y
CONFIG_XZ_DEC_POWERPC=y
CONFIG_XZ_DEC_IA64=y
CONFIG_XZ_DEC_ARM=y
CONFIG_XZ_DEC_ARMTHUMB=y
CONFIG_XZ_DEC_SPARC=y
CONFIG_XZ_DEC_BCJ=y
CONFIG_XZ_DEC_TEST=m
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_CPU_RMAP=y
CONFIG_DQL=y
CONFIG_NLATTR=y
CONFIG_ARCH_HAS_ATOMIC64_DEC_IF_POSITIVE=y
CONFIG_AVERAGE=y
CONFIG_CORDIC=m
# CONFIG_DDR is not set
[-- Attachment #4: bisect_log --]
[-- Type: application/octet-stream, Size: 2742 bytes --]
git bisect start
# good: [19f949f52599ba7c3f67a5897ac6be14bfcb1200] Linux 3.8
git bisect good 19f949f52599ba7c3f67a5897ac6be14bfcb1200
# bad: [6dbe51c251a327e012439c4772097a13df43c5b8] Linux 3.9-rc1
git bisect bad 6dbe51c251a327e012439c4772097a13df43c5b8
# bad: [b274776c54c320763bc12eb035c0e244f76ccb43] Merge tag 'cleanup' of git://git.kernel.org/pub/scm/linux/kernel/git/arm/arm-soc
git bisect bad b274776c54c320763bc12eb035c0e244f76ccb43
# bad: [a0b1c42951dd06ec83cc1bc2c9788131d9fefcd8] Merge git://git.kernel.org/pub/scm/linux/kernel/git/davem/net-next
git bisect bad a0b1c42951dd06ec83cc1bc2c9788131d9fefcd8
# bad: [98d5fac2330779e6eea6431a90b44c7476260dcc] Merge branch 'master' of git://git.kernel.org/pub/scm/linux/kernel/git/linville/wireless-next into for-davem
git bisect bad 98d5fac2330779e6eea6431a90b44c7476260dcc
# good: [9c10f4115cc3722635d6e277385ec96003281784] htb: fix values in opt dump
git bisect good 9c10f4115cc3722635d6e277385ec96003281784
# good: [cdda88912d62f9603d27433338a18be83ef23ac1] net: avoid to hang up on sending due to sysctl configuration overflow.
git bisect good cdda88912d62f9603d27433338a18be83ef23ac1
# bad: [e1a0c6b3a4b27ed5f21291d0bbee2167ec201ef5] mac80211: stop toggling IEEE80211_HT_CAP_SUP_WIDTH_20_40
git bisect bad e1a0c6b3a4b27ed5f21291d0bbee2167ec201ef5
# good: [de8d7a53807c8d2bb04b59ff3a0daa225e81a775] Merge remote-tracking branch 'wireless-next/master' into iwlwifi-next
git bisect good de8d7a53807c8d2bb04b59ff3a0daa225e81a775
# good: [008e33f733ca51acb2dd9d88ea878693b04d1d2a] p54usb: corrected USB ID for T-Com Sinus 154 data II
git bisect good 008e33f733ca51acb2dd9d88ea878693b04d1d2a
# good: [4b3a89de8a2e91bf873a0044fa62b2f5afb6693a] brcmfmac: Create netdev before returning from add_virtual_intf.
git bisect good 4b3a89de8a2e91bf873a0044fa62b2f5afb6693a
# bad: [7f4fe17bc2d4fd46598b03bc51281cfa7ef6abf5] mac80211/minstrel_ht: show the number of retries for each rate in debugfs
git bisect bad 7f4fe17bc2d4fd46598b03bc51281cfa7ef6abf5
# good: [112c31f095a7106fbb3ced0dae50aa9b36ac2662] mac80211: fix AP beacon loss messages
git bisect good 112c31f095a7106fbb3ced0dae50aa9b36ac2662
# good: [8cef2c9df88fdd13f518e6607de9d664b31f26cc] cfg80211: move TSF into IEs
git bisect good 8cef2c9df88fdd13f518e6607de9d664b31f26cc
# good: [f1e3e0515646dd0f4c783c1c39839d2706501344] mac80211: remove IEEE80211_HW_SCAN_WHILE_IDLE
git bisect good f1e3e0515646dd0f4c783c1c39839d2706501344
# bad: [3e4d40fa118e58ce51e85015587a944ec5c69400] mac80211: remove unused code to mark AP station authenticated
git bisect bad 3e4d40fa118e58ce51e85015587a944ec5c69400
# bad: [fd0f979a1b67f0889aea24a7c7d2a54d6706a1cf] mac80211: simplify idle handling
git bisect bad fd0f979a1b67f0889aea24a7c7d2a54d6706a1cf
^ permalink raw reply
* Re: [RFC PATCH 0/5] net: low latency Ethernet device polling
From: Eliezer Tamir @ 2013-03-04 8:19 UTC (permalink / raw)
To: Cong Wang
Cc: Eliezer Tamir, linux-kernel, netdev, Dave Miller,
Jesse Brandeburg, e1000-devel, Willem de Bruijn, Andi Kleen, HPA,
Eliezer Tamir
In-Reply-To: <51344F54.8060809@gmail.com>
On 04/03/2013 09:37, Cong Wang wrote:
> On 02/28/2013 01:55 AM, Eliezer Tamir wrote:
>>
>> Open issues:
>> 1. Find a way to avoid the need to change the sk and skb structs.
>> One big disadvantage of how we do this right now is that when a device is
>> removed, it's hard to prevent it from getting polled by a socket
>> which holds a stale reference.
>>
>> 2. How do we decide which sockets are eligible to do busy polling?
>> Do we add a socket option to control this?
>> How do we provide sane defaults while allowing flexibility and
>> performance?
>>
>> 3. Andi Kleen and HPA pointed out that using get_cycles() is not
>> portable.
>>
>> 4. How and where do we call ndo_ll_poll from the socket code?
>> One good place seems to be wherever the kernel puts the process to sleep,
>> waiting for more data, but this makes doing something intelligent about
>> poll (the system call) hard. From the perspective of how ndo_ll_poll
>> itself is implemented this does not seem to matter.
>>
>> 5. I would like to hear suggestions on naming conventions and where
>> to put the code that for now I have put in include/net/ll_poll.h
>>
>
>
> A dumb question: is bypassing tcpdump/netfilters/qdisc etc. what we
> always want? Isn't this a security issue?
We are not bypassing any of the regular stack checks/hooks, we call the
normal netif_rx_skb().
Thanks,
Eliezer
^ permalink raw reply
* Re: [PATCHi v2] net: sh_eth: Add support of device tree probe
From: Grant Likely @ 2013-03-04 8:05 UTC (permalink / raw)
To: Nobuhiro Iwamatsu, Kuninori Morimoto
Cc: netdev, devicetree-discuss, magnus.damm, kda, horms+renesas
In-Reply-To: <511C5279.3070008@renesas.com>
On Thu, 14 Feb 2013 11:56:57 +0900, Nobuhiro Iwamatsu <nobuhiro.iwamatsu.yj@renesas.com> wrote:
> (2013/02/14 10:24), Kuninori Morimoto wrote:
> >> +#ifdef CONFIG_OF
> >> + if (np&& of_device_is_available(np)) {
> >> + pd = sh_eth_parse_dt(&pdev->dev, ndev);
> >> + if (pdev->dev.platform_data) {
> >> + struct sh_eth_plat_data *tmp =
> >> + pdev->dev.platform_data;
> >> + pd->set_mdio_gate = tmp->set_mdio_gate;
> >> + pd->needs_init = tmp->needs_init;
> >> + }
> >> + } else
> >> +#endif
> >
> > sh_eth_parse_dt() was defined for both CONFIG_OF and !CONFIG_OF.
> > But it is called only from CONFIG_OF ?
> >
>
> Because of_device_is_available needs CONFIG_OF.
> I already send a patch which add empty function of of_device_is_available.
> If this was apply, this ifdef becomes without need.
Actually, there shouldn't be any reason for a device driver to call
of_device_is_available() on its own node at all. If the device is not
available, then a platform_device won't be created. "if (np)" here is
sufficient.
g.
^ permalink raw reply
* [PATCH 1/1] net: fec: fix build error in no MXC platform
From: Frank Li @ 2013-03-04 6:52 UTC (permalink / raw)
To: lznuaa, shawn.guo, B38611, davem, linux-arm-kernel, netdev, gerg
Cc: s.hauer, Frank Li
build error cause by
Commit ff43da86c69d76a726ffe7d1666148960dc1d108
("NET: FEC: dynamtic check DMA desc buff type")
drivers/net/ethernet/freescale/fec.c: In function ‘fec_enet_get_nextdesc’:
drivers/net/ethernet/freescale/fec.c:215:18: error: invalid use of undefined type ‘struct bufdesc_ex’
drivers/net/ethernet/freescale/fec.c: In function ‘fec_enet_get_prevdesc’:
drivers/net/ethernet/freescale/fec.c:224:18: error: invalid use of undefined type ‘struct bufdesc_ex’
drivers/net/ethernet/freescale/fec.c: In function ‘fec_enet_start_xmit’:
drivers/net/ethernet/freescale/fec.c:286:37: error: arithmetic on pointer to an incomplete type
drivers/net/ethernet/freescale/fec.c:287:13: error: arithmetic on pointer to an incomplete type
drivers/net/ethernet/freescale/fec.c:324:7: error: dereferencing pointer to incomplete type etc....
Signed-off-by: Frank Li <Frank.Li@freescale.com>
---
drivers/net/ethernet/freescale/fec.h | 15 +++++++--------
1 files changed, 7 insertions(+), 8 deletions(-)
diff --git a/drivers/net/ethernet/freescale/fec.h b/drivers/net/ethernet/freescale/fec.h
index 01579b8..a53150c 100644
--- a/drivers/net/ethernet/freescale/fec.h
+++ b/drivers/net/ethernet/freescale/fec.h
@@ -97,6 +97,13 @@ struct bufdesc {
unsigned short cbd_sc; /* Control and status info */
unsigned long cbd_bufaddr; /* Buffer address */
};
+#else
+struct bufdesc {
+ unsigned short cbd_sc; /* Control and status info */
+ unsigned short cbd_datlen; /* Data length */
+ unsigned long cbd_bufaddr; /* Buffer address */
+};
+#endif
struct bufdesc_ex {
struct bufdesc desc;
@@ -107,14 +114,6 @@ struct bufdesc_ex {
unsigned short res0[4];
};
-#else
-struct bufdesc {
- unsigned short cbd_sc; /* Control and status info */
- unsigned short cbd_datlen; /* Data length */
- unsigned long cbd_bufaddr; /* Buffer address */
-};
-#endif
-
/*
* The following definitions courtesy of commproc.h, which where
* Copyright (c) 1997 Dan Malek (dmalek@jlc.net).
--
1.7.1
^ permalink raw reply related
* [PATCH 1/2] benet: Wait f/w POST until timeout
From: Gavin Shan @ 2013-03-04 7:48 UTC (permalink / raw)
To: netdev; +Cc: sathya.perla, subbu.seetharaman, ajit.khaparde, Gavin Shan
While PCI card faces EEH errors, reset (usually hot reset) is
expected to recover from the EEH errors. After EEH core finishes
the reset, the driver callback (be_eeh_reset) is called and wait
the firmware to complete POST successfully. The original code would
return with error once detecting failure during POST stage. That
seems not enough.
The patch forces the driver (be_eeh_reset) to wait the firmware
completes POST until timeout, instead of returning error upon
detection POST failure immediately. Also, it would improve the
reliability of the EEH funtionality of the driver.
Signed-off-by: Gavin Shan <shangw@linux.vnet.ibm.com>
---
drivers/net/ethernet/emulex/benet/be_cmds.c | 27 ++++++++++-----------------
1 files changed, 10 insertions(+), 17 deletions(-)
diff --git a/drivers/net/ethernet/emulex/benet/be_cmds.c b/drivers/net/ethernet/emulex/benet/be_cmds.c
index 071aea7..813407f 100644
--- a/drivers/net/ethernet/emulex/benet/be_cmds.c
+++ b/drivers/net/ethernet/emulex/benet/be_cmds.c
@@ -473,7 +473,7 @@ static int be_mbox_notify_wait(struct be_adapter *adapter)
return 0;
}
-static int be_POST_stage_get(struct be_adapter *adapter, u16 *stage)
+static void be_POST_stage_get(struct be_adapter *adapter, u16 *stage)
{
u32 sem;
u32 reg = skyhawk_chip(adapter) ? SLIPORT_SEMAPHORE_OFFSET_SH :
@@ -481,11 +481,6 @@ static int be_POST_stage_get(struct be_adapter *adapter, u16 *stage)
pci_read_config_dword(adapter->pdev, reg, &sem);
*stage = sem & POST_STAGE_MASK;
-
- if ((sem >> POST_ERR_SHIFT) & POST_ERR_MASK)
- return -1;
- else
- return 0;
}
int lancer_wait_ready(struct be_adapter *adapter)
@@ -579,19 +574,17 @@ int be_fw_wait_ready(struct be_adapter *adapter)
}
do {
- status = be_POST_stage_get(adapter, &stage);
- if (status) {
- dev_err(dev, "POST error; stage=0x%x\n", stage);
- return -1;
- } else if (stage != POST_STAGE_ARMFW_RDY) {
- if (msleep_interruptible(2000)) {
- dev_err(dev, "Waiting for POST aborted\n");
- return -EINTR;
- }
- timeout += 2;
- } else {
+ be_POST_stage_get(adapter, &stage);
+ if (stage == POST_STAGE_ARMFW_RDY)
return 0;
+
+ dev_info(dev, "Waiting for POST, %ds elapsed\n",
+ timeout);
+ if (msleep_interruptible(2000)) {
+ dev_err(dev, "Waiting for POST aborted\n");
+ return -EINTR;
}
+ timeout += 2;
} while (timeout < 60);
dev_err(dev, "POST timeout; stage=0x%x\n", stage);
--
1.7.5.4
^ permalink raw reply related
* [PATCH 2/2] benet: Wait I/O while resuming device
From: Gavin Shan @ 2013-03-04 7:48 UTC (permalink / raw)
To: netdev; +Cc: sathya.perla, subbu.seetharaman, ajit.khaparde, Gavin Shan
In-Reply-To: <1362383327-32362-1-git-send-email-shangw@linux.vnet.ibm.com>
After resetting the adapter, the config space register (0x7c) might
give fake information to indicate the f/w is ready. In turn, 0xFF's
is always returned while accessing on I/O space registers. The patch
adds more check to make sure the I/O space is ready for access before
accessing that region.
Signed-off-by: Gavin Shan <shangw@linux.vnet.ibm.com>
---
drivers/net/ethernet/emulex/benet/be_cmds.c | 29 +++++++++++++++++++++++++++
drivers/net/ethernet/emulex/benet/be_cmds.h | 1 +
drivers/net/ethernet/emulex/benet/be_main.c | 5 ++++
3 files changed, 35 insertions(+), 0 deletions(-)
diff --git a/drivers/net/ethernet/emulex/benet/be_cmds.c b/drivers/net/ethernet/emulex/benet/be_cmds.c
index 813407f..3e8824e 100644
--- a/drivers/net/ethernet/emulex/benet/be_cmds.c
+++ b/drivers/net/ethernet/emulex/benet/be_cmds.c
@@ -696,6 +696,35 @@ static struct be_mcc_wrb *wrb_from_mccq(struct be_adapter *adapter)
return wrb;
}
+int be_cmd_fw_wait_io(struct be_adapter *adapter)
+{
+ void __iomem *db = adapter->db + MPU_MAILBOX_DB_OFFSET;
+ int timeout = 0;
+ u32 val;
+
+ if (lancer_chip(adapter))
+ return 0;
+
+ do {
+ val = ioread32(db);
+ if (val != 0xffffffff)
+ return 0;
+
+ dev_info(&adapter->pdev->dev,
+ "Wating for I/O (0x%08x), %ds elapsed\n",
+ val, timeout);
+ if (msleep_interruptible(2000)) {
+ dev_err(&adapter->pdev->dev,
+ "Waiting for I/O aborted\n");
+ return -EIO;
+ }
+ timeout += 2;
+ } while (timeout < 60);
+
+ dev_err(&adapter->pdev->dev, "Timeout waiting for I/O (%d)\n", timeout);
+ return -1;
+}
+
/* Tell fw we're about to start firing cmds by writing a
* special pattern across the wrb hdr; uses mbox
*/
diff --git a/drivers/net/ethernet/emulex/benet/be_cmds.h b/drivers/net/ethernet/emulex/benet/be_cmds.h
index 9697086..9d03cb1 100644
--- a/drivers/net/ethernet/emulex/benet/be_cmds.h
+++ b/drivers/net/ethernet/emulex/benet/be_cmds.h
@@ -1888,6 +1888,7 @@ int be_cmd_get_flash_crc(struct be_adapter *adapter, u8 *flashed_crc,
int offset);
extern int be_cmd_enable_magic_wol(struct be_adapter *adapter, u8 *mac,
struct be_dma_mem *nonemb_cmd);
+extern int be_cmd_fw_wait_io(struct be_adapter *adapter);
extern int be_cmd_fw_init(struct be_adapter *adapter);
extern int be_cmd_fw_clean(struct be_adapter *adapter);
extern void be_async_mcc_enable(struct be_adapter *adapter);
diff --git a/drivers/net/ethernet/emulex/benet/be_main.c b/drivers/net/ethernet/emulex/benet/be_main.c
index 3860888..7609424 100644
--- a/drivers/net/ethernet/emulex/benet/be_main.c
+++ b/drivers/net/ethernet/emulex/benet/be_main.c
@@ -4347,6 +4347,11 @@ static void be_eeh_resume(struct pci_dev *pdev)
pci_save_state(pdev);
+ /* Wating for I/O ready */
+ status = be_cmd_fw_wait_io(adapter);
+ if (status)
+ goto err;
+
/* tell fw we're ready to fire cmds */
status = be_cmd_fw_init(adapter);
if (status)
--
1.7.5.4
^ permalink raw reply related
* Re: [RFC PATCH 0/5] net: low latency Ethernet device polling
From: Cong Wang @ 2013-03-04 7:37 UTC (permalink / raw)
To: Eliezer Tamir
Cc: Willem de Bruijn, e1000-devel, netdev, Jesse Brandeburg,
linux-kernel, Andi Kleen, HPA, Eliezer Tamir, Dave Miller
In-Reply-To: <20130227175549.10611.82188.stgit@gitlad.jf.intel.com>
On 02/28/2013 01:55 AM, Eliezer Tamir wrote:
>
> Open issues:
> 1. Find a way to avoid the need to change the sk and skb structs.
> One big disadvantage of how we do this right now is that when a device is
> removed, it's hard to prevent it from getting polled by a socket
> which holds a stale reference.
>
> 2. How do we decide which sockets are eligible to do busy polling?
> Do we add a socket option to control this?
> How do we provide sane defaults while allowing flexibility and performance?
>
> 3. Andi Kleen and HPA pointed out that using get_cycles() is not portable.
>
> 4. How and where do we call ndo_ll_poll from the socket code?
> One good place seems to be wherever the kernel puts the process to sleep,
> waiting for more data, but this makes doing something intelligent about
> poll (the system call) hard. From the perspective of how ndo_ll_poll
> itself is implemented this does not seem to matter.
>
> 5. I would like to hear suggestions on naming conventions and where
> to put the code that for now I have put in include/net/ll_poll.h
>
A dumb question: is bypassing tcpdump/netfilters/qdisc etc. what we
always want? Isn't this a security issue?
Thanks!
------------------------------------------------------------------------------
Everyone hates slow websites. So do we.
Make your web apps faster with AppDynamics
Download AppDynamics Lite for free today:
http://p.sf.net/sfu/appdyn_d2d_feb
_______________________________________________
E1000-devel mailing list
E1000-devel@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/e1000-devel
To learn more about Intel® Ethernet, visit http://communities.intel.com/community/wired
^ permalink raw reply
* Re: [RFC PATCH 1/5] net: implement support for low latency socket polling
From: Cong Wang @ 2013-03-04 7:23 UTC (permalink / raw)
To: linux-kernel; +Cc: netdev, e1000-devel
In-Reply-To: <20130227175555.10611.42794.stgit@gitlad.jf.intel.com>
On Wed, 27 Feb 2013 at 17:55 GMT, Eliezer Tamir <eliezer.tamir@linux.jf.intel.com> wrote:
> +static inline void skb_mark_ll(struct napi_struct *napi, struct sk_buff *skb)
> +{
> + skb->dev_ref = napi;
> +}
> +
> +static inline void sk_mark_ll(struct sock *sk, struct sk_buff *skb)
> +{
> + if (skb->dev_ref)
> + sk->dev_ref = skb->dev_ref;
> +
> +}
It is actually easier to read the code without making them be
functions...
^ permalink raw reply
* [PATCH v3] CAIF: fix sparse warning for caif_usb
From: Silviu-Mihai Popescu @ 2013-03-04 7:09 UTC (permalink / raw)
To: netdev; +Cc: sjur.brandeland, davem, linux-kernel
This fixes the following sparse warning:
net/caif/caif_usb.c:84:16: warning: symbol 'cfusbl_create' was not
declared. Should it be static?
Signed-off-by: Silviu-Mihai Popescu <silviupopescu1990@gmail.com>
---
net/caif/caif_usb.c | 4 ++--
1 file changed, 2 insertions(+), 2 deletions(-)
diff --git a/net/caif/caif_usb.c b/net/caif/caif_usb.c
index 3ebc8cb..1c6ded9 100644
--- a/net/caif/caif_usb.c
+++ b/net/caif/caif_usb.c
@@ -81,8 +81,8 @@ static void cfusbl_ctrlcmd(struct cflayer *layr, enum caif_ctrlcmd ctrl,
layr->up->ctrlcmd(layr->up, ctrl, layr->id);
}
-struct cflayer *cfusbl_create(int phyid, u8 ethaddr[ETH_ALEN],
- u8 braddr[ETH_ALEN])
+static struct cflayer *cfusbl_create(int phyid, u8 ethaddr[ETH_ALEN],
+ u8 braddr[ETH_ALEN])
{
struct cfusbl *this = kmalloc(sizeof(struct cfusbl), GFP_ATOMIC);
--
1.7.9.5
^ permalink raw reply related
* Re: [PATCH v2] CAIF: fix sparse warning for caif_usb
From: David Miller @ 2013-03-04 7:00 UTC (permalink / raw)
To: silviupopescu1990; +Cc: netdev, sjur.brandeland, linux-kernel
In-Reply-To: <1362379920-26126-1-git-send-email-silviupopescu1990@gmail.com>
From: Silviu-Mihai Popescu <silviupopescu1990@gmail.com>
Date: Mon, 4 Mar 2013 08:52:00 +0200
> This fixes the following sparse warning:
> net/caif/caif_usb.c:84:16: warning: symbol 'cfusbl_create' was not
> declared. Should it be static?
>
> Signed-off-by: Silviu-Mihai Popescu <silviupopescu1990@gmail.com>
> ---
> net/caif/caif_usb.c | 4 ++--
> 1 file changed, 2 insertions(+), 2 deletions(-)
>
> diff --git a/net/caif/caif_usb.c b/net/caif/caif_usb.c
> index 3ebc8cb..1c6ded9 100644
> --- a/net/caif/caif_usb.c
> +++ b/net/caif/caif_usb.c
> @@ -81,8 +81,8 @@ static void cfusbl_ctrlcmd(struct cflayer *layr, enum caif_ctrlcmd ctrl,
> layr->up->ctrlcmd(layr->up, ctrl, layr->id);
> }
>
> -struct cflayer *cfusbl_create(int phyid, u8 ethaddr[ETH_ALEN],
> - u8 braddr[ETH_ALEN])
> +static struct cflayer *cfusbl_create(int phyid, u8 ethaddr[ETH_ALEN],
> + u8 braddr[ETH_ALEN])
Nope, that indentation isn't correct, is should be:
static struct cflayer *cfusbl_create(int phyid, u8 ethaddr[ETH_ALEN],
u8 braddr[ETH_ALEN])
Read my email, I said that the first character on the second line
must line up with the first column after the openning parenthesis
of the first line.
^ permalink raw reply
* [Patch net] rds: simplify a warning message
From: Cong Wang @ 2013-03-04 6:57 UTC (permalink / raw)
To: netdev; +Cc: David S. Miller, Venkat Venkatsubra, Cong Wang
From: Cong Wang <amwang@redhat.com>
Cc: David S. Miller <davem@davemloft.net>
Cc: Venkat Venkatsubra <venkat.x.venkatsubra@oracle.com>
Signed-off-by: Cong Wang <amwang@redhat.com>
---
diff --git a/net/rds/message.c b/net/rds/message.c
index f0a4658..5586cae 100644
--- a/net/rds/message.c
+++ b/net/rds/message.c
@@ -82,10 +82,7 @@ static void rds_message_purge(struct rds_message *rm)
void rds_message_put(struct rds_message *rm)
{
rdsdebug("put rm %p ref %d\n", rm, atomic_read(&rm->m_refcount));
- if (atomic_read(&rm->m_refcount) == 0) {
-printk(KERN_CRIT "danger refcount zero on %p\n", rm);
-WARN_ON(1);
- }
+ WARN(!atomic_read(&rm->m_refcount), "danger refcount zero on %p\n", rm);
if (atomic_dec_and_test(&rm->m_refcount)) {
BUG_ON(!list_empty(&rm->m_sock_item));
BUG_ON(!list_empty(&rm->m_conn_item));
^ permalink raw reply related
* [PATCH v2] CAIF: fix sparse warning for caif_usb
From: Silviu-Mihai Popescu @ 2013-03-04 6:52 UTC (permalink / raw)
To: netdev; +Cc: sjur.brandeland, davem, linux-kernel
This fixes the following sparse warning:
net/caif/caif_usb.c:84:16: warning: symbol 'cfusbl_create' was not
declared. Should it be static?
Signed-off-by: Silviu-Mihai Popescu <silviupopescu1990@gmail.com>
---
net/caif/caif_usb.c | 4 ++--
1 file changed, 2 insertions(+), 2 deletions(-)
diff --git a/net/caif/caif_usb.c b/net/caif/caif_usb.c
index 3ebc8cb..1c6ded9 100644
--- a/net/caif/caif_usb.c
+++ b/net/caif/caif_usb.c
@@ -81,8 +81,8 @@ static void cfusbl_ctrlcmd(struct cflayer *layr, enum caif_ctrlcmd ctrl,
layr->up->ctrlcmd(layr->up, ctrl, layr->id);
}
-struct cflayer *cfusbl_create(int phyid, u8 ethaddr[ETH_ALEN],
- u8 braddr[ETH_ALEN])
+static struct cflayer *cfusbl_create(int phyid, u8 ethaddr[ETH_ALEN],
+ u8 braddr[ETH_ALEN])
{
struct cfusbl *this = kmalloc(sizeof(struct cfusbl), GFP_ATOMIC);
--
1.7.9.5
^ permalink raw reply related
* [PATCH] net: ipv6: Don't purge default router if accept_ra=2
From: Lorenzo Colitti @ 2013-03-04 6:46 UTC (permalink / raw)
To: netdev; +Cc: Eric Dumazet
Setting net.ipv6.conf.<interface>.accept_ra=2 causes the kernel
to accept RAs even when forwarding is enabled. However, enabling
forwarding purges all default routes on the system, breaking
connectivity until the next RA is received. Fix this by not
purging default routes on interfaces that have accept_ra=2.
Signed-off-by: Lorenzo Colitti <lorenzo@google.com>
---
net/ipv6/route.c | 3 ++-
1 file changed, 2 insertions(+), 1 deletion(-)
diff --git a/net/ipv6/route.c b/net/ipv6/route.c
index 9282665..e5fe004 100644
--- a/net/ipv6/route.c
+++ b/net/ipv6/route.c
@@ -1915,7 +1915,8 @@ void rt6_purge_dflt_routers(struct net *net)
restart:
read_lock_bh(&table->tb6_lock);
for (rt = table->tb6_root.leaf; rt; rt = rt->dst.rt6_next) {
- if (rt->rt6i_flags & (RTF_DEFAULT | RTF_ADDRCONF)) {
+ if (rt->rt6i_flags & (RTF_DEFAULT | RTF_ADDRCONF) &&
+ (!rt->rt6i_idev || rt->rt6i_idev->cnf.accept_ra != 2)) {
dst_hold(&rt->dst);
read_unlock_bh(&table->tb6_lock);
ip6_del_rt(rt);
--
1.8.1.3
^ permalink raw reply related
* Re: [Patch net] garp: fix a NULL pointer dereference bug
From: Eric Dumazet @ 2013-03-04 5:26 UTC (permalink / raw)
To: Cong Wang; +Cc: netdev, bugs, David Ward, Stephen Hemminger, David S. Miller
In-Reply-To: <1362368217-30984-1-git-send-email-amwang@redhat.com>
On Mon, 2013-03-04 at 11:36 +0800, Cong Wang wrote:
> From: Cong Wang <amwang@redhat.com>
>
> A NULL-deref bug was reported in:
> https://bugzilla.kernel.org/show_bug.cgi?id=54281
> when deleting a vlan interface:
>
> # ip link del em1.57
> BUG: unable to handle kernel NULL pointer dereference at (null)
> IP: [<ffffffffa03c356f>] garp_uninit_applicant+0x2f/0xd0 [garp]
> ...
>
> This is probably app->pdu is NULL'ed in garp_pdu_rcv()
> in BH, while garp_uninit_applicant() only holds rtnl lock
> which is not enough to prevent this.
>
> OTOH, garp_pdu_queue() should ways be called with the spin lock.
>
>
> Reported-by: bugs@syam.in
> Cc: bugs@syam.in
> Cc: David Ward <david.ward@ll.mit.edu>
> Cc: Stephen Hemminger <stephen@networkplumber.org>
> Cc: David S. Miller <davem@davemloft.net>
> Signed-off-by: Cong Wang <amwang@redhat.com>
>
> ---
> diff --git a/net/802/garp.c b/net/802/garp.c
> index 8456f5d..5d9630a 100644
> --- a/net/802/garp.c
> +++ b/net/802/garp.c
> @@ -609,8 +609,12 @@ void garp_uninit_applicant(struct net_device *dev, struct garp_application *appl
> /* Delete timer and generate a final TRANSMIT_PDU event to flush out
> * all pending messages before the applicant is gone. */
> del_timer_sync(&app->join_timer);
> +
> + spin_lock_bh(&app->lock);
> garp_gid_event(app, GARP_EVENT_TRANSMIT_PDU);
> garp_pdu_queue(app);
> + spin_unlock_bh(&app->lock);
> +
> garp_queue_xmit(app);
>
> dev_mc_del(dev, appl->proto.group_address);
Nope this patch doesnt solve the problem
Crash is in :
49 8b 1c c6 mov (%r14,%rax,8),%rbx
Thats because r14 (port) is NULL
^ permalink raw reply
* Re: NET: FEC: dynamtic check DMA desc buff type
From: Greg Ungerer @ 2013-03-04 5:06 UTC (permalink / raw)
To: Frank Li; +Cc: Frank Li, Sascha Hauer, netdev, lkml
In-Reply-To: <CAHrpEqS_nrBzHr23vQrukQE0XmxP5EVWB44aOcMQctjzYqgnGQ@mail.gmail.com>
Hi Frank,
On 04/03/13 14:35, Frank Li wrote:
> 2013/3/4 Greg Ungerer <gerg@uclinux.org>:
>> Commit ff43da86c69d76a726ffe7d1666148960dc1d108 ("NET: FEC: dynamtic
>> check DMA desc buff type") breaks building of the fec ethernet driver
>> for non CONFIG_ARCH_MXC targets.
>>
>> For example building for ColdFire devices with FEC hardware now
>> fails like this
>>
>> drivers/net/ethernet/freescale/fec.c: In function ‘fec_enet_get_nextdesc’:
>> drivers/net/ethernet/freescale/fec.c:215:18: error: invalid use of undefined
>> type ‘struct bufdesc_ex’
>> drivers/net/ethernet/freescale/fec.c: In function ‘fec_enet_get_prevdesc’:
>> drivers/net/ethernet/freescale/fec.c:224:18: error: invalid use of undefined
>> type ‘struct bufdesc_ex’
>> drivers/net/ethernet/freescale/fec.c: In function ‘fec_enet_start_xmit’:
>> drivers/net/ethernet/freescale/fec.c:286:37: error: arithmetic on pointer to
>> an incomplete type
>> drivers/net/ethernet/freescale/fec.c:287:13: error: arithmetic on pointer to
>> an incomplete type
>> drivers/net/ethernet/freescale/fec.c:324:7: error: dereferencing pointer to
>> incomplete type
>> etc....
>>
>> These where generated on 3.9-rc1.
>>
>> Can you please fix?
>
> I can fix it.
> I have not build environment to test.
> Can you help me to test it?
Oh yes, I can test any fixes.
If you had a m68k-linux compiler you can build with the
arch/m68k/configs/m5208evb_defconfig which shows the problem.
Regards
Greg
>> --
>> To unsubscribe from this list: send the line "unsubscribe netdev" in
>> the body of a message to majordomo@vger.kernel.org
>> More majordomo info at http://vger.kernel.org/majordomo-info.html
>
^ permalink raw reply
* Re: NET: FEC: dynamtic check DMA desc buff type
From: Frank Li @ 2013-03-04 4:35 UTC (permalink / raw)
To: Greg Ungerer; +Cc: Frank Li, Sascha Hauer, netdev, lkml
In-Reply-To: <513415C1.2070904@uclinux.org>
2013/3/4 Greg Ungerer <gerg@uclinux.org>:
>
> Hi Frank,
>
> Commit ff43da86c69d76a726ffe7d1666148960dc1d108 ("NET: FEC: dynamtic
> check DMA desc buff type") breaks building of the fec ethernet driver
> for non CONFIG_ARCH_MXC targets.
>
> For example building for ColdFire devices with FEC hardware now
> fails like this
>
> drivers/net/ethernet/freescale/fec.c: In function ‘fec_enet_get_nextdesc’:
> drivers/net/ethernet/freescale/fec.c:215:18: error: invalid use of undefined
> type ‘struct bufdesc_ex’
> drivers/net/ethernet/freescale/fec.c: In function ‘fec_enet_get_prevdesc’:
> drivers/net/ethernet/freescale/fec.c:224:18: error: invalid use of undefined
> type ‘struct bufdesc_ex’
> drivers/net/ethernet/freescale/fec.c: In function ‘fec_enet_start_xmit’:
> drivers/net/ethernet/freescale/fec.c:286:37: error: arithmetic on pointer to
> an incomplete type
> drivers/net/ethernet/freescale/fec.c:287:13: error: arithmetic on pointer to
> an incomplete type
> drivers/net/ethernet/freescale/fec.c:324:7: error: dereferencing pointer to
> incomplete type
> etc....
>
> These where generated on 3.9-rc1.
>
> Can you please fix?
I can fix it.
I have not build environment to test.
Can you help me to test it?
>
> Regards
> Greg
>
> --
> To unsubscribe from this list: send the line "unsubscribe netdev" in
> the body of a message to majordomo@vger.kernel.org
> More majordomo info at http://vger.kernel.org/majordomo-info.html
^ permalink raw reply
* Re: [PATCH] ircomm: release tty before sleeping potentially indefintely
From: Peter Hurley @ 2013-03-04 4:30 UTC (permalink / raw)
To: David Miller; +Cc: sasha.levin, samuel, gregkh, jslaby, netdev, linux-kernel
In-Reply-To: <20130303.213601.1201168888595187293.davem@davemloft.net>
On Sun, 2013-03-03 at 21:36 -0500, David Miller wrote:
> From: Peter Hurley <peter@hurleysoftware.com>
> Date: Sun, 03 Mar 2013 20:06:18 -0500
>
> > But regardless, this function __cannot__ sleep holding the tty_lock().
>
> So drop it across the schedule(), but recheck the termios after
> regrabbing it.
I'll have to do some research on that.
1) The code is using a deliberate snapshot.
if (tty->termios.c_cflag & CLOCAL) {
IRDA_DEBUG(1, "%s(), doing CLOCAL!\n", __func__ );
do_clocal = 1;
}
.....
while (1) {
.........
/*
* Check if link is ready now. Even if CLOCAL is
* specified, we cannot return before the IrCOMM link is
* ready
*/
if (!test_bit(ASYNCB_CLOSING, &port->flags) &&
(do_clocal || tty_port_carrier_raised(port)) &&
self->state == IRCOMM_TTY_READY)
{
break;
}
2) The only reason this driver isn't using tty_port_block_til_ready() is
the lone state check:
self->state == IRCOMM_TTY_READY
I take it IRDA has some kind of virtual cabling protocol. But it's
unclear why this can't be implemented in the driver without duplicating
tty_port_block_til_ready(). For example, if the device can't do CLOCAL
open (meaning no underlying device attached prior to open) then why
specify that in the driver flags? Additionally, CLOCAL can be masked out
by the driver's set_termios() method. And then it could implement the
state check in its .carrier_raised() method.
The net result of which would obviate the need for
ircomm_tty_block_til_ready() at all.
3) The do_clocal snapshot is universally employed by every tty driver. I
don't mean that as some kind of lame excuse. But if this should change,
it should change across every tty driver with a really good reason.
4) Rechecking termios will change the way the user-space open() for this
device behaves. And I need to think more on how that might or might not
be a problem.
5) The code behavior pre-dates the 2005 check-in so I'll probably have
to do some code archaeology.
That's probably going to take some time.
In the meantime, while reviewing that code, I noticed there's a handful
of serious bugs in that one function that I'll send a patchset for.
Plus, someone could be back to me on if and why the driver needs to be
virtually cabled to open().
Regards,
Peter Hurley
^ permalink raw reply
page: next (older) | prev (newer) | latest
- recent:[subjects (threaded)|topics (new)|topics (active)]
This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox