Netdev List
 help / color / mirror / Atom feed
* [PATCH 17/19] netfilter: nf_nat: support IPv6 in IRC NAT helper
From: Patrick McHardy @ 2012-08-28 21:48 UTC (permalink / raw)
  To: pablo; +Cc: netfilter-devel, netdev
In-Reply-To: <1346190539-9963-1-git-send-email-kaber@trash.net>

From: Pablo Neira Ayuso <pablo@netfilter.org>

Signed-off-by: Pablo Neira Ayuso <pablo@netfilter.org>
Signed-off-by: Patrick McHardy <kaber@trash.net>
---
 net/ipv4/netfilter/Kconfig            |    5 -----
 net/ipv4/netfilter/Makefile           |    1 -
 net/netfilter/Kconfig                 |    5 +++++
 net/netfilter/Makefile                |    1 +
 net/netfilter/nf_conntrack_irc.c      |    3 +--
 net/{ipv4 => }/netfilter/nf_nat_irc.c |    6 ------
 6 files changed, 7 insertions(+), 14 deletions(-)
 rename net/{ipv4 => }/netfilter/nf_nat_irc.c (92%)

diff --git a/net/ipv4/netfilter/Kconfig b/net/ipv4/netfilter/Kconfig
index 30197f8..843fe17 100644
--- a/net/ipv4/netfilter/Kconfig
+++ b/net/ipv4/netfilter/Kconfig
@@ -221,11 +221,6 @@ config NF_NAT_PROTO_GRE
 	tristate
 	depends on NF_NAT_IPV4 && NF_CT_PROTO_GRE
 
-config NF_NAT_IRC
-	tristate
-	depends on NF_CONNTRACK && NF_NAT_IPV4
-	default NF_NAT_IPV4 && NF_CONNTRACK_IRC
-
 config NF_NAT_TFTP
 	tristate
 	depends on NF_CONNTRACK && NF_NAT_IPV4
diff --git a/net/ipv4/netfilter/Makefile b/net/ipv4/netfilter/Makefile
index 8914abf..17e649b 100644
--- a/net/ipv4/netfilter/Makefile
+++ b/net/ipv4/netfilter/Makefile
@@ -21,7 +21,6 @@ obj-$(CONFIG_NF_DEFRAG_IPV4) += nf_defrag_ipv4.o
 
 # NAT helpers (nf_conntrack)
 obj-$(CONFIG_NF_NAT_H323) += nf_nat_h323.o
-obj-$(CONFIG_NF_NAT_IRC) += nf_nat_irc.o
 obj-$(CONFIG_NF_NAT_PPTP) += nf_nat_pptp.o
 obj-$(CONFIG_NF_NAT_SNMP_BASIC) += nf_nat_snmp_basic.o
 obj-$(CONFIG_NF_NAT_TFTP) += nf_nat_tftp.o
diff --git a/net/netfilter/Kconfig b/net/netfilter/Kconfig
index bf3e464..cabe4da 100644
--- a/net/netfilter/Kconfig
+++ b/net/netfilter/Kconfig
@@ -390,6 +390,11 @@ config NF_NAT_FTP
 	depends on NF_CONNTRACK && NF_NAT
 	default NF_NAT && NF_CONNTRACK_FTP
 
+config NF_NAT_IRC
+	tristate
+	depends on NF_CONNTRACK && NF_NAT
+	default NF_NAT && NF_CONNTRACK_IRC
+
 config NF_NAT_SIP
 	tristate
 	depends on NF_CONNTRACK && NF_NAT
diff --git a/net/netfilter/Makefile b/net/netfilter/Makefile
index 7d6d1a0..0dd7929 100644
--- a/net/netfilter/Makefile
+++ b/net/netfilter/Makefile
@@ -57,6 +57,7 @@ obj-$(CONFIG_NF_NAT_PROTO_SCTP) += nf_nat_proto_sctp.o
 # NAT helpers
 obj-$(CONFIG_NF_NAT_AMANDA) += nf_nat_amanda.o
 obj-$(CONFIG_NF_NAT_FTP) += nf_nat_ftp.o
+obj-$(CONFIG_NF_NAT_IRC) += nf_nat_irc.o
 obj-$(CONFIG_NF_NAT_SIP) += nf_nat_sip.o
 
 # transparent proxy support
diff --git a/net/netfilter/nf_conntrack_irc.c b/net/netfilter/nf_conntrack_irc.c
index 95d097c..3b20aa7 100644
--- a/net/netfilter/nf_conntrack_irc.c
+++ b/net/netfilter/nf_conntrack_irc.c
@@ -205,8 +205,7 @@ static int help(struct sk_buff *skb, unsigned int protoff,
 					  IPPROTO_TCP, NULL, &port);
 
 			nf_nat_irc = rcu_dereference(nf_nat_irc_hook);
-			if (nf_nat_irc && nf_ct_l3num(ct) == NFPROTO_IPV4 &&
-			    ct->status & IPS_NAT_MASK)
+			if (nf_nat_irc && ct->status & IPS_NAT_MASK)
 				ret = nf_nat_irc(skb, ctinfo, protoff,
 						 addr_beg_p - ib_ptr,
 						 addr_end_p - addr_beg_p,
diff --git a/net/ipv4/netfilter/nf_nat_irc.c b/net/netfilter/nf_nat_irc.c
similarity index 92%
rename from net/ipv4/netfilter/nf_nat_irc.c
rename to net/netfilter/nf_nat_irc.c
index 1ce37f8..1fedee6 100644
--- a/net/ipv4/netfilter/nf_nat_irc.c
+++ b/net/netfilter/nf_nat_irc.c
@@ -34,7 +34,6 @@ static unsigned int help(struct sk_buff *skb,
 			 struct nf_conntrack_expect *exp)
 {
 	char buffer[sizeof("4294967296 65635")];
-	u_int32_t ip;
 	u_int16_t port;
 	unsigned int ret;
 
@@ -60,11 +59,6 @@ static unsigned int help(struct sk_buff *skb,
 	if (port == 0)
 		return NF_DROP;
 
-	ip = ntohl(exp->master->tuplehash[IP_CT_DIR_REPLY].tuple.dst.u3.ip);
-	sprintf(buffer, "%u %u", ip, port);
-	pr_debug("nf_nat_irc: inserting '%s' == %pI4, port %u\n",
-		 buffer, &ip, port);
-
 	ret = nf_nat_mangle_tcp_packet(skb, exp->master, ctinfo,
 				       protoff, matchoff, matchlen, buffer,
 				       strlen(buffer));
-- 
1.7.1

^ permalink raw reply related

* [PATCH 18/19] netfilter: nf_nat: support IPv6 in TFTP NAT helper
From: Patrick McHardy @ 2012-08-28 21:48 UTC (permalink / raw)
  To: pablo; +Cc: netfilter-devel, netdev
In-Reply-To: <1346190539-9963-1-git-send-email-kaber@trash.net>

From: Pablo Neira Ayuso <pablo@netfilter.org>

Signed-off-by: Pablo Neira Ayuso <pablo@netfilter.org>
Signed-off-by: Patrick McHardy <kaber@trash.net>
---
 net/ipv4/netfilter/Kconfig             |    5 -----
 net/ipv4/netfilter/Makefile            |    1 -
 net/netfilter/Kconfig                  |    5 +++++
 net/netfilter/Makefile                 |    1 +
 net/netfilter/nf_conntrack_tftp.c      |    3 +--
 net/{ipv4 => }/netfilter/nf_nat_tftp.c |    0
 6 files changed, 7 insertions(+), 8 deletions(-)
 rename net/{ipv4 => }/netfilter/nf_nat_tftp.c (100%)

diff --git a/net/ipv4/netfilter/Kconfig b/net/ipv4/netfilter/Kconfig
index 843fe17..131e537 100644
--- a/net/ipv4/netfilter/Kconfig
+++ b/net/ipv4/netfilter/Kconfig
@@ -221,11 +221,6 @@ config NF_NAT_PROTO_GRE
 	tristate
 	depends on NF_NAT_IPV4 && NF_CT_PROTO_GRE
 
-config NF_NAT_TFTP
-	tristate
-	depends on NF_CONNTRACK && NF_NAT_IPV4
-	default NF_NAT_IPV4 && NF_CONNTRACK_TFTP
-
 config NF_NAT_PPTP
 	tristate
 	depends on NF_CONNTRACK && NF_NAT_IPV4
diff --git a/net/ipv4/netfilter/Makefile b/net/ipv4/netfilter/Makefile
index 17e649b..b7dd189 100644
--- a/net/ipv4/netfilter/Makefile
+++ b/net/ipv4/netfilter/Makefile
@@ -23,7 +23,6 @@ obj-$(CONFIG_NF_DEFRAG_IPV4) += nf_defrag_ipv4.o
 obj-$(CONFIG_NF_NAT_H323) += nf_nat_h323.o
 obj-$(CONFIG_NF_NAT_PPTP) += nf_nat_pptp.o
 obj-$(CONFIG_NF_NAT_SNMP_BASIC) += nf_nat_snmp_basic.o
-obj-$(CONFIG_NF_NAT_TFTP) += nf_nat_tftp.o
 
 # NAT protocols (nf_nat)
 obj-$(CONFIG_NF_NAT_PROTO_GRE) += nf_nat_proto_gre.o
diff --git a/net/netfilter/Kconfig b/net/netfilter/Kconfig
index cabe4da..052836e 100644
--- a/net/netfilter/Kconfig
+++ b/net/netfilter/Kconfig
@@ -400,6 +400,11 @@ config NF_NAT_SIP
 	depends on NF_CONNTRACK && NF_NAT
 	default NF_NAT && NF_CONNTRACK_SIP
 
+config NF_NAT_TFTP
+	tristate
+	depends on NF_CONNTRACK && NF_NAT
+	default NF_NAT && NF_CONNTRACK_TFTP
+
 endif # NF_CONNTRACK
 
 # transparent proxy support
diff --git a/net/netfilter/Makefile b/net/netfilter/Makefile
index 0dd7929..403ea81 100644
--- a/net/netfilter/Makefile
+++ b/net/netfilter/Makefile
@@ -59,6 +59,7 @@ obj-$(CONFIG_NF_NAT_AMANDA) += nf_nat_amanda.o
 obj-$(CONFIG_NF_NAT_FTP) += nf_nat_ftp.o
 obj-$(CONFIG_NF_NAT_IRC) += nf_nat_irc.o
 obj-$(CONFIG_NF_NAT_SIP) += nf_nat_sip.o
+obj-$(CONFIG_NF_NAT_TFTP) += nf_nat_tftp.o
 
 # transparent proxy support
 obj-$(CONFIG_NETFILTER_TPROXY) += nf_tproxy_core.o
diff --git a/net/netfilter/nf_conntrack_tftp.c b/net/netfilter/nf_conntrack_tftp.c
index 9363e1c..81fc61c 100644
--- a/net/netfilter/nf_conntrack_tftp.c
+++ b/net/netfilter/nf_conntrack_tftp.c
@@ -72,8 +72,7 @@ static int tftp_help(struct sk_buff *skb,
 		nf_ct_dump_tuple(&exp->tuple);
 
 		nf_nat_tftp = rcu_dereference(nf_nat_tftp_hook);
-		if (nf_nat_tftp && nf_ct_l3num(ct) == NFPROTO_IPV4 &&
-		    ct->status & IPS_NAT_MASK)
+		if (nf_nat_tftp && ct->status & IPS_NAT_MASK)
 			ret = nf_nat_tftp(skb, ctinfo, exp);
 		else if (nf_ct_expect_related(exp) != 0)
 			ret = NF_DROP;
diff --git a/net/ipv4/netfilter/nf_nat_tftp.c b/net/netfilter/nf_nat_tftp.c
similarity index 100%
rename from net/ipv4/netfilter/nf_nat_tftp.c
rename to net/netfilter/nf_nat_tftp.c
-- 
1.7.1

^ permalink raw reply related

* route.c:645 suspicious rcu_dereference_check()
From: Pavel Roskin @ 2012-08-28 21:57 UTC (permalink / raw)
  To: netdev

[-- Attachment #1: Type: text/plain, Size: 1628 bytes --]

Hello!

I've got a warning in the kernel log starting with

[ 1570.586223] ===============================
[ 1570.586225] [ INFO: suspicious RCU usage. ]
[ 1570.586228] 3.6.0-rc3-wl-main #98 Not tainted
[ 1570.586229] -------------------------------
[ 1570.586231] /home/proski/src/linux/net/ipv4/route.c:645 suspicious
rcu_dereference_check() usage! [ 1570.586233] 
[ 1570.586233] other info that might help us debug this:
[ 1570.586233] 
[ 1570.586236] 
[ 1570.586236] rcu_scheduler_active = 1, debug_locks = 0
[ 1570.586238] 2 locks held by Chrome_IOThread/4467:
[ 1570.586240]  #0:  (slock-AF_INET){+.-...}, at: [<ffffffff814f2c0c>]
release_sock+0x2c/0xa0 [ 1570.586253]  #1:  (fnhe_lock){+.-...}, at:
[<ffffffff815302fc>] update_or_create_fnhe+0x2c/0x270 [ 1570.586260] 
[ 1570.586260] stack backtrace:
[ 1570.586263] Pid: 4467, comm: Chrome_IOThread Not tainted
3.6.0-rc3-wl-main #98 [ 1570.586265] Call Trace:
[ 1570.586271]  [<ffffffff810976ed>] lockdep_rcu_suspicious+0xfd/0x130
[ 1570.586275]  [<ffffffff8153042c>] update_or_create_fnhe+0x15c/0x270

The dmesg output and the .config file are attached.

I'm using the current wireless-testing.git, commit
46e3e1c03e88a8de28c2f0ab641a0d9a6a63893e.

The warning was apparently triggered by Google Chromium.  I'm running
Fedora 16 x64_64 with chromium-20.0.1132.47-2.

I ran Skype before that, not sure it's related.  I'm also experiencing
a problem with USB sound.  There is no sound and some programs hand if
they try to produce sound.  I also get a crash if I disconnect the USB
headset.  But I don't see anything about USB in the backtrace.

-- 
Regards,
Pavel Roskin

[-- Attachment #2: kernel.log --]
[-- Type: text/x-log, Size: 195124 bytes --]

[    0.000000] Initializing cgroup subsys cpuset
[    0.000000] Initializing cgroup subsys cpu
[    0.000000] Linux version 3.6.0-rc3-wl-main (proski@mj) (gcc version 4.6.3 20120306 (Red Hat 4.6.3-2) (GCC) ) #98 SMP Tue Aug 28 11:03:00 EDT 2012
[    0.000000] Command line: BOOT_IMAGE=/boot/vmlinuz-3.6.0-rc3-wl-main root=UUID=69ea49b8-e1c0-494e-a5b2-3e0f4850decf ro
[    0.000000] e820: BIOS-provided physical RAM map:
[    0.000000] BIOS-e820: [mem 0x0000000000000000-0x000000000009fbff] usable
[    0.000000] BIOS-e820: [mem 0x000000000009fc00-0x000000000009ffff] reserved
[    0.000000] BIOS-e820: [mem 0x00000000000e0000-0x00000000000fffff] reserved
[    0.000000] BIOS-e820: [mem 0x0000000000100000-0x00000000cf69ffff] usable
[    0.000000] BIOS-e820: [mem 0x00000000cf6a0000-0x00000000cf6adfff] ACPI data
[    0.000000] BIOS-e820: [mem 0x00000000cf6ae000-0x00000000cf6effff] ACPI NVS
[    0.000000] BIOS-e820: [mem 0x00000000cf6f0000-0x00000000cf6fdfff] reserved
[    0.000000] BIOS-e820: [mem 0x00000000fee00000-0x00000000fee00fff] reserved
[    0.000000] BIOS-e820: [mem 0x00000000ffb80000-0x00000000ffffffff] reserved
[    0.000000] BIOS-e820: [mem 0x0000000100000000-0x000000012fffffff] usable
[    0.000000] NX (Execute Disable) protection: active
[    0.000000] DMI present.
[    0.000000] DMI: ECS G31T-M/G31T-M, BIOS 080014  01/07/2009
[    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 = 0x130000 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-CBFFF write-protect
[    0.000000]   CC000-DFFFF uncachable
[    0.000000]   E0000-EFFFF write-through
[    0.000000]   F0000-FFFFF write-protect
[    0.000000] MTRR variable ranges enabled:
[    0.000000]   0 base 000000000 mask F00000000 write-back
[    0.000000]   1 base 100000000 mask FE0000000 write-back
[    0.000000]   2 base 120000000 mask FF0000000 write-back
[    0.000000]   3 base 0D0000000 mask FF0000000 uncachable
[    0.000000]   4 base 0E0000000 mask FE0000000 uncachable
[    0.000000]   5 base 0CF700000 mask FFFF00000 uncachable
[    0.000000]   6 base 0CF800000 mask FFF800000 uncachable
[    0.000000]   7 disabled
[    0.000000] x86 PAT enabled: cpu 0, old 0x7040600070406, new 0x7010600070106
[    0.000000] e820: update [mem 0xcf700000-0xffffffff] usable ==> reserved
[    0.000000] e820: last_pfn = 0xcf6a0 max_arch_pfn = 0x400000000
[    0.000000] initial memory mapped: [mem 0x00000000-0x1fffffff]
[    0.000000] Base memory trampoline at [ffff880000099000] 99000 size 24576
[    0.000000] init_memory_mapping: [mem 0x00000000-0xcf69ffff]
[    0.000000]  [mem 0x00000000-0xcf69ffff] page 4k
[    0.000000] kernel direct mapping tables up to 0xcf69ffff @ [mem 0x1f97f000-0x1fffffff]
[    0.000000] init_memory_mapping: [mem 0x100000000-0x12fffffff]
[    0.000000]  [mem 0x100000000-0x12fffffff] page 4k
[    0.000000] kernel direct mapping tables up to 0x12fffffff @ [mem 0xced1a000-0xcf69ffff]
[    0.000000] RAMDISK: [mem 0x375f2000-0x37af0fff]
[    0.000000] ACPI: RSDP 00000000000f9c40 00014 (v00 ACPIAM)
[    0.000000] ACPI: RSDT 00000000cf6a0000 00040 (v01 010709 RSDT1731 20090107 MSFT 00000097)
[    0.000000] ACPI: FACP 00000000cf6a0200 00084 (v01 010709 FACP1731 20090107 MSFT 00000097)
[    0.000000] ACPI: DSDT 00000000cf6a0440 05AF2 (v01  1AAAA 1AAAA000 00000000 INTL 20051117)
[    0.000000] ACPI: FACS 00000000cf6ae000 00040
[    0.000000] ACPI: APIC 00000000cf6a0390 0006C (v01 010709 APIC1731 20090107 MSFT 00000097)
[    0.000000] ACPI: MCFG 00000000cf6a0400 0003C (v01 010709 OEMMCFG  20090107 MSFT 00000097)
[    0.000000] ACPI: OEMB 00000000cf6ae040 00071 (v01 010709 OEMB1731 20090107 MSFT 00000097)
[    0.000000] ACPI: HPET 00000000cf6a5f40 00038 (v01 010709 OEMHPET  20090107 MSFT 00000097)
[    0.000000] ACPI: GSCI 00000000cf6ae0c0 02024 (v01 010709 GMCHSCI  20090107 MSFT 00000097)
[    0.000000] ACPI: SSDT 00000000cf6b1330 00A7C (v01 DpgPmm    CpuPm 00000012 INTL 20051117)
[    0.000000] ACPI: Local APIC address 0xfee00000
[    0.000000]  [ffffea0000000000-ffffea0004bfffff] PMD -> [ffff88012b600000-ffff88012f5fffff] on node 0
[    0.000000] Zone ranges:
[    0.000000]   DMA      [mem 0x00010000-0x00ffffff]
[    0.000000]   DMA32    [mem 0x01000000-0xffffffff]
[    0.000000]   Normal   [mem 0x100000000-0x12fffffff]
[    0.000000] Movable zone start for each node
[    0.000000] Early memory node ranges
[    0.000000]   node   0: [mem 0x00010000-0x0009efff]
[    0.000000]   node   0: [mem 0x00100000-0xcf69ffff]
[    0.000000]   node   0: [mem 0x100000000-0x12fffffff]
[    0.000000] On node 0 totalpages: 1046063
[    0.000000]   DMA zone: 64 pages used for memmap
[    0.000000]   DMA zone: 6 pages reserved
[    0.000000]   DMA zone: 3913 pages, LIFO batch:0
[    0.000000]   DMA32 zone: 16320 pages used for memmap
[    0.000000]   DMA32 zone: 829152 pages, LIFO batch:31
[    0.000000]   Normal zone: 3072 pages used for memmap
[    0.000000]   Normal zone: 193536 pages, LIFO batch:31
[    0.000000] ACPI: PM-Timer IO Port: 0x808
[    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[0x01] enabled)
[    0.000000] ACPI: LAPIC (acpi_id[0x03] lapic_id[0x02] enabled)
[    0.000000] ACPI: LAPIC (acpi_id[0x04] lapic_id[0x03] enabled)
[    0.000000] ACPI: IOAPIC (id[0x04] address[0xfec00000] gsi_base[0])
[    0.000000] IOAPIC[0]: apic_id 4, 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: 0xffffffff base: 0xfed00000
[    0.000000] smpboot: Allowing 4 CPUs, 0 hotplug CPUs
[    0.000000] nr_irqs_gsi: 40
[    0.000000] e820: [mem 0xcf6fe000-0xfedfffff] available for PCI devices
[    0.000000] setup_percpu: NR_CPUS:4 nr_cpumask_bits:4 nr_cpu_ids:4 nr_node_ids:1
[    0.000000] PERCPU: Embedded 27 pages/cpu @ffff88012fc00000 s80512 r8192 d21888 u524288
[    0.000000] pcpu-alloc: s80512 r8192 d21888 u524288 alloc=1*2097152
[    0.000000] pcpu-alloc: [0] 0 1 2 3 
[    0.000000] Built 1 zonelists in Zone order, mobility grouping on.  Total pages: 1026601
[    0.000000] Kernel command line: BOOT_IMAGE=/boot/vmlinuz-3.6.0-rc3-wl-main root=UUID=69ea49b8-e1c0-494e-a5b2-3e0f4850decf ro
[    0.000000] PID hash table entries: 4096 (order: 3, 32768 bytes)
[    0.000000] Dentry cache hash table entries: 524288 (order: 10, 4194304 bytes)
[    0.000000] Inode-cache hash table entries: 262144 (order: 9, 2097152 bytes)
[    0.000000] __ex_table already sorted, skipping sort
[    0.000000] Checking aperture...
[    0.000000] No AGP bridge found
[    0.000000] Memory: 4010132k/4980736k available (5978k kernel code, 796484k absent, 174120k reserved, 4864k data, 520k init)
[    0.000000] SLUB: Genslabs=15, HWalign=64, Order=0-3, MinObjects=0, CPUs=4, Nodes=1
[    0.000000] Hierarchical RCU implementation.
[    0.000000] 	RCU lockdep checking is enabled.
[    0.000000] NR_IRQS:4352 nr_irqs:712 16
[    0.000000] Console: colour VGA+ 80x25
[    0.000000] console [tty0] enabled
[    0.000000] Lock dependency validator: Copyright (c) 2006 Red Hat, Inc., Ingo Molnar
[    0.000000] ... MAX_LOCKDEP_SUBCLASSES:  8
[    0.000000] ... MAX_LOCK_DEPTH:          48
[    0.000000] ... MAX_LOCKDEP_KEYS:        8191
[    0.000000] ... CLASSHASH_SIZE:          4096
[    0.000000] ... MAX_LOCKDEP_ENTRIES:     16384
[    0.000000] ... MAX_LOCKDEP_CHAINS:      32768
[    0.000000] ... CHAINHASH_SIZE:          16384
[    0.000000]  memory used by lock dependency info: 5855 kB
[    0.000000]  per task-struct memory footprint: 1920 bytes
[    0.000000] ------------------------
[    0.000000] | Locking API testsuite:
[    0.000000] ----------------------------------------------------------------------------
[    0.000000]                                  | spin |wlock |rlock |mutex | wsem | rsem |
[    0.000000]   --------------------------------------------------------------------------
[    0.000000]                      A-A deadlock:  ok  |  ok  |  ok  |  ok  |  ok  |  ok  |
[    0.000000]                  A-B-B-A deadlock:  ok  |  ok  |  ok  |  ok  |  ok  |  ok  |
[    0.000000]              A-B-B-C-C-A deadlock:  ok  |  ok  |  ok  |  ok  |  ok  |  ok  |
[    0.000000]              A-B-C-A-B-C deadlock:  ok  |  ok  |  ok  |  ok  |  ok  |  ok  |
[    0.000000]          A-B-B-C-C-D-D-A deadlock:  ok  |  ok  |  ok  |  ok  |  ok  |  ok  |
[    0.000000]          A-B-C-D-B-D-D-A deadlock:  ok  |  ok  |  ok  |  ok  |  ok  |  ok  |
[    0.000000]          A-B-C-D-B-C-D-A deadlock:  ok  |  ok  |  ok  |  ok  |  ok  |  ok  |
[    0.000000]                     double unlock:  ok  |  ok  |  ok  |  ok  |  ok  |  ok  |
[    0.000000]                   initialize held:  ok  |  ok  |  ok  |  ok  |  ok  |  ok  |
[    0.000000]                  bad unlock order:  ok  |  ok  |  ok  |  ok  |  ok  |  ok  |
[    0.000000]   --------------------------------------------------------------------------
[    0.000000]               recursive read-lock:             |  ok  |             |  ok  |
[    0.000000]            recursive read-lock #2:             |  ok  |             |  ok  |
[    0.000000]             mixed read-write-lock:             |  ok  |             |  ok  |
[    0.000000]             mixed write-read-lock:             |  ok  |             |  ok  |
[    0.000000]   --------------------------------------------------------------------------
[    0.000000]      hard-irqs-on + irq-safe-A/12:  ok  |  ok  |  ok  |
[    0.000000]      soft-irqs-on + irq-safe-A/12:  ok  |  ok  |  ok  |
[    0.000000]      hard-irqs-on + irq-safe-A/21:  ok  |  ok  |  ok  |
[    0.000000]      soft-irqs-on + irq-safe-A/21:  ok  |  ok  |  ok  |
[    0.000000]        sirq-safe-A => hirqs-on/12:  ok  |  ok  |  ok  |
[    0.000000]        sirq-safe-A => hirqs-on/21:  ok  |  ok  |  ok  |
[    0.000000]          hard-safe-A + irqs-on/12:  ok  |  ok  |  ok  |
[    0.000000]          soft-safe-A + irqs-on/12:  ok  |  ok  |  ok  |
[    0.000000]          hard-safe-A + irqs-on/21:  ok  |  ok  |  ok  |
[    0.000000]          soft-safe-A + irqs-on/21:  ok  |  ok  |  ok  |
[    0.000000]     hard-safe-A + unsafe-B #1/123:  ok  |  ok  |  ok  |
[    0.000000]     soft-safe-A + unsafe-B #1/123:  ok  |  ok  |  ok  |
[    0.000000]     hard-safe-A + unsafe-B #1/132:  ok  |  ok  |  ok  |
[    0.000000]     soft-safe-A + unsafe-B #1/132:  ok  |  ok  |  ok  |
[    0.000000]     hard-safe-A + unsafe-B #1/213:  ok  |  ok  |  ok  |
[    0.000000]     soft-safe-A + unsafe-B #1/213:  ok  |  ok  |  ok  |
[    0.000000]     hard-safe-A + unsafe-B #1/231:  ok  |  ok  |  ok  |
[    0.000000]     soft-safe-A + unsafe-B #1/231:  ok  |  ok  |  ok  |
[    0.000000]     hard-safe-A + unsafe-B #1/312:  ok  |  ok  |  ok  |
[    0.000000]     soft-safe-A + unsafe-B #1/312:  ok  |  ok  |  ok  |
[    0.000000]     hard-safe-A + unsafe-B #1/321:  ok  |  ok  |  ok  |
[    0.000000]     soft-safe-A + unsafe-B #1/321:  ok  |  ok  |  ok  |
[    0.000000]     hard-safe-A + unsafe-B #2/123:  ok  |  ok  |  ok  |
[    0.000000]     soft-safe-A + unsafe-B #2/123:  ok  |  ok  |  ok  |
[    0.000000]     hard-safe-A + unsafe-B #2/132:  ok  |  ok  |  ok  |
[    0.000000]     soft-safe-A + unsafe-B #2/132:  ok  |  ok  |  ok  |
[    0.000000]     hard-safe-A + unsafe-B #2/213:  ok  |  ok  |  ok  |
[    0.000000]     soft-safe-A + unsafe-B #2/213:  ok  |  ok  |  ok  |
[    0.000000]     hard-safe-A + unsafe-B #2/231:  ok  |  ok  |  ok  |
[    0.000000]     soft-safe-A + unsafe-B #2/231:  ok  |  ok  |  ok  |
[    0.000000]     hard-safe-A + unsafe-B #2/312:  ok  |  ok  |  ok  |
[    0.000000]     soft-safe-A + unsafe-B #2/312:  ok  |  ok  |  ok  |
[    0.000000]     hard-safe-A + unsafe-B #2/321:  ok  |  ok  |  ok  |
[    0.000000]     soft-safe-A + unsafe-B #2/321:  ok  |  ok  |  ok  |
[    0.000000]       hard-irq lock-inversion/123:  ok  |  ok  |  ok  |
[    0.000000]       soft-irq lock-inversion/123:  ok  |  ok  |  ok  |
[    0.000000]       hard-irq lock-inversion/132:  ok  |  ok  |  ok  |
[    0.000000]       soft-irq lock-inversion/132:  ok  |  ok  |  ok  |
[    0.000000]       hard-irq lock-inversion/213:  ok  |  ok  |  ok  |
[    0.000000]       soft-irq lock-inversion/213:  ok  |  ok  |  ok  |
[    0.000000]       hard-irq lock-inversion/231:  ok  |  ok  |  ok  |
[    0.000000]       soft-irq lock-inversion/231:  ok  |  ok  |  ok  |
[    0.000000]       hard-irq lock-inversion/312:  ok  |  ok  |  ok  |
[    0.000000]       soft-irq lock-inversion/312:  ok  |  ok  |  ok  |
[    0.000000]       hard-irq lock-inversion/321:  ok  |  ok  |  ok  |
[    0.000000]       soft-irq lock-inversion/321:  ok  |  ok  |  ok  |
[    0.000000]       hard-irq read-recursion/123:  ok  |
[    0.000000]       soft-irq read-recursion/123:  ok  |
[    0.000000]       hard-irq read-recursion/132:  ok  |
[    0.000000]       soft-irq read-recursion/132:  ok  |
[    0.000000]       hard-irq read-recursion/213:  ok  |
[    0.000000]       soft-irq read-recursion/213:  ok  |
[    0.000000]       hard-irq read-recursion/231:  ok  |
[    0.000000]       soft-irq read-recursion/231:  ok  |
[    0.000000]       hard-irq read-recursion/312:  ok  |
[    0.000000]       soft-irq read-recursion/312:  ok  |
[    0.000000]       hard-irq read-recursion/321:  ok  |
[    0.000000]       soft-irq read-recursion/321:  ok  |
[    0.000000] -------------------------------------------------------
[    0.000000] Good, all 218 testcases passed! |
[    0.000000] ---------------------------------
[    0.000000] ODEBUG: 17 of 17 active objects replaced
[    0.000000] ODEBUG: selftest passed
[    0.000000] hpet clockevent registered
[    0.000000] tsc: Fast TSC calibration using PIT
[    0.000000] tsc: Detected 2394.053 MHz processor
[    0.001003] Calibrating delay loop (skipped), value calculated using timer frequency.. 4788.10 BogoMIPS (lpj=2394053)
[    0.001127] pid_max: default: 32768 minimum: 301
[    0.002087] Mount-cache hash table entries: 256
[    0.004071] Initializing cgroup subsys cpuacct
[    0.004134] Initializing cgroup subsys freezer
[    0.004434] CPU: Physical Processor ID: 0
[    0.004493] CPU: Processor Core ID: 0
[    0.004552] mce: CPU supports 6 MCE banks
[    0.004619] CPU0: Thermal monitoring enabled (TM2)
[    0.004685] process: using mwait in idle threads
[    0.004748] Last level iTLB entries: 4KB 128, 2MB 4, 4MB 4
[    0.004748] Last level dTLB entries: 4KB 256, 2MB 0, 4MB 32
[    0.004748] tlb_flushall_shift is 0xffffffff
[    0.004947] ACPI: Core revision 20120711
[    0.087586] ..TIMER: vector=0x30 apic1=0 pin1=2 apic2=-1 pin2=-1
[    0.097658] smpboot: CPU0: Intel(R) Core(TM)2 Quad CPU    Q6600  @ 2.40GHz stepping 0b
[    0.097985] Performance Events: PEBS fmt0+, 4-deep LBR, Core2 events, Intel PMU driver.
[    0.097985] perf_event_intel: PEBS disabled due to CPU errata
[    0.097985] ... version:                2
[    0.097985] ... bit width:              40
[    0.097985] ... generic registers:      2
[    0.097985] ... value mask:             000000ffffffffff
[    0.097985] ... max period:             000000007fffffff
[    0.097985] ... fixed-purpose events:   3
[    0.097985] ... event mask:             0000000700000003
[    0.098884] NMI watchdog: enabled on all CPUs, permanently consumes one hw-PMU counter.
[    0.099919] SMP alternatives: lockdep: fixing up alternatives
[    0.099995] smpboot: Booting Node   0, Processors  #1
[    0.113113] SMP alternatives: lockdep: fixing up alternatives
[    0.113234]  #2
[    0.126091] SMP alternatives: lockdep: fixing up alternatives
[    0.126207]  #3 OK
[    0.138152] Brought up 4 CPUs
[    0.138225] ----------------
[    0.138281] | NMI testsuite:
[    0.138337] --------------------
[    0.138394]   remote IPI:  ok  |
[    0.141112]    local IPI:  ok  |
[    0.146989] --------------------
[    0.147052] Good, all   2 testcases passed! |
[    0.147116] ---------------------------------
[    0.147185] smpboot: Total of 4 processors activated (19152.42 BogoMIPS)
[    0.149984] devtmpfs: initialized
[    0.152576] PM: Registering ACPI NVS region [mem 0xcf6ae000-0xcf6effff] (270336 bytes)
[    0.153834] NET: Registered protocol family 16
[    0.154252] kworker/u:0 (30) used greatest stack depth: 4952 bytes left
[    0.157206] ACPI: bus type pci registered
[    0.158441] PCI: Using configuration type 1 for base access
[    0.226223] bio: create slab <bio-0> at 0
[    0.227207] ACPI: Added _OSI(Module Device)
[    0.227207] ACPI: Added _OSI(Processor Device)
[    0.227207] ACPI: Added _OSI(3.0 _SCP Extensions)
[    0.227266] ACPI: Added _OSI(Processor Aggregator Device)
[    0.232975] ACPI: EC: Look up EC in DSDT
[    0.285705] ACPI: Executed 1 blocks of module-level executable AML code
[    0.383709] ACPI: SSDT 00000000cf6b00f0 00277 (v01 DpgPmm  P001Ist 00000011 INTL 20051117)
[    0.386160] ACPI: Dynamic OEM Table Load:
[    0.386259] ACPI: SSDT           (null) 00277 (v01 DpgPmm  P001Ist 00000011 INTL 20051117)
[    0.398063] ACPI: SSDT 00000000cf6b0580 00277 (v01 DpgPmm  P002Ist 00000012 INTL 20051117)
[    0.400484] ACPI: Dynamic OEM Table Load:
[    0.400582] ACPI: SSDT           (null) 00277 (v01 DpgPmm  P002Ist 00000012 INTL 20051117)
[    0.412351] ACPI: SSDT 00000000cf6b0a10 00277 (v01 DpgPmm  P003Ist 00000012 INTL 20051117)
[    0.414777] ACPI: Dynamic OEM Table Load:
[    0.414875] ACPI: SSDT           (null) 00277 (v01 DpgPmm  P003Ist 00000012 INTL 20051117)
[    0.426636] ACPI: SSDT 00000000cf6b0ea0 00277 (v01 DpgPmm  P004Ist 00000012 INTL 20051117)
[    0.429107] ACPI: Dynamic OEM Table Load:
[    0.429205] ACPI: SSDT           (null) 00277 (v01 DpgPmm  P004Ist 00000012 INTL 20051117)
[    0.473376] ACPI: Interpreter enabled
[    0.473436] ACPI: (supports S0 S3 S5)
[    0.473857] ACPI: Using IOAPIC for interrupt routing
[    0.733943] ACPI: No dock devices found.
[    0.734009] PCI: Using host bridge windows from ACPI; if necessary, use "pci=nocrs" and report a bug
[    0.741143] ACPI: PCI Root Bridge [PCI0] (domain 0000 [bus 00-ff])
[    0.746893] PCI host bridge to bus 0000:00
[    0.746971] pci_bus 0000:00: busn_res: [bus 00-ff] is inserted under domain [bus 00-ff]
[    0.746974] pci_bus 0000:00: root bus resource [bus 00-ff]
[    0.747052] pci_bus 0000:00: root bus resource [io  0x0000-0x0cf7]
[    0.747124] pci_bus 0000:00: root bus resource [io  0x0d00-0xffff]
[    0.747195] pci_bus 0000:00: root bus resource [mem 0x000a0000-0x000bffff]
[    0.747269] pci_bus 0000:00: root bus resource [mem 0x000d0000-0x000dffff]
[    0.747347] pci_bus 0000:00: root bus resource [mem 0xcf700000-0xdfffffff]
[    0.747435] pci_bus 0000:00: root bus resource [mem 0xf0000000-0xffffffff]
[    0.747560] pci 0000:00:00.0: [8086:29c0] type 00 class 0x060000
[    0.747683] pci 0000:00:02.0: [8086:29c2] type 00 class 0x030000
[    0.747701] pci 0000:00:02.0: reg 10: [mem 0xfe180000-0xfe1fffff]
[    0.747711] pci 0000:00:02.0: reg 14: [io  0xcc00-0xcc07]
[    0.747720] pci 0000:00:02.0: reg 18: [mem 0xd0000000-0xdfffffff pref]
[    0.747730] pci 0000:00:02.0: reg 1c: [mem 0xfe000000-0xfe0fffff]
[    0.747822] pci 0000:00:02.1: [8086:29c3] type 00 class 0x038000
[    0.747836] pci 0000:00:02.1: reg 10: [mem 0xfdf80000-0xfdffffff]
[    0.748025] pci 0000:00:1b.0: [8086:27d8] type 00 class 0x040300
[    0.748045] pci 0000:00:1b.0: reg 10: [mem 0xfe178000-0xfe17bfff 64bit]
[    0.748160] pci 0000:00:1b.0: PME# supported from D0 D3hot D3cold
[    0.748232] pci 0000:00:1c.0: [8086:27d0] type 01 class 0x060400
[    0.748348] pci 0000:00:1c.0: PME# supported from D0 D3hot D3cold
[    0.748423] pci 0000:00:1d.0: [8086:27c8] type 00 class 0x0c0300
[    0.748479] pci 0000:00:1d.0: reg 20: [io  0xc880-0xc89f]
[    0.748543] pci 0000:00:1d.1: [8086:27c9] type 00 class 0x0c0300
[    0.748599] pci 0000:00:1d.1: reg 20: [io  0xc800-0xc81f]
[    0.748663] pci 0000:00:1d.2: [8086:27ca] type 00 class 0x0c0300
[    0.748719] pci 0000:00:1d.2: reg 20: [io  0xc480-0xc49f]
[    0.748782] pci 0000:00:1d.3: [8086:27cb] type 00 class 0x0c0300
[    0.748839] pci 0000:00:1d.3: reg 20: [io  0xc400-0xc41f]
[    0.748924] pci 0000:00:1d.7: [8086:27cc] type 00 class 0x0c0320
[    0.748949] pci 0000:00:1d.7: reg 10: [mem 0xfe177c00-0xfe177fff]
[    0.749070] pci 0000:00:1d.7: PME# supported from D0 D3hot D3cold
[    0.749123] pci 0000:00:1e.0: [8086:244e] type 01 class 0x060401
[    0.749234] pci 0000:00:1f.0: [8086:27b8] type 00 class 0x060100
[    0.749348] pci 0000:00:1f.0: ICH7 LPC Generic IO decode 1 PIO at 0a00 (mask 00ff)
[    0.749538] pci 0000:00:1f.1: [8086:27df] type 00 class 0x01018a
[    0.749555] pci 0000:00:1f.1: reg 10: [io  0x0000-0x0007]
[    0.749568] pci 0000:00:1f.1: reg 14: [io  0x0000-0x0003]
[    0.749581] pci 0000:00:1f.1: reg 18: [io  0x08f0-0x08f7]
[    0.749593] pci 0000:00:1f.1: reg 1c: [io  0x08f8-0x08fb]
[    0.749606] pci 0000:00:1f.1: reg 20: [io  0xffa0-0xffaf]
[    0.749675] pci 0000:00:1f.2: [8086:27c0] type 00 class 0x01018f
[    0.749694] pci 0000:00:1f.2: reg 10: [io  0xc080-0xc087]
[    0.749706] pci 0000:00:1f.2: reg 14: [io  0xc000-0xc003]
[    0.749718] pci 0000:00:1f.2: reg 18: [io  0xbc00-0xbc07]
[    0.749729] pci 0000:00:1f.2: reg 1c: [io  0xb880-0xb883]
[    0.749741] pci 0000:00:1f.2: reg 20: [io  0xb800-0xb80f]
[    0.749807] pci 0000:00:1f.2: PME# supported from D3hot
[    0.749842] pci 0000:00:1f.3: [8086:27da] type 00 class 0x0c0500
[    0.749918] pci 0000:00:1f.3: reg 20: [io  0x0400-0x041f]
[    0.750059] pci_bus 0000:01: busn_res: [bus 01] is inserted under [bus 00-ff]
[    0.750108] pci 0000:01:00.0: [10ec:8136] type 00 class 0x020000
[    0.750128] pci 0000:01:00.0: reg 10: [io  0xd800-0xd8ff]
[    0.750168] pci 0000:01:00.0: reg 18: [mem 0xfe2ff000-0xfe2fffff 64bit]
[    0.750215] pci 0000:01:00.0: reg 30: [mem 0xfe2c0000-0xfe2dffff pref]
[    0.750345] pci 0000:01:00.0: supports D1 D2
[    0.750347] pci 0000:01:00.0: PME# supported from D1 D2 D3hot D3cold
[    0.750376] pci 0000:01:00.0: disabling ASPM on pre-1.1 PCIe device.  You can enable it with 'pcie_aspm=force'
[    0.750575] pci 0000:00:1c.0: PCI bridge to [bus 01]
[    0.750640] pci 0000:00:1c.0:   bridge window [io  0xd000-0xdfff]
[    0.750646] pci 0000:00:1c.0:   bridge window [mem 0xfe200000-0xfe2fffff]
[    0.750698] pci_bus 0000:02: busn_res: [bus 02-04] is inserted under [bus 00-ff]
[    0.750737] pci 0000:02:01.0: [3388:0021] type 01 class 0x060400
[    0.750878] pci 0000:02:01.0: supports D1 D2
[    0.750880] pci 0000:02:01.0: PME# supported from D0 D1 D2 D3hot
[    0.750957] pci 0000:02:02.0: [1180:0475] type 02 class 0x060700
[    0.750979] pci 0000:02:02.0: reg 10: [mem 0x00000000-0x00000fff]
[    0.751044] pci 0000:02:02.0: supports D1 D2
[    0.751047] pci 0000:02:02.0: PME# supported from D0 D1 D2 D3hot D3cold
[    0.751122] pci 0000:00:1e.0: PCI bridge to [bus 02-04] (subtractive decode)
[    0.751193] pci 0000:00:1e.0:   bridge window [io  0xe000-0xefff]
[    0.751198] pci 0000:00:1e.0:   bridge window [mem 0xfe300000-0xfebfffff]
[    0.751206] pci 0000:00:1e.0:   bridge window [mem 0xfb000000-0xfcffffff 64bit pref]
[    0.751216] pci 0000:00:1e.0:   bridge window [io  0x0000-0x0cf7] (subtractive decode)
[    0.751225] pci 0000:00:1e.0:   bridge window [io  0x0d00-0xffff] (subtractive decode)
[    0.751234] pci 0000:00:1e.0:   bridge window [mem 0x000a0000-0x000bffff] (subtractive decode)
[    0.751243] pci 0000:00:1e.0:   bridge window [mem 0x000d0000-0x000dffff] (subtractive decode)
[    0.751252] pci 0000:00:1e.0:   bridge window [mem 0xcf700000-0xdfffffff] (subtractive decode)
[    0.751260] pci 0000:00:1e.0:   bridge window [mem 0xf0000000-0xffffffff] (subtractive decode)
[    0.751337] pci_bus 0000:03: busn_res: [bus 03] is inserted under [bus 02-04]
[    0.751392] pci 0000:03:08.0: [168c:0013] type 00 class 0x028000
[    0.751425] pci 0000:03:08.0: reg 10: [mem 0xfe3f0000-0xfe3fffff]
[    0.751613] pci 0000:03:09.0: [168c:0013] type 00 class 0x028000
[    0.751640] pci 0000:03:09.0: reg 10: [mem 0xfe3e0000-0xfe3effff]
[    0.751823] pci 0000:03:0b.0: [168c:0013] type 00 class 0x028000
[    0.751851] pci 0000:03:0b.0: reg 10: [mem 0xfe3d0000-0xfe3dffff]
[    0.752061] pci 0000:02:01.0: PCI bridge to [bus 03]
[    0.752134] pci 0000:02:01.0:   bridge window [mem 0xfe300000-0xfe3fffff]
[    0.752221] pci_bus 0000:04: busn_res: can not insert [bus 04-ff] under [bus 02-04] (conflicts with (null) [bus 02-04])
[    0.752229] pci_bus 0000:04: busn_res: [bus 04-ff] end is updated to 07
[    0.752233] pci_bus 0000:04: busn_res: can not insert [bus 04-07] under [bus 02-04] (conflicts with (null) [bus 02-04])
[    0.752238] pci_bus 0000:04: [bus 04-07] partially hidden behind transparent bridge 0000:02 [bus 02-04]
[    0.752355] pci_bus 0000:00: on NUMA node 0
[    0.752378] ACPI: PCI Interrupt Routing Table [\_SB_.PCI0._PRT]
[    0.758096] ACPI: PCI Interrupt Routing Table [\_SB_.PCI0.P0P1._PRT]
[    0.761446] ACPI: PCI Interrupt Routing Table [\_SB_.PCI0.P0P4._PRT]
[    0.767933]  pci0000:00: Unable to request _OSC control (_OSC support mask: 0x1e)
[    1.035444] ACPI: PCI Interrupt Link [LNKA] (IRQs 3 4 5 6 7 *10 11 12 14 15)
[    1.036912] ACPI: PCI Interrupt Link [LNKB] (IRQs 3 4 5 6 7 10 11 12 14 15) *0, disabled.
[    1.038457] ACPI: PCI Interrupt Link [LNKC] (IRQs *3 4 5 6 7 10 11 12 14 15)
[    1.039906] ACPI: PCI Interrupt Link [LNKD] (IRQs 3 4 5 6 7 10 *11 12 14 15)
[    1.041366] ACPI: PCI Interrupt Link [LNKE] (IRQs 3 4 5 6 7 10 11 12 14 15) *0, disabled.
[    1.042879] ACPI: PCI Interrupt Link [LNKF] (IRQs 3 4 5 6 *7 10 11 12 14 15)
[    1.044320] ACPI: PCI Interrupt Link [LNKG] (IRQs 3 4 5 6 7 10 11 12 14 15) *0, disabled.
[    1.045815] ACPI: PCI Interrupt Link [LNKH] (IRQs 3 4 *5 6 7 10 11 12 14 15)
[    1.047946] vgaarb: device added: PCI:0000:00:02.0,decodes=io+mem,owns=io+mem,locks=none
[    1.048229] vgaarb: loaded
[    1.048285] vgaarb: bridge control possible 0000:00:02.0
[    1.049990] SCSI subsystem initialized
[    1.049990] ACPI: bus type scsi registered
[    1.051034] libata version 3.00 loaded.
[    1.052001] kworker/u:0 (353) used greatest stack depth: 4520 bytes left
[    1.052001] ACPI: bus type usb registered
[    1.053229] usbcore: registered new interface driver usbfs
[    1.053911] usbcore: registered new interface driver hub
[    1.053951] usbcore: registered new device driver usb
[    1.055227] Linux video capture interface: v2.00
[    1.057053] Advanced Linux Sound Architecture Driver Version 1.0.25.
[    1.057119] PCI: Using ACPI for IRQ routing
[    1.057186] PCI: pci_cache_line_size set to 64 bytes
[    1.057697] e820: reserve RAM buffer [mem 0x0009fc00-0x0009ffff]
[    1.057722] e820: reserve RAM buffer [mem 0xcf6a0000-0xcfffffff]
[    1.060917] HPET: 3 timers in total, 0 timers will be used for per-cpu timer
[    1.060990] hpet0: at MMIO 0xfed00000, IRQs 2, 8, 0
[    1.061134] hpet0: 3 comparators, 64-bit 14.318180 MHz counter
[    1.066078] Switching to clocksource hpet
[    1.111609] pnp: PnP ACPI init
[    1.111795] ACPI: bus type pnp registered
[    1.114267] pnp 00:00: [bus 00-ff]
[    1.114276] pnp 00:00: [io  0x0cf8-0x0cff]
[    1.114292] pnp 00:00: [io  0x0000-0x0cf7 window]
[    1.114301] pnp 00:00: [io  0x0d00-0xffff window]
[    1.114309] pnp 00:00: [mem 0x000a0000-0x000bffff window]
[    1.114318] pnp 00:00: [mem 0x000d0000-0x000dffff window]
[    1.114326] pnp 00:00: [mem 0xcf700000-0xdfffffff window]
[    1.114334] pnp 00:00: [mem 0xf0000000-0xffffffff window]
[    1.114874] pnp 00:00: Plug and Play ACPI device, IDs PNP0a08 PNP0a03 (active)
[    1.115030] pnp 00:01: [mem 0xfed14000-0xfed19fff]
[    1.115849] system 00:01: [mem 0xfed14000-0xfed19fff] has been reserved
[    1.115925] system 00:01: Plug and Play ACPI device, IDs PNP0c01 (active)
[    1.116517] pnp 00:02: [dma 4]
[    1.116525] pnp 00:02: [io  0x0000-0x000f]
[    1.116533] pnp 00:02: [io  0x0081-0x0083]
[    1.116541] pnp 00:02: [io  0x0087]
[    1.116548] pnp 00:02: [io  0x0089-0x008b]
[    1.116556] pnp 00:02: [io  0x008f]
[    1.116563] pnp 00:02: [io  0x00c0-0x00df]
[    1.117040] pnp 00:02: Plug and Play ACPI device, IDs PNP0200 (active)
[    1.117212] pnp 00:03: [io  0x0070-0x0071]
[    1.117234] pnp 00:03: [irq 8]
[    1.117702] pnp 00:03: Plug and Play ACPI device, IDs PNP0b00 (active)
[    1.117845] pnp 00:04: [io  0x0061]
[    1.118322] pnp 00:04: Plug and Play ACPI device, IDs PNP0800 (active)
[    1.118478] pnp 00:05: [io  0x00f0-0x00ff]
[    1.118494] pnp 00:05: [irq 13]
[    1.118962] pnp 00:05: Plug and Play ACPI device, IDs PNP0c04 (active)
[    1.147602] pnp 00:06: [io  0x03f8-0x03ff]
[    1.147619] pnp 00:06: [irq 4]
[    1.147628] pnp 00:06: [dma 0 disabled]
[    1.148533] pnp 00:06: Plug and Play ACPI device, IDs PNP0501 (active)
[    1.207500] pnp 00:07: [io  0x0000-0xffffffffffffffff disabled]
[    1.207509] pnp 00:07: [io  0x0a00-0x0a0f]
[    1.207517] pnp 00:07: [io  0x0a10-0x0a1f]
[    1.207524] pnp 00:07: [io  0x0a20-0x0a2f]
[    1.207532] pnp 00:07: [io  0x0a30-0x0a3f]
[    1.208346] system 00:07: [io  0x0a00-0x0a0f] has been reserved
[    1.208428] system 00:07: [io  0x0a10-0x0a1f] has been reserved
[    1.208508] system 00:07: [io  0x0a20-0x0a2f] has been reserved
[    1.208587] system 00:07: [io  0x0a30-0x0a3f] has been reserved
[    1.208657] system 00:07: Plug and Play ACPI device, IDs PNP0c02 (active)
[    1.210958] pnp 00:08: [io  0x0010-0x001f]
[    1.210967] pnp 00:08: [io  0x0022-0x003f]
[    1.210974] pnp 00:08: [io  0x0044-0x005f]
[    1.210990] pnp 00:08: [io  0x0062-0x0063]
[    1.210998] pnp 00:08: [io  0x0065-0x006f]
[    1.211024] pnp 00:08: [io  0x0072-0x007f]
[    1.211033] pnp 00:08: [io  0x0080]
[    1.211041] pnp 00:08: [io  0x0084-0x0086]
[    1.211048] pnp 00:08: [io  0x0088]
[    1.211056] pnp 00:08: [io  0x008c-0x008e]
[    1.211064] pnp 00:08: [io  0x0090-0x009f]
[    1.211071] pnp 00:08: [io  0x00a2-0x00bf]
[    1.211079] pnp 00:08: [io  0x00e0-0x00ef]
[    1.211087] pnp 00:08: [io  0x04d0-0x04d1]
[    1.211094] pnp 00:08: [io  0x0800-0x087f]
[    1.211102] pnp 00:08: [io  0x0000-0xffffffffffffffff disabled]
[    1.211109] pnp 00:08: [io  0x0480-0x04bf]
[    1.211117] pnp 00:08: [mem 0xfed1c000-0xfed1ffff]
[    1.211125] pnp 00:08: [mem 0xfed20000-0xfed8ffff]
[    1.211939] system 00:08: [io  0x04d0-0x04d1] has been reserved
[    1.212033] system 00:08: [io  0x0800-0x087f] has been reserved
[    1.212116] system 00:08: [io  0x0480-0x04bf] has been reserved
[    1.212196] system 00:08: [mem 0xfed1c000-0xfed1ffff] has been reserved
[    1.212286] system 00:08: [mem 0xfed20000-0xfed8ffff] has been reserved
[    1.212358] system 00:08: Plug and Play ACPI device, IDs PNP0c02 (active)
[    1.213975] pnp 00:09: [mem 0xfed00000-0xfed003ff]
[    1.214475] pnp 00:09: Plug and Play ACPI device, IDs PNP0103 (active)
[    1.216723] pnp 00:0a: [mem 0xffb80000-0xffbfffff]
[    1.216731] pnp 00:0a: [mem 0xfff80000-0xffffffff]
[    1.217247] pnp 00:0a: Plug and Play ACPI device, IDs INT0800 (active)
[    1.218475] pnp 00:0b: [mem 0xffc00000-0xfff7ffff]
[    1.219294] system 00:0b: [mem 0xffc00000-0xfff7ffff] has been reserved
[    1.219367] system 00:0b: Plug and Play ACPI device, IDs PNP0c02 (active)
[    1.222330] pnp 00:0c: [io  0x0060]
[    1.222339] pnp 00:0c: [io  0x0064]
[    1.222347] pnp 00:0c: [mem 0xfec00000-0xfec00fff]
[    1.222355] pnp 00:0c: [mem 0xfee00000-0xfee00fff]
[    1.223190] system 00:0c: [mem 0xfec00000-0xfec00fff] could not be reserved
[    1.223274] system 00:0c: [mem 0xfee00000-0xfee00fff] has been reserved
[    1.223345] system 00:0c: Plug and Play ACPI device, IDs PNP0c02 (active)
[    1.224518] pnp 00:0d: [mem 0xe0000000-0xefffffff]
[    1.225351] system 00:0d: [mem 0xe0000000-0xefffffff] has been reserved
[    1.225424] system 00:0d: Plug and Play ACPI device, IDs PNP0c02 (active)
[    1.230467] pnp 00:0e: [mem 0x00000000-0x0009ffff]
[    1.230476] pnp 00:0e: [mem 0x000c0000-0x000cffff]
[    1.230484] pnp 00:0e: [mem 0x000e0000-0x000fffff]
[    1.230492] pnp 00:0e: [mem 0x00100000-0xcf6fffff]
[    1.230500] pnp 00:0e: [mem 0x00000000-0xffffffffffffffff disabled]
[    1.231386] system 00:0e: [mem 0x00000000-0x0009ffff] could not be reserved
[    1.231484] system 00:0e: [mem 0x000c0000-0x000cffff] could not be reserved
[    1.231582] system 00:0e: [mem 0x000e0000-0x000fffff] could not be reserved
[    1.231678] system 00:0e: [mem 0x00100000-0xcf6fffff] could not be reserved
[    1.231752] system 00:0e: Plug and Play ACPI device, IDs PNP0c01 (active)
[    1.235305] pnp: PnP ACPI: found 15 devices
[    1.235366] ACPI: ACPI bus type pnp unregistered
[    1.286121] pci 0000:00:1c.0: bridge window [mem 0x00100000-0x000fffff 64bit pref] to [bus 01] add_size 200000
[    1.286187] pci 0000:00:1c.0: res[15]=[mem 0x00100000-0x000fffff 64bit pref] get_res_add_size add_size 200000
[    1.286193] pci 0000:00:1c.0: BAR 15: assigned [mem 0xcf700000-0xcf8fffff 64bit pref]
[    1.286311] pci 0000:00:1c.0: PCI bridge to [bus 01]
[    1.286375] pci 0000:00:1c.0:   bridge window [io  0xd000-0xdfff]
[    1.286445] pci 0000:00:1c.0:   bridge window [mem 0xfe200000-0xfe2fffff]
[    1.286514] pci 0000:00:1c.0:   bridge window [mem 0xcf700000-0xcf8fffff 64bit pref]
[    1.286667] pci 0000:02:02.0: res[15]=[mem 0x04000000-0x03ffffff pref] get_res_add_size add_size 4000000
[    1.286670] pci 0000:02:02.0: res[16]=[mem 0x04000000-0x03ffffff] get_res_add_size add_size 4000000
[    1.286673] pci 0000:02:02.0: res[13]=[io  0x0100-0x00ff] get_res_add_size add_size 100
[    1.286675] pci 0000:02:02.0: res[14]=[io  0x0100-0x00ff] get_res_add_size add_size 100
[    1.286681] pci 0000:02:02.0: BAR 0: assigned [mem 0xf0000000-0xf0000fff]
[    1.286754] pci 0000:02:02.0: BAR 15: assigned [mem 0xf4000000-0xf7ffffff pref]
[    1.286856] pci 0000:02:02.0: BAR 16: can't assign mem (size 0x4000000)
[    1.286939] pci 0000:02:02.0: BAR 13: assigned [io  0xe000-0xe0ff]
[    1.287024] pci 0000:02:02.0: BAR 14: assigned [io  0xe400-0xe4ff]
[    1.287124] pci 0000:02:02.0: BAR 0: assigned [mem 0xf0000000-0xf0000fff]
[    1.287196] pci 0000:02:02.0: BAR 16: assigned [mem 0xf4000000-0xf7ffffff]
[    1.287808] pci 0000:02:02.0: BAR 15: can't assign mem pref (size 0x4000000)
[    1.287882] pci 0000:02:02.0: BAR 14: assigned [io  0xe000-0xe0ff]
[    1.287952] pci 0000:02:02.0: BAR 13: assigned [io  0xe400-0xe4ff]
[    1.288064] pci 0000:02:01.0: PCI bridge to [bus 03]
[    1.288133] pci 0000:02:01.0:   bridge window [mem 0xfe300000-0xfe3fffff]
[    1.288211] pci 0000:02:02.0: CardBus bridge to [bus 04-07]
[    1.288276] pci 0000:02:02.0:   bridge window [io  0xe400-0xe4ff]
[    1.288345] pci 0000:02:02.0:   bridge window [io  0xe000-0xe0ff]
[    1.288414] pci 0000:02:02.0:   bridge window [mem 0xf4000000-0xf7ffffff]
[    1.288492] pci 0000:00:1e.0: PCI bridge to [bus 02-04]
[    1.288555] pci 0000:00:1e.0:   bridge window [io  0xe000-0xefff]
[    1.288624] pci 0000:00:1e.0:   bridge window [mem 0xfe300000-0xfebfffff]
[    1.288693] pci 0000:00:1e.0:   bridge window [mem 0xfb000000-0xfcffffff 64bit pref]
[    1.288849] pci 0000:00:1e.0: setting latency timer to 64
[    1.288894] pci_bus 0000:00: resource 4 [io  0x0000-0x0cf7]
[    1.288896] pci_bus 0000:00: resource 5 [io  0x0d00-0xffff]
[    1.288899] pci_bus 0000:00: resource 6 [mem 0x000a0000-0x000bffff]
[    1.288901] pci_bus 0000:00: resource 7 [mem 0x000d0000-0x000dffff]
[    1.288903] pci_bus 0000:00: resource 8 [mem 0xcf700000-0xdfffffff]
[    1.288906] pci_bus 0000:00: resource 9 [mem 0xf0000000-0xffffffff]
[    1.288909] pci_bus 0000:01: resource 0 [io  0xd000-0xdfff]
[    1.288911] pci_bus 0000:01: resource 1 [mem 0xfe200000-0xfe2fffff]
[    1.288913] pci_bus 0000:01: resource 2 [mem 0xcf700000-0xcf8fffff 64bit pref]
[    1.288916] pci_bus 0000:02: resource 0 [io  0xe000-0xefff]
[    1.288918] pci_bus 0000:02: resource 1 [mem 0xfe300000-0xfebfffff]
[    1.288921] pci_bus 0000:02: resource 2 [mem 0xfb000000-0xfcffffff 64bit pref]
[    1.288923] pci_bus 0000:02: resource 4 [io  0x0000-0x0cf7]
[    1.288925] pci_bus 0000:02: resource 5 [io  0x0d00-0xffff]
[    1.288928] pci_bus 0000:02: resource 6 [mem 0x000a0000-0x000bffff]
[    1.288930] pci_bus 0000:02: resource 7 [mem 0x000d0000-0x000dffff]
[    1.288933] pci_bus 0000:02: resource 8 [mem 0xcf700000-0xdfffffff]
[    1.288935] pci_bus 0000:02: resource 9 [mem 0xf0000000-0xffffffff]
[    1.288938] pci_bus 0000:03: resource 1 [mem 0xfe300000-0xfe3fffff]
[    1.288940] pci_bus 0000:04: resource 0 [io  0xe400-0xe4ff]
[    1.288943] pci_bus 0000:04: resource 1 [io  0xe000-0xe0ff]
[    1.288945] pci_bus 0000:04: resource 3 [mem 0xf4000000-0xf7ffffff]
[    1.289190] NET: Registered protocol family 2
[    1.290277] TCP established hash table entries: 262144 (order: 10, 4194304 bytes)
[    1.291780] TCP bind hash table entries: 65536 (order: 10, 4194304 bytes)
[    1.297765] TCP: Hash tables configured (established 262144 bind 65536)
[    1.297949] TCP: reno registered
[    1.298116] UDP hash table entries: 2048 (order: 6, 327680 bytes)
[    1.298629] UDP-Lite hash table entries: 2048 (order: 6, 327680 bytes)
[    1.299585] NET: Registered protocol family 1
[    1.299726] pci 0000:00:02.0: Boot video device
[    1.299827] pci 0000:00:1d.0: uhci_check_and_reset_hc: legsup = 0x0f30
[    1.299829] pci 0000:00:1d.0: Performing full reset
[    1.299866] pci 0000:00:1d.1: uhci_check_and_reset_hc: legsup = 0x0030
[    1.299868] pci 0000:00:1d.1: Performing full reset
[    1.299928] pci 0000:00:1d.2: uhci_check_and_reset_hc: legsup = 0x0030
[    1.299930] pci 0000:00:1d.2: Performing full reset
[    1.299965] pci 0000:00:1d.3: uhci_check_and_reset_hc: legsup = 0x0030
[    1.299967] pci 0000:00:1d.3: Performing full reset
[    1.300254] PCI: CLS 32 bytes, default 64
[    1.300771] Unpacking initramfs...
[    1.449017] debug: unmapping init [mem 0xffff8800375f2000-0xffff880037af0fff]
[    1.449251] PCI-DMA: Using software bounce buffering for IO (SWIOTLB)
[    1.449322] software IO TLB [mem 0xcad1a000-0xced19fff] (64MB) mapped at [ffff8800cad1a000-ffff8800ced19fff]
[    1.456695] microcode: CPU0 sig=0x6fb, pf=0x10, revision=0xb6
[    1.456803] microcode: CPU1 sig=0x6fb, pf=0x10, revision=0xb6
[    1.456907] microcode: CPU2 sig=0x6fb, pf=0x10, revision=0xb6
[    1.457019] microcode: CPU3 sig=0x6fb, pf=0x10, revision=0xb6
[    1.457798] microcode: Microcode Update Driver: v2.00 <tigran@aivazian.fsnet.co.uk>, Peter Oruba
[    1.458090] sha1_ssse3: Using SSSE3 optimized SHA-1 implementation
[    1.460254] audit: initializing netlink socket (disabled)
[    1.460398] type=2000 audit(1250396328.459:1): initialized
[    1.463190] HugeTLB registered 2 MB page size, pre-allocated 0 pages
[    1.535927] fuse init (API version 7.20)
[    1.537946] msgmni has been set to 7832
[    1.542513] Block layer SCSI generic (bsg) driver version 0.4 loaded (major 252)
[    1.542629] io scheduler noop registered
[    1.543680] io scheduler cfq registered (default)
[    1.543747] start plist test
[    1.544884] end plist test
[    1.544940] list_sort_test: start testing list_sort()
[    1.553362] intel_idle: does not run on family 6 model 15
[    1.554180] input: Power Button as /devices/LNXSYSTM:00/device:00/PNP0C0C:00/input/input0
[    1.554349] ACPI: Power Button [PWRB]
[    1.555114] input: Power Button as /devices/LNXSYSTM:00/LNXPWRBN:00/input/input1
[    1.555229] ACPI: Power Button [PWRF]
[    1.557534] ACPI: Requesting acpi_cpufreq
[    1.863945] thermal LNXTHERM:00: registered as thermal_zone0
[    1.864039] ACPI: Thermal Zone [THRM] (30 C)
[    1.864989] GHES: HEST is not enabled!
[    1.865631] Serial: 8250/16550 driver, 4 ports, IRQ sharing disabled
[    1.886803] serial8250: ttyS0 at I/O 0x3f8 (irq = 4) is a 16550A
[    1.912061] 00:06: ttyS0 at I/O 0x3f8 (irq = 4) is a 16550A
[    1.915550] Linux agpgart interface v0.103
[    1.916833] agpgart-intel 0000:00:00.0: Intel G33 Chipset
[    1.917096] agpgart-intel 0000:00:00.0: detected gtt size: 524288K total, 262144K mappable
[    1.918127] agpgart-intel 0000:00:00.0: detected 8192K stolen memory
[    1.919008] agpgart-intel 0000:00:00.0: AGP aperture is 256M @ 0xd0000000
[    1.919758] [drm] Initialized drm 1.1.0 20060810
[    1.924831] i915 0000:00:02.0: setting latency timer to 64
[    1.970502] i915 0000:00:02.0: irq 40 for MSI/MSI-X
[    1.970650] [drm] Supports vblank timestamp caching Rev 1 (10.10.2010).
[    1.970718] [drm] Driver supports precise vblank timestamp query.
[    1.971198] vgaarb: device changed decodes: PCI:0000:00:02.0,olddecodes=io+mem,decodes=io+mem:owns=io+mem
[    2.083383] [drm] initialized overlay support
[    2.179944] fbcon: inteldrmfb (fb0) is primary device
[    2.220366] [drm] Setting output timings on SDVOB failed
[    2.234122] [drm] Setting input timings on SDVOB failed
[    2.306415] Console: switching to colour frame buffer device 240x67
[    2.312360] fb0: inteldrmfb frame buffer device
[    2.312384] drm: registered panic notifier
[    2.312503] i915: No ACPI video bus found
[    2.312932] [drm] Initialized i915 1.6.0 20080730 for 0000:00:02.0 on minor 0
[    2.326199] loop: module loaded
[    2.328723] ata_piix 0000:00:1f.1: version 2.13
[    2.328921] ata_piix 0000:00:1f.1: setting latency timer to 64
[    2.334885] scsi0 : ata_piix
[    2.339100] scsi1 : ata_piix
[    2.341326] ata1: PATA max UDMA/100 cmd 0x1f0 ctl 0x3f6 bmdma 0xffa0 irq 14
[    2.341363] ata2: PATA max UDMA/100 cmd 0x170 ctl 0x376 bmdma 0xffa8 irq 15
[    2.341528] ata_piix 0000:00:1f.2: MAP [
[    2.341558]  P0 P2 P1 P3 ]
[    2.341749] ata_piix 0000:00:1f.2: setting latency timer to 64
[    2.348302] scsi2 : ata_piix
[    2.350723] scsi3 : ata_piix
[    2.352962] ata3: SATA max UDMA/133 cmd 0xc080 ctl 0xc000 bmdma 0xb800 irq 19
[    2.352999] ata4: SATA max UDMA/133 cmd 0xbc00 ctl 0xb880 bmdma 0xb808 irq 19
[    2.353781] r8169 Gigabit Ethernet driver 2.3LK-NAPI loaded
[    2.354182] r8169 0000:01:00.0: irq 41 for MSI/MSI-X
[    2.356299] r8169 0000:01:00.0: eth0: RTL8101e at 0xffffc9000002e000, 00:1e:90:a5:f6:e2, XID 94200000 IRQ 41
[    2.357012] yenta_cardbus 0000:02:02.0: CardBus bridge found [0000:0000]
[    2.357079] yenta_cardbus 0000:02:02.0: CardBus bridge to [bus 04-07]
[    2.357113] yenta_cardbus 0000:02:02.0:   bridge window [io  0xe400-0xe4ff]
[    2.357151] yenta_cardbus 0000:02:02.0:   bridge window [io  0xe000-0xe0ff]
[    2.357189] yenta_cardbus 0000:02:02.0:   bridge window [mem 0xfb000000-0xfb3fffff pref]
[    2.357233] yenta_cardbus 0000:02:02.0:   bridge window [mem 0xf4000000-0xf7ffffff]
[    2.452142] tsc: Refined TSC clocksource calibration: 2393.999 MHz
[    2.452251] Switching to clocksource tsc
[    2.504370] ata4.01: NODEV after polling detection
[    2.508323] ata3.00: ATA-7: INTEL SSDSA2M080G2GN, 2CV102HD, max UDMA/133
[    2.508376] ata3.00: 156301488 sectors, multi 16: LBA48 NCQ (depth 0/32)
[    2.512313] ata3.00: configured for UDMA/133
[    2.513581] scsi 2:0:0:0: Direct-Access     ATA      INTEL SSDSA2M080 2CV1 PQ: 0 ANSI: 5
[    2.517301] sd 2:0:0:0: [sda] 156301488 512-byte logical blocks: (80.0 GB/74.5 GiB)
[    2.518277] sd 2:0:0:0: Attached scsi generic sg0 type 0
[    2.518312] sd 2:0:0:0: [sda] Write Protect is off
[    2.518342] sd 2:0:0:0: [sda] Mode Sense: 00 3a 00 00
[    2.518636] sd 2:0:0:0: [sda] Write cache: enabled, read cache: enabled, doesn't support DPO or FUA
[    2.522604]  sda: sda1 sda2
[    2.524703] ata4.00: ATAPI: TSSTcorpCD/DVDW SH-S183L, SB03, max UDMA/33
[    2.524742] ata4.00: applying bridge limits
[    2.526756] sd 2:0:0:0: [sda] Attached SCSI disk
[    2.531205] ata4.00: configured for UDMA/33
[    2.533264] scsi 3:0:0:0: CD-ROM            TSSTcorp CD/DVDW SH-S183L SB03 PQ: 0 ANSI: 5
[    2.541208] sr0: scsi3-mmc drive: 48x/48x writer dvd-ram cd/rw xa/form2 cdda tray
[    2.542745] cdrom: Uniform CD-ROM driver Revision: 3.20
[    2.546216] sr 3:0:0:0: Attached scsi CD-ROM sr0
[    2.547589] sr 3:0:0:0: Attached scsi generic sg1 type 5
[    2.521241] ACPI: Invalid Power Resource to register!
[    2.551557] ACPI: Invalid Power Resource to register!<6>[    2.675984] yenta_cardbus 0000:02:02.0: ISA IRQ mask 0x0000, PCI irq 19
[    2.677554] yenta_cardbus 0000:02:02.0: Socket status: 30000820
[    2.679117] pci_bus 0000:02: Raising subordinate bus# of parent bus (#02) from #04 to #07
[    2.680792] yenta_cardbus 0000:02:02.0: pcmcia: parent PCI bridge window: [io  0xe000-0xefff]
[    2.682390] yenta_cardbus 0000:02:02.0: pcmcia: parent PCI bridge window: [mem 0xfe300000-0xfebfffff]
[    2.683979] pcmcia_socket pcmcia_socket0: cs: memory probe 0xfe300000-0xfebfffff:
[    2.685654]  excluding 0xfe300000-0xfe41ffff
[    2.687588] yenta_cardbus 0000:02:02.0: pcmcia: parent PCI bridge window: [mem 0xfb000000-0xfcffffff 64bit pref]
[    2.689215] pcmcia_socket pcmcia_socket0: cs: memory probe 0xfb000000-0xfcffffff:
[    2.691261]  excluding 0xfb000000-0xfcffffff
[    2.694457] ehci_hcd: USB 2.0 'Enhanced' Host Controller (EHCI) Driver
[    2.696125] ehci_hcd: block sizes: qh 104 qtd 96 itd 192 sitd 96
[    2.696296] ehci_hcd 0000:00:1d.7: setting latency timer to 64
[    2.696302] ehci_hcd 0000:00:1d.7: EHCI Host Controller
[    2.698075] ehci_hcd 0000:00:1d.7: new USB bus registered, assigned bus number 1
[    2.699690] ehci_hcd 0000:00:1d.7: reset hcs_params 0x104208 dbg=1 cc=4 pcc=2 ordered !ppc ports=8
[    2.699694] ehci_hcd 0000:00:1d.7: reset hcc_params 6871 thresh 7 uframes 1024 64 bit addr
[    2.699823] ehci_hcd 0000:00:1d.7: reset command 0080002 (park)=0 ithresh=8 period=1024 Reset HALT
[    2.703702] ehci_hcd 0000:00:1d.7: debug port 1
[    2.705287] ehci_hcd 0000:00:1d.7: cache line size of 32 is not supported
[    2.705289] ehci_hcd 0000:00:1d.7: supports USB remote wakeup
[    2.705487] ehci_hcd 0000:00:1d.7: irq 23, io mem 0xfe177c00
[    2.707070] ehci_hcd 0000:00:1d.7: init command 0010001 (park)=0 ithresh=1 period=1024 RUN
[    2.713110] ehci_hcd 0000:00:1d.7: USB 2.0 started, EHCI 1.00
[    2.715175] usb usb1: default language 0x0409
[    2.715354] usb usb1: udev 1, busnum 1, minor = 0
[    2.715358] usb usb1: New USB device found, idVendor=1d6b, idProduct=0002
[    2.716897] usb usb1: New USB device strings: Mfr=3, Product=2, SerialNumber=1
[    2.718418] usb usb1: Product: EHCI Host Controller
[    2.719927] usb usb1: Manufacturer: Linux 3.6.0-rc3-wl-main ehci_hcd
[    2.721455] usb usb1: SerialNumber: 0000:00:1d.7
[    2.724283] usb usb1: usb_probe_device
[    2.724287] usb usb1: configuration #1 chosen from 1 choice
[    2.724505] usb usb1: adding 1-0:1.0 (config #1, interface 0)
[    2.725096] hub 1-0:1.0: usb_probe_interface
[    2.725099] hub 1-0:1.0: usb_probe_interface - got id
[    2.725108] hub 1-0:1.0: USB hub found
[    2.726774] hub 1-0:1.0: 8 ports detected
[    2.728302] hub 1-0:1.0: standalone hub
[    2.728305] hub 1-0:1.0: no power switching (usb 1.0)
[    2.728307] hub 1-0:1.0: individual port over-current protection
[    2.728311] hub 1-0:1.0: power on to power good time: 20ms
[    2.728519] hub 1-0:1.0: local power source is good
[    2.728531] hub 1-0:1.0: trying to enable port power on non-switchable hub
[    2.730187] uhci_hcd: USB Universal Host Controller Interface driver
[    2.732367] uhci_hcd 0000:00:1d.0: setting latency timer to 64
[    2.732372] uhci_hcd 0000:00:1d.0: UHCI Host Controller
[    2.733952] uhci_hcd 0000:00:1d.0: new USB bus registered, assigned bus number 2
[    2.735491] uhci_hcd 0000:00:1d.0: detected 2 ports
[    2.737015] uhci_hcd 0000:00:1d.0: uhci_check_and_reset_hc: cmd = 0x0000
[    2.737017] uhci_hcd 0000:00:1d.0: Performing full reset
[    2.737031] uhci_hcd 0000:00:1d.0: supports USB remote wakeup
[    2.737069] uhci_hcd 0000:00:1d.0: irq 23, io base 0x0000c880
[    2.738904] usb usb2: default language 0x0409
[    2.739095] usb usb2: udev 1, busnum 2, minor = 128
[    2.739098] usb usb2: New USB device found, idVendor=1d6b, idProduct=0001
[    2.740637] usb usb2: New USB device strings: Mfr=3, Product=2, SerialNumber=1
[    2.742200] usb usb2: Product: UHCI Host Controller
[    2.743751] usb usb2: Manufacturer: Linux 3.6.0-rc3-wl-main uhci_hcd
[    2.745305] usb usb2: SerialNumber: 0000:00:1d.0
[    2.747870] usb usb2: usb_probe_device
[    2.747873] usb usb2: configuration #1 chosen from 1 choice
[    2.747955] usb usb2: adding 2-0:1.0 (config #1, interface 0)
[    2.748480] hub 2-0:1.0: usb_probe_interface
[    2.748483] hub 2-0:1.0: usb_probe_interface - got id
[    2.748487] hub 2-0:1.0: USB hub found
[    2.750152] hub 2-0:1.0: 2 ports detected
[    2.751704] hub 2-0:1.0: standalone hub
[    2.751706] hub 2-0:1.0: no power switching (usb 1.0)
[    2.751709] hub 2-0:1.0: individual port over-current protection
[    2.751712] hub 2-0:1.0: power on to power good time: 2ms
[    2.751833] hub 2-0:1.0: local power source is good
[    2.751845] hub 2-0:1.0: trying to enable port power on non-switchable hub
[    2.752562] ehci_hcd 0000:00:1d.7: HS companion for 0000:00:1d.0
[    2.752792] uhci_hcd 0000:00:1d.1: setting latency timer to 64
[    2.752797] uhci_hcd 0000:00:1d.1: UHCI Host Controller
[    2.754352] uhci_hcd 0000:00:1d.1: new USB bus registered, assigned bus number 3
[    2.755889] uhci_hcd 0000:00:1d.1: detected 2 ports
[    2.757406] uhci_hcd 0000:00:1d.1: uhci_check_and_reset_hc: cmd = 0x0000
[    2.757409] uhci_hcd 0000:00:1d.1: Performing full reset
[    2.757422] uhci_hcd 0000:00:1d.1: supports USB remote wakeup
[    2.757461] uhci_hcd 0000:00:1d.1: irq 19, io base 0x0000c800
[    2.759280] usb usb3: default language 0x0409
[    2.759453] usb usb3: udev 1, busnum 3, minor = 256
[    2.759456] usb usb3: New USB device found, idVendor=1d6b, idProduct=0001
[    2.760994] usb usb3: New USB device strings: Mfr=3, Product=2, SerialNumber=1
[    2.762551] usb usb3: Product: UHCI Host Controller
[    2.764087] usb usb3: Manufacturer: Linux 3.6.0-rc3-wl-main uhci_hcd
[    2.765629] usb usb3: SerialNumber: 0000:00:1d.1
[    2.768181] usb usb3: usb_probe_device
[    2.768185] usb usb3: configuration #1 chosen from 1 choice
[    2.768291] usb usb3: adding 3-0:1.0 (config #1, interface 0)
[    2.768838] hub 3-0:1.0: usb_probe_interface
[    2.768841] hub 3-0:1.0: usb_probe_interface - got id
[    2.768846] hub 3-0:1.0: USB hub found
[    2.770500] hub 3-0:1.0: 2 ports detected
[    2.772055] hub 3-0:1.0: standalone hub
[    2.772058] hub 3-0:1.0: no power switching (usb 1.0)
[    2.772060] hub 3-0:1.0: individual port over-current protection
[    2.772063] hub 3-0:1.0: power on to power good time: 2ms
[    2.772172] hub 3-0:1.0: local power source is good
[    2.772184] hub 3-0:1.0: trying to enable port power on non-switchable hub
[    2.772898] ehci_hcd 0000:00:1d.7: HS companion for 0000:00:1d.1
[    2.773150] uhci_hcd 0000:00:1d.2: setting latency timer to 64
[    2.773155] uhci_hcd 0000:00:1d.2: UHCI Host Controller
[    2.774719] uhci_hcd 0000:00:1d.2: new USB bus registered, assigned bus number 4
[    2.776262] uhci_hcd 0000:00:1d.2: detected 2 ports
[    2.777760] uhci_hcd 0000:00:1d.2: uhci_check_and_reset_hc: cmd = 0x0000
[    2.777763] uhci_hcd 0000:00:1d.2: Performing full reset
[    2.777776] uhci_hcd 0000:00:1d.2: supports USB remote wakeup
[    2.777961] uhci_hcd 0000:00:1d.2: irq 18, io base 0x0000c480
[    2.779743] usb usb4: default language 0x0409
[    2.779915] usb usb4: udev 1, busnum 4, minor = 384
[    2.779918] usb usb4: New USB device found, idVendor=1d6b, idProduct=0001
[    2.781427] usb usb4: New USB device strings: Mfr=3, Product=2, SerialNumber=1
[    2.782899] usb usb4: Product: UHCI Host Controller
[    2.784363] usb usb4: Manufacturer: Linux 3.6.0-rc3-wl-main uhci_hcd
[    2.785838] usb usb4: SerialNumber: 0000:00:1d.2
[    2.788335] usb usb4: usb_probe_device
[    2.788338] usb usb4: configuration #1 chosen from 1 choice
[    2.788431] usb usb4: adding 4-0:1.0 (config #1, interface 0)
[    2.788962] hub 4-0:1.0: usb_probe_interface
[    2.788965] hub 4-0:1.0: usb_probe_interface - got id
[    2.788970] hub 4-0:1.0: USB hub found
[    2.790578] hub 4-0:1.0: 2 ports detected
[    2.792049] hub 4-0:1.0: standalone hub
[    2.792052] hub 4-0:1.0: no power switching (usb 1.0)
[    2.792054] hub 4-0:1.0: individual port over-current protection
[    2.792067] hub 4-0:1.0: power on to power good time: 2ms
[    2.792175] hub 4-0:1.0: local power source is good
[    2.792187] hub 4-0:1.0: trying to enable port power on non-switchable hub
[    2.792917] ehci_hcd 0000:00:1d.7: HS companion for 0000:00:1d.2
[    2.793160] uhci_hcd 0000:00:1d.3: setting latency timer to 64
[    2.793165] uhci_hcd 0000:00:1d.3: UHCI Host Controller
[    2.794638] uhci_hcd 0000:00:1d.3: new USB bus registered, assigned bus number 5
[    2.796116] uhci_hcd 0000:00:1d.3: detected 2 ports
[    2.797544] uhci_hcd 0000:00:1d.3: uhci_check_and_reset_hc: cmd = 0x0000
[    2.797546] uhci_hcd 0000:00:1d.3: Performing full reset
[    2.797560] uhci_hcd 0000:00:1d.3: supports USB remote wakeup
[    2.797738] uhci_hcd 0000:00:1d.3: irq 16, io base 0x0000c400
[    2.799490] usb usb5: default language 0x0409
[    2.799670] usb usb5: udev 1, busnum 5, minor = 512
[    2.799673] usb usb5: New USB device found, idVendor=1d6b, idProduct=0001
[    2.801085] usb usb5: New USB device strings: Mfr=3, Product=2, SerialNumber=1
[    2.802458] usb usb5: Product: UHCI Host Controller
[    2.803802] usb usb5: Manufacturer: Linux 3.6.0-rc3-wl-main uhci_hcd
[    2.805152] usb usb5: SerialNumber: 0000:00:1d.3
[    2.807557] usb usb5: usb_probe_device
[    2.807560] usb usb5: configuration #1 chosen from 1 choice
[    2.807669] usb usb5: adding 5-0:1.0 (config #1, interface 0)
[    2.808328] hub 5-0:1.0: usb_probe_interface
[    2.808331] hub 5-0:1.0: usb_probe_interface - got id
[    2.808336] hub 5-0:1.0: USB hub found
[    2.809756] hub 5-0:1.0: 2 ports detected
[    2.811104] hub 5-0:1.0: standalone hub
[    2.811106] hub 5-0:1.0: no power switching (usb 1.0)
[    2.811108] hub 5-0:1.0: individual port over-current protection
[    2.811112] hub 5-0:1.0: power on to power good time: 2ms
[    2.811224] hub 5-0:1.0: local power source is good
[    2.811237] hub 5-0:1.0: trying to enable port power on non-switchable hub
[    2.811946] ehci_hcd 0000:00:1d.7: HS companion for 0000:00:1d.3
[    2.812899] usbcore: registered new interface driver cdc_acm
[    2.814208] cdc_acm: USB Abstract Control Model driver for USB modems and ISDN adapters
[    2.815848] usbcore: registered new interface driver uas
[    2.817123] Initializing USB Mass Storage driver...
[    2.818817] usbcore: registered new interface driver usb-storage
[    2.820111] USB Mass Storage support registered.
[    2.821934] usbcore: registered new interface driver libusual
[    2.824614] i8042: PNP: No PS/2 controller found. Probing ports directly.
[    2.826992] serio: i8042 KBD port at 0x60,0x64 irq 1
[    2.828201] ehci_hcd 0000:00:1d.7: GetStatus port:2 status 001403 0  ACK POWER sig=k CSC CONNECT
[    2.828217] hub 1-0:1.0: port 2: status 0501 change 0001
[    2.828294] ehci_hcd 0000:00:1d.7: GetStatus port:3 status 001803 0  ACK POWER sig=j CSC CONNECT
[    2.828310] hub 1-0:1.0: port 3: status 0501 change 0001
[    2.828439] ehci_hcd 0000:00:1d.7: GetStatus port:7 status 001803 0  ACK POWER sig=j CSC CONNECT
[    2.828457] hub 1-0:1.0: port 7: status 0501 change 0001
[    2.828521] serio: i8042 AUX port at 0x60,0x64 irq 12
[    2.831432] mousedev: PS/2 mouse device common for all mice
[    2.834783] rtc_cmos 00:03: RTC can wake from S4
[    2.837087] rtc_cmos 00:03: rtc core: registered rtc_cmos as rtc0
[    2.838460] rtc0: alarms up to one month, y3k, 114 bytes nvram, hpet irqs
[    2.840193] i801_smbus 0000:00:1f.3: SMBus using PCI Interrupt
[    2.842686] usbcore: registered new interface driver uvcvideo
[    2.844006] USB Video Class driver (1.1.1)
[    2.846864] coretemp coretemp.0: Using relative temperature scale!
[    2.848267] coretemp coretemp.0: Using relative temperature scale!
[    2.849624] coretemp coretemp.0: Using relative temperature scale!
[    2.850954] coretemp coretemp.0: Using relative temperature scale!
[    2.851251] uhci_hcd 0000:00:1d.0: port 2 portsc 008a,00
[    2.852321] it87: Found IT8718F chip at 0xa10, revision 4
[    2.853591] it87: VID is disabled (pins used for GPIO)
[    2.857459] it87_wdt: Chip IT8718 revision 4 initialized. timeout=60 sec (nowayout=0 testmode=0 exclusive=1 nogameport=0)
[    2.858803] cpuidle: using governor ladder
[    2.860113] cpuidle: using governor menu
[    2.869203] usbcore: registered new interface driver usbhid
[    2.870520] usbhid: USB HID core driver
[    2.872493] uhci_hcd 0000:00:1d.1: port 1 portsc 008a,00
[    2.874202] snd_hda_intel 0000:00:1b.0: irq 42 for MSI/MSI-X
[    2.892136] hub 4-0:1.0: state 7 ports 2 chg 0000 evt 0000
[    2.901415] TCP: cubic registered
[    2.902719] Initializing XFRM netlink socket
[    2.904084] NET: Registered protocol family 17
[    2.909492] registered taskstats version 1
[    2.911573] uhci_hcd 0000:00:1d.3: port 1 portsc 008a,00
[    2.913397] rtc_cmos 00:03: setting system clock to 2009-08-16 04:18:50 UTC (1250396330)
[    2.928240] hub 1-0:1.0: state 7 ports 8 chg 008c evt 0000
[    2.928293] hub 1-0:1.0: port 2, status 0501, change 0000, 480 Mb/s
[    2.928399] ehci_hcd 0000:00:1d.7: port 2 low speed --> companion
[    2.949707] ALSA device list:
[    2.951020]   #0: HDA Intel at 0xfe178000 irq 42
[    2.952832] debug: unmapping init [mem 0xffffffff81a98000-0xffffffff81b19fff]
[    2.954231] Write protecting the kernel read-only data: 10240k
[    2.955733] Testing CPA: undo ffffffff81000000-ffffffff81a00000
[    2.957217] Testing CPA: again
[    2.958692] debug: unmapping init [mem 0xffff8800015d9000-0xffff8800015fffff]
[    2.960061] debug: unmapping init [mem 0xffff880001895000-0xffff8800019fffff]
[    2.979094] ehci_hcd 0000:00:1d.7: GetStatus port:2 status 003002 0  ACK POWER OWNER sig=se0 CSC
[    2.979311] hub 1-0:1.0: port 3, status 0501, change 0000, 480 Mb/s
[    3.030223] ehci_hcd 0000:00:1d.7: port 3 full speed --> companion
[    3.030231] ehci_hcd 0000:00:1d.7: GetStatus port:3 status 003801 0  ACK POWER OWNER sig=j CONNECT
[    3.030252] hub 1-0:1.0: port 3 not reset yet, waiting 50ms
[    3.081060] ehci_hcd 0000:00:1d.7: GetStatus port:3 status 003002 0  ACK POWER OWNER sig=se0 CSC
[    3.081227] hub 1-0:1.0: port 7, status 0501, change 0000, 480 Mb/s
[    3.102717] dracut: dracut-018-55.git20120606.fc16
[    3.132348] ehci_hcd 0000:00:1d.7: port 7 full speed --> companion
[    3.132355] ehci_hcd 0000:00:1d.7: GetStatus port:7 status 003801 0  ACK POWER OWNER sig=j CONNECT
[    3.132381] hub 1-0:1.0: port 7 not reset yet, waiting 50ms
[    3.157021] udevd[937]: starting version 173
[    3.183098] ehci_hcd 0000:00:1d.7: GetStatus port:7 status 003002 0  ACK POWER OWNER sig=se0 CSC
[    3.183277] hub 1-0:1.0: state 7 ports 8 chg 0000 evt fe8c
[    3.183299] ehci_hcd 0000:00:1d.7: GetStatus port:2 status 003002 0  ACK POWER OWNER sig=se0 CSC
[    3.183343] hub 1-0:1.0: port 2, status 0100, change 0001, 12 Mb/s
[    3.288123] hub 1-0:1.0: debounce: port 2: total 100ms stable 100ms status 0x100
[    3.288150] ehci_hcd 0000:00:1d.7: GetStatus port:3 status 003002 0  ACK POWER OWNER sig=se0 CSC
[    3.288194] hub 1-0:1.0: port 3, status 0100, change 0001, 12 Mb/s
[    3.342090] dracut: Starting plymouth daemon
[    3.392194] hub 1-0:1.0: debounce: port 3: total 100ms stable 100ms status 0x100
[    3.392219] ehci_hcd 0000:00:1d.7: GetStatus port:7 status 003002 0  ACK POWER OWNER sig=se0 CSC
[    3.392265] hub 1-0:1.0: port 7, status 0100, change 0001, 12 Mb/s
[    3.496049] hub 1-0:1.0: debounce: port 7: total 100ms stable 100ms status 0x100
[    3.496057] hub 2-0:1.0: state 7 ports 2 chg 0000 evt 0004
[    3.496082] uhci_hcd 0000:00:1d.0: port 2 portsc 01a3,00
[    3.496131] hub 2-0:1.0: port 2, status 0301, change 0001, 1.5 Mb/s
[    3.568041] pcmcia_socket pcmcia_socket0: pccard: CardBus card inserted into slot 0
[    3.569673] pci 0000:04:00.0: [168c:0013] type 00 class 0x028000
[    3.569708] pci 0000:04:00.0: reg 10: [mem 0x00000000-0x0000ffff]
[    3.569905] pci 0000:04:00.0: BAR 0: assigned [mem 0xf4000000-0xf400ffff]
[    3.600079] hub 2-0:1.0: debounce: port 2: total 100ms stable 100ms status 0x301
[    3.702077] usb 2-2: new low-speed USB device number 2 using uhci_hcd
[    3.706993] modprobe (1263) used greatest stack depth: 4208 bytes left
[    3.851053] usb 2-2: skipped 1 descriptor after interface
[    3.851066] usb 2-2: skipped 1 descriptor after interface
[    3.855752] usb 2-2: default language 0x0409
[    3.856137] ata_id (1483) used greatest stack depth: 3696 bytes left
[    3.872782] usb 2-2: udev 2, busnum 2, minor = 129
[    3.872787] usb 2-2: New USB device found, idVendor=046d, idProduct=c312
[    3.874924] usb 2-2: New USB device strings: Mfr=1, Product=2, SerialNumber=0
[    3.876574] usb 2-2: Product: USB Multimedia Keyboard
[    3.878178] usb 2-2: Manufacturer: BTC
[    3.883083] usb 2-2: usb_probe_device
[    3.883089] usb 2-2: configuration #1 chosen from 1 choice
[    3.885974] usb 2-2: adding 2-2:1.0 (config #1, interface 0)
[    3.887753] usbhid 2-2:1.0: usb_probe_interface
[    3.887758] usbhid 2-2:1.0: usb_probe_interface - got id
[    3.905848] input: BTC USB Multimedia Keyboard as /devices/pci0000:00/0000:00:1d.0/usb2/2-2/2-2:1.0/input/input2
[    3.908120] uhci_hcd 0000:00:1d.0: reserve dev 2 ep81-INT, period 8, phase 4, 118 us
[    3.920319] hid-generic 0003:046D:C312.0001: input,hidraw0: USB HID v1.10 Keyboard [BTC USB Multimedia Keyboard] on usb-0000:00:1d.0-2/input0
[    3.922798] usb 2-2: adding 2-2:1.1 (config #1, interface 1)
[    3.925487] usbhid 2-2:1.1: usb_probe_interface
[    3.925493] usbhid 2-2:1.1: usb_probe_interface - got id
[    3.954034] usb usb4: suspend_rh (auto-stop)
[    3.970054] input: BTC USB Multimedia Keyboard as /devices/pci0000:00/0000:00:1d.0/usb2/2-2/2-2:1.1/input/input3
[    3.971913] uhci_hcd 0000:00:1d.0: reserve dev 2 ep82-INT, period 8, phase 4, 118 us
[    3.973332] usbhid 2-2:1.1: looking for a minor, starting at 0
[    3.976847] hid-generic 0003:046D:C312.0002: input,hiddev0,hidraw1: USB HID v1.10 Device [BTC USB Multimedia Keyboard] on usb-0000:00:1d.0-2/input1
[    3.979180] hub 3-0:1.0: state 7 ports 2 chg 0000 evt 0002
[    3.979212] uhci_hcd 0000:00:1d.1: port 1 portsc 0093,00
[    3.979261] hub 3-0:1.0: port 1, status 0101, change 0001, 12 Mb/s
[    4.071786] EXT4-fs (sda1): INFO: recovery required on readonly filesystem
[    4.073547] EXT4-fs (sda1): write access will be enabled during recovery
[    4.085243] hub 3-0:1.0: debounce: port 1: total 100ms stable 100ms status 0x101
[    4.187231] usb 3-1: new full-speed USB device number 2 using uhci_hcd
[    4.273908] EXT4-fs (sda1): recovery complete
[    4.276449] EXT4-fs (sda1): mounted filesystem with ordered data mode. Opts: (null)
[    4.312035] usb 3-1: ep0 maxpacket = 8
[    4.344172] usb 3-1: skipped 1 descriptor after interface
[    4.344184] usb 3-1: skipped 1 descriptor after interface
[    4.344192] usb 3-1: skipped 1 descriptor after interface
[    4.349158] usb 3-1: default language 0x0409
[    4.364161] usb 3-1: udev 2, busnum 3, minor = 257
[    4.364165] usb 3-1: New USB device found, idVendor=046d, idProduct=c52b
[    4.365841] usb 3-1: New USB device strings: Mfr=1, Product=2, SerialNumber=0
[    4.367783] usb 3-1: Product: USB Receiver
[    4.369471] usb 3-1: Manufacturer: Logitech
[    4.370274] dracut: Checking ext4: /dev/disk/by-uuid/69ea49b8-e1c0-494e-a5b2-3e0f4850decf
[    4.370493] dracut: issuing e2fsck -a  /dev/disk/by-uuid/69ea49b8-e1c0-494e-a5b2-3e0f4850decf
[    4.375493] usb 3-1: usb_probe_device
[    4.375498] usb 3-1: configuration #1 chosen from 1 choice
[    4.381234] usb 3-1: adding 3-1:1.0 (config #1, interface 0)
[    4.381870] usbhid 3-1:1.0: usb_probe_interface
[    4.381875] usbhid 3-1:1.0: usb_probe_interface - got id
[    4.384454] usb 3-1: adding 3-1:1.1 (config #1, interface 1)
[    4.384985] usbhid 3-1:1.1: usb_probe_interface
[    4.384989] usbhid 3-1:1.1: usb_probe_interface - got id
[    4.388307] dracut: /dev/disk/by-uuid/69ea49b8-e1c0-494e-a5b2-3e0f4850decf: clean, 1449525/4505600 files, 9390645/18001664 blocks
[    4.389259] usb 3-1: adding 3-1:1.2 (config #1, interface 2)
[    4.389776] usbhid 3-1:1.2: usb_probe_interface
[    4.389779] usbhid 3-1:1.2: usb_probe_interface - got id
[    4.391686] dracut: Remounting /dev/disk/by-uuid/69ea49b8-e1c0-494e-a5b2-3e0f4850decf with -o ro
[    4.397191] usbhid 3-1:1.2: looking for a minor, starting at 0
[    4.398927] logitech-djreceiver 0003:046D:C52B.0005: hiddev0,hidraw2: USB HID v1.11 Device [Logitech USB Receiver] on usb-0000:00:1d.1-1/input2
[    4.402259] uhci_hcd 0000:00:1d.1: reserve dev 2 ep83-INT, period 2, phase 1, 36 us
[    4.403872] hub 5-0:1.0: state 7 ports 2 chg 0000 evt 0002
[    4.403900] uhci_hcd 0000:00:1d.3: port 1 portsc 0093,00
[    4.403951] hub 5-0:1.0: port 1, status 0101, change 0001, 12 Mb/s
[    4.412740] input: Logitech Unifying Device. Wireless PID:101b as /devices/pci0000:00/0000:00:1d.1/usb3/3-1/3-1:1.2/0003:046D:C52B.0005/input/input4
[    4.419105] logitech-djdevice 0003:046D:C52B.0006: input,hidraw3: USB HID v1.11 Mouse [Logitech Unifying Device. Wireless PID:101b] on usb-0000:00:1d.1-1:1
[    4.427745] EXT4-fs (sda1): mounted filesystem with ordered data mode. Opts: (null)
[    4.447247] dracut: Mounted root filesystem /dev/sda1
[    4.494420] readlink (1732) used greatest stack depth: 3216 bytes left
[    4.507070] hub 5-0:1.0: debounce: port 1: total 100ms stable 100ms status 0x101
[    4.560953] dracut: Switching root
[    4.609096] usb 5-1: new full-speed USB device number 2 using uhci_hcd
[    4.691355] systemd[1]: systemd 37 running in system mode. (+PAM +LIBWRAP +AUDIT +SELINUX +SYSVINIT +LIBCRYPTSETUP; fedora)
[    4.732889] systemd[1]: /sbin/modprobe failed with error code 1.
[    4.738568] systemd[1]: Set hostname to <mj>.
[    4.747345] usb 5-1: default language 0x0409
[    4.757355] usb 5-1: udev 2, busnum 5, minor = 513
[    4.757359] usb 5-1: New USB device found, idVendor=1004, idProduct=607f
[    4.759290] usb 5-1: New USB device strings: Mfr=1, Product=2, SerialNumber=0
[    4.761207] usb 5-1: Product: USB Autorun
[    4.763121] usb 5-1: Manufacturer: LG Electronics, Inc
[    4.765893] usb 5-1: usb_probe_device
[    4.765898] usb 5-1: configuration #1 chosen from 1 choice
[    4.768377] usb 5-1: adding 5-1:1.0 (config #1, interface 0)
[    4.768915] uas 5-1:1.0: usb_probe_interface
[    4.768918] uas 5-1:1.0: usb_probe_interface - got id
[    4.769099] usb-storage 5-1:1.0: usb_probe_interface
[    4.769104] usb-storage 5-1:1.0: usb_probe_interface - got id
[    4.769394] scsi4 : usb-storage 5-1:1.0
[    4.773146] hub 3-0:1.0: state 7 ports 2 chg 0000 evt 0002
[    5.057675] systemd-readahead-replay[1753]: Bumped block_nr parameter of 259:0 to 16384. This is a temporary hack and should be removed one day.
[    5.121701] mount (1756) used greatest stack depth: 2880 bytes left
[    5.191512] udevd[1763]: starting version 173
[    5.364816] EXT4-fs (sda1): re-mounted. Opts: (null)
[    5.779525] scsi 4:0:0:0: CD-ROM            LG       Autorun          1.00 PQ: 0 ANSI: 0
[    5.795411] sr1: scsi3-mmc drive: 48x/48x tray
[    5.807283] sr 4:0:0:0: Attached scsi CD-ROM sr1
[    5.810857] sr 4:0:0:0: Attached scsi generic sg2 type 5
[    5.861139] pcmcia_socket pcmcia_socket0: cs: memory probe 0x0c0000-0x0fffff:
[    5.863053]  excluding 0xc0000-0xcffff 0xe0000-0xfffff
[    5.869975] cfg80211: Calling CRDA to update world regulatory domain
[    5.870787] pcmcia_socket pcmcia_socket0: cs: memory probe 0xa0000000-0xa0ffffff:
[    5.874024]  excluding 0xa0000000-0xa0ffffff
[    5.879186] mtp-probe[2259]: checking bus 2, device 2: "/sys/devices/pci0000:00/0000:00:1d.0/usb2/2-2"
[    5.886548] pcmcia_socket pcmcia_socket0: cs: memory probe 0x60000000-0x60ffffff:
[    5.888587]  excluding 0x60000000-0x60ffffff
[    6.001081] mtp-probe[2338]: checking bus 3, device 2: "/sys/devices/pci0000:00/0000:00:1d.1/usb3/3-1"
[    6.019597] mtp-probe[2346]: checking bus 5, device 2: "/sys/devices/pci0000:00/0000:00:1d.3/usb5/5-1"
[    6.022925] mtp-probe[2259]: bus: 2, device: 2 was not an MTP device
[    6.034827] mtp-probe[2338]: bus: 3, device: 2 was not an MTP device
[    6.067694] cfg80211: World regulatory domain updated:
[    6.069423] cfg80211:   (start_freq - end_freq @ bandwidth), (max_antenna_gain, max_eirp)
[    6.070974] cfg80211:   (2402000 KHz - 2472000 KHz @ 40000 KHz), (300 mBi, 2000 mBm)
[    6.072560] cfg80211:   (2457000 KHz - 2482000 KHz @ 20000 KHz), (300 mBi, 2000 mBm)
[    6.074128] cfg80211:   (2474000 KHz - 2494000 KHz @ 20000 KHz), (300 mBi, 2000 mBm)
[    6.075812] cfg80211:   (5170000 KHz - 5250000 KHz @ 40000 KHz), (300 mBi, 2000 mBm)
[    6.077235] cfg80211:   (5735000 KHz - 5835000 KHz @ 40000 KHz), (300 mBi, 2000 mBm)
[    6.082090] ath5k 0000:03:08.0: registered as 'phy0'
[    6.109943] mtp-probe[2346]: bus: 5, device: 2 was not an MTP device
[    6.519727] Adding 6142972k swap on /dev/sda2.  Priority:0 extents:1 across:6142972k SS
[    6.736465] ath: EEPROM regdomain: 0x0
[    6.736470] ath: EEPROM indicates default country code should be used
[    6.736471] ath: doing EEPROM country->regdmn map search
[    6.736474] ath: country maps to regdmn code: 0x3a
[    6.736476] ath: Country alpha2 being used: US
[    6.736477] ath: Regpair used: 0x3a
[    6.736514] cfg80211: Updating information on frequency 2412 MHz for a 20 MHz width channel with regulatory rule:
[    6.736517] cfg80211: 2402000 KHz - 2472000 KHz @ 40000 KHz), (N/A mBi, 2000 mBm)
[    6.736519] cfg80211: Updating information on frequency 2417 MHz for a 20 MHz width channel with regulatory rule:
[    6.736522] cfg80211: 2402000 KHz - 2472000 KHz @ 40000 KHz), (N/A mBi, 2000 mBm)
[    6.736524] cfg80211: Updating information on frequency 2422 MHz for a 20 MHz width channel with regulatory rule:
[    6.736526] cfg80211: 2402000 KHz - 2472000 KHz @ 40000 KHz), (N/A mBi, 2000 mBm)
[    6.736528] cfg80211: Updating information on frequency 2427 MHz for a 20 MHz width channel with regulatory rule:
[    6.736531] cfg80211: 2402000 KHz - 2472000 KHz @ 40000 KHz), (N/A mBi, 2000 mBm)
[    6.736533] cfg80211: Updating information on frequency 2432 MHz for a 20 MHz width channel with regulatory rule:
[    6.736535] cfg80211: 2402000 KHz - 2472000 KHz @ 40000 KHz), (N/A mBi, 2000 mBm)
[    6.736537] cfg80211: Updating information on frequency 2437 MHz for a 20 MHz width channel with regulatory rule:
[    6.736539] cfg80211: 2402000 KHz - 2472000 KHz @ 40000 KHz), (N/A mBi, 2000 mBm)
[    6.736541] cfg80211: Updating information on frequency 2442 MHz for a 20 MHz width channel with regulatory rule:
[    6.736544] cfg80211: 2402000 KHz - 2472000 KHz @ 40000 KHz), (N/A mBi, 2000 mBm)
[    6.736546] cfg80211: Updating information on frequency 2447 MHz for a 20 MHz width channel with regulatory rule:
[    6.736548] cfg80211: 2402000 KHz - 2472000 KHz @ 40000 KHz), (N/A mBi, 2000 mBm)
[    6.736550] cfg80211: Updating information on frequency 2452 MHz for a 20 MHz width channel with regulatory rule:
[    6.736553] cfg80211: 2402000 KHz - 2472000 KHz @ 40000 KHz), (N/A mBi, 2000 mBm)
[    6.736555] cfg80211: Updating information on frequency 2457 MHz for a 20 MHz width channel with regulatory rule:
[    6.736557] cfg80211: 2402000 KHz - 2472000 KHz @ 40000 KHz), (N/A mBi, 2000 mBm)
[    6.736559] cfg80211: Updating information on frequency 2462 MHz for a 20 MHz width channel with regulatory rule:
[    6.736562] cfg80211: 2402000 KHz - 2472000 KHz @ 40000 KHz), (N/A mBi, 2000 mBm)
[    6.736564] cfg80211: Disabling freq 2467 MHz as custom regd has no rule that fits a 20 MHz wide channel
[    6.736566] cfg80211: Disabling freq 2472 MHz as custom regd has no rule that fits a 20 MHz wide channel
[    6.736568] cfg80211: Disabling freq 2484 MHz as custom regd has no rule that fits a 20 MHz wide channel
[    6.736570] cfg80211: Disabling freq 5040 MHz as custom regd has no rule that fits a 20 MHz wide channel
[    6.736571] cfg80211: Disabling freq 5060 MHz as custom regd has no rule that fits a 20 MHz wide channel
[    6.736573] cfg80211: Disabling freq 5080 MHz as custom regd has no rule that fits a 20 MHz wide channel
[    6.736575] cfg80211: Updating information on frequency 5180 MHz for a 20 MHz width channel with regulatory rule:
[    6.736577] cfg80211: 5140000 KHz - 5360000 KHz @ 40000 KHz), (N/A mBi, 3000 mBm)
[    6.736580] cfg80211: Updating information on frequency 5200 MHz for a 20 MHz width channel with regulatory rule:
[    6.736582] cfg80211: 5140000 KHz - 5360000 KHz @ 40000 KHz), (N/A mBi, 3000 mBm)
[    6.736584] cfg80211: Updating information on frequency 5220 MHz for a 20 MHz width channel with regulatory rule:
[    6.736586] cfg80211: 5140000 KHz - 5360000 KHz @ 40000 KHz), (N/A mBi, 3000 mBm)
[    6.736588] cfg80211: Updating information on frequency 5240 MHz for a 20 MHz width channel with regulatory rule:
[    6.736590] cfg80211: 5140000 KHz - 5360000 KHz @ 40000 KHz), (N/A mBi, 3000 mBm)
[    6.736592] cfg80211: Updating information on frequency 5260 MHz for a 20 MHz width channel with regulatory rule:
[    6.736595] cfg80211: 5140000 KHz - 5360000 KHz @ 40000 KHz), (N/A mBi, 3000 mBm)
[    6.736597] cfg80211: Updating information on frequency 5280 MHz for a 20 MHz width channel with regulatory rule:
[    6.736599] cfg80211: 5140000 KHz - 5360000 KHz @ 40000 KHz), (N/A mBi, 3000 mBm)
[    6.736601] cfg80211: Updating information on frequency 5300 MHz for a 20 MHz width channel with regulatory rule:
[    6.736603] cfg80211: 5140000 KHz - 5360000 KHz @ 40000 KHz), (N/A mBi, 3000 mBm)
[    6.736605] cfg80211: Updating information on frequency 5320 MHz for a 20 MHz width channel with regulatory rule:
[    6.736608] cfg80211: 5140000 KHz - 5360000 KHz @ 40000 KHz), (N/A mBi, 3000 mBm)
[    6.736610] cfg80211: Disabling freq 5500 MHz as custom regd has no rule that fits a 20 MHz wide channel
[    6.736612] cfg80211: Disabling freq 5520 MHz as custom regd has no rule that fits a 20 MHz wide channel
[    6.736614] cfg80211: Disabling freq 5540 MHz as custom regd has no rule that fits a 20 MHz wide channel
[    6.736615] cfg80211: Disabling freq 5560 MHz as custom regd has no rule that fits a 20 MHz wide channel
[    6.736617] cfg80211: Disabling freq 5580 MHz as custom regd has no rule that fits a 20 MHz wide channel
[    6.736619] cfg80211: Disabling freq 5600 MHz as custom regd has no rule that fits a 20 MHz wide channel
[    6.736621] cfg80211: Disabling freq 5620 MHz as custom regd has no rule that fits a 20 MHz wide channel
[    6.736623] cfg80211: Disabling freq 5640 MHz as custom regd has no rule that fits a 20 MHz wide channel
[    6.736625] cfg80211: Disabling freq 5660 MHz as custom regd has no rule that fits a 20 MHz wide channel
[    6.736627] cfg80211: Disabling freq 5680 MHz as custom regd has no rule that fits a 20 MHz wide channel
[    6.736629] cfg80211: Disabling freq 5700 MHz as custom regd has no rule that fits a 20 MHz wide channel
[    6.736631] cfg80211: Updating information on frequency 5745 MHz for a 20 MHz width channel with regulatory rule:
[    6.736633] cfg80211: 5715000 KHz - 5860000 KHz @ 40000 KHz), (N/A mBi, 3000 mBm)
[    6.736635] cfg80211: Updating information on frequency 5765 MHz for a 20 MHz width channel with regulatory rule:
[    6.736637] cfg80211: 5715000 KHz - 5860000 KHz @ 40000 KHz), (N/A mBi, 3000 mBm)
[    6.736639] cfg80211: Updating information on frequency 5785 MHz for a 20 MHz width channel with regulatory rule:
[    6.736642] cfg80211: 5715000 KHz - 5860000 KHz @ 40000 KHz), (N/A mBi, 3000 mBm)
[    6.736644] cfg80211: Updating information on frequency 5805 MHz for a 20 MHz width channel with regulatory rule:
[    6.736646] cfg80211: 5715000 KHz - 5860000 KHz @ 40000 KHz), (N/A mBi, 3000 mBm)
[    6.736648] cfg80211: Updating information on frequency 5825 MHz for a 20 MHz width channel with regulatory rule:
[    6.736650] cfg80211: 5715000 KHz - 5860000 KHz @ 40000 KHz), (N/A mBi, 3000 mBm)
[    6.738236] cfg80211: Updating information on frequency 2412 MHz for a 20 MHz width channel with regulatory rule:
[    6.738240] cfg80211: 2402000 KHz - 2472000 KHz @ 40000 KHz), (300 mBi, 2000 mBm)
[    6.738242] cfg80211: Updating information on frequency 2417 MHz for a 20 MHz width channel with regulatory rule:
[    6.738245] cfg80211: 2402000 KHz - 2472000 KHz @ 40000 KHz), (300 mBi, 2000 mBm)
[    6.738247] cfg80211: Updating information on frequency 2422 MHz for a 20 MHz width channel with regulatory rule:
[    6.738249] cfg80211: 2402000 KHz - 2472000 KHz @ 40000 KHz), (300 mBi, 2000 mBm)
[    6.738251] cfg80211: Updating information on frequency 2427 MHz for a 20 MHz width channel with regulatory rule:
[    6.738254] cfg80211: 2402000 KHz - 2472000 KHz @ 40000 KHz), (300 mBi, 2000 mBm)
[    6.738256] cfg80211: Updating information on frequency 2432 MHz for a 20 MHz width channel with regulatory rule:
[    6.738258] cfg80211: 2402000 KHz - 2472000 KHz @ 40000 KHz), (300 mBi, 2000 mBm)
[    6.738261] cfg80211: Updating information on frequency 2437 MHz for a 20 MHz width channel with regulatory rule:
[    6.738263] cfg80211: 2402000 KHz - 2472000 KHz @ 40000 KHz), (300 mBi, 2000 mBm)
[    6.738265] cfg80211: Updating information on frequency 2442 MHz for a 20 MHz width channel with regulatory rule:
[    6.738267] cfg80211: 2402000 KHz - 2472000 KHz @ 40000 KHz), (300 mBi, 2000 mBm)
[    6.738270] cfg80211: Updating information on frequency 2447 MHz for a 20 MHz width channel with regulatory rule:
[    6.738272] cfg80211: 2402000 KHz - 2472000 KHz @ 40000 KHz), (300 mBi, 2000 mBm)
[    6.738274] cfg80211: Updating information on frequency 2452 MHz for a 20 MHz width channel with regulatory rule:
[    6.738277] cfg80211: 2402000 KHz - 2472000 KHz @ 40000 KHz), (300 mBi, 2000 mBm)
[    6.738279] cfg80211: Updating information on frequency 2457 MHz for a 20 MHz width channel with regulatory rule:
[    6.738281] cfg80211: 2402000 KHz - 2472000 KHz @ 40000 KHz), (300 mBi, 2000 mBm)
[    6.738283] cfg80211: Updating information on frequency 2462 MHz for a 20 MHz width channel with regulatory rule:
[    6.738286] cfg80211: 2402000 KHz - 2472000 KHz @ 40000 KHz), (300 mBi, 2000 mBm)
[    6.738288] cfg80211: Updating information on frequency 2467 MHz for a 20 MHz width channel with regulatory rule:
[    6.738290] cfg80211: 2457000 KHz - 2482000 KHz @ 20000 KHz), (300 mBi, 2000 mBm)
[    6.738293] cfg80211: Updating information on frequency 2472 MHz for a 20 MHz width channel with regulatory rule:
[    6.738295] cfg80211: 2457000 KHz - 2482000 KHz @ 20000 KHz), (300 mBi, 2000 mBm)
[    6.738297] cfg80211: Updating information on frequency 2484 MHz for a 20 MHz width channel with regulatory rule:
[    6.738300] cfg80211: 2474000 KHz - 2494000 KHz @ 20000 KHz), (300 mBi, 2000 mBm)
[    6.738302] cfg80211: Disabling freq 5040 MHz
[    6.738304] cfg80211: Disabling freq 5060 MHz
[    6.738305] cfg80211: Disabling freq 5080 MHz
[    6.738308] cfg80211: Updating information on frequency 5180 MHz for a 20 MHz width channel with regulatory rule:
[    6.738310] cfg80211: 5170000 KHz - 5250000 KHz @ 40000 KHz), (300 mBi, 2000 mBm)
[    6.738312] cfg80211: Updating information on frequency 5200 MHz for a 20 MHz width channel with regulatory rule:
[    6.738315] cfg80211: 5170000 KHz - 5250000 KHz @ 40000 KHz), (300 mBi, 2000 mBm)
[    6.738317] cfg80211: Updating information on frequency 5220 MHz for a 20 MHz width channel with regulatory rule:
[    6.738319] cfg80211: 5170000 KHz - 5250000 KHz @ 40000 KHz), (300 mBi, 2000 mBm)
[    6.738321] cfg80211: Updating information on frequency 5240 MHz for a 20 MHz width channel with regulatory rule:
[    6.738324] cfg80211: 5170000 KHz - 5250000 KHz @ 40000 KHz), (300 mBi, 2000 mBm)
[    6.738326] cfg80211: Disabling freq 5260 MHz
[    6.738327] cfg80211: Disabling freq 5280 MHz
[    6.738329] cfg80211: Disabling freq 5300 MHz
[    6.738331] cfg80211: Disabling freq 5320 MHz
[    6.738333] cfg80211: Disabling freq 5500 MHz
[    6.738334] cfg80211: Disabling freq 5520 MHz
[    6.738336] cfg80211: Disabling freq 5540 MHz
[    6.738338] cfg80211: Disabling freq 5560 MHz
[    6.738340] cfg80211: Disabling freq 5580 MHz
[    6.738341] cfg80211: Disabling freq 5600 MHz
[    6.738343] cfg80211: Disabling freq 5620 MHz
[    6.738345] cfg80211: Disabling freq 5640 MHz
[    6.738347] cfg80211: Disabling freq 5660 MHz
[    6.738349] cfg80211: Disabling freq 5680 MHz
[    6.738350] cfg80211: Disabling freq 5700 MHz
[    6.738353] cfg80211: Updating information on frequency 5745 MHz for a 20 MHz width channel with regulatory rule:
[    6.738355] cfg80211: 5735000 KHz - 5835000 KHz @ 40000 KHz), (300 mBi, 2000 mBm)
[    6.738357] cfg80211: Updating information on frequency 5765 MHz for a 20 MHz width channel with regulatory rule:
[    6.738360] cfg80211: 5735000 KHz - 5835000 KHz @ 40000 KHz), (300 mBi, 2000 mBm)
[    6.738362] cfg80211: Updating information on frequency 5785 MHz for a 20 MHz width channel with regulatory rule:
[    6.738364] cfg80211: 5735000 KHz - 5835000 KHz @ 40000 KHz), (300 mBi, 2000 mBm)
[    6.738366] cfg80211: Updating information on frequency 5805 MHz for a 20 MHz width channel with regulatory rule:
[    6.738369] cfg80211: 5735000 KHz - 5835000 KHz @ 40000 KHz), (300 mBi, 2000 mBm)
[    6.738371] cfg80211: Updating information on frequency 5825 MHz for a 20 MHz width channel with regulatory rule:
[    6.738373] cfg80211: 5735000 KHz - 5835000 KHz @ 40000 KHz), (300 mBi, 2000 mBm)
[    6.741323] ieee80211 phy0: Selected rate control algorithm 'minstrel_ht'
[    6.746590] ath5k: phy0: Atheros AR5213A chip found (MAC: 0x59, PHY: 0x43)
[    6.748104] ath5k: phy0: RF5112B multiband radio found (0x36)
[    6.749592] cfg80211: Calling CRDA for country: US
[    6.752395] ath5k 0000:03:09.0: registered as 'phy1'
[    6.763622] cfg80211: Updating information on frequency 2412 MHz for a 20 MHz width channel with regulatory rule:
[    6.763627] cfg80211: 2402000 KHz - 2472000 KHz @ 40000 KHz), (300 mBi, 2700 mBm)
[    6.763630] cfg80211: Updating information on frequency 2417 MHz for a 20 MHz width channel with regulatory rule:
[    6.763632] cfg80211: 2402000 KHz - 2472000 KHz @ 40000 KHz), (300 mBi, 2700 mBm)
[    6.763635] cfg80211: Updating information on frequency 2422 MHz for a 20 MHz width channel with regulatory rule:
[    6.763637] cfg80211: 2402000 KHz - 2472000 KHz @ 40000 KHz), (300 mBi, 2700 mBm)
[    6.763639] cfg80211: Updating information on frequency 2427 MHz for a 20 MHz width channel with regulatory rule:
[    6.763642] cfg80211: 2402000 KHz - 2472000 KHz @ 40000 KHz), (300 mBi, 2700 mBm)
[    6.763644] cfg80211: Updating information on frequency 2432 MHz for a 20 MHz width channel with regulatory rule:
[    6.763646] cfg80211: 2402000 KHz - 2472000 KHz @ 40000 KHz), (300 mBi, 2700 mBm)
[    6.763649] cfg80211: Updating information on frequency 2437 MHz for a 20 MHz width channel with regulatory rule:
[    6.763651] cfg80211: 2402000 KHz - 2472000 KHz @ 40000 KHz), (300 mBi, 2700 mBm)
[    6.763653] cfg80211: Updating information on frequency 2442 MHz for a 20 MHz width channel with regulatory rule:
[    6.763656] cfg80211: 2402000 KHz - 2472000 KHz @ 40000 KHz), (300 mBi, 2700 mBm)
[    6.763658] cfg80211: Updating information on frequency 2447 MHz for a 20 MHz width channel with regulatory rule:
[    6.763660] cfg80211: 2402000 KHz - 2472000 KHz @ 40000 KHz), (300 mBi, 2700 mBm)
[    6.763662] cfg80211: Updating information on frequency 2452 MHz for a 20 MHz width channel with regulatory rule:
[    6.763665] cfg80211: 2402000 KHz - 2472000 KHz @ 40000 KHz), (300 mBi, 2700 mBm)
[    6.763667] cfg80211: Updating information on frequency 2457 MHz for a 20 MHz width channel with regulatory rule:
[    6.763669] cfg80211: 2402000 KHz - 2472000 KHz @ 40000 KHz), (300 mBi, 2700 mBm)
[    6.763672] cfg80211: Updating information on frequency 2462 MHz for a 20 MHz width channel with regulatory rule:
[    6.763674] cfg80211: 2402000 KHz - 2472000 KHz @ 40000 KHz), (300 mBi, 2700 mBm)
[    6.763676] cfg80211: Disabling freq 2467 MHz
[    6.763678] cfg80211: Disabling freq 2472 MHz
[    6.763680] cfg80211: Disabling freq 2484 MHz
[    6.763682] cfg80211: Disabling freq 5040 MHz
[    6.763683] cfg80211: Disabling freq 5060 MHz
[    6.763685] cfg80211: Disabling freq 5080 MHz
[    6.763687] cfg80211: Updating information on frequency 5180 MHz for a 20 MHz width channel with regulatory rule:
[    6.763690] cfg80211: 5170000 KHz - 5250000 KHz @ 40000 KHz), (300 mBi, 1700 mBm)
[    6.763692] cfg80211: Updating information on frequency 5200 MHz for a 20 MHz width channel with regulatory rule:
[    6.763694] cfg80211: 5170000 KHz - 5250000 KHz @ 40000 KHz), (300 mBi, 1700 mBm)
[    6.763697] cfg80211: Updating information on frequency 5220 MHz for a 20 MHz width channel with regulatory rule:
[    6.763699] cfg80211: 5170000 KHz - 5250000 KHz @ 40000 KHz), (300 mBi, 1700 mBm)
[    6.763701] cfg80211: Updating information on frequency 5240 MHz for a 20 MHz width channel with regulatory rule:
[    6.763704] cfg80211: 5170000 KHz - 5250000 KHz @ 40000 KHz), (300 mBi, 1700 mBm)
[    6.763706] cfg80211: Updating information on frequency 5260 MHz for a 20 MHz width channel with regulatory rule:
[    6.763708] cfg80211: 5250000 KHz - 5330000 KHz @ 40000 KHz), (300 mBi, 2000 mBm)
[    6.763710] cfg80211: Updating information on frequency 5280 MHz for a 20 MHz width channel with regulatory rule:
[    6.763713] cfg80211: 5250000 KHz - 5330000 KHz @ 40000 KHz), (300 mBi, 2000 mBm)
[    6.763715] cfg80211: Updating information on frequency 5300 MHz for a 20 MHz width channel with regulatory rule:
[    6.763717] cfg80211: 5250000 KHz - 5330000 KHz @ 40000 KHz), (300 mBi, 2000 mBm)
[    6.763720] cfg80211: Updating information on frequency 5320 MHz for a 20 MHz width channel with regulatory rule:
[    6.763722] cfg80211: 5250000 KHz - 5330000 KHz @ 40000 KHz), (300 mBi, 2000 mBm)
[    6.763724] cfg80211: Updating information on frequency 5500 MHz for a 20 MHz width channel with regulatory rule:
[    6.763727] cfg80211: 5490000 KHz - 5600000 KHz @ 40000 KHz), (300 mBi, 2000 mBm)
[    6.763729] cfg80211: Updating information on frequency 5520 MHz for a 20 MHz width channel with regulatory rule:
[    6.763731] cfg80211: 5490000 KHz - 5600000 KHz @ 40000 KHz), (300 mBi, 2000 mBm)
[    6.763734] cfg80211: Updating information on frequency 5540 MHz for a 20 MHz width channel with regulatory rule:
[    6.763736] cfg80211: 5490000 KHz - 5600000 KHz @ 40000 KHz), (300 mBi, 2000 mBm)
[    6.763738] cfg80211: Updating information on frequency 5560 MHz for a 20 MHz width channel with regulatory rule:
[    6.763741] cfg80211: 5490000 KHz - 5600000 KHz @ 40000 KHz), (300 mBi, 2000 mBm)
[    6.763743] cfg80211: Updating information on frequency 5580 MHz for a 20 MHz width channel with regulatory rule:
[    6.763745] cfg80211: 5490000 KHz - 5600000 KHz @ 40000 KHz), (300 mBi, 2000 mBm)
[    6.763747] cfg80211: Disabling freq 5600 MHz
[    6.763749] cfg80211: Disabling freq 5620 MHz
[    6.763751] cfg80211: Disabling freq 5640 MHz
[    6.763753] cfg80211: Updating information on frequency 5660 MHz for a 20 MHz width channel with regulatory rule:
[    6.763780] cfg80211: 5650000 KHz - 5710000 KHz @ 40000 KHz), (300 mBi, 2000 mBm)
[    6.763782] cfg80211: Updating information on frequency 5680 MHz for a 20 MHz width channel with regulatory rule:
[    6.763785] cfg80211: 5650000 KHz - 5710000 KHz @ 40000 KHz), (300 mBi, 2000 mBm)
[    6.763787] cfg80211: Updating information on frequency 5700 MHz for a 20 MHz width channel with regulatory rule:
[    6.763789] cfg80211: 5650000 KHz - 5710000 KHz @ 40000 KHz), (300 mBi, 2000 mBm)
[    6.763791] cfg80211: Updating information on frequency 5745 MHz for a 20 MHz width channel with regulatory rule:
[    6.763793] cfg80211: 5735000 KHz - 5835000 KHz @ 40000 KHz), (300 mBi, 3000 mBm)
[    6.763796] cfg80211: Updating information on frequency 5765 MHz for a 20 MHz width channel with regulatory rule:
[    6.763798] cfg80211: 5735000 KHz - 5835000 KHz @ 40000 KHz), (300 mBi, 3000 mBm)
[    6.763800] cfg80211: Updating information on frequency 5785 MHz for a 20 MHz width channel with regulatory rule:
[    6.763803] cfg80211: 5735000 KHz - 5835000 KHz @ 40000 KHz), (300 mBi, 3000 mBm)
[    6.763805] cfg80211: Updating information on frequency 5805 MHz for a 20 MHz width channel with regulatory rule:
[    6.763807] cfg80211: 5735000 KHz - 5835000 KHz @ 40000 KHz), (300 mBi, 3000 mBm)
[    6.763809] cfg80211: Updating information on frequency 5825 MHz for a 20 MHz width channel with regulatory rule:
[    6.763812] cfg80211: 5735000 KHz - 5835000 KHz @ 40000 KHz), (300 mBi, 3000 mBm)
[    6.763819] cfg80211: Regulatory domain changed to country: US
[    6.765256] cfg80211:   (start_freq - end_freq @ bandwidth), (max_antenna_gain, max_eirp)
[    6.766716] cfg80211:   (2402000 KHz - 2472000 KHz @ 40000 KHz), (300 mBi, 2700 mBm)
[    6.768179] cfg80211:   (5170000 KHz - 5250000 KHz @ 40000 KHz), (300 mBi, 1700 mBm)
[    6.769791] cfg80211:   (5250000 KHz - 5330000 KHz @ 40000 KHz), (300 mBi, 2000 mBm)
[    6.771238] cfg80211:   (5490000 KHz - 5600000 KHz @ 40000 KHz), (300 mBi, 2000 mBm)
[    6.772693] cfg80211:   (5650000 KHz - 5710000 KHz @ 40000 KHz), (300 mBi, 2000 mBm)
[    6.774153] cfg80211:   (5735000 KHz - 5835000 KHz @ 40000 KHz), (300 mBi, 3000 mBm)
[    6.887281] logger[2598]: usb_modeswitch: using overriding config file /etc/usb_modeswitch.d/1004:607f; make sure this is intended
[    6.891029] logger[2599]: usb_modeswitch: please report any new or corrected settings; otherwise, check for outdated files
[    6.923668] usb-storage 5-1:1.0: disconnect by usbfs
[    6.923700] usb_modeswitch[2600]: switching device 1004:607f on 005/002
[    7.250253] ath: EEPROM regdomain: 0x0
[    7.250258] ath: EEPROM indicates default country code should be used
[    7.250260] ath: doing EEPROM country->regdmn map search
[    7.250264] ath: country maps to regdmn code: 0x3a
[    7.250266] ath: Country alpha2 being used: US
[    7.250268] ath: Regpair used: 0x3a
[    7.250275] cfg80211: Updating information on frequency 2412 MHz for a 20 MHz width channel with regulatory rule:
[    7.250279] cfg80211: 2402000 KHz - 2472000 KHz @ 40000 KHz), (N/A mBi, 2000 mBm)
[    7.250282] cfg80211: Updating information on frequency 2417 MHz for a 20 MHz width channel with regulatory rule:
[    7.250285] cfg80211: 2402000 KHz - 2472000 KHz @ 40000 KHz), (N/A mBi, 2000 mBm)
[    7.250288] cfg80211: Updating information on frequency 2422 MHz for a 20 MHz width channel with regulatory rule:
[    7.250292] cfg80211: 2402000 KHz - 2472000 KHz @ 40000 KHz), (N/A mBi, 2000 mBm)
[    7.250295] cfg80211: Updating information on frequency 2427 MHz for a 20 MHz width channel with regulatory rule:
[    7.250298] cfg80211: 2402000 KHz - 2472000 KHz @ 40000 KHz), (N/A mBi, 2000 mBm)
[    7.250301] cfg80211: Updating information on frequency 2432 MHz for a 20 MHz width channel with regulatory rule:
[    7.250305] cfg80211: 2402000 KHz - 2472000 KHz @ 40000 KHz), (N/A mBi, 2000 mBm)
[    7.250307] cfg80211: Updating information on frequency 2437 MHz for a 20 MHz width channel with regulatory rule:
[    7.250311] cfg80211: 2402000 KHz - 2472000 KHz @ 40000 KHz), (N/A mBi, 2000 mBm)
[    7.250314] cfg80211: Updating information on frequency 2442 MHz for a 20 MHz width channel with regulatory rule:
[    7.250317] cfg80211: 2402000 KHz - 2472000 KHz @ 40000 KHz), (N/A mBi, 2000 mBm)
[    7.250320] cfg80211: Updating information on frequency 2447 MHz for a 20 MHz width channel with regulatory rule:
[    7.250323] cfg80211: 2402000 KHz - 2472000 KHz @ 40000 KHz), (N/A mBi, 2000 mBm)
[    7.250326] cfg80211: Updating information on frequency 2452 MHz for a 20 MHz width channel with regulatory rule:
[    7.250329] cfg80211: 2402000 KHz - 2472000 KHz @ 40000 KHz), (N/A mBi, 2000 mBm)
[    7.250332] cfg80211: Updating information on frequency 2457 MHz for a 20 MHz width channel with regulatory rule:
[    7.250336] cfg80211: 2402000 KHz - 2472000 KHz @ 40000 KHz), (N/A mBi, 2000 mBm)
[    7.250339] cfg80211: Updating information on frequency 2462 MHz for a 20 MHz width channel with regulatory rule:
[    7.250342] cfg80211: 2402000 KHz - 2472000 KHz @ 40000 KHz), (N/A mBi, 2000 mBm)
[    7.250345] cfg80211: Disabling freq 2467 MHz as custom regd has no rule that fits a 20 MHz wide channel
[    7.250348] cfg80211: Disabling freq 2472 MHz as custom regd has no rule that fits a 20 MHz wide channel
[    7.250351] cfg80211: Disabling freq 2484 MHz as custom regd has no rule that fits a 20 MHz wide channel
[    7.250353] cfg80211: Disabling freq 5040 MHz as custom regd has no rule that fits a 20 MHz wide channel
[    7.250356] cfg80211: Disabling freq 5060 MHz as custom regd has no rule that fits a 20 MHz wide channel
[    7.250359] cfg80211: Disabling freq 5080 MHz as custom regd has no rule that fits a 20 MHz wide channel
[    7.250362] cfg80211: Updating information on frequency 5180 MHz for a 20 MHz width channel with regulatory rule:
[    7.250365] cfg80211: 5140000 KHz - 5360000 KHz @ 40000 KHz), (N/A mBi, 3000 mBm)
[    7.250368] cfg80211: Updating information on frequency 5200 MHz for a 20 MHz width channel with regulatory rule:
[    7.250371] cfg80211: 5140000 KHz - 5360000 KHz @ 40000 KHz), (N/A mBi, 3000 mBm)
[    7.250374] cfg80211: Updating information on frequency 5220 MHz for a 20 MHz width channel with regulatory rule:
[    7.250378] cfg80211: 5140000 KHz - 5360000 KHz @ 40000 KHz), (N/A mBi, 3000 mBm)
[    7.250380] cfg80211: Updating information on frequency 5240 MHz for a 20 MHz width channel with regulatory rule:
[    7.250384] cfg80211: 5140000 KHz - 5360000 KHz @ 40000 KHz), (N/A mBi, 3000 mBm)
[    7.250387] cfg80211: Updating information on frequency 5260 MHz for a 20 MHz width channel with regulatory rule:
[    7.250390] cfg80211: 5140000 KHz - 5360000 KHz @ 40000 KHz), (N/A mBi, 3000 mBm)
[    7.250393] cfg80211: Updating information on frequency 5280 MHz for a 20 MHz width channel with regulatory rule:
[    7.250396] cfg80211: 5140000 KHz - 5360000 KHz @ 40000 KHz), (N/A mBi, 3000 mBm)
[    7.250399] cfg80211: Updating information on frequency 5300 MHz for a 20 MHz width channel with regulatory rule:
[    7.250403] cfg80211: 5140000 KHz - 5360000 KHz @ 40000 KHz), (N/A mBi, 3000 mBm)
[    7.250405] cfg80211: Updating information on frequency 5320 MHz for a 20 MHz width channel with regulatory rule:
[    7.250414] cfg80211: 5140000 KHz - 5360000 KHz @ 40000 KHz), (N/A mBi, 3000 mBm)
[    7.250416] cfg80211: Disabling freq 5500 MHz as custom regd has no rule that fits a 20 MHz wide channel
[    7.250418] cfg80211: Disabling freq 5520 MHz as custom regd has no rule that fits a 20 MHz wide channel
[    7.250420] cfg80211: Disabling freq 5540 MHz as custom regd has no rule that fits a 20 MHz wide channel
[    7.250422] cfg80211: Disabling freq 5560 MHz as custom regd has no rule that fits a 20 MHz wide channel
[    7.250424] cfg80211: Disabling freq 5580 MHz as custom regd has no rule that fits a 20 MHz wide channel
[    7.250425] cfg80211: Disabling freq 5600 MHz as custom regd has no rule that fits a 20 MHz wide channel
[    7.250427] cfg80211: Disabling freq 5620 MHz as custom regd has no rule that fits a 20 MHz wide channel
[    7.250429] cfg80211: Disabling freq 5640 MHz as custom regd has no rule that fits a 20 MHz wide channel
[    7.250431] cfg80211: Disabling freq 5660 MHz as custom regd has no rule that fits a 20 MHz wide channel
[    7.250433] cfg80211: Disabling freq 5680 MHz as custom regd has no rule that fits a 20 MHz wide channel
[    7.250434] cfg80211: Disabling freq 5700 MHz as custom regd has no rule that fits a 20 MHz wide channel
[    7.250436] cfg80211: Updating information on frequency 5745 MHz for a 20 MHz width channel with regulatory rule:
[    7.250439] cfg80211: 5715000 KHz - 5860000 KHz @ 40000 KHz), (N/A mBi, 3000 mBm)
[    7.250441] cfg80211: Updating information on frequency 5765 MHz for a 20 MHz width channel with regulatory rule:
[    7.250443] cfg80211: 5715000 KHz - 5860000 KHz @ 40000 KHz), (N/A mBi, 3000 mBm)
[    7.250445] cfg80211: Updating information on frequency 5785 MHz for a 20 MHz width channel with regulatory rule:
[    7.250447] cfg80211: 5715000 KHz - 5860000 KHz @ 40000 KHz), (N/A mBi, 3000 mBm)
[    7.250449] cfg80211: Updating information on frequency 5805 MHz for a 20 MHz width channel with regulatory rule:
[    7.250451] cfg80211: 5715000 KHz - 5860000 KHz @ 40000 KHz), (N/A mBi, 3000 mBm)
[    7.250453] cfg80211: Updating information on frequency 5825 MHz for a 20 MHz width channel with regulatory rule:
[    7.250455] cfg80211: 5715000 KHz - 5860000 KHz @ 40000 KHz), (N/A mBi, 3000 mBm)
[    7.251195] cfg80211: Ignoring regulatory request Set by core since the driver requires its own regulatory domain to be set first
[    7.253414] ieee80211 phy1: Selected rate control algorithm 'minstrel_ht'
[    7.257595] cfg80211: Updating information on frequency 2412 MHz for a 20 MHz width channel with regulatory rule:
[    7.257598] cfg80211: 2402000 KHz - 2472000 KHz @ 40000 KHz), (300 mBi, 2700 mBm)
[    7.257601] cfg80211: Updating information on frequency 2417 MHz for a 20 MHz width channel with regulatory rule:
[    7.257603] cfg80211: 2402000 KHz - 2472000 KHz @ 40000 KHz), (300 mBi, 2700 mBm)
[    7.257605] cfg80211: Updating information on frequency 2422 MHz for a 20 MHz width channel with regulatory rule:
[    7.257608] cfg80211: 2402000 KHz - 2472000 KHz @ 40000 KHz), (300 mBi, 2700 mBm)
[    7.257610] cfg80211: Updating information on frequency 2427 MHz for a 20 MHz width channel with regulatory rule:
[    7.257612] cfg80211: 2402000 KHz - 2472000 KHz @ 40000 KHz), (300 mBi, 2700 mBm)
[    7.257614] cfg80211: Updating information on frequency 2432 MHz for a 20 MHz width channel with regulatory rule:
[    7.257617] cfg80211: 2402000 KHz - 2472000 KHz @ 40000 KHz), (300 mBi, 2700 mBm)
[    7.257619] cfg80211: Updating information on frequency 2437 MHz for a 20 MHz width channel with regulatory rule:
[    7.257621] cfg80211: 2402000 KHz - 2472000 KHz @ 40000 KHz), (300 mBi, 2700 mBm)
[    7.257623] cfg80211: Updating information on frequency 2442 MHz for a 20 MHz width channel with regulatory rule:
[    7.257625] cfg80211: 2402000 KHz - 2472000 KHz @ 40000 KHz), (300 mBi, 2700 mBm)
[    7.257628] cfg80211: Updating information on frequency 2447 MHz for a 20 MHz width channel with regulatory rule:
[    7.257630] cfg80211: 2402000 KHz - 2472000 KHz @ 40000 KHz), (300 mBi, 2700 mBm)
[    7.257632] cfg80211: Updating information on frequency 2452 MHz for a 20 MHz width channel with regulatory rule:
[    7.257634] cfg80211: 2402000 KHz - 2472000 KHz @ 40000 KHz), (300 mBi, 2700 mBm)
[    7.257636] cfg80211: Updating information on frequency 2457 MHz for a 20 MHz width channel with regulatory rule:
[    7.257639] cfg80211: 2402000 KHz - 2472000 KHz @ 40000 KHz), (300 mBi, 2700 mBm)
[    7.257641] cfg80211: Updating information on frequency 2462 MHz for a 20 MHz width channel with regulatory rule:
[    7.257643] cfg80211: 2402000 KHz - 2472000 KHz @ 40000 KHz), (300 mBi, 2700 mBm)
[    7.257645] cfg80211: Disabling freq 2467 MHz
[    7.257647] cfg80211: Disabling freq 2472 MHz
[    7.257649] cfg80211: Disabling freq 2484 MHz
[    7.257650] cfg80211: Disabling freq 5040 MHz
[    7.257652] cfg80211: Disabling freq 5060 MHz
[    7.257654] cfg80211: Disabling freq 5080 MHz
[    7.257656] cfg80211: Updating information on frequency 5180 MHz for a 20 MHz width channel with regulatory rule:
[    7.257658] cfg80211: 5170000 KHz - 5250000 KHz @ 40000 KHz), (300 mBi, 1700 mBm)
[    7.257660] cfg80211: Updating information on frequency 5200 MHz for a 20 MHz width channel with regulatory rule:
[    7.257663] cfg80211: 5170000 KHz - 5250000 KHz @ 40000 KHz), (300 mBi, 1700 mBm)
[    7.257665] cfg80211: Updating information on frequency 5220 MHz for a 20 MHz width channel with regulatory rule:
[    7.257667] cfg80211: 5170000 KHz - 5250000 KHz @ 40000 KHz), (300 mBi, 1700 mBm)
[    7.257669] cfg80211: Updating information on frequency 5240 MHz for a 20 MHz width channel with regulatory rule:
[    7.257672] cfg80211: 5170000 KHz - 5250000 KHz @ 40000 KHz), (300 mBi, 1700 mBm)
[    7.257674] cfg80211: Updating information on frequency 5260 MHz for a 20 MHz width channel with regulatory rule:
[    7.257676] cfg80211: 5250000 KHz - 5330000 KHz @ 40000 KHz), (300 mBi, 2000 mBm)
[    7.257678] cfg80211: Updating information on frequency 5280 MHz for a 20 MHz width channel with regulatory rule:
[    7.257681] cfg80211: 5250000 KHz - 5330000 KHz @ 40000 KHz), (300 mBi, 2000 mBm)
[    7.257683] cfg80211: Updating information on frequency 5300 MHz for a 20 MHz width channel with regulatory rule:
[    7.257685] cfg80211: 5250000 KHz - 5330000 KHz @ 40000 KHz), (300 mBi, 2000 mBm)
[    7.257687] cfg80211: Updating information on frequency 5320 MHz for a 20 MHz width channel with regulatory rule:
[    7.257690] cfg80211: 5250000 KHz - 5330000 KHz @ 40000 KHz), (300 mBi, 2000 mBm)
[    7.257692] cfg80211: Updating information on frequency 5500 MHz for a 20 MHz width channel with regulatory rule:
[    7.257694] cfg80211: 5490000 KHz - 5600000 KHz @ 40000 KHz), (300 mBi, 2000 mBm)
[    7.257696] cfg80211: Updating information on frequency 5520 MHz for a 20 MHz width channel with regulatory rule:
[    7.257699] cfg80211: 5490000 KHz - 5600000 KHz @ 40000 KHz), (300 mBi, 2000 mBm)
[    7.257701] cfg80211: Updating information on frequency 5540 MHz for a 20 MHz width channel with regulatory rule:
[    7.257703] cfg80211: 5490000 KHz - 5600000 KHz @ 40000 KHz), (300 mBi, 2000 mBm)
[    7.257705] cfg80211: Updating information on frequency 5560 MHz for a 20 MHz width channel with regulatory rule:
[    7.257708] cfg80211: 5490000 KHz - 5600000 KHz @ 40000 KHz), (300 mBi, 2000 mBm)
[    7.257710] cfg80211: Updating information on frequency 5580 MHz for a 20 MHz width channel with regulatory rule:
[    7.257712] cfg80211: 5490000 KHz - 5600000 KHz @ 40000 KHz), (300 mBi, 2000 mBm)
[    7.257714] cfg80211: Disabling freq 5600 MHz
[    7.257716] cfg80211: Disabling freq 5620 MHz
[    7.257717] cfg80211: Disabling freq 5640 MHz
[    7.257719] cfg80211: Updating information on frequency 5660 MHz for a 20 MHz width channel with regulatory rule:
[    7.257722] cfg80211: 5650000 KHz - 5710000 KHz @ 40000 KHz), (300 mBi, 2000 mBm)
[    7.257724] cfg80211: Updating information on frequency 5680 MHz for a 20 MHz width channel with regulatory rule:
[    7.257727] cfg80211: 5650000 KHz - 5710000 KHz @ 40000 KHz), (300 mBi, 2000 mBm)
[    7.257729] cfg80211: Updating information on frequency 5700 MHz for a 20 MHz width channel with regulatory rule:
[    7.257731] cfg80211: 5650000 KHz - 5710000 KHz @ 40000 KHz), (300 mBi, 2000 mBm)
[    7.257733] cfg80211: Updating information on frequency 5745 MHz for a 20 MHz width channel with regulatory rule:
[    7.257736] cfg80211: 5735000 KHz - 5835000 KHz @ 40000 KHz), (300 mBi, 3000 mBm)
[    7.257738] cfg80211: Updating information on frequency 5765 MHz for a 20 MHz width channel with regulatory rule:
[    7.257740] cfg80211: 5735000 KHz - 5835000 KHz @ 40000 KHz), (300 mBi, 3000 mBm)
[    7.257742] cfg80211: Updating information on frequency 5785 MHz for a 20 MHz width channel with regulatory rule:
[    7.257745] cfg80211: 5735000 KHz - 5835000 KHz @ 40000 KHz), (300 mBi, 3000 mBm)
[    7.257747] cfg80211: Updating information on frequency 5805 MHz for a 20 MHz width channel with regulatory rule:
[    7.257749] cfg80211: 5735000 KHz - 5835000 KHz @ 40000 KHz), (300 mBi, 3000 mBm)
[    7.257751] cfg80211: Updating information on frequency 5825 MHz for a 20 MHz width channel with regulatory rule:
[    7.257754] cfg80211: 5735000 KHz - 5835000 KHz @ 40000 KHz), (300 mBi, 3000 mBm)
[    7.257889] ath5k: phy1: Atheros AR5213A chip found (MAC: 0x59, PHY: 0x43)
[    7.259400] ath5k: phy1: RF5112B multiband radio found (0x36)
[    7.261582] ath5k 0000:03:0b.0: registered as 'phy2'
[    7.755367] ath: EEPROM regdomain: 0x0
[    7.755370] ath: EEPROM indicates default country code should be used
[    7.755371] ath: doing EEPROM country->regdmn map search
[    7.755373] ath: country maps to regdmn code: 0x3a
[    7.755375] ath: Country alpha2 being used: US
[    7.755376] ath: Regpair used: 0x3a
[    7.755380] cfg80211: Updating information on frequency 2412 MHz for a 20 MHz width channel with regulatory rule:
[    7.755382] cfg80211: 2402000 KHz - 2472000 KHz @ 40000 KHz), (N/A mBi, 2000 mBm)
[    7.755385] cfg80211: Updating information on frequency 2417 MHz for a 20 MHz width channel with regulatory rule:
[    7.755387] cfg80211: 2402000 KHz - 2472000 KHz @ 40000 KHz), (N/A mBi, 2000 mBm)
[    7.755389] cfg80211: Updating information on frequency 2422 MHz for a 20 MHz width channel with regulatory rule:
[    7.755391] cfg80211: 2402000 KHz - 2472000 KHz @ 40000 KHz), (N/A mBi, 2000 mBm)
[    7.755393] cfg80211: Updating information on frequency 2427 MHz for a 20 MHz width channel with regulatory rule:
[    7.755395] cfg80211: 2402000 KHz - 2472000 KHz @ 40000 KHz), (N/A mBi, 2000 mBm)
[    7.755397] cfg80211: Updating information on frequency 2432 MHz for a 20 MHz width channel with regulatory rule:
[    7.755399] cfg80211: 2402000 KHz - 2472000 KHz @ 40000 KHz), (N/A mBi, 2000 mBm)
[    7.755401] cfg80211: Updating information on frequency 2437 MHz for a 20 MHz width channel with regulatory rule:
[    7.755404] cfg80211: 2402000 KHz - 2472000 KHz @ 40000 KHz), (N/A mBi, 2000 mBm)
[    7.755405] cfg80211: Updating information on frequency 2442 MHz for a 20 MHz width channel with regulatory rule:
[    7.755408] cfg80211: 2402000 KHz - 2472000 KHz @ 40000 KHz), (N/A mBi, 2000 mBm)
[    7.755410] cfg80211: Updating information on frequency 2447 MHz for a 20 MHz width channel with regulatory rule:
[    7.755412] cfg80211: 2402000 KHz - 2472000 KHz @ 40000 KHz), (N/A mBi, 2000 mBm)
[    7.755414] cfg80211: Updating information on frequency 2452 MHz for a 20 MHz width channel with regulatory rule:
[    7.755416] cfg80211: 2402000 KHz - 2472000 KHz @ 40000 KHz), (N/A mBi, 2000 mBm)
[    7.755418] cfg80211: Updating information on frequency 2457 MHz for a 20 MHz width channel with regulatory rule:
[    7.755420] cfg80211: 2402000 KHz - 2472000 KHz @ 40000 KHz), (N/A mBi, 2000 mBm)
[    7.755422] cfg80211: Updating information on frequency 2462 MHz for a 20 MHz width channel with regulatory rule:
[    7.755424] cfg80211: 2402000 KHz - 2472000 KHz @ 40000 KHz), (N/A mBi, 2000 mBm)
[    7.755426] cfg80211: Disabling freq 2467 MHz as custom regd has no rule that fits a 20 MHz wide channel
[    7.755428] cfg80211: Disabling freq 2472 MHz as custom regd has no rule that fits a 20 MHz wide channel
[    7.755430] cfg80211: Disabling freq 2484 MHz as custom regd has no rule that fits a 20 MHz wide channel
[    7.755432] cfg80211: Disabling freq 5040 MHz as custom regd has no rule that fits a 20 MHz wide channel
[    7.755434] cfg80211: Disabling freq 5060 MHz as custom regd has no rule that fits a 20 MHz wide channel
[    7.755435] cfg80211: Disabling freq 5080 MHz as custom regd has no rule that fits a 20 MHz wide channel
[    7.755437] cfg80211: Updating information on frequency 5180 MHz for a 20 MHz width channel with regulatory rule:
[    7.755440] cfg80211: 5140000 KHz - 5360000 KHz @ 40000 KHz), (N/A mBi, 3000 mBm)
[    7.755442] cfg80211: Updating information on frequency 5200 MHz for a 20 MHz width channel with regulatory rule:
[    7.755444] cfg80211: 5140000 KHz - 5360000 KHz @ 40000 KHz), (N/A mBi, 3000 mBm)
[    7.755446] cfg80211: Updating information on frequency 5220 MHz for a 20 MHz width channel with regulatory rule:
[    7.755448] cfg80211: 5140000 KHz - 5360000 KHz @ 40000 KHz), (N/A mBi, 3000 mBm)
[    7.755450] cfg80211: Updating information on frequency 5240 MHz for a 20 MHz width channel with regulatory rule:
[    7.755452] cfg80211: 5140000 KHz - 5360000 KHz @ 40000 KHz), (N/A mBi, 3000 mBm)
[    7.755454] cfg80211: Updating information on frequency 5260 MHz for a 20 MHz width channel with regulatory rule:
[    7.755456] cfg80211: 5140000 KHz - 5360000 KHz @ 40000 KHz), (N/A mBi, 3000 mBm)
[    7.755458] cfg80211: Updating information on frequency 5280 MHz for a 20 MHz width channel with regulatory rule:
[    7.755460] cfg80211: 5140000 KHz - 5360000 KHz @ 40000 KHz), (N/A mBi, 3000 mBm)
[    7.755462] cfg80211: Updating information on frequency 5300 MHz for a 20 MHz width channel with regulatory rule:
[    7.755465] cfg80211: 5140000 KHz - 5360000 KHz @ 40000 KHz), (N/A mBi, 3000 mBm)
[    7.755466] cfg80211: Updating information on frequency 5320 MHz for a 20 MHz width channel with regulatory rule:
[    7.755469] cfg80211: 5140000 KHz - 5360000 KHz @ 40000 KHz), (N/A mBi, 3000 mBm)
[    7.755471] cfg80211: Disabling freq 5500 MHz as custom regd has no rule that fits a 20 MHz wide channel
[    7.755472] cfg80211: Disabling freq 5520 MHz as custom regd has no rule that fits a 20 MHz wide channel
[    7.755474] cfg80211: Disabling freq 5540 MHz as custom regd has no rule that fits a 20 MHz wide channel
[    7.755476] cfg80211: Disabling freq 5560 MHz as custom regd has no rule that fits a 20 MHz wide channel
[    7.755478] cfg80211: Disabling freq 5580 MHz as custom regd has no rule that fits a 20 MHz wide channel
[    7.755480] cfg80211: Disabling freq 5600 MHz as custom regd has no rule that fits a 20 MHz wide channel
[    7.755481] cfg80211: Disabling freq 5620 MHz as custom regd has no rule that fits a 20 MHz wide channel
[    7.755483] cfg80211: Disabling freq 5640 MHz as custom regd has no rule that fits a 20 MHz wide channel
[    7.755485] cfg80211: Disabling freq 5660 MHz as custom regd has no rule that fits a 20 MHz wide channel
[    7.755487] cfg80211: Disabling freq 5680 MHz as custom regd has no rule that fits a 20 MHz wide channel
[    7.755489] cfg80211: Disabling freq 5700 MHz as custom regd has no rule that fits a 20 MHz wide channel
[    7.755491] cfg80211: Updating information on frequency 5745 MHz for a 20 MHz width channel with regulatory rule:
[    7.755493] cfg80211: 5715000 KHz - 5860000 KHz @ 40000 KHz), (N/A mBi, 3000 mBm)
[    7.755495] cfg80211: Updating information on frequency 5765 MHz for a 20 MHz width channel with regulatory rule:
[    7.755497] cfg80211: 5715000 KHz - 5860000 KHz @ 40000 KHz), (N/A mBi, 3000 mBm)
[    7.755499] cfg80211: Updating information on frequency 5785 MHz for a 20 MHz width channel with regulatory rule:
[    7.755502] cfg80211: 5715000 KHz - 5860000 KHz @ 40000 KHz), (N/A mBi, 3000 mBm)
[    7.755504] cfg80211: Updating information on frequency 5805 MHz for a 20 MHz width channel with regulatory rule:
[    7.755506] cfg80211: 5715000 KHz - 5860000 KHz @ 40000 KHz), (N/A mBi, 3000 mBm)
[    7.755508] cfg80211: Updating information on frequency 5825 MHz for a 20 MHz width channel with regulatory rule:
[    7.755510] cfg80211: 5715000 KHz - 5860000 KHz @ 40000 KHz), (N/A mBi, 3000 mBm)
[    7.756210] cfg80211: Ignoring regulatory request Set by core since the driver requires its own regulatory domain to be set first
[    7.758438] ieee80211 phy2: Selected rate control algorithm 'minstrel_ht'
[    7.762643] cfg80211: Updating information on frequency 2412 MHz for a 20 MHz width channel with regulatory rule:
[    7.762647] cfg80211: 2402000 KHz - 2472000 KHz @ 40000 KHz), (300 mBi, 2700 mBm)
[    7.762649] cfg80211: Updating information on frequency 2417 MHz for a 20 MHz width channel with regulatory rule:
[    7.762652] cfg80211: 2402000 KHz - 2472000 KHz @ 40000 KHz), (300 mBi, 2700 mBm)
[    7.762654] cfg80211: Updating information on frequency 2422 MHz for a 20 MHz width channel with regulatory rule:
[    7.762656] cfg80211: 2402000 KHz - 2472000 KHz @ 40000 KHz), (300 mBi, 2700 mBm)
[    7.762658] cfg80211: Updating information on frequency 2427 MHz for a 20 MHz width channel with regulatory rule:
[    7.762661] cfg80211: 2402000 KHz - 2472000 KHz @ 40000 KHz), (300 mBi, 2700 mBm)
[    7.762663] cfg80211: Updating information on frequency 2432 MHz for a 20 MHz width channel with regulatory rule:
[    7.762665] cfg80211: 2402000 KHz - 2472000 KHz @ 40000 KHz), (300 mBi, 2700 mBm)
[    7.762667] cfg80211: Updating information on frequency 2437 MHz for a 20 MHz width channel with regulatory rule:
[    7.762669] cfg80211: 2402000 KHz - 2472000 KHz @ 40000 KHz), (300 mBi, 2700 mBm)
[    7.762672] cfg80211: Updating information on frequency 2442 MHz for a 20 MHz width channel with regulatory rule:
[    7.762674] cfg80211: 2402000 KHz - 2472000 KHz @ 40000 KHz), (300 mBi, 2700 mBm)
[    7.762676] cfg80211: Updating information on frequency 2447 MHz for a 20 MHz width channel with regulatory rule:
[    7.762678] cfg80211: 2402000 KHz - 2472000 KHz @ 40000 KHz), (300 mBi, 2700 mBm)
[    7.762680] cfg80211: Updating information on frequency 2452 MHz for a 20 MHz width channel with regulatory rule:
[    7.762683] cfg80211: 2402000 KHz - 2472000 KHz @ 40000 KHz), (300 mBi, 2700 mBm)
[    7.762685] cfg80211: Updating information on frequency 2457 MHz for a 20 MHz width channel with regulatory rule:
[    7.762687] cfg80211: 2402000 KHz - 2472000 KHz @ 40000 KHz), (300 mBi, 2700 mBm)
[    7.762689] cfg80211: Updating information on frequency 2462 MHz for a 20 MHz width channel with regulatory rule:
[    7.762692] cfg80211: 2402000 KHz - 2472000 KHz @ 40000 KHz), (300 mBi, 2700 mBm)
[    7.762694] cfg80211: Disabling freq 2467 MHz
[    7.762695] cfg80211: Disabling freq 2472 MHz
[    7.762697] cfg80211: Disabling freq 2484 MHz
[    7.762699] cfg80211: Disabling freq 5040 MHz
[    7.762701] cfg80211: Disabling freq 5060 MHz
[    7.762702] cfg80211: Disabling freq 5080 MHz
[    7.762704] cfg80211: Updating information on frequency 5180 MHz for a 20 MHz width channel with regulatory rule:
[    7.762707] cfg80211: 5170000 KHz - 5250000 KHz @ 40000 KHz), (300 mBi, 1700 mBm)
[    7.762709] cfg80211: Updating information on frequency 5200 MHz for a 20 MHz width channel with regulatory rule:
[    7.762711] cfg80211: 5170000 KHz - 5250000 KHz @ 40000 KHz), (300 mBi, 1700 mBm)
[    7.762713] cfg80211: Updating information on frequency 5220 MHz for a 20 MHz width channel with regulatory rule:
[    7.762716] cfg80211: 5170000 KHz - 5250000 KHz @ 40000 KHz), (300 mBi, 1700 mBm)
[    7.762718] cfg80211: Updating information on frequency 5240 MHz for a 20 MHz width channel with regulatory rule:
[    7.762720] cfg80211: 5170000 KHz - 5250000 KHz @ 40000 KHz), (300 mBi, 1700 mBm)
[    7.762723] cfg80211: Updating information on frequency 5260 MHz for a 20 MHz width channel with regulatory rule:
[    7.762725] cfg80211: 5250000 KHz - 5330000 KHz @ 40000 KHz), (300 mBi, 2000 mBm)
[    7.762727] cfg80211: Updating information on frequency 5280 MHz for a 20 MHz width channel with regulatory rule:
[    7.762729] cfg80211: 5250000 KHz - 5330000 KHz @ 40000 KHz), (300 mBi, 2000 mBm)
[    7.762732] cfg80211: Updating information on frequency 5300 MHz for a 20 MHz width channel with regulatory rule:
[    7.762734] cfg80211: 5250000 KHz - 5330000 KHz @ 40000 KHz), (300 mBi, 2000 mBm)
[    7.762736] cfg80211: Updating information on frequency 5320 MHz for a 20 MHz width channel with regulatory rule:
[    7.762738] cfg80211: 5250000 KHz - 5330000 KHz @ 40000 KHz), (300 mBi, 2000 mBm)
[    7.762741] cfg80211: Updating information on frequency 5500 MHz for a 20 MHz width channel with regulatory rule:
[    7.762743] cfg80211: 5490000 KHz - 5600000 KHz @ 40000 KHz), (300 mBi, 2000 mBm)
[    7.762745] cfg80211: Updating information on frequency 5520 MHz for a 20 MHz width channel with regulatory rule:
[    7.762747] cfg80211: 5490000 KHz - 5600000 KHz @ 40000 KHz), (300 mBi, 2000 mBm)
[    7.762749] cfg80211: Updating information on frequency 5540 MHz for a 20 MHz width channel with regulatory rule:
[    7.762752] cfg80211: 5490000 KHz - 5600000 KHz @ 40000 KHz), (300 mBi, 2000 mBm)
[    7.762754] cfg80211: Updating information on frequency 5560 MHz for a 20 MHz width channel with regulatory rule:
[    7.762756] cfg80211: 5490000 KHz - 5600000 KHz @ 40000 KHz), (300 mBi, 2000 mBm)
[    7.762758] cfg80211: Updating information on frequency 5580 MHz for a 20 MHz width channel with regulatory rule:
[    7.762761] cfg80211: 5490000 KHz - 5600000 KHz @ 40000 KHz), (300 mBi, 2000 mBm)
[    7.762763] cfg80211: Disabling freq 5600 MHz
[    7.762764] cfg80211: Disabling freq 5620 MHz
[    7.762766] cfg80211: Disabling freq 5640 MHz
[    7.762768] cfg80211: Updating information on frequency 5660 MHz for a 20 MHz width channel with regulatory rule:
[    7.762770] cfg80211: 5650000 KHz - 5710000 KHz @ 40000 KHz), (300 mBi, 2000 mBm)
[    7.762773] cfg80211: Updating information on frequency 5680 MHz for a 20 MHz width channel with regulatory rule:
[    7.762775] cfg80211: 5650000 KHz - 5710000 KHz @ 40000 KHz), (300 mBi, 2000 mBm)
[    7.762777] cfg80211: Updating information on frequency 5700 MHz for a 20 MHz width channel with regulatory rule:
[    7.762779] cfg80211: 5650000 KHz - 5710000 KHz @ 40000 KHz), (300 mBi, 2000 mBm)
[    7.762782] cfg80211: Updating information on frequency 5745 MHz for a 20 MHz width channel with regulatory rule:
[    7.762784] cfg80211: 5735000 KHz - 5835000 KHz @ 40000 KHz), (300 mBi, 3000 mBm)
[    7.762786] cfg80211: Updating information on frequency 5765 MHz for a 20 MHz width channel with regulatory rule:
[    7.762788] cfg80211: 5735000 KHz - 5835000 KHz @ 40000 KHz), (300 mBi, 3000 mBm)
[    7.762790] cfg80211: Updating information on frequency 5785 MHz for a 20 MHz width channel with regulatory rule:
[    7.762793] cfg80211: 5735000 KHz - 5835000 KHz @ 40000 KHz), (300 mBi, 3000 mBm)
[    7.762795] cfg80211: Updating information on frequency 5805 MHz for a 20 MHz width channel with regulatory rule:
[    7.762797] cfg80211: 5735000 KHz - 5835000 KHz @ 40000 KHz), (300 mBi, 3000 mBm)
[    7.762799] cfg80211: Updating information on frequency 5825 MHz for a 20 MHz width channel with regulatory rule:
[    7.762801] cfg80211: 5735000 KHz - 5835000 KHz @ 40000 KHz), (300 mBi, 3000 mBm)
[    7.762929] ath5k: phy2: Atheros AR5213A chip found (MAC: 0x59, PHY: 0x43)
[    7.764453] ath5k: phy2: RF5112B multiband radio found (0x36)
[    7.766319] ath5k 0000:04:00.0: enabling device (0000 -> 0002)
[    7.768087] ath5k 0000:04:00.0: registered as 'phy3'
[    8.235678] ath: EEPROM regdomain: 0x13
[    8.235681] ath: EEPROM indicates we should expect a direct regpair map
[    8.235684] ath: Country alpha2 being used: 00
[    8.235687] ath: Regpair used: 0x13
[    8.235697] cfg80211: Updating information on frequency 2412 MHz for a 20 MHz width channel with regulatory rule:
[    8.235700] cfg80211: 2402000 KHz - 2472000 KHz @ 40000 KHz), (N/A mBi, 2000 mBm)
[    8.235702] cfg80211: Updating information on frequency 2417 MHz for a 20 MHz width channel with regulatory rule:
[    8.235704] cfg80211: 2402000 KHz - 2472000 KHz @ 40000 KHz), (N/A mBi, 2000 mBm)
[    8.235706] cfg80211: Updating information on frequency 2422 MHz for a 20 MHz width channel with regulatory rule:
[    8.235708] cfg80211: 2402000 KHz - 2472000 KHz @ 40000 KHz), (N/A mBi, 2000 mBm)
[    8.235710] cfg80211: Updating information on frequency 2427 MHz for a 20 MHz width channel with regulatory rule:
[    8.235712] cfg80211: 2402000 KHz - 2472000 KHz @ 40000 KHz), (N/A mBi, 2000 mBm)
[    8.235714] cfg80211: Updating information on frequency 2432 MHz for a 20 MHz width channel with regulatory rule:
[    8.235716] cfg80211: 2402000 KHz - 2472000 KHz @ 40000 KHz), (N/A mBi, 2000 mBm)
[    8.235718] cfg80211: Updating information on frequency 2437 MHz for a 20 MHz width channel with regulatory rule:
[    8.235721] cfg80211: 2402000 KHz - 2472000 KHz @ 40000 KHz), (N/A mBi, 2000 mBm)
[    8.235723] cfg80211: Updating information on frequency 2442 MHz for a 20 MHz width channel with regulatory rule:
[    8.235725] cfg80211: 2402000 KHz - 2472000 KHz @ 40000 KHz), (N/A mBi, 2000 mBm)
[    8.235727] cfg80211: Updating information on frequency 2447 MHz for a 20 MHz width channel with regulatory rule:
[    8.235729] cfg80211: 2402000 KHz - 2472000 KHz @ 40000 KHz), (N/A mBi, 2000 mBm)
[    8.235731] cfg80211: Updating information on frequency 2452 MHz for a 20 MHz width channel with regulatory rule:
[    8.235733] cfg80211: 2402000 KHz - 2472000 KHz @ 40000 KHz), (N/A mBi, 2000 mBm)
[    8.235735] cfg80211: Updating information on frequency 2457 MHz for a 20 MHz width channel with regulatory rule:
[    8.235737] cfg80211: 2402000 KHz - 2472000 KHz @ 40000 KHz), (N/A mBi, 2000 mBm)
[    8.235739] cfg80211: Updating information on frequency 2462 MHz for a 20 MHz width channel with regulatory rule:
[    8.235741] cfg80211: 2402000 KHz - 2472000 KHz @ 40000 KHz), (N/A mBi, 2000 mBm)
[    8.235743] cfg80211: Disabling freq 2467 MHz as custom regd has no rule that fits a 20 MHz wide channel
[    8.235745] cfg80211: Disabling freq 2472 MHz as custom regd has no rule that fits a 20 MHz wide channel
[    8.235747] cfg80211: Disabling freq 2484 MHz as custom regd has no rule that fits a 20 MHz wide channel
[    8.235749] cfg80211: Disabling freq 5040 MHz as custom regd has no rule that fits a 20 MHz wide channel
[    8.235751] cfg80211: Disabling freq 5060 MHz as custom regd has no rule that fits a 20 MHz wide channel
[    8.235752] cfg80211: Disabling freq 5080 MHz as custom regd has no rule that fits a 20 MHz wide channel
[    8.235754] cfg80211: Updating information on frequency 5180 MHz for a 20 MHz width channel with regulatory rule:
[    8.235757] cfg80211: 5140000 KHz - 5360000 KHz @ 40000 KHz), (N/A mBi, 3000 mBm)
[    8.235759] cfg80211: Updating information on frequency 5200 MHz for a 20 MHz width channel with regulatory rule:
[    8.235761] cfg80211: 5140000 KHz - 5360000 KHz @ 40000 KHz), (N/A mBi, 3000 mBm)
[    8.235763] cfg80211: Updating information on frequency 5220 MHz for a 20 MHz width channel with regulatory rule:
[    8.235765] cfg80211: 5140000 KHz - 5360000 KHz @ 40000 KHz), (N/A mBi, 3000 mBm)
[    8.235767] cfg80211: Updating information on frequency 5240 MHz for a 20 MHz width channel with regulatory rule:
[    8.235769] cfg80211: 5140000 KHz - 5360000 KHz @ 40000 KHz), (N/A mBi, 3000 mBm)
[    8.235771] cfg80211: Updating information on frequency 5260 MHz for a 20 MHz width channel with regulatory rule:
[    8.235773] cfg80211: 5140000 KHz - 5360000 KHz @ 40000 KHz), (N/A mBi, 3000 mBm)
[    8.235775] cfg80211: Updating information on frequency 5280 MHz for a 20 MHz width channel with regulatory rule:
[    8.235777] cfg80211: 5140000 KHz - 5360000 KHz @ 40000 KHz), (N/A mBi, 3000 mBm)
[    8.235779] cfg80211: Updating information on frequency 5300 MHz for a 20 MHz width channel with regulatory rule:
[    8.235781] cfg80211: 5140000 KHz - 5360000 KHz @ 40000 KHz), (N/A mBi, 3000 mBm)
[    8.235783] cfg80211: Updating information on frequency 5320 MHz for a 20 MHz width channel with regulatory rule:
[    8.235785] cfg80211: 5140000 KHz - 5360000 KHz @ 40000 KHz), (N/A mBi, 3000 mBm)
[    8.235787] cfg80211: Disabling freq 5500 MHz as custom regd has no rule that fits a 20 MHz wide channel
[    8.235789] cfg80211: Disabling freq 5520 MHz as custom regd has no rule that fits a 20 MHz wide channel
[    8.235791] cfg80211: Disabling freq 5540 MHz as custom regd has no rule that fits a 20 MHz wide channel
[    8.235793] cfg80211: Disabling freq 5560 MHz as custom regd has no rule that fits a 20 MHz wide channel
[    8.235795] cfg80211: Disabling freq 5580 MHz as custom regd has no rule that fits a 20 MHz wide channel
[    8.235796] cfg80211: Disabling freq 5600 MHz as custom regd has no rule that fits a 20 MHz wide channel
[    8.235798] cfg80211: Disabling freq 5620 MHz as custom regd has no rule that fits a 20 MHz wide channel
[    8.235800] cfg80211: Disabling freq 5640 MHz as custom regd has no rule that fits a 20 MHz wide channel
[    8.235802] cfg80211: Disabling freq 5660 MHz as custom regd has no rule that fits a 20 MHz wide channel
[    8.235804] cfg80211: Disabling freq 5680 MHz as custom regd has no rule that fits a 20 MHz wide channel
[    8.235805] cfg80211: Disabling freq 5700 MHz as custom regd has no rule that fits a 20 MHz wide channel
[    8.235807] cfg80211: Updating information on frequency 5745 MHz for a 20 MHz width channel with regulatory rule:
[    8.235810] cfg80211: 5715000 KHz - 5860000 KHz @ 40000 KHz), (N/A mBi, 3000 mBm)
[    8.235812] cfg80211: Updating information on frequency 5765 MHz for a 20 MHz width channel with regulatory rule:
[    8.235814] cfg80211: 5715000 KHz - 5860000 KHz @ 40000 KHz), (N/A mBi, 3000 mBm)
[    8.235816] cfg80211: Updating information on frequency 5785 MHz for a 20 MHz width channel with regulatory rule:
[    8.235818] cfg80211: 5715000 KHz - 5860000 KHz @ 40000 KHz), (N/A mBi, 3000 mBm)
[    8.235820] cfg80211: Updating information on frequency 5805 MHz for a 20 MHz width channel with regulatory rule:
[    8.235822] cfg80211: 5715000 KHz - 5860000 KHz @ 40000 KHz), (N/A mBi, 3000 mBm)
[    8.235824] cfg80211: Updating information on frequency 5825 MHz for a 20 MHz width channel with regulatory rule:
[    8.235826] cfg80211: 5715000 KHz - 5860000 KHz @ 40000 KHz), (N/A mBi, 3000 mBm)
[    8.236516] cfg80211: Ignoring regulatory request Set by core since the driver requires its own regulatory domain to be set first
[    8.238742] ieee80211 phy3: Selected rate control algorithm 'minstrel_ht'
[    8.242850] cfg80211: Calling CRDA to update world regulatory domain
[    8.244585] ath5k: phy3: Atheros AR5213A chip found (MAC: 0x59, PHY: 0x43)
[    8.246192] ath5k: phy3: RF5112B multiband radio found (0x36)
[    8.257650] cfg80211: Updating information on frequency 2412 MHz for a 20 MHz width channel with regulatory rule:
[    8.257655] cfg80211: 2402000 KHz - 2472000 KHz @ 40000 KHz), (300 mBi, 2700 mBm)
[    8.257658] cfg80211: Updating information on frequency 2417 MHz for a 20 MHz width channel with regulatory rule:
[    8.257660] cfg80211: 2402000 KHz - 2472000 KHz @ 40000 KHz), (300 mBi, 2700 mBm)
[    8.257662] cfg80211: Updating information on frequency 2422 MHz for a 20 MHz width channel with regulatory rule:
[    8.257665] cfg80211: 2402000 KHz - 2472000 KHz @ 40000 KHz), (300 mBi, 2700 mBm)
[    8.257667] cfg80211: Updating information on frequency 2427 MHz for a 20 MHz width channel with regulatory rule:
[    8.257669] cfg80211: 2402000 KHz - 2472000 KHz @ 40000 KHz), (300 mBi, 2700 mBm)
[    8.257672] cfg80211: Updating information on frequency 2432 MHz for a 20 MHz width channel with regulatory rule:
[    8.257674] cfg80211: 2402000 KHz - 2472000 KHz @ 40000 KHz), (300 mBi, 2700 mBm)
[    8.257676] cfg80211: Updating information on frequency 2437 MHz for a 20 MHz width channel with regulatory rule:
[    8.257678] cfg80211: 2402000 KHz - 2472000 KHz @ 40000 KHz), (300 mBi, 2700 mBm)
[    8.257681] cfg80211: Updating information on frequency 2442 MHz for a 20 MHz width channel with regulatory rule:
[    8.257683] cfg80211: 2402000 KHz - 2472000 KHz @ 40000 KHz), (300 mBi, 2700 mBm)
[    8.257685] cfg80211: Updating information on frequency 2447 MHz for a 20 MHz width channel with regulatory rule:
[    8.257687] cfg80211: 2402000 KHz - 2472000 KHz @ 40000 KHz), (300 mBi, 2700 mBm)
[    8.257690] cfg80211: Updating information on frequency 2452 MHz for a 20 MHz width channel with regulatory rule:
[    8.257692] cfg80211: 2402000 KHz - 2472000 KHz @ 40000 KHz), (300 mBi, 2700 mBm)
[    8.257694] cfg80211: Updating information on frequency 2457 MHz for a 20 MHz width channel with regulatory rule:
[    8.257696] cfg80211: 2402000 KHz - 2472000 KHz @ 40000 KHz), (300 mBi, 2700 mBm)
[    8.257699] cfg80211: Updating information on frequency 2462 MHz for a 20 MHz width channel with regulatory rule:
[    8.257701] cfg80211: 2402000 KHz - 2472000 KHz @ 40000 KHz), (300 mBi, 2700 mBm)
[    8.257703] cfg80211: Disabling freq 2467 MHz
[    8.257705] cfg80211: Disabling freq 2472 MHz
[    8.257707] cfg80211: Disabling freq 2484 MHz
[    8.257709] cfg80211: Disabling freq 5040 MHz
[    8.257710] cfg80211: Disabling freq 5060 MHz
[    8.257712] cfg80211: Disabling freq 5080 MHz
[    8.257714] cfg80211: Updating information on frequency 5180 MHz for a 20 MHz width channel with regulatory rule:
[    8.257717] cfg80211: 5170000 KHz - 5250000 KHz @ 40000 KHz), (300 mBi, 1700 mBm)
[    8.257719] cfg80211: Updating information on frequency 5200 MHz for a 20 MHz width channel with regulatory rule:
[    8.257721] cfg80211: 5170000 KHz - 5250000 KHz @ 40000 KHz), (300 mBi, 1700 mBm)
[    8.257724] cfg80211: Updating information on frequency 5220 MHz for a 20 MHz width channel with regulatory rule:
[    8.257726] cfg80211: 5170000 KHz - 5250000 KHz @ 40000 KHz), (300 mBi, 1700 mBm)
[    8.257728] cfg80211: Updating information on frequency 5240 MHz for a 20 MHz width channel with regulatory rule:
[    8.257730] cfg80211: 5170000 KHz - 5250000 KHz @ 40000 KHz), (300 mBi, 1700 mBm)
[    8.257733] cfg80211: Updating information on frequency 5260 MHz for a 20 MHz width channel with regulatory rule:
[    8.257735] cfg80211: 5250000 KHz - 5330000 KHz @ 40000 KHz), (300 mBi, 2000 mBm)
[    8.257737] cfg80211: Updating information on frequency 5280 MHz for a 20 MHz width channel with regulatory rule:
[    8.257740] cfg80211: 5250000 KHz - 5330000 KHz @ 40000 KHz), (300 mBi, 2000 mBm)
[    8.257742] cfg80211: Updating information on frequency 5300 MHz for a 20 MHz width channel with regulatory rule:
[    8.257744] cfg80211: 5250000 KHz - 5330000 KHz @ 40000 KHz), (300 mBi, 2000 mBm)
[    8.257746] cfg80211: Updating information on frequency 5320 MHz for a 20 MHz width channel with regulatory rule:
[    8.257749] cfg80211: 5250000 KHz - 5330000 KHz @ 40000 KHz), (300 mBi, 2000 mBm)
[    8.257751] cfg80211: Updating information on frequency 5500 MHz for a 20 MHz width channel with regulatory rule:
[    8.257753] cfg80211: 5490000 KHz - 5600000 KHz @ 40000 KHz), (300 mBi, 2000 mBm)
[    8.257755] cfg80211: Updating information on frequency 5520 MHz for a 20 MHz width channel with regulatory rule:
[    8.257758] cfg80211: 5490000 KHz - 5600000 KHz @ 40000 KHz), (300 mBi, 2000 mBm)
[    8.257760] cfg80211: Updating information on frequency 5540 MHz for a 20 MHz width channel with regulatory rule:
[    8.257762] cfg80211: 5490000 KHz - 5600000 KHz @ 40000 KHz), (300 mBi, 2000 mBm)
[    8.257765] cfg80211: Updating information on frequency 5560 MHz for a 20 MHz width channel with regulatory rule:
[    8.257767] cfg80211: 5490000 KHz - 5600000 KHz @ 40000 KHz), (300 mBi, 2000 mBm)
[    8.257770] cfg80211: Updating information on frequency 5580 MHz for a 20 MHz width channel with regulatory rule:
[    8.257772] cfg80211: 5490000 KHz - 5600000 KHz @ 40000 KHz), (300 mBi, 2000 mBm)
[    8.257774] cfg80211: Disabling freq 5600 MHz
[    8.257776] cfg80211: Disabling freq 5620 MHz
[    8.257778] cfg80211: Disabling freq 5640 MHz
[    8.257780] cfg80211: Updating information on frequency 5660 MHz for a 20 MHz width channel with regulatory rule:
[    8.257782] cfg80211: 5650000 KHz - 5710000 KHz @ 40000 KHz), (300 mBi, 2000 mBm)
[    8.257784] cfg80211: Updating information on frequency 5680 MHz for a 20 MHz width channel with regulatory rule:
[    8.257787] cfg80211: 5650000 KHz - 5710000 KHz @ 40000 KHz), (300 mBi, 2000 mBm)
[    8.257789] cfg80211: Updating information on frequency 5700 MHz for a 20 MHz width channel with regulatory rule:
[    8.257791] cfg80211: 5650000 KHz - 5710000 KHz @ 40000 KHz), (300 mBi, 2000 mBm)
[    8.257794] cfg80211: Updating information on frequency 5745 MHz for a 20 MHz width channel with regulatory rule:
[    8.257796] cfg80211: 5735000 KHz - 5835000 KHz @ 40000 KHz), (300 mBi, 3000 mBm)
[    8.257798] cfg80211: Updating information on frequency 5765 MHz for a 20 MHz width channel with regulatory rule:
[    8.257801] cfg80211: 5735000 KHz - 5835000 KHz @ 40000 KHz), (300 mBi, 3000 mBm)
[    8.257803] cfg80211: Updating information on frequency 5785 MHz for a 20 MHz width channel with regulatory rule:
[    8.257805] cfg80211: 5735000 KHz - 5835000 KHz @ 40000 KHz), (300 mBi, 3000 mBm)
[    8.257807] cfg80211: Updating information on frequency 5805 MHz for a 20 MHz width channel with regulatory rule:
[    8.257810] cfg80211: 5735000 KHz - 5835000 KHz @ 40000 KHz), (300 mBi, 3000 mBm)
[    8.257812] cfg80211: Updating information on frequency 5825 MHz for a 20 MHz width channel with regulatory rule:
[    8.257814] cfg80211: 5735000 KHz - 5835000 KHz @ 40000 KHz), (300 mBi, 3000 mBm)
[    8.257824] cfg80211: Updating information on frequency 2412 MHz for a 20 MHz width channel with regulatory rule:
[    8.257826] cfg80211: 2402000 KHz - 2472000 KHz @ 40000 KHz), (300 mBi, 2700 mBm)
[    8.257829] cfg80211: Updating information on frequency 2417 MHz for a 20 MHz width channel with regulatory rule:
[    8.257831] cfg80211: 2402000 KHz - 2472000 KHz @ 40000 KHz), (300 mBi, 2700 mBm)
[    8.257833] cfg80211: Updating information on frequency 2422 MHz for a 20 MHz width channel with regulatory rule:
[    8.257836] cfg80211: 2402000 KHz - 2472000 KHz @ 40000 KHz), (300 mBi, 2700 mBm)
[    8.257838] cfg80211: Updating information on frequency 2427 MHz for a 20 MHz width channel with regulatory rule:
[    8.257840] cfg80211: 2402000 KHz - 2472000 KHz @ 40000 KHz), (300 mBi, 2700 mBm)
[    8.257843] cfg80211: Updating information on frequency 2432 MHz for a 20 MHz width channel with regulatory rule:
[    8.257845] cfg80211: 2402000 KHz - 2472000 KHz @ 40000 KHz), (300 mBi, 2700 mBm)
[    8.257847] cfg80211: Updating information on frequency 2437 MHz for a 20 MHz width channel with regulatory rule:
[    8.257849] cfg80211: 2402000 KHz - 2472000 KHz @ 40000 KHz), (300 mBi, 2700 mBm)
[    8.257852] cfg80211: Updating information on frequency 2442 MHz for a 20 MHz width channel with regulatory rule:
[    8.257854] cfg80211: 2402000 KHz - 2472000 KHz @ 40000 KHz), (300 mBi, 2700 mBm)
[    8.257857] cfg80211: Updating information on frequency 2447 MHz for a 20 MHz width channel with regulatory rule:
[    8.257859] cfg80211: 2402000 KHz - 2472000 KHz @ 40000 KHz), (300 mBi, 2700 mBm)
[    8.257861] cfg80211: Updating information on frequency 2452 MHz for a 20 MHz width channel with regulatory rule:
[    8.257863] cfg80211: 2402000 KHz - 2472000 KHz @ 40000 KHz), (300 mBi, 2700 mBm)
[    8.257866] cfg80211: Updating information on frequency 2457 MHz for a 20 MHz width channel with regulatory rule:
[    8.257868] cfg80211: 2402000 KHz - 2472000 KHz @ 40000 KHz), (300 mBi, 2700 mBm)
[    8.257870] cfg80211: Updating information on frequency 2462 MHz for a 20 MHz width channel with regulatory rule:
[    8.257873] cfg80211: 2402000 KHz - 2472000 KHz @ 40000 KHz), (300 mBi, 2700 mBm)
[    8.257875] cfg80211: Disabling freq 2467 MHz
[    8.257877] cfg80211: Disabling freq 2472 MHz
[    8.257878] cfg80211: Disabling freq 2484 MHz
[    8.257880] cfg80211: Disabling freq 5040 MHz
[    8.257882] cfg80211: Disabling freq 5060 MHz
[    8.257884] cfg80211: Disabling freq 5080 MHz
[    8.257886] cfg80211: Updating information on frequency 5180 MHz for a 20 MHz width channel with regulatory rule:
[    8.257888] cfg80211: 5170000 KHz - 5250000 KHz @ 40000 KHz), (300 mBi, 1700 mBm)
[    8.257890] cfg80211: Updating information on frequency 5200 MHz for a 20 MHz width channel with regulatory rule:
[    8.257893] cfg80211: 5170000 KHz - 5250000 KHz @ 40000 KHz), (300 mBi, 1700 mBm)
[    8.257895] cfg80211: Updating information on frequency 5220 MHz for a 20 MHz width channel with regulatory rule:
[    8.257897] cfg80211: 5170000 KHz - 5250000 KHz @ 40000 KHz), (300 mBi, 1700 mBm)
[    8.257900] cfg80211: Updating information on frequency 5240 MHz for a 20 MHz width channel with regulatory rule:
[    8.257902] cfg80211: 5170000 KHz - 5250000 KHz @ 40000 KHz), (300 mBi, 1700 mBm)
[    8.257904] cfg80211: Updating information on frequency 5260 MHz for a 20 MHz width channel with regulatory rule:
[    8.257907] cfg80211: 5250000 KHz - 5330000 KHz @ 40000 KHz), (300 mBi, 2000 mBm)
[    8.257909] cfg80211: Updating information on frequency 5280 MHz for a 20 MHz width channel with regulatory rule:
[    8.257911] cfg80211: 5250000 KHz - 5330000 KHz @ 40000 KHz), (300 mBi, 2000 mBm)
[    8.257914] cfg80211: Updating information on frequency 5300 MHz for a 20 MHz width channel with regulatory rule:
[    8.257916] cfg80211: 5250000 KHz - 5330000 KHz @ 40000 KHz), (300 mBi, 2000 mBm)
[    8.257918] cfg80211: Updating information on frequency 5320 MHz for a 20 MHz width channel with regulatory rule:
[    8.257920] cfg80211: 5250000 KHz - 5330000 KHz @ 40000 KHz), (300 mBi, 2000 mBm)
[    8.257923] cfg80211: Updating information on frequency 5500 MHz for a 20 MHz width channel with regulatory rule:
[    8.257925] cfg80211: 5490000 KHz - 5600000 KHz @ 40000 KHz), (300 mBi, 2000 mBm)
[    8.257927] cfg80211: Updating information on frequency 5520 MHz for a 20 MHz width channel with regulatory rule:
[    8.257930] cfg80211: 5490000 KHz - 5600000 KHz @ 40000 KHz), (300 mBi, 2000 mBm)
[    8.257932] cfg80211: Updating information on frequency 5540 MHz for a 20 MHz width channel with regulatory rule:
[    8.257934] cfg80211: 5490000 KHz - 5600000 KHz @ 40000 KHz), (300 mBi, 2000 mBm)
[    8.257936] cfg80211: Updating information on frequency 5560 MHz for a 20 MHz width channel with regulatory rule:
[    8.257939] cfg80211: 5490000 KHz - 5600000 KHz @ 40000 KHz), (300 mBi, 2000 mBm)
[    8.257941] cfg80211: Updating information on frequency 5580 MHz for a 20 MHz width channel with regulatory rule:
[    8.257943] cfg80211: 5490000 KHz - 5600000 KHz @ 40000 KHz), (300 mBi, 2000 mBm)
[    8.257945] cfg80211: Disabling freq 5600 MHz
[    8.257947] cfg80211: Disabling freq 5620 MHz
[    8.257949] cfg80211: Disabling freq 5640 MHz
[    8.257951] cfg80211: Updating information on frequency 5660 MHz for a 20 MHz width channel with regulatory rule:
[    8.257953] cfg80211: 5650000 KHz - 5710000 KHz @ 40000 KHz), (300 mBi, 2000 mBm)
[    8.257956] cfg80211: Updating information on frequency 5680 MHz for a 20 MHz width channel with regulatory rule:
[    8.257958] cfg80211: 5650000 KHz - 5710000 KHz @ 40000 KHz), (300 mBi, 2000 mBm)
[    8.257960] cfg80211: Updating information on frequency 5700 MHz for a 20 MHz width channel with regulatory rule:
[    8.257962] cfg80211: 5650000 KHz - 5710000 KHz @ 40000 KHz), (300 mBi, 2000 mBm)
[    8.257965] cfg80211: Updating information on frequency 5745 MHz for a 20 MHz width channel with regulatory rule:
[    8.257967] cfg80211: 5735000 KHz - 5835000 KHz @ 40000 KHz), (300 mBi, 3000 mBm)
[    8.257969] cfg80211: Updating information on frequency 5765 MHz for a 20 MHz width channel with regulatory rule:
[    8.257971] cfg80211: 5735000 KHz - 5835000 KHz @ 40000 KHz), (300 mBi, 3000 mBm)
[    8.257974] cfg80211: Updating information on frequency 5785 MHz for a 20 MHz width channel with regulatory rule:
[    8.257976] cfg80211: 5735000 KHz - 5835000 KHz @ 40000 KHz), (300 mBi, 3000 mBm)
[    8.257978] cfg80211: Updating information on frequency 5805 MHz for a 20 MHz width channel with regulatory rule:
[    8.257981] cfg80211: 5735000 KHz - 5835000 KHz @ 40000 KHz), (300 mBi, 3000 mBm)
[    8.257983] cfg80211: Updating information on frequency 5825 MHz for a 20 MHz width channel with regulatory rule:
[    8.257985] cfg80211: 5735000 KHz - 5835000 KHz @ 40000 KHz), (300 mBi, 3000 mBm)
[    8.257992] cfg80211: Updating information on frequency 2412 MHz for a 20 MHz width channel with regulatory rule:
[    8.257995] cfg80211: 2402000 KHz - 2472000 KHz @ 40000 KHz), (300 mBi, 2700 mBm)
[    8.257997] cfg80211: Updating information on frequency 2417 MHz for a 20 MHz width channel with regulatory rule:
[    8.258010] cfg80211: 2402000 KHz - 2472000 KHz @ 40000 KHz), (300 mBi, 2700 mBm)
[    8.258013] cfg80211: Updating information on frequency 2422 MHz for a 20 MHz width channel with regulatory rule:
[    8.258015] cfg80211: 2402000 KHz - 2472000 KHz @ 40000 KHz), (300 mBi, 2700 mBm)
[    8.258018] cfg80211: Updating information on frequency 2427 MHz for a 20 MHz width channel with regulatory rule:
[    8.258020] cfg80211: 2402000 KHz - 2472000 KHz @ 40000 KHz), (300 mBi, 2700 mBm)
[    8.258022] cfg80211: Updating information on frequency 2432 MHz for a 20 MHz width channel with regulatory rule:
[    8.258024] cfg80211: 2402000 KHz - 2472000 KHz @ 40000 KHz), (300 mBi, 2700 mBm)
[    8.258027] cfg80211: Updating information on frequency 2437 MHz for a 20 MHz width channel with regulatory rule:
[    8.258029] cfg80211: 2402000 KHz - 2472000 KHz @ 40000 KHz), (300 mBi, 2700 mBm)
[    8.258031] cfg80211: Updating information on frequency 2442 MHz for a 20 MHz width channel with regulatory rule:
[    8.258033] cfg80211: 2402000 KHz - 2472000 KHz @ 40000 KHz), (300 mBi, 2700 mBm)
[    8.258036] cfg80211: Updating information on frequency 2447 MHz for a 20 MHz width channel with regulatory rule:
[    8.258038] cfg80211: 2402000 KHz - 2472000 KHz @ 40000 KHz), (300 mBi, 2700 mBm)
[    8.258040] cfg80211: Updating information on frequency 2452 MHz for a 20 MHz width channel with regulatory rule:
[    8.258043] cfg80211: 2402000 KHz - 2472000 KHz @ 40000 KHz), (300 mBi, 2700 mBm)
[    8.258045] cfg80211: Updating information on frequency 2457 MHz for a 20 MHz width channel with regulatory rule:
[    8.258047] cfg80211: 2402000 KHz - 2472000 KHz @ 40000 KHz), (300 mBi, 2700 mBm)
[    8.258049] cfg80211: Updating information on frequency 2462 MHz for a 20 MHz width channel with regulatory rule:
[    8.258052] cfg80211: 2402000 KHz - 2472000 KHz @ 40000 KHz), (300 mBi, 2700 mBm)
[    8.258054] cfg80211: Disabling freq 2467 MHz
[    8.258056] cfg80211: Disabling freq 2472 MHz
[    8.258058] cfg80211: Disabling freq 2484 MHz
[    8.258059] cfg80211: Disabling freq 5040 MHz
[    8.258061] cfg80211: Disabling freq 5060 MHz
[    8.258063] cfg80211: Disabling freq 5080 MHz
[    8.258065] cfg80211: Updating information on frequency 5180 MHz for a 20 MHz width channel with regulatory rule:
[    8.258068] cfg80211: 5170000 KHz - 5250000 KHz @ 40000 KHz), (300 mBi, 1700 mBm)
[    8.258070] cfg80211: Updating information on frequency 5200 MHz for a 20 MHz width channel with regulatory rule:
[    8.258072] cfg80211: 5170000 KHz - 5250000 KHz @ 40000 KHz), (300 mBi, 1700 mBm)
[    8.258074] cfg80211: Updating information on frequency 5220 MHz for a 20 MHz width channel with regulatory rule:
[    8.258077] cfg80211: 5170000 KHz - 5250000 KHz @ 40000 KHz), (300 mBi, 1700 mBm)
[    8.258079] cfg80211: Updating information on frequency 5240 MHz for a 20 MHz width channel with regulatory rule:
[    8.258081] cfg80211: 5170000 KHz - 5250000 KHz @ 40000 KHz), (300 mBi, 1700 mBm)
[    8.258083] cfg80211: Updating information on frequency 5260 MHz for a 20 MHz width channel with regulatory rule:
[    8.258086] cfg80211: 5250000 KHz - 5330000 KHz @ 40000 KHz), (300 mBi, 2000 mBm)
[    8.258088] cfg80211: Updating information on frequency 5280 MHz for a 20 MHz width channel with regulatory rule:
[    8.258090] cfg80211: 5250000 KHz - 5330000 KHz @ 40000 KHz), (300 mBi, 2000 mBm)
[    8.258092] cfg80211: Updating information on frequency 5300 MHz for a 20 MHz width channel with regulatory rule:
[    8.258095] cfg80211: 5250000 KHz - 5330000 KHz @ 40000 KHz), (300 mBi, 2000 mBm)
[    8.258097] cfg80211: Updating information on frequency 5320 MHz for a 20 MHz width channel with regulatory rule:
[    8.258099] cfg80211: 5250000 KHz - 5330000 KHz @ 40000 KHz), (300 mBi, 2000 mBm)
[    8.258101] cfg80211: Updating information on frequency 5500 MHz for a 20 MHz width channel with regulatory rule:
[    8.258104] cfg80211: 5490000 KHz - 5600000 KHz @ 40000 KHz), (300 mBi, 2000 mBm)
[    8.258106] cfg80211: Updating information on frequency 5520 MHz for a 20 MHz width channel with regulatory rule:
[    8.258108] cfg80211: 5490000 KHz - 5600000 KHz @ 40000 KHz), (300 mBi, 2000 mBm)
[    8.258111] cfg80211: Updating information on frequency 5540 MHz for a 20 MHz width channel with regulatory rule:
[    8.258113] cfg80211: 5490000 KHz - 5600000 KHz @ 40000 KHz), (300 mBi, 2000 mBm)
[    8.258115] cfg80211: Updating information on frequency 5560 MHz for a 20 MHz width channel with regulatory rule:
[    8.258118] cfg80211: 5490000 KHz - 5600000 KHz @ 40000 KHz), (300 mBi, 2000 mBm)
[    8.258120] cfg80211: Updating information on frequency 5580 MHz for a 20 MHz width channel with regulatory rule:
[    8.258122] cfg80211: 5490000 KHz - 5600000 KHz @ 40000 KHz), (300 mBi, 2000 mBm)
[    8.258124] cfg80211: Disabling freq 5600 MHz
[    8.258126] cfg80211: Disabling freq 5620 MHz
[    8.258128] cfg80211: Disabling freq 5640 MHz
[    8.258130] cfg80211: Updating information on frequency 5660 MHz for a 20 MHz width channel with regulatory rule:
[    8.258132] cfg80211: 5650000 KHz - 5710000 KHz @ 40000 KHz), (300 mBi, 2000 mBm)
[    8.258135] cfg80211: Updating information on frequency 5680 MHz for a 20 MHz width channel with regulatory rule:
[    8.258137] cfg80211: 5650000 KHz - 5710000 KHz @ 40000 KHz), (300 mBi, 2000 mBm)
[    8.258139] cfg80211: Updating information on frequency 5700 MHz for a 20 MHz width channel with regulatory rule:
[    8.258142] cfg80211: 5650000 KHz - 5710000 KHz @ 40000 KHz), (300 mBi, 2000 mBm)
[    8.258144] cfg80211: Updating information on frequency 5745 MHz for a 20 MHz width channel with regulatory rule:
[    8.258146] cfg80211: 5735000 KHz - 5835000 KHz @ 40000 KHz), (300 mBi, 3000 mBm)
[    8.258149] cfg80211: Updating information on frequency 5765 MHz for a 20 MHz width channel with regulatory rule:
[    8.258151] cfg80211: 5735000 KHz - 5835000 KHz @ 40000 KHz), (300 mBi, 3000 mBm)
[    8.258153] cfg80211: Updating information on frequency 5785 MHz for a 20 MHz width channel with regulatory rule:
[    8.258156] cfg80211: 5735000 KHz - 5835000 KHz @ 40000 KHz), (300 mBi, 3000 mBm)
[    8.258158] cfg80211: Updating information on frequency 5805 MHz for a 20 MHz width channel with regulatory rule:
[    8.258161] cfg80211: 5735000 KHz - 5835000 KHz @ 40000 KHz), (300 mBi, 3000 mBm)
[    8.258163] cfg80211: Updating information on frequency 5825 MHz for a 20 MHz width channel with regulatory rule:
[    8.258165] cfg80211: 5735000 KHz - 5835000 KHz @ 40000 KHz), (300 mBi, 3000 mBm)
[    8.258172] cfg80211: Updating information on frequency 2412 MHz for a 20 MHz width channel with regulatory rule:
[    8.258175] cfg80211: 2402000 KHz - 2472000 KHz @ 40000 KHz), (300 mBi, 2700 mBm)
[    8.258177] cfg80211: Updating information on frequency 2417 MHz for a 20 MHz width channel with regulatory rule:
[    8.258179] cfg80211: 2402000 KHz - 2472000 KHz @ 40000 KHz), (300 mBi, 2700 mBm)
[    8.258182] cfg80211: Updating information on frequency 2422 MHz for a 20 MHz width channel with regulatory rule:
[    8.258184] cfg80211: 2402000 KHz - 2472000 KHz @ 40000 KHz), (300 mBi, 2700 mBm)
[    8.258186] cfg80211: Updating information on frequency 2427 MHz for a 20 MHz width channel with regulatory rule:
[    8.258188] cfg80211: 2402000 KHz - 2472000 KHz @ 40000 KHz), (300 mBi, 2700 mBm)
[    8.258191] cfg80211: Updating information on frequency 2432 MHz for a 20 MHz width channel with regulatory rule:
[    8.258193] cfg80211: 2402000 KHz - 2472000 KHz @ 40000 KHz), (300 mBi, 2700 mBm)
[    8.258195] cfg80211: Updating information on frequency 2437 MHz for a 20 MHz width channel with regulatory rule:
[    8.258198] cfg80211: 2402000 KHz - 2472000 KHz @ 40000 KHz), (300 mBi, 2700 mBm)
[    8.258200] cfg80211: Updating information on frequency 2442 MHz for a 20 MHz width channel with regulatory rule:
[    8.258202] cfg80211: 2402000 KHz - 2472000 KHz @ 40000 KHz), (300 mBi, 2700 mBm)
[    8.258204] cfg80211: Updating information on frequency 2447 MHz for a 20 MHz width channel with regulatory rule:
[    8.258207] cfg80211: 2402000 KHz - 2472000 KHz @ 40000 KHz), (300 mBi, 2700 mBm)
[    8.258209] cfg80211: Updating information on frequency 2452 MHz for a 20 MHz width channel with regulatory rule:
[    8.258211] cfg80211: 2402000 KHz - 2472000 KHz @ 40000 KHz), (300 mBi, 2700 mBm)
[    8.258214] cfg80211: Updating information on frequency 2457 MHz for a 20 MHz width channel with regulatory rule:
[    8.258216] cfg80211: 2402000 KHz - 2472000 KHz @ 40000 KHz), (300 mBi, 2700 mBm)
[    8.258218] cfg80211: Updating information on frequency 2462 MHz for a 20 MHz width channel with regulatory rule:
[    8.258221] cfg80211: 2402000 KHz - 2472000 KHz @ 40000 KHz), (300 mBi, 2700 mBm)
[    8.258223] cfg80211: Disabling freq 2467 MHz
[    8.258225] cfg80211: Disabling freq 2472 MHz
[    8.258226] cfg80211: Disabling freq 2484 MHz
[    8.258228] cfg80211: Disabling freq 5040 MHz
[    8.258230] cfg80211: Disabling freq 5060 MHz
[    8.258232] cfg80211: Disabling freq 5080 MHz
[    8.258234] cfg80211: Updating information on frequency 5180 MHz for a 20 MHz width channel with regulatory rule:
[    8.258236] cfg80211: 5170000 KHz - 5250000 KHz @ 40000 KHz), (300 mBi, 1700 mBm)
[    8.258238] cfg80211: Updating information on frequency 5200 MHz for a 20 MHz width channel with regulatory rule:
[    8.258240] cfg80211: 5170000 KHz - 5250000 KHz @ 40000 KHz), (300 mBi, 1700 mBm)
[    8.258243] cfg80211: Updating information on frequency 5220 MHz for a 20 MHz width channel with regulatory rule:
[    8.258245] cfg80211: 5170000 KHz - 5250000 KHz @ 40000 KHz), (300 mBi, 1700 mBm)
[    8.258247] cfg80211: Updating information on frequency 5240 MHz for a 20 MHz width channel with regulatory rule:
[    8.258250] cfg80211: 5170000 KHz - 5250000 KHz @ 40000 KHz), (300 mBi, 1700 mBm)
[    8.258252] cfg80211: Updating information on frequency 5260 MHz for a 20 MHz width channel with regulatory rule:
[    8.258254] cfg80211: 5250000 KHz - 5330000 KHz @ 40000 KHz), (300 mBi, 2000 mBm)
[    8.258257] cfg80211: Updating information on frequency 5280 MHz for a 20 MHz width channel with regulatory rule:
[    8.258259] cfg80211: 5250000 KHz - 5330000 KHz @ 40000 KHz), (300 mBi, 2000 mBm)
[    8.258262] cfg80211: Updating information on frequency 5300 MHz for a 20 MHz width channel with regulatory rule:
[    8.258264] cfg80211: 5250000 KHz - 5330000 KHz @ 40000 KHz), (300 mBi, 2000 mBm)
[    8.258266] cfg80211: Updating information on frequency 5320 MHz for a 20 MHz width channel with regulatory rule:
[    8.258269] cfg80211: 5250000 KHz - 5330000 KHz @ 40000 KHz), (300 mBi, 2000 mBm)
[    8.258271] cfg80211: Updating information on frequency 5500 MHz for a 20 MHz width channel with regulatory rule:
[    8.258273] cfg80211: 5490000 KHz - 5600000 KHz @ 40000 KHz), (300 mBi, 2000 mBm)
[    8.258276] cfg80211: Updating information on frequency 5520 MHz for a 20 MHz width channel with regulatory rule:
[    8.258278] cfg80211: 5490000 KHz - 5600000 KHz @ 40000 KHz), (300 mBi, 2000 mBm)
[    8.258280] cfg80211: Updating information on frequency 5540 MHz for a 20 MHz width channel with regulatory rule:
[    8.258283] cfg80211: 5490000 KHz - 5600000 KHz @ 40000 KHz), (300 mBi, 2000 mBm)
[    8.258285] cfg80211: Updating information on frequency 5560 MHz for a 20 MHz width channel with regulatory rule:
[    8.258287] cfg80211: 5490000 KHz - 5600000 KHz @ 40000 KHz), (300 mBi, 2000 mBm)
[    8.258290] cfg80211: Updating information on frequency 5580 MHz for a 20 MHz width channel with regulatory rule:
[    8.258292] cfg80211: 5490000 KHz - 5600000 KHz @ 40000 KHz), (300 mBi, 2000 mBm)
[    8.258294] cfg80211: Disabling freq 5600 MHz
[    8.258296] cfg80211: Disabling freq 5620 MHz
[    8.258298] cfg80211: Disabling freq 5640 MHz
[    8.258300] cfg80211: Updating information on frequency 5660 MHz for a 20 MHz width channel with regulatory rule:
[    8.258302] cfg80211: 5650000 KHz - 5710000 KHz @ 40000 KHz), (300 mBi, 2000 mBm)
[    8.258304] cfg80211: Updating information on frequency 5680 MHz for a 20 MHz width channel with regulatory rule:
[    8.258307] cfg80211: 5650000 KHz - 5710000 KHz @ 40000 KHz), (300 mBi, 2000 mBm)
[    8.258309] cfg80211: Updating information on frequency 5700 MHz for a 20 MHz width channel with regulatory rule:
[    8.258311] cfg80211: 5650000 KHz - 5710000 KHz @ 40000 KHz), (300 mBi, 2000 mBm)
[    8.258313] cfg80211: Updating information on frequency 5745 MHz for a 20 MHz width channel with regulatory rule:
[    8.258316] cfg80211: 5735000 KHz - 5835000 KHz @ 40000 KHz), (300 mBi, 3000 mBm)
[    8.258318] cfg80211: Updating information on frequency 5765 MHz for a 20 MHz width channel with regulatory rule:
[    8.258320] cfg80211: 5735000 KHz - 5835000 KHz @ 40000 KHz), (300 mBi, 3000 mBm)
[    8.258322] cfg80211: Updating information on frequency 5785 MHz for a 20 MHz width channel with regulatory rule:
[    8.258325] cfg80211: 5735000 KHz - 5835000 KHz @ 40000 KHz), (300 mBi, 3000 mBm)
[    8.258327] cfg80211: Updating information on frequency 5805 MHz for a 20 MHz width channel with regulatory rule:
[    8.258329] cfg80211: 5735000 KHz - 5835000 KHz @ 40000 KHz), (300 mBi, 3000 mBm)
[    8.258331] cfg80211: Updating information on frequency 5825 MHz for a 20 MHz width channel with regulatory rule:
[    8.258334] cfg80211: 5735000 KHz - 5835000 KHz @ 40000 KHz), (300 mBi, 3000 mBm)
[    8.258340] cfg80211: World regulatory domain updated:
[    8.260032] cfg80211:   (start_freq - end_freq @ bandwidth), (max_antenna_gain, max_eirp)
[    8.261749] cfg80211:   (2402000 KHz - 2472000 KHz @ 40000 KHz), (300 mBi, 2000 mBm)
[    8.263474] cfg80211:   (2457000 KHz - 2482000 KHz @ 20000 KHz), (300 mBi, 2000 mBm)
[    8.265168] cfg80211:   (2474000 KHz - 2494000 KHz @ 20000 KHz), (300 mBi, 2000 mBm)
[    8.266837] cfg80211:   (5170000 KHz - 5250000 KHz @ 40000 KHz), (300 mBi, 2000 mBm)
[    8.268492] cfg80211:   (5735000 KHz - 5835000 KHz @ 40000 KHz), (300 mBi, 2000 mBm)
[    8.293994] cfg80211: Calling CRDA for country: US
[    8.313532] cfg80211: Updating information on frequency 2412 MHz for a 20 MHz width channel with regulatory rule:
[    8.313537] cfg80211: 2402000 KHz - 2472000 KHz @ 40000 KHz), (300 mBi, 2700 mBm)
[    8.313540] cfg80211: Updating information on frequency 2417 MHz for a 20 MHz width channel with regulatory rule:
[    8.313542] cfg80211: 2402000 KHz - 2472000 KHz @ 40000 KHz), (300 mBi, 2700 mBm)
[    8.313545] cfg80211: Updating information on frequency 2422 MHz for a 20 MHz width channel with regulatory rule:
[    8.313547] cfg80211: 2402000 KHz - 2472000 KHz @ 40000 KHz), (300 mBi, 2700 mBm)
[    8.313549] cfg80211: Updating information on frequency 2427 MHz for a 20 MHz width channel with regulatory rule:
[    8.313551] cfg80211: 2402000 KHz - 2472000 KHz @ 40000 KHz), (300 mBi, 2700 mBm)
[    8.313553] cfg80211: Updating information on frequency 2432 MHz for a 20 MHz width channel with regulatory rule:
[    8.313556] cfg80211: 2402000 KHz - 2472000 KHz @ 40000 KHz), (300 mBi, 2700 mBm)
[    8.313558] cfg80211: Updating information on frequency 2437 MHz for a 20 MHz width channel with regulatory rule:
[    8.313560] cfg80211: 2402000 KHz - 2472000 KHz @ 40000 KHz), (300 mBi, 2700 mBm)
[    8.313562] cfg80211: Updating information on frequency 2442 MHz for a 20 MHz width channel with regulatory rule:
[    8.313564] cfg80211: 2402000 KHz - 2472000 KHz @ 40000 KHz), (300 mBi, 2700 mBm)
[    8.313566] cfg80211: Updating information on frequency 2447 MHz for a 20 MHz width channel with regulatory rule:
[    8.313569] cfg80211: 2402000 KHz - 2472000 KHz @ 40000 KHz), (300 mBi, 2700 mBm)
[    8.313571] cfg80211: Updating information on frequency 2452 MHz for a 20 MHz width channel with regulatory rule:
[    8.313573] cfg80211: 2402000 KHz - 2472000 KHz @ 40000 KHz), (300 mBi, 2700 mBm)
[    8.313575] cfg80211: Updating information on frequency 2457 MHz for a 20 MHz width channel with regulatory rule:
[    8.313577] cfg80211: 2402000 KHz - 2472000 KHz @ 40000 KHz), (300 mBi, 2700 mBm)
[    8.313579] cfg80211: Updating information on frequency 2462 MHz for a 20 MHz width channel with regulatory rule:
[    8.313582] cfg80211: 2402000 KHz - 2472000 KHz @ 40000 KHz), (300 mBi, 2700 mBm)
[    8.313584] cfg80211: Disabling freq 2467 MHz
[    8.313585] cfg80211: Disabling freq 2472 MHz
[    8.313587] cfg80211: Disabling freq 2484 MHz
[    8.313589] cfg80211: Disabling freq 5040 MHz
[    8.313590] cfg80211: Disabling freq 5060 MHz
[    8.313592] cfg80211: Disabling freq 5080 MHz
[    8.313594] cfg80211: Updating information on frequency 5180 MHz for a 20 MHz width channel with regulatory rule:
[    8.313596] cfg80211: 5170000 KHz - 5250000 KHz @ 40000 KHz), (300 mBi, 1700 mBm)
[    8.313598] cfg80211: Updating information on frequency 5200 MHz for a 20 MHz width channel with regulatory rule:
[    8.313600] cfg80211: 5170000 KHz - 5250000 KHz @ 40000 KHz), (300 mBi, 1700 mBm)
[    8.313602] cfg80211: Updating information on frequency 5220 MHz for a 20 MHz width channel with regulatory rule:
[    8.313605] cfg80211: 5170000 KHz - 5250000 KHz @ 40000 KHz), (300 mBi, 1700 mBm)
[    8.313607] cfg80211: Updating information on frequency 5240 MHz for a 20 MHz width channel with regulatory rule:
[    8.313609] cfg80211: 5170000 KHz - 5250000 KHz @ 40000 KHz), (300 mBi, 1700 mBm)
[    8.313611] cfg80211: Updating information on frequency 5260 MHz for a 20 MHz width channel with regulatory rule:
[    8.313614] cfg80211: 5250000 KHz - 5330000 KHz @ 40000 KHz), (300 mBi, 2000 mBm)
[    8.313616] cfg80211: Updating information on frequency 5280 MHz for a 20 MHz width channel with regulatory rule:
[    8.313618] cfg80211: 5250000 KHz - 5330000 KHz @ 40000 KHz), (300 mBi, 2000 mBm)
[    8.313620] cfg80211: Updating information on frequency 5300 MHz for a 20 MHz width channel with regulatory rule:
[    8.313622] cfg80211: 5250000 KHz - 5330000 KHz @ 40000 KHz), (300 mBi, 2000 mBm)
[    8.313625] cfg80211: Updating information on frequency 5320 MHz for a 20 MHz width channel with regulatory rule:
[    8.313627] cfg80211: 5250000 KHz - 5330000 KHz @ 40000 KHz), (300 mBi, 2000 mBm)
[    8.313629] cfg80211: Updating information on frequency 5500 MHz for a 20 MHz width channel with regulatory rule:
[    8.313631] cfg80211: 5490000 KHz - 5600000 KHz @ 40000 KHz), (300 mBi, 2000 mBm)
[    8.313633] cfg80211: Updating information on frequency 5520 MHz for a 20 MHz width channel with regulatory rule:
[    8.313636] cfg80211: 5490000 KHz - 5600000 KHz @ 40000 KHz), (300 mBi, 2000 mBm)
[    8.313638] cfg80211: Updating information on frequency 5540 MHz for a 20 MHz width channel with regulatory rule:
[    8.313640] cfg80211: 5490000 KHz - 5600000 KHz @ 40000 KHz), (300 mBi, 2000 mBm)
[    8.313642] cfg80211: Updating information on frequency 5560 MHz for a 20 MHz width channel with regulatory rule:
[    8.313644] cfg80211: 5490000 KHz - 5600000 KHz @ 40000 KHz), (300 mBi, 2000 mBm)
[    8.313647] cfg80211: Updating information on frequency 5580 MHz for a 20 MHz width channel with regulatory rule:
[    8.313649] cfg80211: 5490000 KHz - 5600000 KHz @ 40000 KHz), (300 mBi, 2000 mBm)
[    8.313651] cfg80211: Disabling freq 5600 MHz
[    8.313652] cfg80211: Disabling freq 5620 MHz
[    8.313654] cfg80211: Disabling freq 5640 MHz
[    8.313656] cfg80211: Updating information on frequency 5660 MHz for a 20 MHz width channel with regulatory rule:
[    8.313658] cfg80211: 5650000 KHz - 5710000 KHz @ 40000 KHz), (300 mBi, 2000 mBm)
[    8.313660] cfg80211: Updating information on frequency 5680 MHz for a 20 MHz width channel with regulatory rule:
[    8.313663] cfg80211: 5650000 KHz - 5710000 KHz @ 40000 KHz), (300 mBi, 2000 mBm)
[    8.313665] cfg80211: Updating information on frequency 5700 MHz for a 20 MHz width channel with regulatory rule:
[    8.313667] cfg80211: 5650000 KHz - 5710000 KHz @ 40000 KHz), (300 mBi, 2000 mBm)
[    8.313669] cfg80211: Updating information on frequency 5745 MHz for a 20 MHz width channel with regulatory rule:
[    8.313671] cfg80211: 5735000 KHz - 5835000 KHz @ 40000 KHz), (300 mBi, 3000 mBm)
[    8.313673] cfg80211: Updating information on frequency 5765 MHz for a 20 MHz width channel with regulatory rule:
[    8.313676] cfg80211: 5735000 KHz - 5835000 KHz @ 40000 KHz), (300 mBi, 3000 mBm)
[    8.313678] cfg80211: Updating information on frequency 5785 MHz for a 20 MHz width channel with regulatory rule:
[    8.313680] cfg80211: 5735000 KHz - 5835000 KHz @ 40000 KHz), (300 mBi, 3000 mBm)
[    8.313682] cfg80211: Updating information on frequency 5805 MHz for a 20 MHz width channel with regulatory rule:
[    8.313684] cfg80211: 5735000 KHz - 5835000 KHz @ 40000 KHz), (300 mBi, 3000 mBm)
[    8.313686] cfg80211: Updating information on frequency 5825 MHz for a 20 MHz width channel with regulatory rule:
[    8.313689] cfg80211: 5735000 KHz - 5835000 KHz @ 40000 KHz), (300 mBi, 3000 mBm)
[    8.313697] cfg80211: Updating information on frequency 2412 MHz for a 20 MHz width channel with regulatory rule:
[    8.313699] cfg80211: 2402000 KHz - 2472000 KHz @ 40000 KHz), (300 mBi, 2700 mBm)
[    8.313701] cfg80211: Updating information on frequency 2417 MHz for a 20 MHz width channel with regulatory rule:
[    8.313704] cfg80211: 2402000 KHz - 2472000 KHz @ 40000 KHz), (300 mBi, 2700 mBm)
[    8.313706] cfg80211: Updating information on frequency 2422 MHz for a 20 MHz width channel with regulatory rule:
[    8.313708] cfg80211: 2402000 KHz - 2472000 KHz @ 40000 KHz), (300 mBi, 2700 mBm)
[    8.313710] cfg80211: Updating information on frequency 2427 MHz for a 20 MHz width channel with regulatory rule:
[    8.313712] cfg80211: 2402000 KHz - 2472000 KHz @ 40000 KHz), (300 mBi, 2700 mBm)
[    8.313714] cfg80211: Updating information on frequency 2432 MHz for a 20 MHz width channel with regulatory rule:
[    8.313717] cfg80211: 2402000 KHz - 2472000 KHz @ 40000 KHz), (300 mBi, 2700 mBm)
[    8.313719] cfg80211: Updating information on frequency 2437 MHz for a 20 MHz width channel with regulatory rule:
[    8.313721] cfg80211: 2402000 KHz - 2472000 KHz @ 40000 KHz), (300 mBi, 2700 mBm)
[    8.313723] cfg80211: Updating information on frequency 2442 MHz for a 20 MHz width channel with regulatory rule:
[    8.313725] cfg80211: 2402000 KHz - 2472000 KHz @ 40000 KHz), (300 mBi, 2700 mBm)
[    8.313727] cfg80211: Updating information on frequency 2447 MHz for a 20 MHz width channel with regulatory rule:
[    8.313730] cfg80211: 2402000 KHz - 2472000 KHz @ 40000 KHz), (300 mBi, 2700 mBm)
[    8.313732] cfg80211: Updating information on frequency 2452 MHz for a 20 MHz width channel with regulatory rule:
[    8.313734] cfg80211: 2402000 KHz - 2472000 KHz @ 40000 KHz), (300 mBi, 2700 mBm)
[    8.313736] cfg80211: Updating information on frequency 2457 MHz for a 20 MHz width channel with regulatory rule:
[    8.313738] cfg80211: 2402000 KHz - 2472000 KHz @ 40000 KHz), (300 mBi, 2700 mBm)
[    8.313740] cfg80211: Updating information on frequency 2462 MHz for a 20 MHz width channel with regulatory rule:
[    8.313742] cfg80211: 2402000 KHz - 2472000 KHz @ 40000 KHz), (300 mBi, 2700 mBm)
[    8.313744] cfg80211: Disabling freq 2467 MHz
[    8.313746] cfg80211: Disabling freq 2472 MHz
[    8.313748] cfg80211: Disabling freq 2484 MHz
[    8.313749] cfg80211: Disabling freq 5040 MHz
[    8.313751] cfg80211: Disabling freq 5060 MHz
[    8.313752] cfg80211: Disabling freq 5080 MHz
[    8.313754] cfg80211: Updating information on frequency 5180 MHz for a 20 MHz width channel with regulatory rule:
[    8.313757] cfg80211: 5170000 KHz - 5250000 KHz @ 40000 KHz), (300 mBi, 1700 mBm)
[    8.313759] cfg80211: Updating information on frequency 5200 MHz for a 20 MHz width channel with regulatory rule:
[    8.313761] cfg80211: 5170000 KHz - 5250000 KHz @ 40000 KHz), (300 mBi, 1700 mBm)
[    8.313763] cfg80211: Updating information on frequency 5220 MHz for a 20 MHz width channel with regulatory rule:
[    8.313765] cfg80211: 5170000 KHz - 5250000 KHz @ 40000 KHz), (300 mBi, 1700 mBm)
[    8.313768] cfg80211: Updating information on frequency 5240 MHz for a 20 MHz width channel with regulatory rule:
[    8.313770] cfg80211: 5170000 KHz - 5250000 KHz @ 40000 KHz), (300 mBi, 1700 mBm)
[    8.313772] cfg80211: Updating information on frequency 5260 MHz for a 20 MHz width channel with regulatory rule:
[    8.313774] cfg80211: 5250000 KHz - 5330000 KHz @ 40000 KHz), (300 mBi, 2000 mBm)
[    8.313777] cfg80211: Updating information on frequency 5280 MHz for a 20 MHz width channel with regulatory rule:
[    8.313779] cfg80211: 5250000 KHz - 5330000 KHz @ 40000 KHz), (300 mBi, 2000 mBm)
[    8.313781] cfg80211: Updating information on frequency 5300 MHz for a 20 MHz width channel with regulatory rule:
[    8.313783] cfg80211: 5250000 KHz - 5330000 KHz @ 40000 KHz), (300 mBi, 2000 mBm)
[    8.313785] cfg80211: Updating information on frequency 5320 MHz for a 20 MHz width channel with regulatory rule:
[    8.313787] cfg80211: 5250000 KHz - 5330000 KHz @ 40000 KHz), (300 mBi, 2000 mBm)
[    8.313790] cfg80211: Updating information on frequency 5500 MHz for a 20 MHz width channel with regulatory rule:
[    8.313792] cfg80211: 5490000 KHz - 5600000 KHz @ 40000 KHz), (300 mBi, 2000 mBm)
[    8.313794] cfg80211: Updating information on frequency 5520 MHz for a 20 MHz width channel with regulatory rule:
[    8.313796] cfg80211: 5490000 KHz - 5600000 KHz @ 40000 KHz), (300 mBi, 2000 mBm)
[    8.313798] cfg80211: Updating information on frequency 5540 MHz for a 20 MHz width channel with regulatory rule:
[    8.313801] cfg80211: 5490000 KHz - 5600000 KHz @ 40000 KHz), (300 mBi, 2000 mBm)
[    8.313803] cfg80211: Updating information on frequency 5560 MHz for a 20 MHz width channel with regulatory rule:
[    8.313805] cfg80211: 5490000 KHz - 5600000 KHz @ 40000 KHz), (300 mBi, 2000 mBm)
[    8.313807] cfg80211: Updating information on frequency 5580 MHz for a 20 MHz width channel with regulatory rule:
[    8.313809] cfg80211: 5490000 KHz - 5600000 KHz @ 40000 KHz), (300 mBi, 2000 mBm)
[    8.313811] cfg80211: Disabling freq 5600 MHz
[    8.313813] cfg80211: Disabling freq 5620 MHz
[    8.313814] cfg80211: Disabling freq 5640 MHz
[    8.313816] cfg80211: Updating information on frequency 5660 MHz for a 20 MHz width channel with regulatory rule:
[    8.313819] cfg80211: 5650000 KHz - 5710000 KHz @ 40000 KHz), (300 mBi, 2000 mBm)
[    8.313821] cfg80211: Updating information on frequency 5680 MHz for a 20 MHz width channel with regulatory rule:
[    8.313823] cfg80211: 5650000 KHz - 5710000 KHz @ 40000 KHz), (300 mBi, 2000 mBm)
[    8.313825] cfg80211: Updating information on frequency 5700 MHz for a 20 MHz width channel with regulatory rule:
[    8.313827] cfg80211: 5650000 KHz - 5710000 KHz @ 40000 KHz), (300 mBi, 2000 mBm)
[    8.313830] cfg80211: Updating information on frequency 5745 MHz for a 20 MHz width channel with regulatory rule:
[    8.313832] cfg80211: 5735000 KHz - 5835000 KHz @ 40000 KHz), (300 mBi, 3000 mBm)
[    8.313834] cfg80211: Updating information on frequency 5765 MHz for a 20 MHz width channel with regulatory rule:
[    8.313836] cfg80211: 5735000 KHz - 5835000 KHz @ 40000 KHz), (300 mBi, 3000 mBm)
[    8.313839] cfg80211: Updating information on frequency 5785 MHz for a 20 MHz width channel with regulatory rule:
[    8.313841] cfg80211: 5735000 KHz - 5835000 KHz @ 40000 KHz), (300 mBi, 3000 mBm)
[    8.313843] cfg80211: Updating information on frequency 5805 MHz for a 20 MHz width channel with regulatory rule:
[    8.313845] cfg80211: 5735000 KHz - 5835000 KHz @ 40000 KHz), (300 mBi, 3000 mBm)
[    8.313847] cfg80211: Updating information on frequency 5825 MHz for a 20 MHz width channel with regulatory rule:
[    8.313850] cfg80211: 5735000 KHz - 5835000 KHz @ 40000 KHz), (300 mBi, 3000 mBm)
[    8.313857] cfg80211: Updating information on frequency 2412 MHz for a 20 MHz width channel with regulatory rule:
[    8.313859] cfg80211: 2402000 KHz - 2472000 KHz @ 40000 KHz), (300 mBi, 2700 mBm)
[    8.313861] cfg80211: Updating information on frequency 2417 MHz for a 20 MHz width channel with regulatory rule:
[    8.313863] cfg80211: 2402000 KHz - 2472000 KHz @ 40000 KHz), (300 mBi, 2700 mBm)
[    8.313866] cfg80211: Updating information on frequency 2422 MHz for a 20 MHz width channel with regulatory rule:
[    8.313868] cfg80211: 2402000 KHz - 2472000 KHz @ 40000 KHz), (300 mBi, 2700 mBm)
[    8.313870] cfg80211: Updating information on frequency 2427 MHz for a 20 MHz width channel with regulatory rule:
[    8.313872] cfg80211: 2402000 KHz - 2472000 KHz @ 40000 KHz), (300 mBi, 2700 mBm)
[    8.313874] cfg80211: Updating information on frequency 2432 MHz for a 20 MHz width channel with regulatory rule:
[    8.313877] cfg80211: 2402000 KHz - 2472000 KHz @ 40000 KHz), (300 mBi, 2700 mBm)
[    8.313879] cfg80211: Updating information on frequency 2437 MHz for a 20 MHz width channel with regulatory rule:
[    8.313881] cfg80211: 2402000 KHz - 2472000 KHz @ 40000 KHz), (300 mBi, 2700 mBm)
[    8.313883] cfg80211: Updating information on frequency 2442 MHz for a 20 MHz width channel with regulatory rule:
[    8.313886] cfg80211: 2402000 KHz - 2472000 KHz @ 40000 KHz), (300 mBi, 2700 mBm)
[    8.313888] cfg80211: Updating information on frequency 2447 MHz for a 20 MHz width channel with regulatory rule:
[    8.313890] cfg80211: 2402000 KHz - 2472000 KHz @ 40000 KHz), (300 mBi, 2700 mBm)
[    8.313892] cfg80211: Updating information on frequency 2452 MHz for a 20 MHz width channel with regulatory rule:
[    8.313894] cfg80211: 2402000 KHz - 2472000 KHz @ 40000 KHz), (300 mBi, 2700 mBm)
[    8.313897] cfg80211: Updating information on frequency 2457 MHz for a 20 MHz width channel with regulatory rule:
[    8.313899] cfg80211: 2402000 KHz - 2472000 KHz @ 40000 KHz), (300 mBi, 2700 mBm)
[    8.313901] cfg80211: Updating information on frequency 2462 MHz for a 20 MHz width channel with regulatory rule:
[    8.313903] cfg80211: 2402000 KHz - 2472000 KHz @ 40000 KHz), (300 mBi, 2700 mBm)
[    8.313905] cfg80211: Disabling freq 2467 MHz
[    8.313907] cfg80211: Disabling freq 2472 MHz
[    8.313909] cfg80211: Disabling freq 2484 MHz
[    8.313910] cfg80211: Disabling freq 5040 MHz
[    8.313912] cfg80211: Disabling freq 5060 MHz
[    8.313914] cfg80211: Disabling freq 5080 MHz
[    8.313916] cfg80211: Updating information on frequency 5180 MHz for a 20 MHz width channel with regulatory rule:
[    8.313918] cfg80211: 5170000 KHz - 5250000 KHz @ 40000 KHz), (300 mBi, 1700 mBm)
[    8.313920] cfg80211: Updating information on frequency 5200 MHz for a 20 MHz width channel with regulatory rule:
[    8.313922] cfg80211: 5170000 KHz - 5250000 KHz @ 40000 KHz), (300 mBi, 1700 mBm)
[    8.313924] cfg80211: Updating information on frequency 5220 MHz for a 20 MHz width channel with regulatory rule:
[    8.313927] cfg80211: 5170000 KHz - 5250000 KHz @ 40000 KHz), (300 mBi, 1700 mBm)
[    8.313929] cfg80211: Updating information on frequency 5240 MHz for a 20 MHz width channel with regulatory rule:
[    8.313931] cfg80211: 5170000 KHz - 5250000 KHz @ 40000 KHz), (300 mBi, 1700 mBm)
[    8.313933] cfg80211: Updating information on frequency 5260 MHz for a 20 MHz width channel with regulatory rule:
[    8.313936] cfg80211: 5250000 KHz - 5330000 KHz @ 40000 KHz), (300 mBi, 2000 mBm)
[    8.313938] cfg80211: Updating information on frequency 5280 MHz for a 20 MHz width channel with regulatory rule:
[    8.313940] cfg80211: 5250000 KHz - 5330000 KHz @ 40000 KHz), (300 mBi, 2000 mBm)
[    8.313942] cfg80211: Updating information on frequency 5300 MHz for a 20 MHz width channel with regulatory rule:
[    8.313944] cfg80211: 5250000 KHz - 5330000 KHz @ 40000 KHz), (300 mBi, 2000 mBm)
[    8.313947] cfg80211: Updating information on frequency 5320 MHz for a 20 MHz width channel with regulatory rule:
[    8.313949] cfg80211: 5250000 KHz - 5330000 KHz @ 40000 KHz), (300 mBi, 2000 mBm)
[    8.313951] cfg80211: Updating information on frequency 5500 MHz for a 20 MHz width channel with regulatory rule:
[    8.313953] cfg80211: 5490000 KHz - 5600000 KHz @ 40000 KHz), (300 mBi, 2000 mBm)
[    8.313956] cfg80211: Updating information on frequency 5520 MHz for a 20 MHz width channel with regulatory rule:
[    8.313958] cfg80211: 5490000 KHz - 5600000 KHz @ 40000 KHz), (300 mBi, 2000 mBm)
[    8.313960] cfg80211: Updating information on frequency 5540 MHz for a 20 MHz width channel with regulatory rule:
[    8.313962] cfg80211: 5490000 KHz - 5600000 KHz @ 40000 KHz), (300 mBi, 2000 mBm)
[    8.313965] cfg80211: Updating information on frequency 5560 MHz for a 20 MHz width channel with regulatory rule:
[    8.313967] cfg80211: 5490000 KHz - 5600000 KHz @ 40000 KHz), (300 mBi, 2000 mBm)
[    8.313969] cfg80211: Updating information on frequency 5580 MHz for a 20 MHz width channel with regulatory rule:
[    8.313971] cfg80211: 5490000 KHz - 5600000 KHz @ 40000 KHz), (300 mBi, 2000 mBm)
[    8.313973] cfg80211: Disabling freq 5600 MHz
[    8.313975] cfg80211: Disabling freq 5620 MHz
[    8.313977] cfg80211: Disabling freq 5640 MHz
[    8.313979] cfg80211: Updating information on frequency 5660 MHz for a 20 MHz width channel with regulatory rule:
[    8.313981] cfg80211: 5650000 KHz - 5710000 KHz @ 40000 KHz), (300 mBi, 2000 mBm)
[    8.313983] cfg80211: Updating information on frequency 5680 MHz for a 20 MHz width channel with regulatory rule:
[    8.313986] cfg80211: 5650000 KHz - 5710000 KHz @ 40000 KHz), (300 mBi, 2000 mBm)
[    8.313988] cfg80211: Updating information on frequency 5700 MHz for a 20 MHz width channel with regulatory rule:
[    8.313990] cfg80211: 5650000 KHz - 5710000 KHz @ 40000 KHz), (300 mBi, 2000 mBm)
[    8.313992] cfg80211: Updating information on frequency 5745 MHz for a 20 MHz width channel with regulatory rule:
[    8.313994] cfg80211: 5735000 KHz - 5835000 KHz @ 40000 KHz), (300 mBi, 3000 mBm)
[    8.313996] cfg80211: Updating information on frequency 5765 MHz for a 20 MHz width channel with regulatory rule:
[    8.313999] cfg80211: 5735000 KHz - 5835000 KHz @ 40000 KHz), (300 mBi, 3000 mBm)
[    8.314011] cfg80211: Updating information on frequency 5785 MHz for a 20 MHz width channel with regulatory rule:
[    8.314014] cfg80211: 5735000 KHz - 5835000 KHz @ 40000 KHz), (300 mBi, 3000 mBm)
[    8.314016] cfg80211: Updating information on frequency 5805 MHz for a 20 MHz width channel with regulatory rule:
[    8.314018] cfg80211: 5735000 KHz - 5835000 KHz @ 40000 KHz), (300 mBi, 3000 mBm)
[    8.314020] cfg80211: Updating information on frequency 5825 MHz for a 20 MHz width channel with regulatory rule:
[    8.314022] cfg80211: 5735000 KHz - 5835000 KHz @ 40000 KHz), (300 mBi, 3000 mBm)
[    8.314030] cfg80211: Updating information on frequency 2412 MHz for a 20 MHz width channel with regulatory rule:
[    8.314032] cfg80211: 2402000 KHz - 2472000 KHz @ 40000 KHz), (300 mBi, 2700 mBm)
[    8.314034] cfg80211: Updating information on frequency 2417 MHz for a 20 MHz width channel with regulatory rule:
[    8.314036] cfg80211: 2402000 KHz - 2472000 KHz @ 40000 KHz), (300 mBi, 2700 mBm)
[    8.314038] cfg80211: Updating information on frequency 2422 MHz for a 20 MHz width channel with regulatory rule:
[    8.314040] cfg80211: 2402000 KHz - 2472000 KHz @ 40000 KHz), (300 mBi, 2700 mBm)
[    8.314043] cfg80211: Updating information on frequency 2427 MHz for a 20 MHz width channel with regulatory rule:
[    8.314045] cfg80211: 2402000 KHz - 2472000 KHz @ 40000 KHz), (300 mBi, 2700 mBm)
[    8.314047] cfg80211: Updating information on frequency 2432 MHz for a 20 MHz width channel with regulatory rule:
[    8.314049] cfg80211: 2402000 KHz - 2472000 KHz @ 40000 KHz), (300 mBi, 2700 mBm)
[    8.314051] cfg80211: Updating information on frequency 2437 MHz for a 20 MHz width channel with regulatory rule:
[    8.314053] cfg80211: 2402000 KHz - 2472000 KHz @ 40000 KHz), (300 mBi, 2700 mBm)
[    8.314056] cfg80211: Updating information on frequency 2442 MHz for a 20 MHz width channel with regulatory rule:
[    8.314058] cfg80211: 2402000 KHz - 2472000 KHz @ 40000 KHz), (300 mBi, 2700 mBm)
[    8.314060] cfg80211: Updating information on frequency 2447 MHz for a 20 MHz width channel with regulatory rule:
[    8.314062] cfg80211: 2402000 KHz - 2472000 KHz @ 40000 KHz), (300 mBi, 2700 mBm)
[    8.314064] cfg80211: Updating information on frequency 2452 MHz for a 20 MHz width channel with regulatory rule:
[    8.314066] cfg80211: 2402000 KHz - 2472000 KHz @ 40000 KHz), (300 mBi, 2700 mBm)
[    8.314069] cfg80211: Updating information on frequency 2457 MHz for a 20 MHz width channel with regulatory rule:
[    8.314071] cfg80211: 2402000 KHz - 2472000 KHz @ 40000 KHz), (300 mBi, 2700 mBm)
[    8.314073] cfg80211: Updating information on frequency 2462 MHz for a 20 MHz width channel with regulatory rule:
[    8.314075] cfg80211: 2402000 KHz - 2472000 KHz @ 40000 KHz), (300 mBi, 2700 mBm)
[    8.314077] cfg80211: Disabling freq 2467 MHz
[    8.314079] cfg80211: Disabling freq 2472 MHz
[    8.314080] cfg80211: Disabling freq 2484 MHz
[    8.314082] cfg80211: Disabling freq 5040 MHz
[    8.314084] cfg80211: Disabling freq 5060 MHz
[    8.314085] cfg80211: Disabling freq 5080 MHz
[    8.314087] cfg80211: Updating information on frequency 5180 MHz for a 20 MHz width channel with regulatory rule:
[    8.314089] cfg80211: 5170000 KHz - 5250000 KHz @ 40000 KHz), (300 mBi, 1700 mBm)
[    8.314092] cfg80211: Updating information on frequency 5200 MHz for a 20 MHz width channel with regulatory rule:
[    8.314094] cfg80211: 5170000 KHz - 5250000 KHz @ 40000 KHz), (300 mBi, 1700 mBm)
[    8.314096] cfg80211: Updating information on frequency 5220 MHz for a 20 MHz width channel with regulatory rule:
[    8.314098] cfg80211: 5170000 KHz - 5250000 KHz @ 40000 KHz), (300 mBi, 1700 mBm)
[    8.314100] cfg80211: Updating information on frequency 5240 MHz for a 20 MHz width channel with regulatory rule:
[    8.314103] cfg80211: 5170000 KHz - 5250000 KHz @ 40000 KHz), (300 mBi, 1700 mBm)
[    8.314105] cfg80211: Updating information on frequency 5260 MHz for a 20 MHz width channel with regulatory rule:
[    8.314107] cfg80211: 5250000 KHz - 5330000 KHz @ 40000 KHz), (300 mBi, 2000 mBm)
[    8.314109] cfg80211: Updating information on frequency 5280 MHz for a 20 MHz width channel with regulatory rule:
[    8.314112] cfg80211: 5250000 KHz - 5330000 KHz @ 40000 KHz), (300 mBi, 2000 mBm)
[    8.314114] cfg80211: Updating information on frequency 5300 MHz for a 20 MHz width channel with regulatory rule:
[    8.314116] cfg80211: 5250000 KHz - 5330000 KHz @ 40000 KHz), (300 mBi, 2000 mBm)
[    8.314118] cfg80211: Updating information on frequency 5320 MHz for a 20 MHz width channel with regulatory rule:
[    8.314120] cfg80211: 5250000 KHz - 5330000 KHz @ 40000 KHz), (300 mBi, 2000 mBm)
[    8.314122] cfg80211: Updating information on frequency 5500 MHz for a 20 MHz width channel with regulatory rule:
[    8.314125] cfg80211: 5490000 KHz - 5600000 KHz @ 40000 KHz), (300 mBi, 2000 mBm)
[    8.314127] cfg80211: Updating information on frequency 5520 MHz for a 20 MHz width channel with regulatory rule:
[    8.314129] cfg80211: 5490000 KHz - 5600000 KHz @ 40000 KHz), (300 mBi, 2000 mBm)
[    8.314131] cfg80211: Updating information on frequency 5540 MHz for a 20 MHz width channel with regulatory rule:
[    8.314133] cfg80211: 5490000 KHz - 5600000 KHz @ 40000 KHz), (300 mBi, 2000 mBm)
[    8.314135] cfg80211: Updating information on frequency 5560 MHz for a 20 MHz width channel with regulatory rule:
[    8.314138] cfg80211: 5490000 KHz - 5600000 KHz @ 40000 KHz), (300 mBi, 2000 mBm)
[    8.314140] cfg80211: Updating information on frequency 5580 MHz for a 20 MHz width channel with regulatory rule:
[    8.314142] cfg80211: 5490000 KHz - 5600000 KHz @ 40000 KHz), (300 mBi, 2000 mBm)
[    8.314144] cfg80211: Disabling freq 5600 MHz
[    8.314146] cfg80211: Disabling freq 5620 MHz
[    8.314147] cfg80211: Disabling freq 5640 MHz
[    8.314149] cfg80211: Updating information on frequency 5660 MHz for a 20 MHz width channel with regulatory rule:
[    8.314152] cfg80211: 5650000 KHz - 5710000 KHz @ 40000 KHz), (300 mBi, 2000 mBm)
[    8.314154] cfg80211: Updating information on frequency 5680 MHz for a 20 MHz width channel with regulatory rule:
[    8.314156] cfg80211: 5650000 KHz - 5710000 KHz @ 40000 KHz), (300 mBi, 2000 mBm)
[    8.314158] cfg80211: Updating information on frequency 5700 MHz for a 20 MHz width channel with regulatory rule:
[    8.314160] cfg80211: 5650000 KHz - 5710000 KHz @ 40000 KHz), (300 mBi, 2000 mBm)
[    8.314163] cfg80211: Updating information on frequency 5745 MHz for a 20 MHz width channel with regulatory rule:
[    8.314165] cfg80211: 5735000 KHz - 5835000 KHz @ 40000 KHz), (300 mBi, 3000 mBm)
[    8.314167] cfg80211: Updating information on frequency 5765 MHz for a 20 MHz width channel with regulatory rule:
[    8.314169] cfg80211: 5735000 KHz - 5835000 KHz @ 40000 KHz), (300 mBi, 3000 mBm)
[    8.314171] cfg80211: Updating information on frequency 5785 MHz for a 20 MHz width channel with regulatory rule:
[    8.314174] cfg80211: 5735000 KHz - 5835000 KHz @ 40000 KHz), (300 mBi, 3000 mBm)
[    8.314176] cfg80211: Updating information on frequency 5805 MHz for a 20 MHz width channel with regulatory rule:
[    8.314178] cfg80211: 5735000 KHz - 5835000 KHz @ 40000 KHz), (300 mBi, 3000 mBm)
[    8.314180] cfg80211: Updating information on frequency 5825 MHz for a 20 MHz width channel with regulatory rule:
[    8.314182] cfg80211: 5735000 KHz - 5835000 KHz @ 40000 KHz), (300 mBi, 3000 mBm)
[    8.314189] cfg80211: Regulatory domain changed to country: US
[    8.315880] cfg80211:   (start_freq - end_freq @ bandwidth), (max_antenna_gain, max_eirp)
[    8.317596] cfg80211:   (2402000 KHz - 2472000 KHz @ 40000 KHz), (300 mBi, 2700 mBm)
[    8.319293] cfg80211:   (5170000 KHz - 5250000 KHz @ 40000 KHz), (300 mBi, 1700 mBm)
[    8.320918] cfg80211:   (5250000 KHz - 5330000 KHz @ 40000 KHz), (300 mBi, 2000 mBm)
[    8.322510] cfg80211:   (5490000 KHz - 5600000 KHz @ 40000 KHz), (300 mBi, 2000 mBm)
[    8.324075] cfg80211:   (5650000 KHz - 5710000 KHz @ 40000 KHz), (300 mBi, 2000 mBm)
[    8.325705] cfg80211:   (5735000 KHz - 5835000 KHz @ 40000 KHz), (300 mBi, 3000 mBm)
[    8.589085] fedora-storage-init[2716]: Setting up Logical Volume Management:   /dev/mapper/control: open failed: No such device
[    8.590869] fedora-storage-init[2716]: Failure to communicate with kernel device-mapper driver.
[    8.592663] fedora-storage-init[2716]: Check that device-mapper is available in the kernel.
[    8.612108] fedora-storage-init[2716]: No volume groups found
[    8.613840] fedora-storage-init[2716]: [  OK  ]
[    8.703850] fedora-storage-init[2724]: Setting up Logical Volume Management:   /dev/mapper/control: open failed: No such device
[    8.705554] fedora-storage-init[2724]: Failure to communicate with kernel device-mapper driver.
[    8.707174] fedora-storage-init[2724]: Check that device-mapper is available in the kernel.
[    8.723503] fedora-storage-init[2724]: No volume groups found
[    8.725328] fedora-storage-init[2724]: [  OK  ]
[    8.772643] lvm[2732]: /dev/mapper/control: open failed: No such device
[    8.774456] lvm[2732]: Failure to communicate with kernel device-mapper driver.
[    8.776105] lvm[2732]: Check that device-mapper is available in the kernel.
[    8.791921] lvm[2732]: No volume groups found
[    9.064970] iptables.init[2747]: iptables: Applying firewall rules: FATAL: Module ip_tables not found.
[    9.065091] iptables.init[2747]: iptables-restore v1.4.12: iptables-restore: unable to initialize table 'filter'
[    9.065130] iptables.init[2747]: Error occurred at line: 3
[    9.065177] iptables.init[2747]: Try `iptables-restore -h' or 'iptables-restore --help' for more information.
[    9.070127] /usr/sbin/crond[2764]: (CRON) INFO (Syslog will be used instead of sendmail.): No such file or directory
[    9.074241] /usr/sbin/crond[2764]: (CRON) INFO (running with inotify support)
[    9.083936] iptables.init[2747]: [FAILED]
[    9.124900] acpid[2782]: starting up with netlink and the input layer
[    9.125503] acpid[2782]: skipping incomplete file /etc/acpi/events/videoconf
[    9.125646] acpid[2782]: 1 rule loaded
[    9.125898] acpid[2782]: waiting for events: event logging is off
[    9.159698] abrtd[2783]: Init complete, entering main loop
[    9.221438] /usr/sbin/gpm[2795]: *** info [daemon/startup.c(136)]:
[    9.223125] /usr/sbin/gpm[2795]: Started gpm successfully. Entered daemon mode.
[    9.268804] ntpd[2799]: ntpd 4.2.6p4@1.2324-o Thu Oct  6 15:37:57 UTC 2011 (1)
[    9.274324] ntpd[2799]: proto: precision = 0.079 usec
[    9.274419] ntpd[2799]: 0.0.0.0 c01d 0d kern kernel time sync enabled
[    9.274748] ntpd[2799]: ntp_io: estimated max descriptors: 1024, initial socket boundary: 16
[    9.278672] ntpd[2799]: Listen and drop on 0 v4wildcard 0.0.0.0 UDP 123
[    9.280347] ntpd[2799]: Listen normally on 1 lo 127.0.0.1 UDP 123
[    9.282017] ntpd[2799]: peers refreshed
[    9.283669] ntpd[2799]: Listening on routing socket on fd #18 for interface updates
[    9.285308] ntpd[2799]: restrict: error in address '::' on line 10. Ignoring...
[    9.286989] ntpd[2799]: restrict: error in address '::1' on line 16. Ignoring...
[    9.288643] ntpd[2799]: Deferring DNS for 0.fedora.pool.ntp.org 1
[    9.290223] ntpd[2799]: Deferring DNS for 1.fedora.pool.ntp.org 1
[    9.291860] ntpd[2799]: Deferring DNS for 2.fedora.pool.ntp.org 1
[    9.293490] ntpd[2799]: Deferring DNS for 3.fedora.pool.ntp.org 1
[    9.296346] ntpd[2799]: 0.0.0.0 c016 06 restart
[    9.296382] ntpd[2799]: 0.0.0.0 c012 02 freq_set kernel 8.297 PPM
[    9.296417] ntpd[2804]: signal_no_reset: signal 17 had flags 4000000
[    9.337907] avahi-daemon[2806]: Found user 'avahi' (UID 70) and group 'avahi' (GID 70).
[    9.339456] avahi-daemon[2806]: Successfully dropped root privileges.
[    9.340999] avahi-daemon[2806]: avahi-daemon 0.6.30 starting up.
[    9.408035] systemd[1]: iptables.service: main process exited, code=exited, status=1
[    9.421103] systemd[1]: Unit iptables.service entered failed state.
[    9.469776] tcsd[2807]: insmod: can't read '/lib/modules/3.6.0-rc3-wl-main/kernel/drivers/char/tpm/tpm_*': No such file or directory
[    9.478832] tcsd[2821]: TCSD TDDL[2821]: TrouSerS ERROR: Could not find a device to open!
[    9.490278] tcsd[2807]: Starting tcsd: [FAILED]
[    9.520655] systemd[1]: tcsd.service: control process exited, code=exited status=137
[    9.541929] systemd[1]: Unit tcsd.service entered failed state.
[    9.630929] dbus[2832]: [system] Activating systemd to hand-off: service name='org.freedesktop.NetworkManager' unit='dbus-org.freedesktop.NetworkManager.service'
[    9.633125] dbus-daemon[2832]: dbus[2832]: [system] Activating systemd to hand-off: service name='org.freedesktop.NetworkManager' unit='dbus-org.freedesktop.NetworkManager.service'
[    9.637183] avahi-daemon[2806]: Successfully called chroot().
[    9.639744] avahi-daemon[2806]: Successfully dropped remaining capabilities.
[    9.643909] avahi-daemon[2806]: Loading service file /services/ssh.service.
[    9.643945] avahi-daemon[2806]: Loading service file /services/udisks.service.
[    9.643981] avahi-daemon[2806]: Network interface enumeration completed.
[    9.644028] avahi-daemon[2806]: Registering HINFO record with values 'X86_64'/'LINUX'.
[    9.644064] avahi-daemon[2806]: Server startup complete. Host name is mj.local. Local service cookie is 2976784327.
[    9.644102] avahi-daemon[2806]: Service "mj" (/services/udisks.service) successfully established.
[    9.644138] avahi-daemon[2806]: Service "mj" (/services/ssh.service) successfully established.
[   10.189339] r8169 0000:01:00.0: p32p1: link down
[   10.191205] r8169 0000:01:00.0: p32p1: link down
[   11.822382] r8169 0000:01:00.0: p32p1: link up
[   22.204081] hub 5-0:1.0: state 7 ports 2 chg 0000 evt 0002
[   22.204113] uhci_hcd 0000:00:1d.3: port 1 portsc 008a,00
[   22.204182] hub 5-0:1.0: port 1, status 0100, change 0003, 12 Mb/s
[   22.204187] usb 5-1: USB disconnect, device number 2
[   22.204191] usb 5-1: unregistering device
[   22.204194] usb 5-1: unregistering interface 5-1:1.0
[   22.207596] usb 5-1: usb_disable_device nuking all URBs
[   22.320079] hub 5-0:1.0: debounce: port 1: total 100ms stable 100ms status 0x100
[   23.128398] hub 1-0:1.0: state 7 ports 8 chg 0000 evt ff80
[   23.128430] ehci_hcd 0000:00:1d.7: GetStatus port:7 status 001803 0  ACK POWER sig=j CSC CONNECT
[   23.128475] hub 1-0:1.0: port 7, status 0501, change 0001, 480 Mb/s
[   23.232101] hub 1-0:1.0: debounce: port 7: total 100ms stable 100ms status 0x501
[   23.283361] ehci_hcd 0000:00:1d.7: port 7 full speed --> companion
[   23.283366] ehci_hcd 0000:00:1d.7: GetStatus port:7 status 003801 0  ACK POWER OWNER sig=j CONNECT
[   23.283385] hub 1-0:1.0: port 7 not reset yet, waiting 50ms
[   23.334083] ehci_hcd 0000:00:1d.7: GetStatus port:7 status 003002 0  ACK POWER OWNER sig=se0 CSC
[   23.334279] hub 1-0:1.0: state 7 ports 8 chg 0000 evt fe80
[   23.334299] ehci_hcd 0000:00:1d.7: GetStatus port:7 status 003002 0  ACK POWER OWNER sig=se0 CSC
[   23.334340] hub 1-0:1.0: port 7, status 0100, change 0001, 12 Mb/s
[   23.438087] hub 1-0:1.0: debounce: port 7: total 100ms stable 100ms status 0x100
[   23.454207] hub 5-0:1.0: state 7 ports 2 chg 0000 evt 0002
[   23.454237] uhci_hcd 0000:00:1d.3: port 1 portsc 0093,00
[   23.454280] hub 5-0:1.0: port 1, status 0101, change 0001, 12 Mb/s
[   23.558061] hub 5-0:1.0: debounce: port 1: total 100ms stable 100ms status 0x101
[   23.660071] usb 5-1: new full-speed USB device number 3 using uhci_hcd
[   23.792496] usb 5-1: config 1 has an invalid interface number: 3 but max is 2
[   23.792503] usb 5-1: config 1 has 4 interfaces, different from the descriptor's value: 3
[   23.792548] usb 5-1: skipped 4 descriptors after interface
[   23.797491] usb 5-1: default language 0x0409
[   23.807513] usb 5-1: udev 3, busnum 5, minor = 514
[   23.807520] usb 5-1: New USB device found, idVendor=1004, idProduct=6000
[   23.807525] usb 5-1: New USB device strings: Mfr=1, Product=2, SerialNumber=0
[   23.807530] usb 5-1: Product: LG CDMA USB Modem
[   23.807534] usb 5-1: Manufacturer: LG CDMA USB Modem
[   23.808410] usb 5-1: usb_probe_device
[   23.808415] usb 5-1: configuration #1 chosen from 1 choice
[   23.811542] usb 5-1: adding 5-1:1.0 (config #1, interface 0)
[   23.812030] cdc_acm 5-1:1.0: usb_probe_interface
[   23.812039] cdc_acm 5-1:1.0: usb_probe_interface - got id
[   23.812659] cdc_acm 5-1:1.0: ttyACM0: USB ACM device
[   23.816502] usb 5-1: adding 5-1:1.1 (config #1, interface 1)
[   23.819353] usb 5-1: adding 5-1:1.2 (config #1, interface 2)
[   23.820227] usb 5-1: adding 5-1:1.3 (config #1, interface 3)
[   23.821312] hub 5-0:1.0: state 7 ports 2 chg 0000 evt 0002
[   31.458085] CPA self-test:
[   31.476512]  4k 1046528 large 0 gb 0 x 262491[ffff880000000000-ffff8800cf7ff000] miss 198656
[   31.496475]  4k 1046528 large 0 gb 0 x 262491[ffff880000000000-ffff8800cf7ff000] miss 198656
[   31.515980]  4k 1046528 large 0 gb 0 x 262491[ffff880000000000-ffff8800cf7ff000] miss 198656
[   31.515985] ok.
[ 1375.285808] chromium-browse (3732) used greatest stack depth: 2672 bytes left
[ 1399.805510] sock: process `skype' is using obsolete setsockopt SO_BSDCOMPAT
[ 1570.586216] 
[ 1570.586223] ===============================
[ 1570.586225] [ INFO: suspicious RCU usage. ]
[ 1570.586228] 3.6.0-rc3-wl-main #98 Not tainted
[ 1570.586229] -------------------------------
[ 1570.586231] /home/proski/src/linux/net/ipv4/route.c:645 suspicious rcu_dereference_check() usage!
[ 1570.586233] 
[ 1570.586233] other info that might help us debug this:
[ 1570.586233] 
[ 1570.586236] 
[ 1570.586236] rcu_scheduler_active = 1, debug_locks = 0
[ 1570.586238] 2 locks held by Chrome_IOThread/4467:
[ 1570.586240]  #0:  (slock-AF_INET){+.-...}, at: [<ffffffff814f2c0c>] release_sock+0x2c/0xa0
[ 1570.586253]  #1:  (fnhe_lock){+.-...}, at: [<ffffffff815302fc>] update_or_create_fnhe+0x2c/0x270
[ 1570.586260] 
[ 1570.586260] stack backtrace:
[ 1570.586263] Pid: 4467, comm: Chrome_IOThread Not tainted 3.6.0-rc3-wl-main #98
[ 1570.586265] Call Trace:
[ 1570.586271]  [<ffffffff810976ed>] lockdep_rcu_suspicious+0xfd/0x130
[ 1570.586275]  [<ffffffff8153042c>] update_or_create_fnhe+0x15c/0x270
[ 1570.586278]  [<ffffffff815305b3>] __ip_rt_update_pmtu+0x73/0xb0
[ 1570.586282]  [<ffffffff81530619>] ip_rt_update_pmtu+0x29/0x90
[ 1570.586285]  [<ffffffff815411dc>] inet_csk_update_pmtu+0x2c/0x80
[ 1570.586290]  [<ffffffff81558d1e>] tcp_v4_mtu_reduced+0x2e/0xc0
[ 1570.586293]  [<ffffffff81553bc4>] tcp_release_cb+0xa4/0xb0
[ 1570.586296]  [<ffffffff814f2c35>] release_sock+0x55/0xa0
[ 1570.586300]  [<ffffffff815442ef>] tcp_sendmsg+0x4af/0xf50
[ 1570.586305]  [<ffffffff8156fc60>] inet_sendmsg+0x120/0x230
[ 1570.586308]  [<ffffffff8156fb40>] ? inet_sk_rebuild_header+0x40/0x40
[ 1570.586312]  [<ffffffff814f4bdd>] ? sock_update_classid+0xbd/0x3b0
[ 1570.586315]  [<ffffffff814f4c50>] ? sock_update_classid+0x130/0x3b0
[ 1570.586320]  [<ffffffff814ec435>] do_sock_write+0xc5/0xe0
[ 1570.586323]  [<ffffffff814ec4a3>] sock_aio_write+0x53/0x80
[ 1570.586328]  [<ffffffff8114bc83>] do_sync_write+0xa3/0xe0
[ 1570.586332]  [<ffffffff8114c5a5>] vfs_write+0x165/0x180
[ 1570.586335]  [<ffffffff8114c805>] sys_write+0x45/0x90
[ 1570.586340]  [<ffffffff815d2722>] system_call_fastpath+0x16/0x1b
[11429.704104] hub 5-0:1.0: state 7 ports 2 chg 0000 evt 0002
[11429.704138] uhci_hcd 0000:00:1d.3: port 1 portsc 009a,00
[11429.704219] hub 5-0:1.0: port 1, status 0100, change 0003, 12 Mb/s
[11429.704225] usb 5-1: USB disconnect, device number 3
[11429.704234] usb 5-1: unregistering device
[11429.704237] usb 5-1: unregistering interface 5-1:1.0
[11429.705455] usb 5-1: unregistering interface 5-1:1.1
[11429.706114] usb 5-1: unregistering interface 5-1:1.2
[11429.708292] usb 5-1: unregistering interface 5-1:1.3
[11429.708941] usb 5-1: usb_disable_device nuking all URBs
[11429.813072] hub 5-0:1.0: debounce: port 1: total 100ms stable 100ms status 0x100
[11430.954049] usb usb5: suspend_rh (auto-stop)

[-- Attachment #3: .config --]
[-- Type: application/octet-stream, Size: 78244 bytes --]

#
# Automatically generated file; DO NOT EDIT.
# Linux/x86_64 3.6.0-rc3 Kernel Configuration
#
CONFIG_64BIT=y
# CONFIG_X86_32 is not set
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_GENERIC_SPINLOCK is not set
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="-main"
# 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=y
# CONFIG_KERNEL_LZO is not set
CONFIG_DEFAULT_HOSTNAME="(none)"
CONFIG_SWAP=y
CONFIG_SYSVIPC=y
CONFIG_SYSVIPC_SYSCTL=y
CONFIG_POSIX_MQUEUE=y
CONFIG_POSIX_MQUEUE_SYSCTL=y
CONFIG_BSD_PROCESS_ACCT=y
CONFIG_BSD_PROCESS_ACCT_V3=y
CONFIG_FHANDLE=y
CONFIG_TASKSTATS=y
CONFIG_TASK_DELAY_ACCT=y
CONFIG_TASK_XACCT=y
CONFIG_TASK_IO_ACCOUNTING=y
CONFIG_AUDIT=y
CONFIG_AUDITSYSCALL=y
CONFIG_AUDIT_WATCH=y
CONFIG_AUDIT_TREE=y
# CONFIG_AUDIT_LOGINUID_IMMUTABLE 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

#
# RCU Subsystem
#
CONFIG_TREE_RCU=y
# CONFIG_PREEMPT_RCU 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_IKCONFIG is not set
CONFIG_LOG_BUF_SHIFT=20
CONFIG_HAVE_UNSTABLE_SCHED_CLOCK=y
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 is not set
# 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 is not set
# CONFIG_CHECKPOINT_RESTORE is not set
CONFIG_NAMESPACES=y
CONFIG_UTS_NS=y
CONFIG_IPC_NS=y
CONFIG_PID_NS=y
CONFIG_NET_NS=y
CONFIG_SCHED_AUTOGROUP=y
# CONFIG_SYSFS_DEPRECATED is not set
CONFIG_RELAY=y
CONFIG_BLK_DEV_INITRD=y
CONFIG_INITRAMFS_SOURCE=""
CONFIG_RD_GZIP=y
CONFIG_RD_BZIP2=y
CONFIG_RD_LZMA=y
CONFIG_RD_XZ=y
CONFIG_RD_LZO=y
# CONFIG_CC_OPTIMIZE_FOR_SIZE is not set
CONFIG_SYSCTL=y
CONFIG_ANON_INODES=y
CONFIG_EXPERT=y
CONFIG_UID16=y
CONFIG_SYSCTL_SYSCALL=y
CONFIG_KALLSYMS=y
CONFIG_KALLSYMS_ALL=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_DEBUG_PERF_USE_VMALLOC is not set
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_SLOB is not set
# CONFIG_PROFILING is not set
CONFIG_TRACEPOINTS=y
CONFIG_HAVE_OPROFILE=y
CONFIG_OPROFILE_NMI_TIMER=y
# CONFIG_KPROBES is not set
CONFIG_JUMP_LABEL=y
CONFIG_HAVE_EFFICIENT_UNALIGNED_ACCESS=y
CONFIG_HAVE_IOREMAP_PROT=y
CONFIG_HAVE_KPROBES=y
CONFIG_HAVE_KRETPROBES=y
CONFIG_HAVE_OPTPROBES=y
CONFIG_HAVE_ARCH_TRACEHOOK=y
CONFIG_HAVE_DMA_ATTRS=y
CONFIG_USE_GENERIC_SMP_HELPERS=y
CONFIG_GENERIC_SMP_IDLE_THREAD=y
CONFIG_HAVE_REGS_AND_STACK_ACCESS_API=y
CONFIG_HAVE_DMA_API_DEBUG=y
CONFIG_HAVE_HW_BREAKPOINT=y
CONFIG_HAVE_MIXED_BREAKPOINTS_REGS=y
CONFIG_HAVE_USER_RETURN_NOTIFIER=y
CONFIG_HAVE_PERF_EVENTS_NMI=y
CONFIG_HAVE_ARCH_JUMP_LABEL=y
CONFIG_ARCH_HAVE_NMI_SAFE_CMPXCHG=y
CONFIG_HAVE_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

#
# GCOV-based kernel profiling
#
# CONFIG_GCOV_KERNEL is not set
# 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=y
CONFIG_MODVERSIONS=y
# CONFIG_MODULE_SRCVERSION_ALL is not set
CONFIG_STOP_MACHINE=y
CONFIG_BLOCK=y
CONFIG_BLK_DEV_BSG=y
# CONFIG_BLK_DEV_BSGLIB is not set
# CONFIG_BLK_DEV_INTEGRITY is not set

#
# Partition Types
#
# CONFIG_PARTITION_ADVANCED is not set
CONFIG_MSDOS_PARTITION=y
CONFIG_BLOCK_COMPAT=y

#
# IO Schedulers
#
CONFIG_IOSCHED_NOOP=y
# CONFIG_IOSCHED_DEADLINE is not set
CONFIG_IOSCHED_CFQ=y
CONFIG_DEFAULT_CFQ=y
# CONFIG_DEFAULT_NOOP is not set
CONFIG_DEFAULT_IOSCHED="cfq"
# CONFIG_INLINE_SPIN_TRYLOCK is not set
# CONFIG_INLINE_SPIN_TRYLOCK_BH is not set
# CONFIG_INLINE_SPIN_LOCK is not set
# CONFIG_INLINE_SPIN_LOCK_BH is not set
# CONFIG_INLINE_SPIN_LOCK_IRQ is not set
# CONFIG_INLINE_SPIN_LOCK_IRQSAVE is not set
CONFIG_UNINLINE_SPIN_UNLOCK=y
# CONFIG_INLINE_SPIN_UNLOCK_BH is not set
# CONFIG_INLINE_SPIN_UNLOCK_IRQ is not set
# CONFIG_INLINE_SPIN_UNLOCK_IRQRESTORE is not set
# CONFIG_INLINE_READ_TRYLOCK is not set
# CONFIG_INLINE_READ_LOCK is not set
# CONFIG_INLINE_READ_LOCK_BH is not set
# CONFIG_INLINE_READ_LOCK_IRQ is not set
# CONFIG_INLINE_READ_LOCK_IRQSAVE is not set
# CONFIG_INLINE_READ_UNLOCK is not set
# CONFIG_INLINE_READ_UNLOCK_BH is not set
# CONFIG_INLINE_READ_UNLOCK_IRQ is not set
# CONFIG_INLINE_READ_UNLOCK_IRQRESTORE is not set
# CONFIG_INLINE_WRITE_TRYLOCK is not set
# CONFIG_INLINE_WRITE_LOCK is not set
# CONFIG_INLINE_WRITE_LOCK_BH is not set
# CONFIG_INLINE_WRITE_LOCK_IRQ is not set
# CONFIG_INLINE_WRITE_LOCK_IRQSAVE is not set
# CONFIG_INLINE_WRITE_UNLOCK is not set
# CONFIG_INLINE_WRITE_UNLOCK_BH is not set
# CONFIG_INLINE_WRITE_UNLOCK_IRQ is not set
# CONFIG_INLINE_WRITE_UNLOCK_IRQRESTORE is not set
# CONFIG_MUTEX_SPIN_ON_OWNER is not set
CONFIG_FREEZER=y

#
# Processor type and features
#
CONFIG_ZONE_DMA=y
CONFIG_SMP=y
# CONFIG_X86_X2APIC is not set
# 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_CMPXCHG=y
CONFIG_X86_L1_CACHE_SHIFT=6
CONFIG_X86_XADD=y
CONFIG_X86_WP_WORKS_OK=y
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_PROCESSOR_SELECT is not set
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_MAXSMP is not set
CONFIG_NR_CPUS=4
# CONFIG_SCHED_SMT is not set
CONFIG_SCHED_MC=y
# CONFIG_IRQ_TIME_ACCOUNTING is not set
# CONFIG_PREEMPT_NONE is not set
CONFIG_PREEMPT_VOLUNTARY=y
# CONFIG_PREEMPT is not set
CONFIG_PREEMPT_COUNT=y
CONFIG_X86_LOCAL_APIC=y
CONFIG_X86_IO_APIC=y
CONFIG_X86_REROUTE_FOR_BROKEN_BOOT_IRQS=y
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 is not set
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_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_MEMORY_HOTPLUG is not set
CONFIG_PAGEFLAGS_EXTENDED=y
CONFIG_SPLIT_PTLOCK_CPUS=999999
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_KSM=y
CONFIG_DEFAULT_MMAP_MIN_ADDR=65536
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=y
CONFIG_CLEANCACHE=y
# CONFIG_FRONTSWAP is not set
CONFIG_X86_CHECK_BIOS_CORRUPTION=y
CONFIG_X86_BOOTPARAM_MEMORY_CORRUPTION_CHECK=y
CONFIG_X86_RESERVE_LOW=64
CONFIG_MTRR=y
CONFIG_MTRR_SANITIZER=y
CONFIG_MTRR_SANITIZER_ENABLE_DEFAULT=0
CONFIG_MTRR_SANITIZER_SPARE_REG_NR_DEFAULT=1
CONFIG_X86_PAT=y
CONFIG_ARCH_USES_PG_UNCACHED=y
CONFIG_ARCH_RANDOM=y
# CONFIG_EFI is not set
CONFIG_SECCOMP=y
CONFIG_CC_STACKPROTECTOR=y
# CONFIG_HZ_100 is not set
# CONFIG_HZ_250 is not set
# CONFIG_HZ_300 is not set
CONFIG_HZ_1000=y
CONFIG_HZ=1000
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_COMPAT_VDSO is not set
# CONFIG_CMDLINE_BOOL is not set
CONFIG_ARCH_ENABLE_MEMORY_HOTPLUG=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=y
# CONFIG_PM_ADVANCED_DEBUG is not set
# CONFIG_PM_TEST_SUSPEND is not set
CONFIG_PM_SLEEP_DEBUG=y
# CONFIG_PM_TRACE_RTC is not set
CONFIG_ACPI=y
CONFIG_ACPI_SLEEP=y
# CONFIG_ACPI_PROCFS is not set
# CONFIG_ACPI_PROCFS_POWER is not set
# CONFIG_ACPI_EC_DEBUGFS is not set
# CONFIG_ACPI_PROC_EVENT is not set
# CONFIG_ACPI_AC is not set
# CONFIG_ACPI_BATTERY is not set
CONFIG_ACPI_BUTTON=y
CONFIG_ACPI_VIDEO=y
CONFIG_ACPI_FAN=y
CONFIG_ACPI_DOCK=y
CONFIG_ACPI_PROCESSOR=y
CONFIG_ACPI_HOTPLUG_CPU=y
CONFIG_ACPI_PROCESSOR_AGGREGATOR=y
CONFIG_ACPI_THERMAL=y
# CONFIG_ACPI_CUSTOM_DSDT 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=y
# CONFIG_ACPI_SBS is not set
CONFIG_ACPI_HED=y
# CONFIG_ACPI_CUSTOM_METHOD is not set
# CONFIG_ACPI_BGRT is not set
CONFIG_ACPI_APEI=y
CONFIG_ACPI_APEI_GHES=y
CONFIG_ACPI_APEI_PCIEAER=y
# CONFIG_ACPI_APEI_EINJ is not set
# CONFIG_ACPI_APEI_ERST_DEBUG is not set
# CONFIG_SFI is not set

#
# CPU Frequency scaling
#
CONFIG_CPU_FREQ=y
CONFIG_CPU_FREQ_TABLE=y
# CONFIG_CPU_FREQ_STAT is not set
# CONFIG_CPU_FREQ_DEFAULT_GOV_PERFORMANCE is not set
# CONFIG_CPU_FREQ_DEFAULT_GOV_POWERSAVE is not set
CONFIG_CPU_FREQ_DEFAULT_GOV_USERSPACE=y
# 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 is not set
CONFIG_CPU_FREQ_GOV_USERSPACE=y
CONFIG_CPU_FREQ_GOV_ONDEMAND=y
# CONFIG_CPU_FREQ_GOV_CONSERVATIVE is not set

#
# x86 CPU frequency scaling drivers
#
# CONFIG_X86_PCC_CPUFREQ is not set
CONFIG_X86_ACPI_CPUFREQ=y
# 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_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 is not set
CONFIG_PCI_DOMAINS=y
# CONFIG_PCI_CNB20LE_QUIRK is not set
CONFIG_PCIEPORTBUS=y
CONFIG_PCIEAER=y
# CONFIG_PCIE_ECRC is not set
# CONFIG_PCIEAER_INJECT is not set
CONFIG_PCIEASPM=y
CONFIG_PCIEASPM_DEBUG=y
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_DEBUG is not set
# CONFIG_PCI_REALLOC_ENABLE_AUTO is not set
# CONFIG_PCI_STUB is not set
CONFIG_HT_IRQ=y
CONFIG_PCI_ATS=y
CONFIG_PCI_IOV=y
# CONFIG_PCI_PRI 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=y
CONFIG_PCMCIA=y
# CONFIG_PCMCIA_LOAD_CIS is not set
CONFIG_CARDBUS=y

#
# PC-card bridges
#
CONFIG_YENTA=y
CONFIG_YENTA_O2=y
CONFIG_YENTA_RICOH=y
CONFIG_YENTA_TI=y
CONFIG_YENTA_ENE_TUNE=y
CONFIG_YENTA_TOSHIBA=y
# CONFIG_PD6729 is not set
# CONFIG_I82092 is not set
CONFIG_PCCARD_NONSTATIC=y
# 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=y
CONFIG_IA32_EMULATION=y
# CONFIG_IA32_AOUT is not set
# CONFIG_X86_X32 is not set
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
CONFIG_COMPAT_NETLINK_MESSAGES=y

#
# Networking options
#
CONFIG_PACKET=y
CONFIG_UNIX=y
CONFIG_UNIX_DIAG=y
CONFIG_XFRM=y
CONFIG_XFRM_ALGO=y
CONFIG_XFRM_USER=y
# CONFIG_XFRM_SUB_POLICY is not set
# CONFIG_XFRM_MIGRATE is not set
# CONFIG_XFRM_STATISTICS is not set
# CONFIG_NET_KEY is not set
CONFIG_INET=y
CONFIG_IP_MULTICAST=y
# CONFIG_IP_ADVANCED_ROUTER is not set
# CONFIG_IP_PNP is not set
# CONFIG_NET_IPIP is not set
# CONFIG_NET_IPGRE_DEMUX is not set
# CONFIG_IP_MROUTE 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 is not set
CONFIG_NETWORK_SECMARK=y
# CONFIG_NETWORK_PHY_TIMESTAMPING is not set
# CONFIG_NETFILTER is not set
# CONFIG_IP_DCCP is not set
# CONFIG_IP_SCTP is not set
# CONFIG_RDS is not set
# CONFIG_TIPC is not set
# CONFIG_ATM is not set
# CONFIG_L2TP is not set
# CONFIG_BRIDGE is not set
# CONFIG_NET_DSA is not set
# CONFIG_VLAN_8021Q is not set
# CONFIG_DECNET is not set
# CONFIG_LLC2 is not set
# CONFIG_IPX is not set
# CONFIG_ATALK is not set
# CONFIG_X25 is not set
# CONFIG_LAPB is not set
# CONFIG_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 is not set

#
# Network testing
#
# CONFIG_NET_PKTGEN is not set
# CONFIG_NET_DROP_MONITOR 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_WIRELESS_EXT=y
CONFIG_WEXT_CORE=y
CONFIG_WEXT_PROC=y
CONFIG_WEXT_SPY=y
CONFIG_WEXT_PRIV=y
CONFIG_CFG80211=m
# CONFIG_NL80211_TESTMODE is not set
CONFIG_CFG80211_DEVELOPER_WARNINGS=y
CONFIG_CFG80211_REG_DEBUG=y
# CONFIG_CFG80211_CERTIFICATION_ONUS is not set
CONFIG_CFG80211_DEFAULT_PS=y
CONFIG_CFG80211_DEBUGFS=y
# CONFIG_CFG80211_INTERNAL_REGDB is not set
CONFIG_CFG80211_WEXT=y
CONFIG_LIB80211=m
CONFIG_LIB80211_CRYPT_WEP=m
CONFIG_LIB80211_CRYPT_CCMP=m
CONFIG_LIB80211_CRYPT_TKIP=m
# CONFIG_LIB80211_DEBUG is not set
CONFIG_MAC80211=m
CONFIG_MAC80211_HAS_RC=y
CONFIG_MAC80211_RC_PID=y
CONFIG_MAC80211_RC_MINSTREL=y
CONFIG_MAC80211_RC_MINSTREL_HT=y
# CONFIG_MAC80211_RC_DEFAULT_PID is not set
CONFIG_MAC80211_RC_DEFAULT_MINSTREL=y
CONFIG_MAC80211_RC_DEFAULT="minstrel_ht"
# CONFIG_MAC80211_MESH is not set
CONFIG_MAC80211_LEDS=y
CONFIG_MAC80211_DEBUGFS=y
# CONFIG_MAC80211_MESSAGE_TRACING is not set
CONFIG_MAC80211_DEBUG_MENU=y
CONFIG_MAC80211_NOINLINE=y
CONFIG_MAC80211_VERBOSE_DEBUG=y
# CONFIG_MAC80211_MLME_DEBUG is not set
# CONFIG_MAC80211_STA_DEBUG is not set
CONFIG_MAC80211_HT_DEBUG=y
CONFIG_MAC80211_IBSS_DEBUG=y
# CONFIG_MAC80211_PS_DEBUG is not set
# CONFIG_MAC80211_TDLS_DEBUG is not set
CONFIG_MAC80211_DEBUG_COUNTERS=y
# 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="/sbin/hotplug"
CONFIG_DEVTMPFS=y
CONFIG_DEVTMPFS_MOUNT=y
CONFIG_STANDALONE=y
CONFIG_PREVENT_FIRMWARE_BUILD=y
CONFIG_FW_LOADER=y
CONFIG_FIRMWARE_IN_KERNEL=y
CONFIG_EXTRA_FIRMWARE=""
# CONFIG_DEBUG_DRIVER is not set
CONFIG_DEBUG_DEVRES=y
# CONFIG_SYS_HYPERVISOR is not set
# CONFIG_GENERIC_CPU_DEVICES is not set
CONFIG_DMA_SHARED_BUFFER=y
CONFIG_CONNECTOR=y
CONFIG_PROC_EVENTS=y
# CONFIG_MTD is not set
# CONFIG_PARPORT is not set
CONFIG_PNP=y
CONFIG_PNP_DEBUG_MESSAGES=y

#
# 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=y
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_UB is not set
# CONFIG_BLK_DEV_RAM is not set
# CONFIG_CDROM_PKTCDVD 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_INTEL_MEI 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 is not set

#
# 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=y
CONFIG_BLK_DEV_SR_VENDOR=y
CONFIG_CHR_DEV_SG=y
# CONFIG_CHR_DEV_SCH is not set
# CONFIG_SCSI_MULTI_LUN is not set
CONFIG_SCSI_CONSTANTS=y
# CONFIG_SCSI_LOGGING is not set
# CONFIG_SCSI_SCAN_ASYNC is not set

#
# SCSI Transports
#
CONFIG_SCSI_SPI_ATTRS=y
# CONFIG_SCSI_FC_ATTRS is not set
# CONFIG_SCSI_ISCSI_ATTRS is not set
# CONFIG_SCSI_SAS_ATTRS is not set
# CONFIG_SCSI_SAS_LIBSAS is not set
# CONFIG_SCSI_SRP_ATTRS is not set
# CONFIG_SCSI_LOWLEVEL is not set
# CONFIG_SCSI_LOWLEVEL_PCMCIA 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=y
CONFIG_ATA_ACPI=y
# CONFIG_SATA_PMP is not set

#
# Controllers with non-SFF native interface
#
# CONFIG_SATA_AHCI is not set
# 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=y

#
# SFF controllers with custom DMA interface
#
# CONFIG_PDC_ADMA is not set
# CONFIG_SATA_QSTOR is not set
# CONFIG_SATA_SX4 is not set
CONFIG_ATA_BMDMA=y

#
# SATA SFF controllers with BMDMA
#
CONFIG_ATA_PIIX=y
# CONFIG_SATA_MV is not set
# CONFIG_SATA_NV is not set
# CONFIG_SATA_PROMISE is not set
# CONFIG_SATA_SIL is not set
# CONFIG_SATA_SIS is not set
# CONFIG_SATA_SVW is not set
# CONFIG_SATA_ULI is not set
# CONFIG_SATA_VIA is not set
# CONFIG_SATA_VITESSE is not set

#
# PATA SFF controllers with BMDMA
#
# CONFIG_PATA_ALI is not set
# CONFIG_PATA_AMD is not set
# CONFIG_PATA_ARTOP is not set
# CONFIG_PATA_ATIIXP is not set
# CONFIG_PATA_ATP867X is not set
# CONFIG_PATA_CMD64X is not set
# CONFIG_PATA_CS5520 is not set
# CONFIG_PATA_CS5530 is not set
# CONFIG_PATA_CS5536 is not set
# CONFIG_PATA_CYPRESS is not set
# CONFIG_PATA_EFAR is not set
# CONFIG_PATA_HPT366 is not set
# CONFIG_PATA_HPT37X is not set
# CONFIG_PATA_HPT3X2N is not set
# CONFIG_PATA_HPT3X3 is not set
# CONFIG_PATA_IT8213 is not set
# CONFIG_PATA_IT821X is not set
# CONFIG_PATA_JMICRON is not set
# CONFIG_PATA_MARVELL is not set
# CONFIG_PATA_NETCELL is not set
# CONFIG_PATA_NINJA32 is not set
# CONFIG_PATA_NS87415 is not set
# CONFIG_PATA_OLDPIIX is not set
# CONFIG_PATA_OPTIDMA is not set
# CONFIG_PATA_PDC2027X is not set
# CONFIG_PATA_PDC_OLD is not set
# CONFIG_PATA_RADISYS is not set
# CONFIG_PATA_RDC is not set
# CONFIG_PATA_SC1200 is not set
# CONFIG_PATA_SCH is not set
# CONFIG_PATA_SERVERWORKS is not set
# CONFIG_PATA_SIL680 is not set
# CONFIG_PATA_SIS is not set
# CONFIG_PATA_TOSHIBA is not set
# CONFIG_PATA_TRIFLEX is not set
# CONFIG_PATA_VIA is not set
# CONFIG_PATA_WINBOND is not set

#
# PIO-only SFF controllers
#
# CONFIG_PATA_CMD640_PCI is not set
# CONFIG_PATA_MPIIX is not set
# CONFIG_PATA_NS87410 is not set
# CONFIG_PATA_OPTI is not set
# CONFIG_PATA_PCMCIA is not set
# CONFIG_PATA_PLATFORM is not set
# CONFIG_PATA_RZ1000 is not set

#
# Generic fallback / legacy drivers
#
# CONFIG_PATA_ACPI is not set
# CONFIG_ATA_GENERIC is not set
# CONFIG_PATA_LEGACY 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 is not set
# 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_NETCONSOLE is not set
# CONFIG_NETPOLL is not set
# CONFIG_NET_POLL_CONTROLLER is not set
# CONFIG_TUN is not set
# CONFIG_VETH is not set
# CONFIG_ARCNET is not set

#
# CAIF transport drivers
#
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 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_FUJITSU 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=y
# CONFIG_8139CP is not set
CONFIG_8139TOO=m
CONFIG_8139TOO_PIO=y
# CONFIG_8139TOO_TUNE_TWISTER is not set
# CONFIG_8139TOO_8129 is not set
# CONFIG_8139_OLD_RX_RESET is not set
CONFIG_R8169=y
# 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_NET_VENDOR_XIRCOM is not set
# CONFIG_FDDI is not set
# CONFIG_HIPPI is not set
# CONFIG_NET_SB1000 is not set
CONFIG_PHYLIB=y

#
# MII PHY device drivers
#
# CONFIG_AMD_PHY is not set
# CONFIG_MARVELL_PHY is not set
# CONFIG_DAVICOM_PHY is not set
# CONFIG_QSEMI_PHY is not set
# CONFIG_LXT_PHY is not set
# CONFIG_CICADA_PHY is not set
# CONFIG_VITESSE_PHY is not set
# CONFIG_SMSC_PHY is not set
# CONFIG_BROADCOM_PHY is not set
# CONFIG_BCM87XX_PHY is not set
# CONFIG_ICPLUS_PHY is not set
# CONFIG_REALTEK_PHY is not set
# CONFIG_NATIONAL_PHY is not set
# CONFIG_STE10XP is not set
# CONFIG_LSI_ET1011C_PHY is not set
# CONFIG_MICREL_PHY is not set
# CONFIG_FIXED_PHY is not set
# CONFIG_MDIO_BITBANG 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_PCMCIA_RAYCS is not set
# CONFIG_LIBERTAS_THINFIRM is not set
CONFIG_AIRO=m
# CONFIG_ATMEL is not set
CONFIG_AT76C50X_USB=m
# CONFIG_AIRO_CS is not set
# CONFIG_PCMCIA_WL3501 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_DEBUG=y
CONFIG_ATH5K=m
CONFIG_ATH5K_DEBUG=y
CONFIG_ATH5K_TRACER=y
CONFIG_ATH5K_PCI=y
CONFIG_ATH9K_HW=m
CONFIG_ATH9K_COMMON=m
# CONFIG_ATH9K_BTCOEX_SUPPORT is not set
CONFIG_ATH9K=m
CONFIG_ATH9K_PCI=y
# CONFIG_ATH9K_AHB is not set
CONFIG_ATH9K_DEBUGFS=y
CONFIG_ATH9K_MAC_DEBUG=y
CONFIG_ATH9K_RATE_CONTROL=y
CONFIG_ATH9K_HTC=m
CONFIG_ATH9K_HTC_DEBUGFS=y
CONFIG_CARL9170=m
CONFIG_CARL9170_LEDS=y
CONFIG_CARL9170_DEBUGFS=y
CONFIG_CARL9170_WPC=y
# CONFIG_CARL9170_HWRNG is not set
# CONFIG_ATH6KL is not set
CONFIG_B43=m
CONFIG_B43_SSB=y
CONFIG_B43_PCI_AUTOSELECT=y
CONFIG_B43_PCICORE_AUTOSELECT=y
# CONFIG_B43_PCMCIA is not set
CONFIG_B43_PIO=y
# CONFIG_B43_PHY_N is not set
# CONFIG_B43_PHY_LP is not set
CONFIG_B43_PHY_HT=y
CONFIG_B43_LEDS=y
CONFIG_B43_HWRNG=y
CONFIG_B43_DEBUG=y
CONFIG_B43LEGACY=m
CONFIG_B43LEGACY_PCI_AUTOSELECT=y
CONFIG_B43LEGACY_PCICORE_AUTOSELECT=y
CONFIG_B43LEGACY_LEDS=y
CONFIG_B43LEGACY_HWRNG=y
CONFIG_B43LEGACY_DEBUG=y
CONFIG_B43LEGACY_DMA=y
CONFIG_B43LEGACY_PIO=y
CONFIG_B43LEGACY_DMA_AND_PIO_MODE=y
# CONFIG_B43LEGACY_DMA_MODE is not set
# CONFIG_B43LEGACY_PIO_MODE is not set
# CONFIG_BRCMFMAC is not set
CONFIG_HOSTAP=m
# CONFIG_HOSTAP_FIRMWARE is not set
# CONFIG_HOSTAP_PLX is not set
CONFIG_HOSTAP_PCI=m
CONFIG_HOSTAP_CS=m
# CONFIG_IPW2100 is not set
# CONFIG_IPW2200 is not set
# CONFIG_IWLWIFI is not set
# CONFIG_IWL4965 is not set
# CONFIG_IWL3945 is not set
# CONFIG_LIBERTAS is not set
CONFIG_HERMES=m
# CONFIG_HERMES_PRISM is not set
CONFIG_HERMES_CACHE_FW_ON_INIT=y
# CONFIG_PLX_HERMES is not set
# CONFIG_TMD_HERMES is not set
# CONFIG_NORTEL_HERMES is not set
CONFIG_PCMCIA_HERMES=m
# CONFIG_PCMCIA_SPECTRUM is not set
# CONFIG_ORINOCO_USB 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_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=y
# 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 is not set
CONFIG_INPUT_MOUSEDEV_SCREEN_X=1920
CONFIG_INPUT_MOUSEDEV_SCREEN_Y=1080
# 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_OMAP4 is not set
# CONFIG_KEYBOARD_XTKBD is not set
CONFIG_INPUT_MOUSE=y
# CONFIG_MOUSE_PS2 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 is not set
# 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_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 is not set
# 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=y

#
# Serial drivers
#
CONFIG_SERIAL_8250=y
CONFIG_SERIAL_8250_CONSOLE=y
CONFIG_FIX_EARLYCON_MEM=y
CONFIG_SERIAL_8250_PCI=y
CONFIG_SERIAL_8250_PNP=y
# CONFIG_SERIAL_8250_CS is not set
CONFIG_SERIAL_8250_NR_UARTS=4
CONFIG_SERIAL_8250_RUNTIME_UARTS=4
# CONFIG_SERIAL_8250_EXTENDED is not set

#
# Non-8250 serial port support
#
# CONFIG_SERIAL_MFD_HSU is not set
CONFIG_SERIAL_CORE=y
CONFIG_SERIAL_CORE_CONSOLE=y
# CONFIG_SERIAL_JSM 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_XILINX_PS_UART is not set
# CONFIG_TTY_PRINTK is not set
# CONFIG_IPMI_HANDLER is not set
CONFIG_HW_RANDOM=y
# CONFIG_HW_RANDOM_TIMERIOMEM is not set
# CONFIG_HW_RANDOM_INTEL is not set
# CONFIG_HW_RANDOM_AMD is not set
# CONFIG_HW_RANDOM_VIA is not set
# CONFIG_NVRAM is not set
# CONFIG_R3964 is not set
# CONFIG_APPLICOM is not set

#
# PCMCIA character devices
#
# CONFIG_SYNCLINK_CS is not set
# CONFIG_CARDMAN_4000 is not set
# CONFIG_CARDMAN_4040 is not set
# CONFIG_IPWIRELESS 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 is not set
# CONFIG_I2C_CHARDEV is not set
# CONFIG_I2C_MUX is not set
CONFIG_I2C_HELPER_AUTO=y
CONFIG_I2C_ALGOBIT=y

#
# 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=y
# 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
#

#
# Enable Device Drivers -> PPS to see the PTP clock options.
#
CONFIG_ARCH_WANT_OPTIONAL_GPIOLIB=y
# CONFIG_GPIOLIB is not set
# CONFIG_W1 is not set
# CONFIG_POWER_SUPPLY is not set
# CONFIG_POWER_AVS is not set
CONFIG_HWMON=y
CONFIG_HWMON_VID=y
# 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_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=y
CONFIG_SENSORS_IT87=y
# 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_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_SCH5627 is not set
# CONFIG_SENSORS_SCH5636 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_WATCHDOG=y
CONFIG_WATCHDOG_CORE=y
# CONFIG_WATCHDOG_NOWAYOUT is not set

#
# Watchdog Device Drivers
#
# CONFIG_SOFT_WATCHDOG is not set
# CONFIG_ACQUIRE_WDT is not set
# CONFIG_ADVANTECH_WDT is not set
# CONFIG_ALIM1535_WDT is not set
# CONFIG_ALIM7101_WDT is not set
# CONFIG_F71808E_WDT is not set
# CONFIG_SP5100_TCO is not set
# CONFIG_SC520_WDT is not set
# CONFIG_SBC_FITPC2_WATCHDOG is not set
# CONFIG_EUROTECH_WDT is not set
# CONFIG_IB700_WDT is not set
# CONFIG_IBMASR is not set
# CONFIG_WAFER_WDT is not set
# CONFIG_I6300ESB_WDT is not set
# CONFIG_IE6XX_WDT is not set
# CONFIG_ITCO_WDT is not set
# CONFIG_IT8712F_WDT is not set
CONFIG_IT87_WDT=y
# CONFIG_HP_WATCHDOG is not set
# CONFIG_SC1200_WDT is not set
# CONFIG_PC87413_WDT is not set
# CONFIG_NV_TCO is not set
# CONFIG_60XX_WDT is not set
# CONFIG_SBC8360_WDT is not set
# CONFIG_CPU5_WDT is not set
# CONFIG_SMSC_SCH311X_WDT is not set
# CONFIG_SMSC37B787_WDT is not set
# CONFIG_VIA_WDT is not set
# CONFIG_W83627HF_WDT is not set
# CONFIG_W83697HF_WDT is not set
# CONFIG_W83697UG_WDT is not set
# CONFIG_W83877F_WDT is not set
# CONFIG_W83977F_WDT is not set
# CONFIG_MACHZ_WDT is not set
# CONFIG_SBC_EPX_C3_WATCHDOG is not set

#
# PCI-based Watchdog Cards
#
# CONFIG_PCIPCWATCHDOG is not set
# CONFIG_WDTPCI is not set

#
# USB-based Watchdog Cards
#
# CONFIG_USBPCWATCHDOG is not set
CONFIG_SSB_POSSIBLE=y

#
# Sonics Silicon Backplane
#
CONFIG_SSB=m
CONFIG_SSB_SPROM=y
CONFIG_SSB_BLOCKIO=y
CONFIG_SSB_PCIHOST_POSSIBLE=y
CONFIG_SSB_PCIHOST=y
CONFIG_SSB_B43_PCI_BRIDGE=y
CONFIG_SSB_PCMCIAHOST_POSSIBLE=y
# CONFIG_SSB_PCMCIAHOST is not set
# CONFIG_SSB_SILENT is not set
CONFIG_SSB_DEBUG=y
CONFIG_SSB_DRIVER_PCICORE_POSSIBLE=y
CONFIG_SSB_DRIVER_PCICORE=y
CONFIG_BCMA_POSSIBLE=y

#
# Broadcom specific AMBA
#
# CONFIG_BCMA 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_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_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_PMIC_DA903X is not set
# CONFIG_MFD_DA9052_I2C is not set
# CONFIG_PMIC_ADP5520 is not set
# CONFIG_MFD_MAX77686 is not set
# CONFIG_MFD_MAX77693 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_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_COMMON=y

#
# Media drivers
#
CONFIG_VIDEO_V4L2=y
CONFIG_VIDEOBUF2_CORE=y
CONFIG_VIDEOBUF2_MEMOPS=y
CONFIG_VIDEOBUF2_VMALLOC=y
CONFIG_VIDEO_CAPTURE_DRIVERS=y
# CONFIG_VIDEO_ADV_DEBUG is not set
# CONFIG_VIDEO_FIXED_MINOR_RANGES is not set
# CONFIG_VIDEO_HELPER_CHIPS_AUTO is not set

#
# Encoders, decoders, sensors and other helper chips
#

#
# Audio decoders, processors and mixers
#
# CONFIG_VIDEO_TVAUDIO is not set
# CONFIG_VIDEO_TDA7432 is not set
# CONFIG_VIDEO_TDA9840 is not set
# CONFIG_VIDEO_TEA6415C is not set
# CONFIG_VIDEO_TEA6420 is not set
# CONFIG_VIDEO_MSP3400 is not set
# CONFIG_VIDEO_CS5345 is not set
# CONFIG_VIDEO_CS53L32A is not set
# CONFIG_VIDEO_TLV320AIC23B is not set
# CONFIG_VIDEO_WM8775 is not set
# CONFIG_VIDEO_WM8739 is not set
# CONFIG_VIDEO_VP27SMPX is not set

#
# RDS decoders
#
# CONFIG_VIDEO_SAA6588 is not set

#
# Video decoders
#
# CONFIG_VIDEO_ADV7180 is not set
# CONFIG_VIDEO_ADV7183 is not set
# CONFIG_VIDEO_BT819 is not set
# CONFIG_VIDEO_BT856 is not set
# CONFIG_VIDEO_BT866 is not set
# CONFIG_VIDEO_KS0127 is not set
# CONFIG_VIDEO_SAA7110 is not set
# CONFIG_VIDEO_SAA711X is not set
# CONFIG_VIDEO_SAA7191 is not set
# CONFIG_VIDEO_TVP514X is not set
# CONFIG_VIDEO_TVP5150 is not set
# CONFIG_VIDEO_TVP7002 is not set
# CONFIG_VIDEO_VPX3220 is not set

#
# Video and audio decoders
#
# CONFIG_VIDEO_SAA717X is not set
# CONFIG_VIDEO_CX25840 is not set

#
# MPEG video encoders
#
# CONFIG_VIDEO_CX2341X is not set

#
# Video encoders
#
# CONFIG_VIDEO_SAA7127 is not set
# CONFIG_VIDEO_SAA7185 is not set
# CONFIG_VIDEO_ADV7170 is not set
# CONFIG_VIDEO_ADV7175 is not set
# CONFIG_VIDEO_ADV7343 is not set
# CONFIG_VIDEO_ADV7393 is not set
# CONFIG_VIDEO_AK881X is not set

#
# Camera sensor devices
#
# CONFIG_VIDEO_OV7670 is not set
# CONFIG_VIDEO_VS6624 is not set
# CONFIG_VIDEO_MT9V011 is not set
# CONFIG_VIDEO_TCM825X is not set
# CONFIG_VIDEO_SR030PC30 is not set

#
# Flash devices
#

#
# Video improvement chips
#
# CONFIG_VIDEO_UPD64031A is not set
# CONFIG_VIDEO_UPD64083 is not set

#
# Miscelaneous helper chips
#
# CONFIG_VIDEO_THS7303 is not set
# CONFIG_VIDEO_M52790 is not set
# CONFIG_VIDEO_VIVI is not set
CONFIG_V4L_USB_DRIVERS=y

#
# Webcam devices
#
CONFIG_USB_VIDEO_CLASS=y
# CONFIG_USB_VIDEO_CLASS_INPUT_EVDEV is not set
# CONFIG_USB_GSPCA 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 and/or TV USB devices
#
# CONFIG_VIDEO_EM28XX is not set
# CONFIG_V4L_PLATFORM_DRIVERS is not set
# CONFIG_V4L_MEM2MEM_DRIVERS is not set

#
# Graphics support
#
CONFIG_AGP=y
CONFIG_AGP_AMD64=y
CONFIG_AGP_INTEL=y
# CONFIG_AGP_SIS is not set
# CONFIG_AGP_VIA is not set
CONFIG_VGA_ARB=y
CONFIG_VGA_ARB_MAX_GPUS=16
# CONFIG_VGA_SWITCHEROO is not set
CONFIG_DRM=y
CONFIG_DRM_KMS_HELPER=y
# CONFIG_DRM_LOAD_EDID_FIRMWARE is not set
# CONFIG_DRM_TDFX is not set
# CONFIG_DRM_R128 is not set
# CONFIG_DRM_RADEON is not set
# 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_I810 is not set
CONFIG_DRM_I915=y
CONFIG_DRM_I915_KMS=y
# CONFIG_DRM_MGA is not set
# CONFIG_DRM_SIS is not set
# CONFIG_DRM_VIA is not set
# CONFIG_DRM_SAVAGE is not set
# CONFIG_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 is not set
# CONFIG_FB_DDC is not set
# CONFIG_FB_BOOT_VESA_SUPPORT is not set
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=y

#
# 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 is not set
# 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 is not set
CONFIG_BACKLIGHT_CLASS_DEVICE=y
CONFIG_BACKLIGHT_GENERIC=y
# CONFIG_BACKLIGHT_PROGEAR 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_LP855X is not set

#
# Console display driver support
#
CONFIG_VGA_CONSOLE=y
CONFIG_VGACON_SOFT_SCROLLBACK=y
CONFIG_VGACON_SOFT_SCROLLBACK_SIZE=64
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=y
# CONFIG_LOGO_LINUX_MONO is not set
# CONFIG_LOGO_LINUX_VGA16 is not set
CONFIG_LOGO_LINUX_CLUT224=y
CONFIG_SOUND=y
# CONFIG_SOUND_OSS_CORE is not set
CONFIG_SND=y
CONFIG_SND_TIMER=y
CONFIG_SND_PCM=y
CONFIG_SND_HWDEP=y
CONFIG_SND_RAWMIDI=m
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=y
CONFIG_SND_SEQ_HRTIMER_DEFAULT=y
CONFIG_SND_DYNAMIC_MINORS=y
# CONFIG_SND_SUPPORT_OLD_API is not set
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=y
CONFIG_SND_HDA_PREALLOC_SIZE=64
CONFIG_SND_HDA_HWDEP=y
# CONFIG_SND_HDA_RECONFIG is not set
# CONFIG_SND_HDA_INPUT_BEEP is not set
# CONFIG_SND_HDA_INPUT_JACK is not set
# CONFIG_SND_HDA_PATCH_LOADER is not set
CONFIG_SND_HDA_CODEC_REALTEK=y
# CONFIG_SND_HDA_CODEC_ANALOG is not set
# CONFIG_SND_HDA_CODEC_SIGMATEL is not set
# CONFIG_SND_HDA_CODEC_VIA is not set
# 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 is not set
# CONFIG_SND_HDA_POWER_SAVE is not set
# CONFIG_SND_HDSP is not set
# CONFIG_SND_HDSPM is not set
# CONFIG_SND_ICE1712 is not set
# CONFIG_SND_ICE1724 is not set
# CONFIG_SND_INTEL8X0 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_PCMCIA is not set
# CONFIG_SND_SOC is not set
# CONFIG_SOUND_PRIME is not set

#
# HID support
#
CONFIG_HID=y
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=y
# 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=y
# 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

#
# USB HID support
#
CONFIG_USB_HID=y
# CONFIG_HID_PID is not set
CONFIG_USB_HIDDEV=y
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=y
CONFIG_USB_ANNOUNCE_NEW_DEVICES=y

#
# Miscellaneous USB options
#
CONFIG_USB_DYNAMIC_MINORS=y
# CONFIG_USB_SUSPEND is not set
# CONFIG_USB_OTG_WHITELIST is not set
# CONFIG_USB_OTG_BLACKLIST_HUB 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 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_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 is not set
# CONFIG_USB_EHCI_HCD_PLATFORM is not set
CONFIG_USB_UHCI_HCD=y
# CONFIG_USB_SL811_HCD is not set
# CONFIG_USB_R8A66597_HCD is not set
# CONFIG_USB_HCD_SSB is not set
# CONFIG_USB_CHIPIDEA is not set

#
# USB Device Class drivers
#
CONFIG_USB_ACM=y
# 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
CONFIG_USB_UAS=y
CONFIG_USB_LIBUSUAL=y

#
# USB Imaging devices
#
# CONFIG_USB_MDC800 is not set
# CONFIG_USB_MICROTEK is not set

#
# USB port drivers
#
CONFIG_USB_SERIAL=m
# CONFIG_USB_EZUSB is not set
# CONFIG_USB_SERIAL_GENERIC is not set
# CONFIG_USB_SERIAL_AIRCABLE is not set
# CONFIG_USB_SERIAL_ARK3116 is not set
# CONFIG_USB_SERIAL_BELKIN 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=m
# 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 is not set
# CONFIG_USB_SERIAL_OTI6858 is not set
# CONFIG_USB_SERIAL_QCAUX is not set
# CONFIG_USB_SERIAL_QUALCOMM is not set
# CONFIG_USB_SERIAL_SPCP8X5 is not set
# CONFIG_USB_SERIAL_HP4X 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_SSU100 is not set
# CONFIG_USB_SERIAL_QT2 is not set
# CONFIG_USB_SERIAL_DEBUG is not set

#
# 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

#
# USB Physical Layer drivers
#
# CONFIG_USB_ISP1301 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_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_LM3556 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_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=y

#
# Reporting subsystems
#
CONFIG_EDAC_LEGACY_SYSFS=y
# CONFIG_EDAC_DEBUG is not set
# CONFIG_EDAC_MM_EDAC is not set
CONFIG_RTC_LIB=y
CONFIG_RTC_CLASS=y
CONFIG_RTC_HCTOSYS=y
CONFIG_RTC_HCTOSYS_DEVICE="rtc0"
# 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_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

#
# on-CPU RTC drivers
#
# CONFIG_DMADEVICES is not set
# CONFIG_AUXDISPLAY is not set
# CONFIG_UIO is not set

#
# Virtio drivers
#
# CONFIG_VIRTIO_PCI is not set
# CONFIG_VIRTIO_BALLOON is not set
# CONFIG_VIRTIO_MMIO is not set

#
# Microsoft Hyper-V guest support
#
# CONFIG_HYPERV is not set
CONFIG_STAGING=y
# CONFIG_ET131X is not set
# CONFIG_SLICOSS is not set
# CONFIG_USBIP_CORE is not set
# CONFIG_W35UND is not set
CONFIG_PRISM2_USB=m
# CONFIG_ECHO is not set
# CONFIG_COMEDI is not set
# CONFIG_ASUS_OLED is not set
# CONFIG_R8187SE is not set
# CONFIG_RTL8192U is not set
# CONFIG_RTLLIB is not set
# CONFIG_R8712U is not set
# CONFIG_RTS_PSTOR is not set
# CONFIG_RTS5139 is not set
# CONFIG_TRANZPORT is not set
# CONFIG_IDE_PHISON is not set
# CONFIG_LINE6_USB is not set
# CONFIG_USB_SERIAL_QUATECH2 is not set
# CONFIG_VT6655 is not set
# CONFIG_VT6656 is not set
# CONFIG_DX_SEP is not set
# CONFIG_ZSMALLOC is not set
# CONFIG_WLAGS49_H2 is not set
# CONFIG_WLAGS49_H25 is not set
# CONFIG_FB_SM7XX is not set
# CONFIG_CRYSTALHD is not set
# CONFIG_FB_XGI is not set
# CONFIG_ACPI_QUICKSTART is not set
# CONFIG_USB_ENESTORAGE is not set
# CONFIG_BCM_WIMAX is not set
# CONFIG_FT1000 is not set

#
# Speakup console speech
#
# CONFIG_SPEAKUP is not set
# CONFIG_TOUCHSCREEN_SYNAPTICS_I2C_RMI4 is not set
# CONFIG_STAGING_MEDIA is not set

#
# Android
#
# CONFIG_ANDROID is not set
# CONFIG_PHONE is not set
# CONFIG_RAMSTER is not set
# CONFIG_USB_WPAN_HCD is not set
# CONFIG_IPACK_BUS is not set
# CONFIG_WIMAX_GDM72XX 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=y
# CONFIG_AMD_IOMMU is not set
CONFIG_DMAR_TABLE=y
# CONFIG_INTEL_IOMMU is not set
CONFIG_IRQ_REMAP=y

#
# Remoteproc drivers (EXPERIMENTAL)
#

#
# Rpmsg drivers (EXPERIMENTAL)
#
# CONFIG_VIRT_DRIVERS is not set
# CONFIG_PM_DEVFREQ is not set
# CONFIG_EXTCON is not set
# CONFIG_MEMORY is not set
# CONFIG_IIO is not set
# CONFIG_VME_BUS is not set
# CONFIG_PWM 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=y
# CONFIG_ISCSI_IBFT_FIND is not set
# CONFIG_GOOGLE_FIRMWARE is not set

#
# File systems
#
CONFIG_DCACHE_WORD_ACCESS=y
# CONFIG_EXT2_FS is not set
# CONFIG_EXT3_FS is not set
CONFIG_EXT4_FS=y
CONFIG_EXT4_USE_FOR_EXT23=y
CONFIG_EXT4_FS_XATTR=y
CONFIG_EXT4_FS_POSIX_ACL=y
CONFIG_EXT4_FS_SECURITY=y
# CONFIG_EXT4_DEBUG is not set
CONFIG_JBD2=y
# CONFIG_JBD2_DEBUG is not set
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_OCFS2_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=y
CONFIG_FUSE_FS=y
# CONFIG_CUSE is not set
CONFIG_GENERIC_ACL=y

#
# Caches
#
# CONFIG_FSCACHE is not set

#
# CD-ROM/DVD Filesystems
#
CONFIG_ISO9660_FS=y
CONFIG_JOLIET=y
# CONFIG_ZISOFS is not set
# CONFIG_UDF_FS is not set

#
# DOS/FAT/NT Filesystems
#
CONFIG_FAT_FS=y
# CONFIG_MSDOS_FS is not set
CONFIG_VFAT_FS=y
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=y
CONFIG_MISC_FILESYSTEMS=y
# CONFIG_ADFS_FS is not set
# CONFIG_AFFS_FS is not set
# CONFIG_HFS_FS is not set
# CONFIG_HFSPLUS_FS is not set
# CONFIG_BEFS_FS is not set
# CONFIG_BFS_FS is not set
# CONFIG_EFS_FS is not set
# CONFIG_LOGFS is not set
# CONFIG_CRAMFS is not set
# CONFIG_SQUASHFS is not set
# CONFIG_VXFS_FS is not set
# CONFIG_MINIX_FS is not set
# CONFIG_OMFS_FS is not set
# CONFIG_HPFS_FS is not set
# CONFIG_QNX4FS_FS is not set
# CONFIG_QNX6FS_FS is not set
# CONFIG_ROMFS_FS is not set
CONFIG_PSTORE=y
# CONFIG_PSTORE_CONSOLE is not set
# CONFIG_PSTORE_RAM is not set
# CONFIG_SYSV_FS is not set
# CONFIG_UFS_FS 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
# CONFIG_DLM is not set

#
# 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_READABLE_ASM is not set
# CONFIG_UNUSED_SYMBOLS is not set
CONFIG_DEBUG_FS=y
CONFIG_HEADERS_CHECK=y
CONFIG_DEBUG_SECTION_MISMATCH=y
CONFIG_DEBUG_KERNEL=y
CONFIG_DEBUG_SHIRQ=y
CONFIG_LOCKUP_DETECTOR=y
CONFIG_HARDLOCKUP_DETECTOR=y
# CONFIG_BOOTPARAM_HARDLOCKUP_PANIC is not set
CONFIG_BOOTPARAM_HARDLOCKUP_PANIC_VALUE=0
# CONFIG_BOOTPARAM_SOFTLOCKUP_PANIC is not set
CONFIG_BOOTPARAM_SOFTLOCKUP_PANIC_VALUE=0
# CONFIG_PANIC_ON_OOPS is not set
CONFIG_PANIC_ON_OOPS_VALUE=0
CONFIG_DETECT_HUNG_TASK=y
CONFIG_DEFAULT_HUNG_TASK_TIMEOUT=120
# CONFIG_BOOTPARAM_HUNG_TASK_PANIC is not set
CONFIG_BOOTPARAM_HUNG_TASK_PANIC_VALUE=0
# CONFIG_SCHED_DEBUG is not set
CONFIG_SCHEDSTATS=y
CONFIG_TIMER_STATS=y
CONFIG_DEBUG_OBJECTS=y
CONFIG_DEBUG_OBJECTS_SELFTEST=y
CONFIG_DEBUG_OBJECTS_FREE=y
CONFIG_DEBUG_OBJECTS_TIMERS=y
CONFIG_DEBUG_OBJECTS_WORK=y
CONFIG_DEBUG_OBJECTS_RCU_HEAD=y
CONFIG_DEBUG_OBJECTS_PERCPU_COUNTER=y
CONFIG_DEBUG_OBJECTS_ENABLE_DEFAULT=1
CONFIG_SLUB_DEBUG_ON=y
# CONFIG_SLUB_STATS is not set
# CONFIG_DEBUG_KMEMLEAK is not set
CONFIG_DEBUG_RT_MUTEXES=y
CONFIG_DEBUG_PI_LIST=y
# CONFIG_RT_MUTEX_TESTER is not set
CONFIG_DEBUG_SPINLOCK=y
CONFIG_DEBUG_MUTEXES=y
CONFIG_DEBUG_LOCK_ALLOC=y
CONFIG_PROVE_LOCKING=y
CONFIG_PROVE_RCU=y
# CONFIG_PROVE_RCU_REPEATEDLY is not set
CONFIG_SPARSE_RCU_POINTER=y
CONFIG_LOCKDEP=y
# CONFIG_LOCK_STAT is not set
CONFIG_DEBUG_LOCKDEP=y
CONFIG_TRACE_IRQFLAGS=y
CONFIG_DEBUG_ATOMIC_SLEEP=y
CONFIG_DEBUG_LOCKING_API_SELFTESTS=y
CONFIG_STACKTRACE=y
CONFIG_DEBUG_STACK_USAGE=y
# CONFIG_DEBUG_KOBJECT is not set
CONFIG_DEBUG_BUGVERBOSE=y
CONFIG_DEBUG_INFO=y
CONFIG_DEBUG_INFO_REDUCED=y
CONFIG_DEBUG_VM=y
CONFIG_DEBUG_VIRTUAL=y
CONFIG_DEBUG_WRITECOUNT=y
CONFIG_DEBUG_MEMORY_INIT=y
CONFIG_DEBUG_LIST=y
CONFIG_TEST_LIST_SORT=y
CONFIG_DEBUG_SG=y
CONFIG_DEBUG_NOTIFIERS=y
CONFIG_DEBUG_CREDENTIALS=y
CONFIG_ARCH_WANT_FRAME_POINTERS=y
CONFIG_FRAME_POINTER=y
# CONFIG_BOOT_PRINTK_DELAY is not set
# CONFIG_RCU_TORTURE_TEST is not set
CONFIG_RCU_CPU_STALL_TIMEOUT=60
# CONFIG_RCU_CPU_STALL_INFO is not set
# CONFIG_RCU_TRACE is not set
# CONFIG_BACKTRACE_SELF_TEST is not set
CONFIG_DEBUG_BLOCK_EXT_DEVT=y
CONFIG_DEBUG_FORCE_WEAK_PER_CPU=y
CONFIG_DEBUG_PER_CPU_MAPS=y
# CONFIG_LKDTM is not set
# CONFIG_NOTIFIER_ERROR_INJECTION is not set
# CONFIG_FAULT_INJECTION is not set
# CONFIG_LATENCYTOP is not set
CONFIG_DEBUG_PAGEALLOC=y
CONFIG_WANT_PAGE_DEBUG_FLAGS=y
CONFIG_PAGE_GUARD=y
CONFIG_USER_STACKTRACE_SUPPORT=y
CONFIG_NOP_TRACER=y
CONFIG_HAVE_FUNCTION_TRACER=y
CONFIG_HAVE_FUNCTION_GRAPH_TRACER=y
CONFIG_HAVE_FUNCTION_GRAPH_FP_TEST=y
CONFIG_HAVE_FUNCTION_TRACE_MCOUNT_TEST=y
CONFIG_HAVE_DYNAMIC_FTRACE=y
CONFIG_HAVE_FTRACE_MCOUNT_RECORD=y
CONFIG_HAVE_SYSCALL_TRACEPOINTS=y
CONFIG_HAVE_C_RECORDMCOUNT=y
CONFIG_RING_BUFFER=y
CONFIG_EVENT_TRACING=y
# CONFIG_EVENT_POWER_TRACING_DEPRECATED is not set
CONFIG_CONTEXT_SWITCH_TRACER=y
CONFIG_TRACING=y
CONFIG_GENERIC_TRACER=y
CONFIG_TRACING_SUPPORT=y
CONFIG_FTRACE=y
# CONFIG_FUNCTION_TRACER is not set
# CONFIG_IRQSOFF_TRACER is not set
# CONFIG_SCHED_TRACER is not set
# CONFIG_FTRACE_SYSCALLS is not set
CONFIG_BRANCH_PROFILE_NONE=y
# CONFIG_PROFILE_ANNOTATED_BRANCHES is not set
# CONFIG_PROFILE_ALL_BRANCHES is not set
# CONFIG_STACK_TRACER is not set
# CONFIG_BLK_DEV_IO_TRACE is not set
# CONFIG_UPROBE_EVENT is not set
# CONFIG_PROBE_EVENTS is not set
# CONFIG_FTRACE_STARTUP_TEST is not set
CONFIG_MMIOTRACE=y
CONFIG_MMIOTRACE_TEST=m
# CONFIG_RING_BUFFER_BENCHMARK is not set
# CONFIG_PROVIDE_OHCI1394_DMA_INIT is not set
# CONFIG_BUILD_DOCSRC is not set
# CONFIG_DYNAMIC_DEBUG 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_KGDB is not set
CONFIG_HAVE_ARCH_KMEMCHECK=y
# CONFIG_KMEMCHECK is not set
# CONFIG_TEST_KSTRTOX is not set
CONFIG_STRICT_DEVMEM=y
CONFIG_X86_VERBOSE_BOOTUP=y
CONFIG_EARLY_PRINTK=y
CONFIG_EARLY_PRINTK_DBGP=y
CONFIG_DEBUG_STACKOVERFLOW=y
# CONFIG_X86_PTDUMP is not set
CONFIG_DEBUG_RODATA=y
# CONFIG_DEBUG_RODATA_TEST is not set
# CONFIG_DEBUG_SET_MODULE_RONX is not set
# CONFIG_DEBUG_NX_TEST is not set
# CONFIG_DEBUG_TLBFLUSH is not set
CONFIG_IOMMU_DEBUG=y
# 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=y
# CONFIG_IO_DELAY_0XED is not set
# CONFIG_IO_DELAY_UDELAY is not set
# CONFIG_IO_DELAY_NONE is not set
CONFIG_DEFAULT_IO_DELAY_TYPE=0
CONFIG_DEBUG_BOOT_PARAMS=y
CONFIG_CPA_DEBUG=y
CONFIG_OPTIMIZE_INLINING=y
CONFIG_DEBUG_STRICT_USER_COPY_CHECKS=y
CONFIG_DEBUG_NMI_SELFTEST=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=y
CONFIG_CRYPTO_AEAD2=y
CONFIG_CRYPTO_BLKCIPHER=y
CONFIG_CRYPTO_BLKCIPHER2=y
CONFIG_CRYPTO_HASH=y
CONFIG_CRYPTO_HASH2=y
CONFIG_CRYPTO_RNG2=y
CONFIG_CRYPTO_PCOMP2=y
CONFIG_CRYPTO_MANAGER=y
CONFIG_CRYPTO_MANAGER2=y
# CONFIG_CRYPTO_USER is not set
CONFIG_CRYPTO_MANAGER_DISABLE_TESTS=y
# CONFIG_CRYPTO_GF128MUL is not set
# CONFIG_CRYPTO_NULL is not set
# CONFIG_CRYPTO_PCRYPT is not set
CONFIG_CRYPTO_WORKQUEUE=y
# CONFIG_CRYPTO_CRYPTD is not set
CONFIG_CRYPTO_AUTHENC=y
# CONFIG_CRYPTO_TEST is not set

#
# Authenticated Encryption with Associated Data
#
# CONFIG_CRYPTO_CCM is not set
# CONFIG_CRYPTO_GCM is not set
# CONFIG_CRYPTO_SEQIV is not set

#
# Block modes
#
CONFIG_CRYPTO_CBC=y
# CONFIG_CRYPTO_CTR is not set
# CONFIG_CRYPTO_CTS is not set
CONFIG_CRYPTO_ECB=y
# CONFIG_CRYPTO_LRW is not set
# CONFIG_CRYPTO_PCBC is not set
# CONFIG_CRYPTO_XTS is not set

#
# Hash modes
#
CONFIG_CRYPTO_HMAC=y
# CONFIG_CRYPTO_XCBC is not set
# CONFIG_CRYPTO_VMAC is not set

#
# Digest
#
CONFIG_CRYPTO_CRC32C=y
# CONFIG_CRYPTO_CRC32C_INTEL is not set
# CONFIG_CRYPTO_GHASH is not set
# CONFIG_CRYPTO_MD4 is not set
CONFIG_CRYPTO_MD5=y
CONFIG_CRYPTO_MICHAEL_MIC=y
# CONFIG_CRYPTO_RMD128 is not set
# CONFIG_CRYPTO_RMD160 is not set
# CONFIG_CRYPTO_RMD256 is not set
# CONFIG_CRYPTO_RMD320 is not set
CONFIG_CRYPTO_SHA1=y
CONFIG_CRYPTO_SHA1_SSSE3=y
# CONFIG_CRYPTO_SHA256 is not set
# CONFIG_CRYPTO_SHA512 is not set
# CONFIG_CRYPTO_TGR192 is not set
# CONFIG_CRYPTO_WP512 is not set
# CONFIG_CRYPTO_GHASH_CLMUL_NI_INTEL is not set

#
# Ciphers
#
CONFIG_CRYPTO_AES=y
# CONFIG_CRYPTO_AES_X86_64 is not set
# CONFIG_CRYPTO_AES_NI_INTEL is not set
# CONFIG_CRYPTO_ANUBIS is not set
CONFIG_CRYPTO_ARC4=y
# CONFIG_CRYPTO_BLOWFISH is not set
# CONFIG_CRYPTO_BLOWFISH_X86_64 is not set
# CONFIG_CRYPTO_CAMELLIA is not set
# CONFIG_CRYPTO_CAMELLIA_X86_64 is not set
# CONFIG_CRYPTO_CAST5 is not set
# CONFIG_CRYPTO_CAST6 is not set
CONFIG_CRYPTO_DES=y
# CONFIG_CRYPTO_FCRYPT is not set
# CONFIG_CRYPTO_KHAZAD is not set
# CONFIG_CRYPTO_SALSA20 is not set
# CONFIG_CRYPTO_SALSA20_X86_64 is not set
# CONFIG_CRYPTO_SEED is not set
# CONFIG_CRYPTO_SERPENT is not set
# CONFIG_CRYPTO_SERPENT_SSE2_X86_64 is not set
# CONFIG_CRYPTO_SERPENT_AVX_X86_64 is not set
# CONFIG_CRYPTO_TEA is not set
# CONFIG_CRYPTO_TWOFISH is not set
# CONFIG_CRYPTO_TWOFISH_X86_64 is not set
# CONFIG_CRYPTO_TWOFISH_X86_64_3WAY is not set
# CONFIG_CRYPTO_TWOFISH_AVX_X86_64 is not set

#
# Compression
#
# CONFIG_CRYPTO_DEFLATE is not set
# CONFIG_CRYPTO_ZLIB is not set
# CONFIG_CRYPTO_LZO is not set

#
# Random Number Generation
#
# CONFIG_CRYPTO_ANSI_CPRNG is not set
# CONFIG_CRYPTO_USER_API_HASH is not set
# CONFIG_CRYPTO_USER_API_SKCIPHER is not set
# CONFIG_CRYPTO_HW is not set
CONFIG_HAVE_KVM=y
# CONFIG_VIRTUALIZATION is not set
CONFIG_BINARY_PRINTF=y

#
# 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_CRC_CCITT is not set
CONFIG_CRC16=y
# CONFIG_CRC_T10DIF is not set
# CONFIG_CRC_ITU_T is not set
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 is not set
# CONFIG_LIBCRC32C is not set
# CONFIG_CRC8 is not set
CONFIG_ZLIB_INFLATE=y
CONFIG_LZO_DECOMPRESS=y
CONFIG_XZ_DEC=y
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 is not set
CONFIG_DECOMPRESS_GZIP=y
CONFIG_DECOMPRESS_BZIP2=y
CONFIG_DECOMPRESS_LZMA=y
CONFIG_DECOMPRESS_XZ=y
CONFIG_DECOMPRESS_LZO=y
CONFIG_GENERIC_ALLOCATOR=y
CONFIG_HAS_IOMEM=y
CONFIG_HAS_IOPORT=y
CONFIG_HAS_DMA=y
CONFIG_CHECK_SIGNATURE=y
# CONFIG_CPUMASK_OFFSTACK is not set
CONFIG_CPU_RMAP=y
CONFIG_DQL=y
CONFIG_NLATTR=y
CONFIG_ARCH_HAS_ATOMIC64_DEC_IF_POSITIVE=y
CONFIG_AVERAGE=y
# CONFIG_CORDIC is not set
# CONFIG_DDR is not set

^ permalink raw reply

* Re: route.c:645 suspicious rcu_dereference_check()
From: Eric Dumazet @ 2012-08-28 22:33 UTC (permalink / raw)
  To: Pavel Roskin; +Cc: netdev
In-Reply-To: <20120828175734.41b17a6c@mj>

From: Eric Dumazet <edumazet@google.com>

On Tue, 2012-08-28 at 17:57 -0400, Pavel Roskin wrote:
> Hello!
> 
> I've got a warning in the kernel log starting with
> 
> [ 1570.586223] ===============================
> [ 1570.586225] [ INFO: suspicious RCU usage. ]
> [ 1570.586228] 3.6.0-rc3-wl-main #98 Not tainted
> [ 1570.586229] -------------------------------
> [ 1570.586231] /home/proski/src/linux/net/ipv4/route.c:645 suspicious
> rcu_dereference_check() usage! [ 1570.586233] 
> [ 1570.586233] other info that might help us debug this:
> [ 1570.586233] 
> [ 1570.586236] 
> [ 1570.586236] rcu_scheduler_active = 1, debug_locks = 0
> [ 1570.586238] 2 locks held by Chrome_IOThread/4467:
> [ 1570.586240]  #0:  (slock-AF_INET){+.-...}, at: [<ffffffff814f2c0c>]
> release_sock+0x2c/0xa0 [ 1570.586253]  #1:  (fnhe_lock){+.-...}, at:
> [<ffffffff815302fc>] update_or_create_fnhe+0x2c/0x270 [ 1570.586260] 
> [ 1570.586260] stack backtrace:
> [ 1570.586263] Pid: 4467, comm: Chrome_IOThread Not tainted
> 3.6.0-rc3-wl-main #98 [ 1570.586265] Call Trace:
> [ 1570.586271]  [<ffffffff810976ed>] lockdep_rcu_suspicious+0xfd/0x130
> [ 1570.586275]  [<ffffffff8153042c>] update_or_create_fnhe+0x15c/0x270
> 
> The dmesg output and the .config file are attached.
> 

Thanks this seems a real bug

[PATCH] ipv4: must use rcu protection while calling fib_lookup

Following lockdep splat was reported by Pavel Roskin :

[ 1570.586223] ===============================
[ 1570.586225] [ INFO: suspicious RCU usage. ]
[ 1570.586228] 3.6.0-rc3-wl-main #98 Not tainted
[ 1570.586229] -------------------------------
[ 1570.586231] /home/proski/src/linux/net/ipv4/route.c:645 suspicious rcu_dereference_check() usage!
[ 1570.586233] 
[ 1570.586233] other info that might help us debug this:
[ 1570.586233] 
[ 1570.586236] 
[ 1570.586236] rcu_scheduler_active = 1, debug_locks = 0
[ 1570.586238] 2 locks held by Chrome_IOThread/4467:
[ 1570.586240]  #0:  (slock-AF_INET){+.-...}, at: [<ffffffff814f2c0c>] release_sock+0x2c/0xa0
[ 1570.586253]  #1:  (fnhe_lock){+.-...}, at: [<ffffffff815302fc>] update_or_create_fnhe+0x2c/0x270
[ 1570.586260] 
[ 1570.586260] stack backtrace:
[ 1570.586263] Pid: 4467, comm: Chrome_IOThread Not tainted 3.6.0-rc3-wl-main #98
[ 1570.586265] Call Trace:
[ 1570.586271]  [<ffffffff810976ed>] lockdep_rcu_suspicious+0xfd/0x130
[ 1570.586275]  [<ffffffff8153042c>] update_or_create_fnhe+0x15c/0x270
[ 1570.586278]  [<ffffffff815305b3>] __ip_rt_update_pmtu+0x73/0xb0
[ 1570.586282]  [<ffffffff81530619>] ip_rt_update_pmtu+0x29/0x90
[ 1570.586285]  [<ffffffff815411dc>] inet_csk_update_pmtu+0x2c/0x80
[ 1570.586290]  [<ffffffff81558d1e>] tcp_v4_mtu_reduced+0x2e/0xc0
[ 1570.586293]  [<ffffffff81553bc4>] tcp_release_cb+0xa4/0xb0
[ 1570.586296]  [<ffffffff814f2c35>] release_sock+0x55/0xa0
[ 1570.586300]  [<ffffffff815442ef>] tcp_sendmsg+0x4af/0xf50
[ 1570.586305]  [<ffffffff8156fc60>] inet_sendmsg+0x120/0x230
[ 1570.586308]  [<ffffffff8156fb40>] ? inet_sk_rebuild_header+0x40/0x40
[ 1570.586312]  [<ffffffff814f4bdd>] ? sock_update_classid+0xbd/0x3b0
[ 1570.586315]  [<ffffffff814f4c50>] ? sock_update_classid+0x130/0x3b0
[ 1570.586320]  [<ffffffff814ec435>] do_sock_write+0xc5/0xe0
[ 1570.586323]  [<ffffffff814ec4a3>] sock_aio_write+0x53/0x80
[ 1570.586328]  [<ffffffff8114bc83>] do_sync_write+0xa3/0xe0
[ 1570.586332]  [<ffffffff8114c5a5>] vfs_write+0x165/0x180
[ 1570.586335]  [<ffffffff8114c805>] sys_write+0x45/0x90
[ 1570.586340]  [<ffffffff815d2722>] system_call_fastpath+0x16/0x1b

Signed-off-by: Eric Dumazet <edumazet@google.com>
Reported-by: Pavel Roskin <proski@gnu.org>
---
 net/ipv4/route.c |    2 ++
 1 file changed, 2 insertions(+)

diff --git a/net/ipv4/route.c b/net/ipv4/route.c
index 24fd4c5..82cf2a7 100644
--- a/net/ipv4/route.c
+++ b/net/ipv4/route.c
@@ -934,12 +934,14 @@ static u32 __ip_rt_update_pmtu(struct rtable *rt, struct flowi4 *fl4, u32 mtu)
 	if (mtu < ip_rt_min_pmtu)
 		mtu = ip_rt_min_pmtu;
 
+	rcu_read_lock();
 	if (fib_lookup(dev_net(rt->dst.dev), fl4, &res) == 0) {
 		struct fib_nh *nh = &FIB_RES_NH(res);
 
 		update_or_create_fnhe(nh, fl4->daddr, 0, mtu,
 				      jiffies + ip_rt_mtu_expires);
 	}
+	rcu_read_unlock();
 	return mtu;
 }
 

^ permalink raw reply related

* Re: [PATCH] openvswitch: using kfree_rcu() to simplify the code
From: Jesse Gross @ 2012-08-28 23:00 UTC (permalink / raw)
  To: Wei Yongjun
  Cc: dev-yBygre7rU0TnMu66kgdUjQ, netdev-u79uwXL29TY76Z2rM5mHXA,
	yongjun_wei-zrsr2BFq86L20UzCJQGyNP8+0UxHXcjY,
	davem-fT/PcQaiUtIeIZ0/mPfg9Q
In-Reply-To: <CAPgLHd_71Qh90j9FCkT2cQ35wNMkZeLDwHT2QLP55_3gfzfjTQ-JsoAwUIsXosN+BqQ9rBEUg@public.gmane.org>

On Sun, Aug 26, 2012 at 9:20 PM, Wei Yongjun <weiyj.lk-Re5JQEeQqe8AvxtiuMwx3w@public.gmane.org> wrote:
> From: Wei Yongjun <yongjun_wei-zrsr2BFq86L20UzCJQGyNP8+0UxHXcjY@public.gmane.org>
>
> The callback function of call_rcu() just calls a kfree(), so we
> can use kfree_rcu() instead of call_rcu() + callback function.
>
> spatch with a semantic match is used to found this problem.
> (http://coccinelle.lip6.fr/)
>
> Signed-off-by: Wei Yongjun <yongjun_wei-zrsr2BFq86L20UzCJQGyNP8+0UxHXcjY@public.gmane.org>

Thanks Wei.

Acked-by: Jesse Gross <jesse-l0M0P4e3n4LQT0dZR+AlfA@public.gmane.org>

^ permalink raw reply

* Re: [PATCH v3 01/17] hashtable: introduce a small and naive hashtable
From: Mathieu Desnoyers @ 2012-08-28 23:00 UTC (permalink / raw)
  To: Sasha Levin
  Cc: snitzer-H+wXaHxf7aLQT0dZR+AlfA, neilb-l3A5Bk7waGM,
	fweisbec-Re5JQEeQqe8AvxtiuMwx3w,
	Trond.Myklebust-HgOvQuBEEgTQT0dZR+AlfA,
	bfields-uC3wQj2KruNg9hUCZPvPmw,
	paul.gortmaker-CWA4WttNNZF54TAoqtyWWQ,
	dm-devel-H+wXaHxf7aLQT0dZR+AlfA, agk-H+wXaHxf7aLQT0dZR+AlfA,
	aarcange-H+wXaHxf7aLQT0dZR+AlfA, rds-devel-N0ozoZBvEnrZJqsBc5GL+g,
	eric.dumazet-Re5JQEeQqe8AvxtiuMwx3w,
	venkat.x.venkatsubra-QHcLZuEGTsvQT0dZR+AlfA,
	ccaulfie-H+wXaHxf7aLQT0dZR+AlfA, mingo-X9Un+BFzKDI,
	dev-yBygre7rU0TnMu66kgdUjQ, ericvh-Re5JQEeQqe8AvxtiuMwx3w,
	josh-iaAMLnmF4UmaiuxdJuQwMA, rostedt-nx8X9YLhiw1AfugRpC6u6w,
	lw-BthXqXjhjHXQFUHtdCDX3A, teigland-H+wXaHxf7aLQT0dZR+AlfA,
	axboe-tSWWG44O7X1aa/9Udqfwiw, linux-nfs-u79uwXL29TY76Z2rM5mHXA,
	edumazet-hpIqsD4AKlfQT0dZR+AlfA, linux-mm-Bw31MaZKKs3YtjvyW6yDsg,
	netdev-u79uwXL29TY76Z2rM5mHXA,
	linux-kernel-u79uwXL29TY76Z2rM5mHXA, ejt-H+wXaHxf7aLQT0dZR+AlfA,
	ebiederm-aS9lmoZGLiVWk0Htik3J/w, Tejun Heo,
	akpm-de/tnXTf+JLsfHDXvbKv3WD2FQJk+8+b,
	torvalds-de/tnXTf+JLsfHDXvbKv3WD2FQJk+8+b,
	davem-fT/PcQaiUtIeIZ0/mPfg9Q
In-Reply-To: <20120828115638.GC23818@Krystal>

* Mathieu Desnoyers (mathieu.desnoyers-vg+e7yoeK/dWk0Htik3J/w@public.gmane.org) wrote:
> * Sasha Levin (levinsasha928-Re5JQEeQqe8AvxtiuMwx3w@public.gmane.org) wrote:
> > On 08/28/2012 12:11 PM, Mathieu Desnoyers wrote:
> > > * Sasha Levin (levinsasha928-Re5JQEeQqe8AvxtiuMwx3w@public.gmane.org) wrote:
> > >> On 08/25/2012 06:24 AM, Mathieu Desnoyers wrote:
> > >>> * Tejun Heo (tj-DgEjT+Ai2ygdnm+yROfE0A@public.gmane.org) wrote:
> > >>>> Hello,
> > >>>>
> > >>>> On Sat, Aug 25, 2012 at 12:59:25AM +0200, Sasha Levin wrote:
> > >>>>> Thats the thing, the amount of things of things you can do with a given bucket
> > >>>>> is very limited. You can't add entries to any point besides the head (without
> > >>>>> walking the entire list).
> > >>>>
> > >>>> Kinda my point.  We already have all the hlist*() interface to deal
> > >>>> with such cases.  Having something which is evidently the trivial
> > >>>> hlist hashtable and advertises as such in the interface can be
> > >>>> helpful.  I think we need that more than we need anything fancy.
> > >>>>
> > >>>> Heh, this is a debate about which one is less insignificant.  I can
> > >>>> see your point.  I'd really like to hear what others think on this.
> > >>>>
> > >>>> Guys, do we want something which is evidently trivial hlist hashtable
> > >>>> which can use hlist_*() API directly or do we want something better
> > >>>> encapsulated?
> > >>>
> > >>> My 2 cents, FWIW: I think this specific effort should target a trivially
> > >>> understandable API and implementation, for use-cases where one would be
> > >>> tempted to reimplement his own trivial hash table anyway. So here
> > >>> exposing hlist internals, with which kernel developers are already
> > >>> familiar, seems like a good approach in my opinion, because hiding stuff
> > >>> behind new abstraction might make the target users go away.
> > >>>
> > >>> Then, as we see the need, we can eventually merge a more elaborate hash
> > >>> table with poneys and whatnot, but I would expect that the trivial hash
> > >>> table implementation would still be useful. There are of course very
> > >>> compelling reasons to use a more featureful hash table: automatic
> > >>> resize, RT-aware updates, scalable updates, etc... but I see a purpose
> > >>> for a trivial implementation. Its primary strong points being:
> > >>>
> > >>> - it's trivially understandable, so anyone how want to be really sure
> > >>>   they won't end up debugging the hash table instead of their
> > >>>   work-in-progress code can have a full understanding of it,
> > >>> - it has few dependencies, which makes it easier to understand and
> > >>>   easier to use in some contexts (e.g. early boot).
> > >>>
> > >>> So I'm in favor of not overdoing the abstraction for this trivial hash
> > >>> table, and honestly I would rather prefer that this trivial hash table
> > >>> stays trivial. A more elaborate hash table should probably come as a
> > >>> separate API.
> > >>>
> > >>> Thanks,
> > >>>
> > >>> Mathieu
> > >>>
> > >>
> > >> Alright, let's keep it simple then.
> > >>
> > >> I do want to keep the hash_for_each[rcu,safe] family though.
> > > 
> > > Just a thought: if the API offered by the simple hash table focus on
> > > providing a mechanism to find the hash bucket to which belongs the hash
> > > chain containing the key looked up, and then expects the user to use the
> > > hlist API to iterate on the chain (with or without the hlist _rcu
> > > variant), then it might seem consistent that a helper providing
> > > iteration over the entire table would actually just provide iteration on
> > > all buckets, and let the user call the hlist for each iterator for each
> > > node within the bucket, e.g.:
> > > 
> > > struct hlist_head *head;
> > > struct hlist_node *pos;
> > > 
> > > hash_for_each_bucket(ht, head) {
> > >         hlist_for_each(pos, head) {
> > >                 ...
> > >         }
> > > }
> > > 
> > > That way you only have to provide one single macro
> > > (hash_for_each_bucket), and rely on the already existing:
> > > 
> > > - hlist_for_each_entry
> > > - hlist_for_each_safe
> > > - hlist_for_each_entry_rcu
> > > - hlist_for_each_safe_rcu
> > >   .....
> > > 
> > > and various flavors that can appear in the future without duplicating
> > > this API. So you won't even have to create _rcu, _safe, nor _safe_rcu
> > > versions of the hash_for_each_bucket macro.
> > > 
> > > Thoughts ?
> > 
> > In my opinion, the downside here is that it'll require 2 function calls and 2
> > levels of nesting for a simple hash iteration.
> 
> Those are macros, not functions. No function call is required. But I see
> your point about nesting.
> 
> > 
> > hash_for_each_bucket() will always be followed by an iteration of that
> > bucket, so splitting a hash_for_each() which does both into 2
> > different functions which will almost always must be called in that
> > given order sounds unintuitive to me.
> > 
> > It's also just 3 different possible iterators:
> > 
> >  - hlist_for_each_entry
> >  - hlist_for_each_entry_safe
> >  - hlist_for_each_entry_rcu
> > 
> > So I think that it's a good price to pay - 2 extra macro definitions
> > in the header to save a macro call + nesting level in each place that
> > uses a hashtable.
> 
> I must admin I don't care that much one way or another.

Looking again at:

+#define hash_for_each_size(name, bits, bkt, node, obj, member)                 \
+       for (bkt = 0; bkt < HASH_SIZE(bits); bkt++)                             \
+               hlist_for_each_entry(obj, node, &name[bkt], member)

you will notice that a "break" or "continue" in the inner loop will not
affect the outer loop, which is certainly not what the programmer would
expect!

I advise strongly against creating such error-prone construct.

Thanks,

Mathieu



> 
> Thanks,
> 
> Mathieu
> 
> > 
> > 
> > Thanks,
> > Sasha
> > 
> > > Thanks,
> > > 
> > > Mathieu
> > > 
> > 
> 
> -- 
> Mathieu Desnoyers
> Operating System Efficiency R&D Consultant
> EfficiOS Inc.
> http://www.efficios.com

-- 
Mathieu Desnoyers
Operating System Efficiency R&D Consultant
EfficiOS Inc.
http://www.efficios.com

^ permalink raw reply

* (unknown)
From: mortgage Plan @ 2012-08-28 23:42 UTC (permalink / raw)



Do you need a Loan? Interested person(s) should email us now.

^ permalink raw reply

* Re: [PATCH] iproute2: tc.8: update UNITS section.
From: Li Wei @ 2012-08-29  0:49 UTC (permalink / raw)
  To: Ben Hutchings; +Cc: shemminger, netdev
In-Reply-To: <1346172858.15747.25.camel@deadeye.wl.decadent.org.uk>

On 08/29/2012 12:54 AM, Ben Hutchings wrote:
> On Tue, 2012-08-28 at 13:38 +0800, Li Wei wrote:
>> - rename section UNITS to PARAMETERS.
>> - break section PARAMETERS down to four subsections to cover the
>>   common used parameter types(RATES, TIMES, SIZES, VALUES).
>> - add some explaination for IEC units in RATES.
>> - point out the max value we can set for RATES, TIMES and SIZES.
>>
>> Signed-off-by: Li Wei <lw@cn.fujitsu.com>
>> ---
>>  man/man8/tc.8 |  111 +++++++++++++++++++++++++++++++++++++++++++--------------
>>  1 file changed, 85 insertions(+), 26 deletions(-)
>>
>> diff --git a/man/man8/tc.8 b/man/man8/tc.8
>> index 98fbfcd..44d644a 100644
>> --- a/man/man8/tc.8
>> +++ b/man/man8/tc.8
>> @@ -257,19 +257,20 @@ qdiscs applies.
>>  FILTERS
>>  Filters have a three part ID, which is only needed when using a hashed
>>  filter hierarchy.
>> -.SH UNITS
>> -All parameters accept a floating point number, possibly followed by a unit.
>> -.P
>> -Bandwidths or rates can be specified in:
>> -.TP
>> -bps
>> -Bytes per second
>> +
>> +.SH PARAMETERS
>> +These following parameters are widely used in TC, for other parameters,
> 
> 'These' should be 'The'.
> 'for other parameters' should begin a new sentence.
> 
>> +see the man page for individual qdiscs.
> 
> 'page' should be 'pages'.
> 
>> +
>>  .TP
>> -kbps
>> -Kilobytes per second
>> +RATES
>> +Bandwidths or rates.
>> +These parameters accept a floating point number, possibly followed by
>> +a unit(both SI and IEC units supported).
> 
> Missing space before the open-parenthesis.
> 
>> +.RS
>>  .TP
>> -mbps
>> -Megabytes per second
>> +bit or a bare number
>> +Bits per second
>>  .TP
>>  kbit
>>  Kilobits per second
>> @@ -277,27 +278,41 @@ Kilobits per second
>>  mbit
>>  Megabits per second
>>  .TP
>> -bit or a bare number
>> -Bits per second
>> -.P
>> -Amounts of data can be specified in:
>> +gbit
>> +Gegabits per second
> 
> 'Gigabits'
> 
>>  .TP
>> -kb or k
>> -Kilobytes
>> +tbit
>> +Terabits per second
>>  .TP
>> -mb or m
>> -Megabytes
>> +bps
>> +Bytes per second
>>  .TP
>> -mbit
>> -Megabits
>> +kbps
>> +Kilobytes per second
>>  .TP
>> -kbit
>> -Kilobits
>> +mbps
>> +Megabytes per second
>>  .TP
>> -b or a bare number
>> -Bytes.
>> +gbps
>> +Gigabytes per second
>> +.TP
>> +tbps
>> +Terabytes per second
>> +
>> +.P
>> +To specified in IEC units, just replace the SI prefix(k-, m-, g-, t-) with
>> +IEC prefix(ki-, mi-, gi- and ti-) respectively.
> 
> 'specified' should be 'specify'.
> The word 'just' is not needed.
> 
> Missing spaces before the open-parentheses.
> 
>> +
>>  .P
>> -Lengths of time can be specified in:
>> +TC store rates as a __u32 integer in bps internally,
>> +so we can specify a max rate of UINT32_MAX bps.
>> +.RE
>> +
>> +.TP
>> +TIMES
>> +Length of time. Can be specified as a float pointing number 
> 
> 'float pointing' should be 'floating point' :-)
> 
>> +followed by an optional unit:
>> +.RS
>>  .TP
>>  s, sec or secs
>>  Whole seconds
>> @@ -308,6 +323,50 @@ Milliseconds
>>  us, usec, usecs or a bare number
>>  Microseconds.
>>  
>> +.P
>> +TC defined it's own time unit(equals to microsecond) and store time values
> 
> 'it's' means 'it is'; here it should be 'its'.
> 'equals' should be 'equal'.
> 'store' should be 'stores'.
> 
> Missing space before the open parenthesis, again.
> 
>> +as __u32 integer, thus we can specify a max time value of UINT32_MAX usecs.
> 
> I don't think user documentation should use names like '__u32' and
> 'UINT32_MAX'.  Instead it should say '32-bit unsigned integer' and '4294
> seconds'.
> 
>> +.RE
>> +
>> +.TP
>> +SIZES
>> +Amounts of data. Can be specified as a float pointing number 
> 
> 'float pointing' should be 'floating point' again
> 
>> +followed by an optional unit:
>> +.RS
>> +.TP
>> +b or a bare number
>> +Bytes.
>> +.TP
>> +kbit
>> +Kilobites
> 
> 'kilobits'
> 
>> +.TP
>> +kb or k
>> +Kilobytes
>> +.TP
>> +mbit
>> +Megabits
>> +.TP
>> +mb or m
>> +Megabytes
>> +.TP
>> +gbit
>> +Gigabites
> 
> 'gigabits'
> 
>> +.TP
>> +gb or g
>> +Gigabytes
>> +
>> +.P
>> +TC store sizes internally as __u32 integer in byte, so we can specify
>> +a max size of UINT32_MAX bytes.
> 
> 'store' should be 'stores'.
> Same issue with the type and maximum names.
> 
>> +.RE
>> +
>> +.TP
>> +VALUES
>> +Other values without a unit.
>> +These parameters read as decimal by default, but you can
> 
> 'read' should be 'are read' or 'are interpreted'
> 
> Ben.

Sorry for my poor english, I'll modify and resend this patch.

Thanks Ben :)

> 
>> +indicate TC to read them as octal and hexadecimal by adding a '0'
>> +or '0x' prefix respectively.
>> +
>>  .SH TC COMMANDS
>>  The following commands are available for qdiscs, classes and filter:
>>  .TP
> 

^ permalink raw reply

* Re: [PATCH] userns: Add basic quota support v4
From: Dave Chinner @ 2012-08-29  2:10 UTC (permalink / raw)
  To: Eric W. Biederman
  Cc: Jan Kara, linux-kernel, netdev, linux-fsdevel, Serge E. Hallyn,
	David Miller, Steven Whitehouse, Mark Fasheh, Joel Becker,
	Ben Myers, Alex Elder, Dmitry Monakhov, Abhijith Das
In-Reply-To: <87y5ky6dff.fsf_-_@xmission.com>

On Tue, Aug 28, 2012 at 12:09:56PM -0700, Eric W. Biederman wrote:
> 
> Add the data type struct kqid which holds the kernel internal form of
> the owning identifier of a quota.  struct kqid is a replacement for
> the implicit union of uid, gid and project stored in an unsigned int
> and the quota type field that is was used in the quota data
> structures.  Making the data type explicit allows the kuid_t and
> kgid_t type safety to propogate more thoroughly through the code,
> revealing more places where uid/gid conversions need be made.
> 
> Along with the data type struct kqid comes the helper functions
> qid_eq, qid_lt, from_kqid, from_kqid_munged, qid_valid, make_kqid,

I think Jan's comment about from_kqid being named id_from_kgid is
better, though I also think it would read better as kqid_to_id().
ie:

	id = kqid_to_id(ns, qid);

> make_kqid_invalid, make_kqid_uid, make_kqid_gid.

and these named something like uid_to_kqid()

> Change struct dquot dq_id to a struct kqid and remove the now
> unecessary dq_type.
> 
> Update the signature of dqget, quota_send_warning, dquot_get_dqblk,
> and dquot_set_dqblk to use struct kqid.
> 
> Make minimal changes to ext3, ext4, gfs2, ocfs2, and xfs to deal with
> the change in quota structures and signatures.  The ocfs2 changes are
> larger than most because of the extensive tracing throughout the ocfs2
> quota code that prints out dq_id.

How did you test that this all works? e.g. run xfstests -g quota on
each of those filesystems and check for no regressions? And if you
wrote any tests, can you convert them to be part of xfstests so that
namespace aware quotas get tested regularly?

> 
> v4:
>   - Rename struct qown struct kqid and associated changes
>     to the naming of the helper functions.
>   - Use qid_t to hold the userspace identifier representation
>     of quota identifiers in all new code.
> v3:
>   - Add missing negation on qown_valid
> v2:
>   - Renamed qown_t struct qown
>   - Added the quota type to struct qown.
>   - Removed enum quota_type (In this patch it was just noise)
>   - Added qown_lt, make_qown_invalid, make_qown_uid, make_qown_gid
>   - Taught qown to handle xfs project ids (but only in init_user_ns).
>     Q_XGETQUOTA calls .get_quotblk with project ids.

Q_XSETQLIM was modified to handle project quotas as well, I assume?

> index fed504f..96944c0 100644
> --- a/fs/xfs/xfs_quotaops.c
> +++ b/fs/xfs/xfs_quotaops.c
> @@ -97,28 +97,29 @@ xfs_fs_set_xstate(
>  STATIC int
>  xfs_fs_get_dqblk(
>  	struct super_block	*sb,
> -	int			type,
> -	qid_t			id,
> +	struct kqid		qid,
>  	struct fs_disk_quota	*fdq)
>  {
>  	struct xfs_mount	*mp = XFS_M(sb);
> +	xfs_dqid_t		xfs_id;
>  
>  	if (!XFS_IS_QUOTA_RUNNING(mp))
>  		return -ENOSYS;
>  	if (!XFS_IS_QUOTA_ON(mp))
>  		return -ESRCH;
>  
> -	return -xfs_qm_scall_getquota(mp, id, xfs_quota_type(type), fdq);
> +	xfs_id = from_kqid(&init_user_ns, qid);
> +	return -xfs_qm_scall_getquota(mp, xfs_id, xfs_quota_type(qid.type), fdq);
>  }

Why a temporary variable? Why not just:

	return -xfs_qm_scall_getquota(mp, from_kqid(&init_user_ns, qid),
				      xfs_quota_type(qid.type), fdq);

Indeed, why not drive the struct kqid down another level into
xfs_qm_scall_getquota() where all they are used for is parameters to
the xfs_qm_dqget() function?

>  
>  STATIC int
>  xfs_fs_set_dqblk(
>  	struct super_block	*sb,
> -	int			type,
> -	qid_t			id,
> +	struct kqid		qid,
>  	struct fs_disk_quota	*fdq)
>  {
>  	struct xfs_mount	*mp = XFS_M(sb);
> +	xfs_dqid_t		xfs_id;
>  
>  	if (sb->s_flags & MS_RDONLY)
>  		return -EROFS;
> @@ -127,7 +128,8 @@ xfs_fs_set_dqblk(
>  	if (!XFS_IS_QUOTA_ON(mp))
>  		return -ESRCH;
>  
> -	return -xfs_qm_scall_setqlim(mp, id, xfs_quota_type(type), fdq);
> +	xfs_id = from_kqid(&init_user_ns, qid);
> +	return -xfs_qm_scall_setqlim(mp, xfs_id, xfs_quota_type(qid.type), fdq);
>  }

Same is true here....

>  
>  const struct quotactl_ops xfs_quotactl_operations = {
> diff --git a/fs/xfs/xfs_trans_dquot.c b/fs/xfs/xfs_trans_dquot.c
> index bcb6054..46de393 100644
> --- a/fs/xfs/xfs_trans_dquot.c
> +++ b/fs/xfs/xfs_trans_dquot.c
> @@ -575,12 +575,14 @@ xfs_quota_warn(
>  	struct xfs_dquot	*dqp,
>  	int			type)
>  {
> +	int qtype;
> +	struct kqid qid;
>  	/* no warnings for project quotas - we just return ENOSPC later */
>  	if (dqp->dq_flags & XFS_DQ_PROJ)
>  		return;
> -	quota_send_warning((dqp->dq_flags & XFS_DQ_USER) ? USRQUOTA : GRPQUOTA,
> -			   be32_to_cpu(dqp->q_core.d_id), mp->m_super->s_dev,
> -			   type);
> +	qtype = (dqp->dq_flags & XFS_DQ_USER) ? USRQUOTA : GRPQUOTA;
> +	qid = make_kqid(&init_user_ns, qtype, be32_to_cpu(dqp->q_core.d_id));
> +	quota_send_warning(qid, mp->m_super->s_dev, type);
>  }
>  
>  /*
> diff --git a/include/linux/quota.h b/include/linux/quota.h
> index 524ede8..0e73250 100644
> --- a/include/linux/quota.h
> +++ b/include/linux/quota.h
> @@ -181,10 +181,161 @@ enum {
>  #include <linux/dqblk_v2.h>
>  
>  #include <linux/atomic.h>
> +#include <linux/uidgid.h>
>  
>  typedef __kernel_uid32_t qid_t; /* Type in which we store ids in memory */
>  typedef long long qsize_t;	/* Type in which we store sizes */

>From fs/xfs/xfs_types.h:

typedef __uint32_t              prid_t;         /* project ID */

Perhaps it would be better to have an official kprid_t definition
here, i.e:

>  
> +struct kqid {			/* Type in which we store the quota identifier */
> +	union {
> +		kuid_t uid;
> +		kgid_t gid;
> +		qid_t prj;

		kprid_t prid;

> +	};
> +	int type; /* USRQUOTA (uid) or GRPQUOTA (gid) or XQM_PRJQUOTA (prj) */
> +};
> +
> +static inline bool qid_eq(struct kqid left, struct kqid right)
> +{
> +	if (left.type != right.type)
> +		return false;
> +	switch(left.type) {
> +	case USRQUOTA:
> +		return uid_eq(left.uid, right.uid);
> +	case GRPQUOTA:
> +		return gid_eq(left.gid, right.gid);
> +	case XQM_PRJQUOTA:
> +		return left.prj == right.prj;
> +	default:
> +		BUG();

BUG()? Seriously? The most this justifies is a WARN_ON_ONCE() to
indicate a potential programming error, not bringing down the entire
machine.

> +	}
> +}
> +
> +static inline bool qid_lt(struct kqid left, struct kqid right)
> +{
> +	if (left.type < right.type)
> +		return true;
> +	if (left.type > right.type)
> +		return false;
> +	switch (left.type) {
> +	case USRQUOTA:
> +		return uid_lt(left.uid, right.uid);
> +	case GRPQUOTA:
> +		return gid_lt(left.gid, right.gid);
> +	case XQM_PRJQUOTA:
> +		return left.prj < right.prj;
> +	default:
> +		BUG();
> +	}
> +}

What is this function used for? it's not referenced at all by the
patch, and there's no documentation/comments explaining why it
exists or how it is intended to be used....

> +static inline qid_t from_kqid(struct user_namespace *user_ns, struct kqid qid)
> +{
> +	switch (qid.type) {
> +	case USRQUOTA:
> +		return from_kuid(user_ns, qid.uid);
> +	case GRPQUOTA:
> +		return from_kgid(user_ns, qid.gid);
> +	case XQM_PRJQUOTA:
> +		return (user_ns == &init_user_ns) ? qid.prj : -1;
> +	default:
> +		BUG();
> +	}
> +}

Oh, this can return an error. That's only checked in a coupl eof
places this function is called. it needs tobe checked everywhere,
otherwise we now have the possibility of quota usage being accounted
to uid/gid/prid 0xffffffff when namespace matches are not found.

> +static inline qid_t from_kqid_munged(struct user_namespace *user_ns,
> +				   struct kqid qid)

What does munging do to the return value? how is it different to
from_kqid()? Document your API....


> +static inline struct kqid make_kqid(struct user_namespace *user_ns,
> +				    int type, qid_t qid)
> +{
> +	struct kqid kqid;
> +
> +	kqid.type = type;
> +	switch (type) {
> +	case USRQUOTA:
> +		kqid.uid = make_kuid(user_ns, qid);
> +		break;
> +	case GRPQUOTA:
> +		kqid.gid = make_kgid(user_ns, qid);
> +		break;
> +	case XQM_PRJQUOTA:
> +		if (user_ns == &init_user_ns)
> +			kqid.prj = qid;
> +		else
> +			kqid.prj = -1;
> +		break;

		kqid.prj = (user_ns == &init_user_ns) ? qid : -1;

> +	default:
> +		BUG();
> +	}
> +	return kqid;
> +}
> +
> +static inline struct kqid make_kqid_invalid(int type)
> +{
> +	struct kqid kqid;
> +
> +	kqid.type = type;
> +	switch (type) {
> +	case USRQUOTA:
> +		kqid.uid = INVALID_UID;
> +		break;
> +	case GRPQUOTA:
> +		kqid.gid = INVALID_GID;
> +		break;
> +	case XQM_PRJQUOTA:
> +		kqid.prj = -1;
> +		break;
> +	default:
> +		BUG();
> +	}
> +	return kqid;
> +}
> +
> +static inline struct kqid make_kqid_uid(kuid_t uid)
> +{
> +	struct kqid kqid = {
> +		.type = USRQUOTA,
> +		.uid  = uid,
> +	};
> +	return kqid;
> +}

Isn't this sort of construct frowned upon? i.e. returning a
structure out of scope? It may be inline code and hence work, but
this strikes me as a landmine waiting for someone to tread on....

Cheers,

Dave.
-- 
Dave Chinner
david@fromorbit.com

^ permalink raw reply

* Re: [PATCH] skbuff: remove pointless conditional before kfree_skb()
From: Eric Dumazet @ 2012-08-29  3:38 UTC (permalink / raw)
  To: Flavio Leitner; +Cc: Wei Yongjun, davem, yongjun_wei, netdev
In-Reply-To: <20120828173929.7b371079@obelix.rh>

On Tue, 2012-08-28 at 17:39 -0300, Flavio Leitner wrote:

> Ok, and what if kfree_skb() becomes a macro that first checks
> if the skb is NULL and if not, call the _kfree_skb() to
> continue as before?
> 
> #define kfree_skb(skb)		\
>         if (skb)		\
> 		_kfree_skb(skb)	\

Then its adding a conditional test on each call site and increase
kernel code size.

So if you plan submitting such patch, please keep the whole thing out of
line.

^ permalink raw reply

* Re: [PATCH 1/1] tcp: Wrong timeout for SYN segments
From: H.K. Jerry Chu @ 2012-08-29  4:34 UTC (permalink / raw)
  To: Alexander Bergmann; +Cc: David Miller, eric.dumazet, netdev, linux-kernel
In-Reply-To: <20120825084819.GD430@linlab.net>

On Sat, Aug 25, 2012 at 1:48 AM, Alexander Bergmann <alex@linlab.net> wrote:
> On Fri, Aug 24, 2012 at 01:42:31PM -0400, David Miller wrote:
>> Alex, this patch doesn't apply, it was completely corrupted by your email
>> client.
>>
>> Make a fresh submission, with this fixed.  But before you do, email the
>> patch to yourself and make sure you can actually apply the patch you
>> receive in your inbox.  Because that's exactly what I'm going to have
>> to do.
>
> Sorry I messed it up the last time. This time I've double checked as
> you suggested. I'll keep that in mind.
>
> From 11a292b1cff772f930a02fda02d5b741f8ea5033 Mon Sep 17 00:00:00 2001
> From: Alexander Bergmann <alex@linlab.net>
> Date: Fri, 24 Aug 2012 14:09:49 +0200
> Subject: [PATCH 1/1] tcp: Increase timeout for SYN segments
>
> Commit 9ad7c049 changed the initRTO from 3secs to 1sec in accordance to
> RFC6298 (former RFC2988bis). This reduced the time till the last SYN
> retransmission packet gets sent from 93secs to 31secs.
>
> RFC1122 is stating that the retransmission should be done for at least 3
> minutes, but this seems to be quite high.
>
>   "However, the values of R1 and R2 may be different for SYN
>   and data segments.  In particular, R2 for a SYN segment MUST
>   be set large enough to provide retransmission of the segment
>   for at least 3 minutes.  The application can close the
>   connection (i.e., give up on the open attempt) sooner, of
>   course."
>
> This patch increases the value of TCP_SYN_RETRIES to the value of 6,
> providing a retransmission window of 63secs.
>
> The comments for SYN and SYNACK retries have also been updated to
> describe the current settings.
>
> Signed-off-by: Alexander Bergmann <alex@linlab.net>
> ---
>  include/net/tcp.h |   18 ++++++++++++++----
>  1 files changed, 14 insertions(+), 4 deletions(-)
>
> diff --git a/include/net/tcp.h b/include/net/tcp.h
> index 1f000ff..d43d6b3 100644
> --- a/include/net/tcp.h
> +++ b/include/net/tcp.h
> @@ -98,11 +98,21 @@ extern void tcp_time_wait(struct sock *sk, int state, int timeo);
>                                  * 15 is ~13-30min depending on RTO.
>                                  */
>
> -#define TCP_SYN_RETRIES         5      /* number of times to retry active opening a
> -                                * connection: ~180sec is RFC minimum   */
> +#define TCP_SYN_RETRIES         6      /*
> +                                * This is how many retries it does to active
> +                                * opening a connection.
> +                                * RFC1122 says the minimum retry MUST be at
> +                                * least 180secs. Nevertheless this value is
> +                                * corresponding to 63secs of retransmission
> +                                * with the current initial RTO.
> +                                */
>
> -#define TCP_SYNACK_RETRIES 5   /* number of times to retry passive opening a
> -                                * connection: ~180sec is RFC minimum   */
> +#define TCP_SYNACK_RETRIES 5   /*
> +                                * This is how may retries it does to passive
> +                                * opening a connection.
> +                                * This is corresponding to 31secs of
> +                                * retransmission with the current initial RTO.

IMHO 31secs seem a little short. Why not change it to 6 as well because 63
secs still beats 93secs with 3sec initRTO and 5 retries.

Jerry

> +                                */
>
>  #define TCP_TIMEWAIT_LEN (60*HZ) /* how long to wait to destroy TIME-WAIT
>                                   * state, about 60 seconds     */
> --
> 1.7.8.6
>

^ permalink raw reply

* [PATCH v2] iproute2: tc.8: update UNITS section.
From: Li Wei @ 2012-08-29  6:41 UTC (permalink / raw)
  To: shemminger; +Cc: bhutchings, netdev, Li Wei
In-Reply-To: <1346132337-21325-1-git-send-email-lw@cn.fujitsu.com>

- rename section UNITS to PARAMETERS.
- break section PARAMETERS down to four subsections to cover the
  common used parameter types(RATES, TIMES, SIZES, VALUES).
- add some explaination for IEC units in RATES.
- point out the max value we can set for RATES, TIMES and SIZES.

Signed-off-by: Li Wei <lw@cn.fujitsu.com>
---
Changes from v1:
- fix some syntax and spelling errors. Thanks Ben!

 man/man8/tc.8 |  112 +++++++++++++++++++++++++++++++++++++++++++--------------
 1 file changed, 86 insertions(+), 26 deletions(-)

diff --git a/man/man8/tc.8 b/man/man8/tc.8
index 98fbfcd..f81d46f 100644
--- a/man/man8/tc.8
+++ b/man/man8/tc.8
@@ -257,19 +257,20 @@ qdiscs applies.
 FILTERS
 Filters have a three part ID, which is only needed when using a hashed
 filter hierarchy.
-.SH UNITS
-All parameters accept a floating point number, possibly followed by a unit.
-.P
-Bandwidths or rates can be specified in:
-.TP
-bps
-Bytes per second
+
+.SH PARAMETERS
+The following parameters are widely used in TC. For other parameters,
+see the man pages for individual qdiscs.
+
 .TP
-kbps
-Kilobytes per second
+RATES
+Bandwidths or rates.
+These parameters accept a floating point number, possibly followed by
+a unit (both SI and IEC units supported).
+.RS
 .TP
-mbps
-Megabytes per second
+bit or a bare number
+Bits per second
 .TP
 kbit
 Kilobits per second
@@ -277,27 +278,41 @@ Kilobits per second
 mbit
 Megabits per second
 .TP
-bit or a bare number
-Bits per second
-.P
-Amounts of data can be specified in:
+gbit
+Gigabits per second
 .TP
-kb or k
-Kilobytes
+tbit
+Terabits per second
 .TP
-mb or m
-Megabytes
+bps
+Bytes per second
 .TP
-mbit
-Megabits
+kbps
+Kilobytes per second
 .TP
-kbit
-Kilobits
+mbps
+Megabytes per second
 .TP
-b or a bare number
-Bytes.
+gbps
+Gigabytes per second
+.TP
+tbps
+Terabytes per second
+
+.P
+To specify in IEC units, replace the SI prefix (k-, m-, g-, t-) with
+IEC prefix (ki-, mi-, gi- and ti-) respectively.
+
 .P
-Lengths of time can be specified in:
+TC store rates as a 32-bit unsigned integer in bps internally,
+so we can specify a max rate of 4294967295 bps.
+.RE
+
+.TP
+TIMES
+Length of time. Can be specified as a floating point number 
+followed by an optional unit:
+.RS
 .TP
 s, sec or secs
 Whole seconds
@@ -308,6 +323,51 @@ Milliseconds
 us, usec, usecs or a bare number
 Microseconds.
 
+.P
+TC defined its own time unit (equal to microsecond) and stores
+time values as 32-bit unsigned integer, thus we can specify a max time value
+of 4294967295 usecs.
+.RE
+
+.TP
+SIZES
+Amounts of data. Can be specified as a floating point number 
+followed by an optional unit:
+.RS
+.TP
+b or a bare number
+Bytes.
+.TP
+kbit
+Kilobits
+.TP
+kb or k
+Kilobytes
+.TP
+mbit
+Megabits
+.TP
+mb or m
+Megabytes
+.TP
+gbit
+Gigabits
+.TP
+gb or g
+Gigabytes
+
+.P
+TC stores sizes internally as 32-bit unsigned integer in byte,
+so we can specify a max size of 4294967295 bytes.
+.RE
+
+.TP
+VALUES
+Other values without a unit.
+These parameters are interpreted as decimal by default, but you can
+indicate TC to interpret them as octal and hexadecimal by adding a '0'
+or '0x' prefix respectively.
+
 .SH TC COMMANDS
 The following commands are available for qdiscs, classes and filter:
 .TP
-- 
1.7.10.1

^ permalink raw reply related

* [net-next PATCH 1/5] be2net: create RSS rings even in multi-channel configs
From: Sathya Perla @ 2012-08-29  6:37 UTC (permalink / raw)
  To: netdev; +Cc: Sathya Perla
In-Reply-To: <1346222264-20819-1-git-send-email-sathya.perla@emulex.com>

Changes from commit df505e were incorrectly over-written by commit 10ef9ab.
Fixing the same.

Change log of the original fix:
    Currently RSS rings are not created in a multi-channel config.
    RSS rings can be created on one (out of four) interfaces per port in a
    multi-channel config. Doing this insulates the driver from a FW bug wherin
    multi-channel config is wrongly reported even when not enabled. This also
    helps performance in a multi-channel config, as one interface per port gets
    RSS rings.

Signed-off-by: Sathya Perla <sathya.perla@emulex.com>
---
 drivers/net/ethernet/emulex/benet/be_main.c |    3 +--
 1 files changed, 1 insertions(+), 2 deletions(-)

diff --git a/drivers/net/ethernet/emulex/benet/be_main.c b/drivers/net/ethernet/emulex/benet/be_main.c
index 90a903d8..d86d25c 100644
--- a/drivers/net/ethernet/emulex/benet/be_main.c
+++ b/drivers/net/ethernet/emulex/benet/be_main.c
@@ -2176,8 +2176,7 @@ static uint be_num_rss_want(struct be_adapter *adapter)
 {
 	u32 num = 0;
 	if ((adapter->function_caps & BE_FUNCTION_CAPS_RSS) &&
-	     !sriov_want(adapter) && be_physfn(adapter) &&
-	     !be_is_mc(adapter)) {
+	     !sriov_want(adapter) && be_physfn(adapter)) {
 		num = (adapter->be3_native) ? BE3_MAX_RSS_QS : BE2_MAX_RSS_QS;
 		num = min_t(u32, num, (u32)netif_get_num_default_rss_queues());
 	}
-- 
1.7.4

^ permalink raw reply related

* [net-next PATCH 0/5] be2net fixes
From: Sathya Perla @ 2012-08-29  6:37 UTC (permalink / raw)
  To: netdev; +Cc: Sathya Perla

Pls apply.

Sathya Perla (2):
  be2net: create RSS rings even in multi-channel configs
  be2net: fixup malloc/free of adapter->pmac_id

Vasundhara Volam (3):
  be2net: fix max VFs reported by HW
  be2net: fix FW default for VF tx-rate
  be2net: modify log msg for lack of privilege error

 drivers/net/ethernet/emulex/benet/be.h      |    1 +
 drivers/net/ethernet/emulex/benet/be_cmds.c |    2 +-
 drivers/net/ethernet/emulex/benet/be_main.c |   22 ++++++++++++----------
 3 files changed, 14 insertions(+), 11 deletions(-)

-- 
1.7.4

^ permalink raw reply

* [net-next PATCH 2/5] be2net: fix max VFs reported by HW
From: Sathya Perla @ 2012-08-29  6:37 UTC (permalink / raw)
  To: netdev; +Cc: Vasundhara Volam, Sathya Perla
In-Reply-To: <1346222264-20819-1-git-send-email-sathya.perla@emulex.com>

From: Vasundhara Volam <vasundhara.volam@emulex.com>

BE3 FW allocates VF resources for upto 30 VFs per PF while a max value of 32
may be reported via PCI config space. Fix this in the driver.

Signed-off-by: Vasundhara Volam <vasundhara.volam@emulex.com>
Signed-off-by: Sathya Perla <sathya.perla@emulex.com>
---
 drivers/net/ethernet/emulex/benet/be.h      |    1 +
 drivers/net/ethernet/emulex/benet/be_main.c |    2 ++
 2 files changed, 3 insertions(+), 0 deletions(-)

diff --git a/drivers/net/ethernet/emulex/benet/be.h b/drivers/net/ethernet/emulex/benet/be.h
index d266c86..5b622993 100644
--- a/drivers/net/ethernet/emulex/benet/be.h
+++ b/drivers/net/ethernet/emulex/benet/be.h
@@ -110,6 +110,7 @@ static inline char *nic_name(struct pci_dev *pdev)
 #define MAX_RX_POST		BE_NAPI_WEIGHT /* Frags posted at a time */
 #define RX_FRAGS_REFILL_WM	(RX_Q_LEN - MAX_RX_POST)
 
+#define MAX_VFS			30 /* Max VFs supported by BE3 FW */
 #define FW_VER_LEN		32
 
 struct be_dma_mem {
diff --git a/drivers/net/ethernet/emulex/benet/be_main.c b/drivers/net/ethernet/emulex/benet/be_main.c
index d86d25c..def2f66 100644
--- a/drivers/net/ethernet/emulex/benet/be_main.c
+++ b/drivers/net/ethernet/emulex/benet/be_main.c
@@ -2723,6 +2723,8 @@ static int be_get_config(struct be_adapter *adapter)
 	if (pos) {
 		pci_read_config_word(adapter->pdev, pos + PCI_SRIOV_TOTAL_VF,
 				     &dev_num_vfs);
+		if (!lancer_chip(adapter))
+			dev_num_vfs = min_t(u16, dev_num_vfs, MAX_VFS);
 		adapter->dev_num_vfs = dev_num_vfs;
 	}
 	return 0;
-- 
1.7.4

^ permalink raw reply related

* [net-next PATCH 3/5] be2net: fix FW default for VF tx-rate
From: Sathya Perla @ 2012-08-29  6:37 UTC (permalink / raw)
  To: netdev; +Cc: Vasundhara Volam, Sathya Perla
In-Reply-To: <1346222264-20819-1-git-send-email-sathya.perla@emulex.com>

From: Vasundhara Volam <vasundhara.volam@emulex.com>

BE3 FW initializes VF tx-rate to 100Mbps. Fix this to 10Gbps.

Signed-off-by: Vasundhara Volam <vasundhara.volam@emulex.com>
Signed-off-by: Sathya Perla <sathya.perla@emulex.com>
---
 drivers/net/ethernet/emulex/benet/be_main.c |    4 ++--
 1 files changed, 2 insertions(+), 2 deletions(-)

diff --git a/drivers/net/ethernet/emulex/benet/be_main.c b/drivers/net/ethernet/emulex/benet/be_main.c
index def2f66..1494f2fc 100644
--- a/drivers/net/ethernet/emulex/benet/be_main.c
+++ b/drivers/net/ethernet/emulex/benet/be_main.c
@@ -2645,8 +2645,8 @@ static int be_vf_setup(struct be_adapter *adapter)
 	}
 
 	for_all_vfs(adapter, vf_cfg, vf) {
-		status = be_cmd_link_status_query(adapter, NULL, &lnk_speed,
-						  NULL, vf + 1);
+		lnk_speed = 1000;
+		status = be_cmd_set_qos(adapter, lnk_speed, vf + 1);
 		if (status)
 			goto err;
 		vf_cfg->tx_rate = lnk_speed * 10;
-- 
1.7.4

^ permalink raw reply related

* [net-next PATCH 4/5] be2net: fixup malloc/free of adapter->pmac_id
From: Sathya Perla @ 2012-08-29  6:37 UTC (permalink / raw)
  To: netdev; +Cc: Sathya Perla
In-Reply-To: <1346222264-20819-1-git-send-email-sathya.perla@emulex.com>

Free was missing and kcalloc() is better placed in be_ctrl_init()

Signed-off-by: Sathya Perla <sathya.perla@emulex.com>
---
 drivers/net/ethernet/emulex/benet/be_main.c |   13 +++++++------
 1 files changed, 7 insertions(+), 6 deletions(-)

diff --git a/drivers/net/ethernet/emulex/benet/be_main.c b/drivers/net/ethernet/emulex/benet/be_main.c
index 1494f2fc..6d139d6 100644
--- a/drivers/net/ethernet/emulex/benet/be_main.c
+++ b/drivers/net/ethernet/emulex/benet/be_main.c
@@ -3438,6 +3438,7 @@ static void be_ctrl_cleanup(struct be_adapter *adapter)
 	if (mem->va)
 		dma_free_coherent(&adapter->pdev->dev, mem->size, mem->va,
 				  mem->dma);
+	kfree(adapter->pmac_id);
 }
 
 static int be_ctrl_init(struct be_adapter *adapter)
@@ -3474,6 +3475,12 @@ static int be_ctrl_init(struct be_adapter *adapter)
 	}
 	memset(rx_filter->va, 0, rx_filter->size);
 
+	/* primary mac needs 1 pmac entry */
+	adapter->pmac_id = kcalloc(adapter->max_pmac_cnt + 1,
+				   sizeof(*adapter->pmac_id), GFP_KERNEL);
+	if (!adapter->pmac_id)
+		return -ENOMEM;
+
 	mutex_init(&adapter->mbox_lock);
 	spin_lock_init(&adapter->mcc_lock);
 	spin_lock_init(&adapter->mcc_cq_lock);
@@ -3610,12 +3617,6 @@ static int be_get_initial_config(struct be_adapter *adapter)
 	else
 		adapter->max_pmac_cnt = BE_VF_UC_PMAC_COUNT;
 
-	/* primary mac needs 1 pmac entry */
-	adapter->pmac_id = kcalloc(adapter->max_pmac_cnt + 1,
-				  sizeof(u32), GFP_KERNEL);
-	if (!adapter->pmac_id)
-		return -ENOMEM;
-
 	status = be_cmd_get_cntl_attributes(adapter);
 	if (status)
 		return status;
-- 
1.7.4

^ permalink raw reply related

* [net-next PATCH 5/5] be2net: modify log msg for lack of privilege error
From: Sathya Perla @ 2012-08-29  6:37 UTC (permalink / raw)
  To: netdev; +Cc: Vasundhara Volam, Sathya Perla
In-Reply-To: <1346222264-20819-1-git-send-email-sathya.perla@emulex.com>

From: Vasundhara Volam <vasundhara.volam@emulex.com>

Signed-off-by: Vasundhara Volam <vasundhara.volam@emulex.com>
Signed-off-by: Sathya Perla <sathya.perla@emulex.com>
---
 drivers/net/ethernet/emulex/benet/be_cmds.c |    2 +-
 1 files changed, 1 insertions(+), 1 deletions(-)

diff --git a/drivers/net/ethernet/emulex/benet/be_cmds.c b/drivers/net/ethernet/emulex/benet/be_cmds.c
index 7fac97b..fc68ca0 100644
--- a/drivers/net/ethernet/emulex/benet/be_cmds.c
+++ b/drivers/net/ethernet/emulex/benet/be_cmds.c
@@ -120,7 +120,7 @@ static int be_mcc_compl_process(struct be_adapter *adapter,
 
 		if (compl_status == MCC_STATUS_UNAUTHORIZED_REQUEST) {
 			dev_warn(&adapter->pdev->dev,
-				 "opcode %d-%d is not permitted\n",
+				 "VF is not privileged to issue opcode %d-%d\n",
 				 opcode, subsystem);
 		} else {
 			extd_status = (compl->status >> CQE_STATUS_EXTD_SHIFT) &
-- 
1.7.4

^ permalink raw reply related

* Re: [PATCH V2 2/2] ipvs: Extend MTU check to account for IPv6 NAT defrag changes
From: Jesper Dangaard Brouer @ 2012-08-29  7:02 UTC (permalink / raw)
  To: Eric Dumazet
  Cc: netdev, Patrick McHardy, lvs-devel, Julian Anastasov,
	Simon Horman, Pablo Neira Ayuso, Hans Schillstrom, Wensong Zhang,
	netfilter-devel
In-Reply-To: <1346165359.3571.9.camel@edumazet-glaptop>

On Tue, 2012-08-28 at 07:49 -0700, Eric Dumazet wrote:
> On Tue, 2012-08-28 at 16:23 +0200, Jesper Dangaard Brouer wrote:
> > This patch is necessary, to make IPVS work, after Patrick McHardys
> > IPv6 NAT defragmentation changes.
> > 
> > Signed-off-by: Jesper Dangaard Brouer <brouer@redhat.com>
> > ---
> > In V2: the tunnel mode is no longer a special case.
> > 
> >  net/netfilter/ipvs/ip_vs_xmit.c |    9 ++++++++-
> >  1 files changed, 8 insertions(+), 1 deletions(-)
> > 
> > diff --git a/net/netfilter/ipvs/ip_vs_xmit.c b/net/netfilter/ipvs/ip_vs_xmit.c
> > index 67a3978..56f6d5d 100644
> > --- a/net/netfilter/ipvs/ip_vs_xmit.c
> > +++ b/net/netfilter/ipvs/ip_vs_xmit.c
> > @@ -88,7 +88,14 @@ __ip_vs_dst_check(struct ip_vs_dest *dest, u32 rtos)
> >  static inline bool
> >  __mtu_check_toobig_v6(const struct sk_buff *skb, u32 mtu)
> >  {
> > -	if (skb->len > mtu && !skb_is_gso(skb)) {
> > +	if (IP6CB(skb)->frag_max_size) {
> > +		/* frag_max_size tell us that, this packet have been
> > +		 * defragmented by netfilter IPv6 conntrack module.
> > +		 */
> > +		if (IP6CB(skb)->frag_max_size > mtu)
> > +			return true; /* largest fragment violate MTU */
Implicit:         else
     			return false

(if it makes it more clear, not sure)
> > +	}
> > +	else if (skb->len > mtu && !skb_is_gso(skb)) {
> >  		return true; /* Packet size violate MTU size */
> >  	}
> 
> Couldnt you use a single test ?
> 
> if (IP6CB(skb)->frag_max_size > mtu)
> 	return true;
> 
> if (skb->len > mtu && !skb_is_gso(skb))
> 	return true;
> 

Nope, this will not work.

If (IP6CB(skb)->frag_max_size > 0) then we have a defragmented packet,
this means that skb->len cannot be used for MTU checking, because
skb->len is now the total length of all the fragments (which your
solution will fall-through to)

The unreadable version of the function is:

static inline bool
__mtu_check_toobig_v6_unreadable(const struct sk_buff *skb, u32 mtu)
{
       return !!((!IP6CB(skb)->frag_max_size &&
                  (skb->len > mtu && !skb_is_gso(skb)))
                 || IP6CB(skb)->frag_max_size > mtu);
}

Perhaps you like this version better (you seem to use constructions like
this), but I really dislike it, because I (personally) find it
harder/slower to read this kind of code, and I also believe its more
error prone when someone needs to extend this.

-- 
Best regards,
  Jesper Dangaard Brouer
  MSc.CS, Sr. Network Kernel Developer at Red Hat
  Author of http://www.iptv-analyzer.org
  LinkedIn: http://www.linkedin.com/in/brouer



^ permalink raw reply

* Re: [Qemu-devel] macvlan/macvtap: guest/host cannot communicate when network cable is unplugged
From: Stefan Hajnoczi @ 2012-08-29  7:03 UTC (permalink / raw)
  To: ching; +Cc: qemu-devel, kaber, Michael S. Tsirkin, netdev
In-Reply-To: <503D486B.1030208@gmail.com>

On Tue, Aug 28, 2012 at 11:38 PM, ching <lsching17@gmail.com> wrote:
> Hi all,
>
> I try to setup guest network with macvlan, as guest cannot communicate with host directly, i try to workaround by configuring host to using a macvlan interface
>
> host: Gentoo x64, kernel 3.5.2, qemu-kvm 1.1.1-r1, libvirt 0.9.13
> guest: Ubuntu 12.04, kernel 3.4.9, virtio-net
>
> The host is using macvlan (interface name: znet0, ip: 192.168.1.2, bridge mode)
>
> The guest is using macvtap managed by libvirt (interface name: macvtap0, ip: 192.168.1.184, bridge mode, with vhost)
>
>
> I am facing a strange problem that the guest/host can communicate only when the network cable of the ethernet adapter is connected.
>
>
>
>
> The network config of the host
>
>     $ifconfig
>
>     eth0      Link encap:Ethernet  HWaddr f4:6d:xx:xx:xx:xx
>               inet6 addr: fe80::xx:xx:xx:xx/64 Scope:Link
>               UP BROADCAST RUNNING MULTICAST  MTU:1500  Metric:1
>               RX packets:86507 errors:0 dropped:0 overruns:0 frame:0
>               TX packets:55940 errors:0 dropped:0 overruns:0 carrier:0
>               collisions:0 txqueuelen:1000
>               RX bytes:126005746 (120.1 MiB)  TX bytes:4394225 (4.1 MiB)
>
>     macvtap0  Link encap:Ethernet  HWaddr 52:54:xx:xx:xx:xx
>               inet6 addr: fe80::xx:xx:xx:xx/64 Scope:Link
>               UP BROADCAST RUNNING MULTICAST  MTU:1500  Metric:1
>               RX packets:70 errors:0 dropped:0 overruns:0 frame:0
>               TX packets:84 errors:0 dropped:0 overruns:0 carrier:0
>               collisions:0 txqueuelen:500
>               RX bytes:9036 (8.8 KiB)  TX bytes:14734 (14.3 KiB)
>
>     znet0     Link encap:Ethernet  HWaddr 00:60:xx:xx:xx:xx
>               inet addr:192.168.1.2  Bcast:192.168.1.255  Mask:255.255.255.0
>               inet6 addr: 2002:xx:xx:xx:xx/64 Scope:Global
>               inet6 addr: fe80:xx:xx:xx:xx/64 Scope:Link
>               UP BROADCAST RUNNING MULTICAST  MTU:1500  Metric:1
>               RX packets:4463190 errors:0 dropped:0 overruns:0 frame:0
>               TX packets:12527522 errors:0 dropped:0 overruns:0 carrier:0
>               collisions:0 txqueuelen:0
>               RX bytes:3959213697 (3.6 GiB)  TX bytes:18590336476 (17.3 GiB)
>
> $ip -d link show
>
>     10: znet0@eth0: <BROADCAST,MULTICAST,UP,LOWER_UP> mtu 1500 qdisc noqueue state UP mode DEFAULT
>         link/ether 00:60:xx:xx:xx:xx brd ff:ff:ff:ff:ff:ff
>         macvlan  mode bridge
>     17: macvtap0@eth0: <BROADCAST,MULTICAST,UP,LOWER_UP> mtu 1500 qdisc pfifo_fast state UNKNOWN mode DEFAULT qlen 500
>         link/ether 52:54:xx:xx:xx:xx brd ff:ff:ff:ff:ff:ff
>         macvtap  mode bridge
>
> libvirt config of the guest network
>
>     <interface type='direct'>
>       <mac address='52:54:xx:xx:xx:xx'/>
>       <source dev='eth0' mode='bridge'/>
>       <model type='virtio'/>
>       <address type='pci' domain='0x0000' bus='0x00' slot='0x08' function='0x0'/>
>     </interface>
>
> The network config of the guest
>
> eth0      Link encap:Ethernet  HWaddr 52:54:xx:xx:xx:xx
>           inet addr:192.168.1.184  Bcast:192.168.1.255  Mask:255.255.255.0
>           inet6 addr: 2002:xx:xx:xx:xxx/64 Scope:Global
>           inet6 addr: 2002:xx:xx:xx:xx/64 Scope:Global
>           inet6 addr: fe80:xx:xx:xx:xx/64 Scope:Link
>           UP BROADCAST RUNNING MULTICAST  MTU:1500  Metric:1
>           RX packets:25 errors:0 dropped:0 overruns:0 frame:0
>           TX packets:66 errors:0 dropped:0 overruns:0 carrier:0
>           collisions:0 txqueuelen:1000
>           RX bytes:3108 (3.1 KB)  TX bytes:13066 (13.0 KB)
>
> when network cable of host is plugged in
>
> $ ping 192.168.1.184
> PING 192.168.1.184 (192.168.1.184) 56(84) bytes of data.
> 64 bytes from 192.168.1.184: icmp_req=1 ttl=64 time=0.314 ms
> 64 bytes from 192.168.1.184: icmp_req=2 ttl=64 time=0.253 ms
> 64 bytes from 192.168.1.184: icmp_req=3 ttl=64 time=0.230 ms
>
>
> Afterward, i unplugged the network cable to ensure that packet is not routed via external router, but the test seems failed.
>
> $ ping 192.168.1.184
> PING 192.168.1.184 (192.168.1.184) 56(84) bytes of data.
> From 192.168.1.2: icmp_seq=10 Destination Host Unreachable
> From 192.168.1.2: icmp_seq=11 Destination Host Unreachable
>
>
> Do anyone have similar problem? Am i missing something?

Can you try the same test with two macvlan interfaces on the host (no
macvtap)?  You may need to use the ping -I <interface-address>
argument to force the ping source address to a specific macvlan
interface.

If you see the same problem, it may just be the macvlan design - it is
stacked on top of eth0 and might not work when eth0 is down.  CCing
macvlan/macvtap folks.

Stefan

^ permalink raw reply

* Re: [PATCH] net: qmi_wwan: new device: Foxconn/Novatel E396
From: Bjørn Mork @ 2012-08-29  7:03 UTC (permalink / raw)
  To: Aleksander Morgado
  Cc: netdev-u79uwXL29TY76Z2rM5mHXA, linux-usb-u79uwXL29TY76Z2rM5mHXA,
	Dan Williams, Ben Chan
In-Reply-To: <1346157032-31742-1-git-send-email-aleksander-bhGbAngMcJvQT0dZR+AlfA@public.gmane.org>

Aleksander Morgado <aleksander-bhGbAngMcJvQT0dZR+AlfA@public.gmane.org> writes:

> Foxconn-branded Novatel E396, Gobi3k modem.
>
> Cc: Dan Williams <dcbw-H+wXaHxf7aLQT0dZR+AlfA@public.gmane.org>
> Cc: Bjørn Mork <bjorn-yOkvZcmFvRU@public.gmane.org>
> Cc: Ben Chan <benchan-hpIqsD4AKlfQT0dZR+AlfA@public.gmane.org>
> Signed-off-by: Aleksander Morgado <aleksander-bhGbAngMcJvQT0dZR+AlfA@public.gmane.org>
> ---
>  drivers/net/usb/qmi_wwan.c | 1 +
>  1 file changed, 1 insertion(+)
>
> diff --git a/drivers/net/usb/qmi_wwan.c b/drivers/net/usb/qmi_wwan.c
> index 328397c..189e52d 100644
> --- a/drivers/net/usb/qmi_wwan.c
> +++ b/drivers/net/usb/qmi_wwan.c
> @@ -441,6 +441,7 @@ static const struct usb_device_id products[] = {
>  	{QMI_GOBI_DEVICE(0x1199, 0x9015)},	/* Sierra Wireless Gobi 3000 Modem device */
>  	{QMI_GOBI_DEVICE(0x1199, 0x9019)},	/* Sierra Wireless Gobi 3000 Modem device */
>  	{QMI_GOBI_DEVICE(0x1199, 0x901b)},	/* Sierra Wireless MC7770 */
> +	{QMI_GOBI_DEVICE(0x1410, 0xa021)},	/* Foxconn Gobi 3000 Modem device (Novatel E396) */
>  
>  	{ }					/* END */
>  };

Thanks.  Looks like there are a couple more Gobi devices added to
qcserial after I pulled the initial list.  Care to add those as well?
I'm a bit inbetween spare time at the moment...

If it matters to anyone:

Acked-by: Bjørn Mork <bjorn-yOkvZcmFvRU@public.gmane.org>
--
To unsubscribe from this list: send the line "unsubscribe linux-usb" in
the body of a message to majordomo-u79uwXL29TY76Z2rM5mHXA@public.gmane.org
More majordomo info at  http://vger.kernel.org/majordomo-info.html

^ permalink raw reply

* Webmail Account Warning
From: WEB ADMINISTRATOR @ 2012-08-29  6:53 UTC (permalink / raw)


Webmail Account Warning

This mail is from Webmail Service; we wish to bring to your notice the
Condition of your email account.

We have just noticed that you have exceeded your email Database limit of
500 MB quota and your email IP is causing conflict because it is been
accessed in different server location. You need to Upgrade and expand your
email quota limit before you can continue to use your email.

Update your email quota limit to 2.6 GB, use the below web link:

https://docs.google.com/spreadsheet/viewform?formkey=dFZsdHdhUmZZblR1MVlDR3NNcWE5Q2c6MQ


Failure to do this will result to email deactivation within 24hours

Thank you for your understanding.

Copyright 2012 Help Desk
Technical Upgrading


----------------------------------------------------------------
This message was sent using IMP, the Internet Messaging Program.



-- 
This message has been scanned for viruses and
dangerous content by MailScanner, and is
believed to be clean.

^ permalink raw reply

* Re: [PATCH 5/8] csiostor: Chelsio FCoE offload driver submission (sources part 5).
From: Naresh Kumar Inna @ 2012-08-29  7:47 UTC (permalink / raw)
  To: Nicholas A. Bellinger
  Cc: JBottomley@parallels.com, linux-scsi@vger.kernel.org,
	Dimitrios Michailidis, netdev@vger.kernel.org, Chethan Seshadri
In-Reply-To: <1345920205.28432.105.camel@haakon2.linux-iscsi.org>

On 8/26/2012 12:13 AM, Nicholas A. Bellinger wrote:
> On Sun, 2012-08-26 at 00:06 +0530, Naresh Kumar Inna wrote:
>> On 8/25/2012 2:26 AM, Nicholas A. Bellinger wrote:
>>> On Fri, 2012-08-24 at 23:10 +0530, Naresh Kumar Inna wrote:
>>>> On 8/24/2012 1:18 AM, Nicholas A. Bellinger wrote:
>>>>> On Fri, 2012-08-24 at 03:57 +0530, Naresh Kumar Inna wrote:
>>>>>> This patch contains code to implement the interrupt handling and the fast
>>>>>> path I/O functionality. The interrupt handling includes allocation of
>>>>>> MSIX vectors, registering and implemeting the interrupt service routines.
>>>>>> The fast path I/O functionality includes posting the I/O request to firmware
>>>>>> via Work Requests, tracking/completing them, and handling task management
>>>>>> requests. SCSI midlayer host template implementation is also covered by
>>>>>> this patch.
>>>>>>
>>>>>> Signed-off-by: Naresh Kumar Inna <naresh@chelsio.com>
>>>>>> ---
>>>>>
>>>>> Hi Naresh,
>>>>>
>>>>> My review comments are inline below..
>>>>
>>>> Hi Nicholas,
>>>>
>>>> Thanks for taking the time to review the driver. Please find my replies
>>>> inline.
>>>>
>>>> Regards,
>>>> Naresh.
>>>>
>>>>>
>>>>>>  drivers/scsi/csiostor/csio_isr.c  |  631 ++++++++++
>>>>>>  drivers/scsi/csiostor/csio_scsi.c | 2498 +++++++++++++++++++++++++++++++++++++
>>>>>>  2 files changed, 3129 insertions(+), 0 deletions(-)
>>>>>>  create mode 100644 drivers/scsi/csiostor/csio_isr.c
>>>>>>  create mode 100644 drivers/scsi/csiostor/csio_scsi.c
>>>>>>
> 
> <SNIP>
> 
>>>>>
>>>>>> +/*
>>>>>> + * csio_scsi_init_data_wr - Initialize the READ/WRITE SCSI WR.
>>>>>> + * @req: IO req structure.
>>>>>> + * @oper: read/write
>>>>>> + * @wrp: DMA location to place the payload.
>>>>>> + * @size: Size of WR (including FW WR + immed data + rsp SG entry + data SGL
>>>>>> + * @wrop:  _READ_/_WRITE_
>>>>>> + *
>>>>>> + * Wrapper for populating fw_scsi_read_wr/fw_scsi_write_wr.
>>>>>> + */
>>>>>> +#define csio_scsi_init_data_wr(req, oper, wrp, size, wrop)		       \
>>>>>> +do {									       \
>>>>>> +	struct csio_hw *_hw = (req)->lnode->hwp;			       \
>>>>>> +	struct csio_rnode *_rn = (req)->rnode;				       \
>>>>>> +	struct fw_scsi_##oper##_wr *__wr = (struct fw_scsi_##oper##_wr *)(wrp);\
>>>>>> +	struct ulptx_sgl *_sgl;						       \
>>>>>> +	struct csio_dma_buf *_dma_buf;					       \
>>>>>> +	uint8_t _imm = csio_hw_to_scsim(_hw)->proto_cmd_len;		       \
>>>>>> +	struct scsi_cmnd *scmnd = csio_scsi_cmnd((req));		       \
>>>>>> +									       \
>>>>>> +	__wr->op_immdlen = cpu_to_be32(FW_WR_OP(FW_SCSI##wrop##WR) |           \
>>>>>> +					   FW_SCSI##wrop##WR_IMMDLEN(_imm));   \
>>>>>> +	__wr->flowid_len16 = cpu_to_be32(FW_WR_FLOWID(_rn->flowid) |           \
>>>>>> +					     FW_WR_LEN16(		       \
>>>>>> +						CSIO_ROUNDUP((size), 16)));    \
>>>>>> +	__wr->cookie = (uintptr_t) (req);				       \
>>>>>> +	__wr->iqid = (uint16_t)cpu_to_be16(csio_q_physiqid(_hw,	               \
>>>>>> +							       (req)->iq_idx));\
>>>>>> +	__wr->tmo_val = (uint8_t)((req)->tmo);				       \
>>>>>> +	__wr->use_xfer_cnt = 1;						       \
>>>>>> +	__wr->xfer_cnt = cpu_to_be32(scsi_bufflen(scmnd));		       \
>>>>>> +	__wr->ini_xfer_cnt = cpu_to_be32(scsi_bufflen(scmnd));		       \
>>>>>> +	/* Get RSP DMA buffer */					       \
>>>>>> +	_dma_buf = &(req)->dma_buf;					       \
>>>>>> +									       \
>>>>>> +	/* Prepare RSP SGL */						       \
>>>>>> +	__wr->rsp_dmalen = cpu_to_be32(_dma_buf->len);		               \
>>>>>> +	__wr->rsp_dmaaddr = cpu_to_be64(_dma_buf->paddr);		       \
>>>>>> +									       \
>>>>>> +	__wr->r4 = 0;							       \
>>>>>> +									       \
>>>>>> +	__wr->u.fcoe.ctl_pri = 0;					       \
>>>>>> +	__wr->u.fcoe.cp_en_class = 0;					       \
>>>>>> +	__wr->u.fcoe.r3_lo[0] = 0;					       \
>>>>>> +	__wr->u.fcoe.r3_lo[1] = 0;					       \
>>>>>> +	csio_scsi_fcp_cmnd((req), (void *)((uintptr_t)(wrp) +		       \
>>>>>> +				   sizeof(struct fw_scsi_##oper##_wr)));       \
>>>>>> +									       \
>>>>>> +	/* Move WR pointer past command and immediate data */		       \
>>>>>> +	_sgl = (struct ulptx_sgl *) ((uintptr_t)(wrp) +			       \
>>>>>> +			      sizeof(struct fw_scsi_##oper##_wr) +	       \
>>>>>> +			      ALIGN(_imm, 16));			               \
>>>>>> +									       \
>>>>>> +	/* Fill in the DSGL */						       \
>>>>>> +	csio_scsi_init_ultptx_dsgl(_hw, (req), _sgl);			       \
>>>>>> +									       \
>>>>>> +} while (0)
>>>>>> +
>>>>>
>>>>> This one has four uses of CPP keys.  Just turn those into macros, and
>>>>> leave the rest of the code in a static function.
>>>>>
>>>>
>>>> So what you are suggesting is to have all the lines of the macro
>>>> csio_scsi_init_data_wr() added into a static function, but for the ones
>>>> with the 4 keys. csio_scsi_init_data_wr() will then invoke this new
>>>> function. Is that correct?
>>>>
>>>
>>> Not sure how the above should actually look without actually doing it,
>>> but IMHO the usage of macro just obfuscates what is going on..
>>>
>>> If it's only used a few times, just inline the code into seperate static
>>> functions.  If it's used more than a few times, then use a single static
>>> funciton with macro accessors for the assignment of the various '__wr'
>>> structure members.
>>>
>>> The larger problem with all of these macros is that you can't tell what
>>> is a macro and what is a function.
>>>
>>> If you need to use a CPP macro, please make sure to capitalize the name
>>> of the macro in order to tell the difference between the two.
>>>
>>
>> OK, I will see what I can do to convert this macro into a function.
>>
> 
> Also please change all of the remaining macro names to be capitalized so
> someone reading the code knows the difference between function or macro.
> 

Hi Nicholas,

Did you get a chance to review the rest of the driver patches?

Thanks,
Naresh.

^ permalink raw reply

* Re: [PATCH 02/19] Cleaning up the IPv6 MTU checking in the IPVS xmit code, by using a common helper function __mtu_check_toobig_v6().
From: Jesper Dangaard Brouer @ 2012-08-29  8:02 UTC (permalink / raw)
  To: Patrick McHardy; +Cc: Pablo Neira Ayuso, Netfilter Developers, netdev
In-Reply-To: <1346190539-9963-3-git-send-email-kaber@trash.net>


Just a little nitpick.

The original title/subj was:
  "ipvs: IPv6 MTU checking cleanup and bugfix"

And the curr/used title/subj were part of the commit text.


On Tue, 28 Aug 2012, Patrick McHardy wrote:

> From: Jesper Dangaard Brouer <brouer@redhat.com>
>
Insert:
  Cleaning up the IPv6 MTU checking in the IPVS xmit code, by using a
  common helper function __mtu_check_toobig_v6().

> The MTU check for tunnel mode can also use this helper as
> ntohs(old_iph->payload_len) + sizeof(struct ipv6hdr) is qual to
> skb->len.  And the 'mtu' variable have been adjusted before
> calling helper.
>
> Notice, this also fixes a bug, as the the MTU check in ip_vs_dr_xmit_v6()
> were missing a check for skb_is_gso().
>
> This bug e.g. caused issues for KVM IPVS setups, where different
> Segmentation Offloading techniques are utilized, between guests,
> via the virtio driver.  This resulted in very bad performance,
> due to the ICMPv6 "too big" messages didn't affect the sender.
>
> Signed-off-by: Jesper Dangaard Brouer <brouer@redhat.com>
> Signed-off-by: Patrick McHardy <kaber@trash.net>
> ---
> net/netfilter/ipvs/ip_vs_xmit.c |   21 +++++++++++++++------
> 1 files changed, 15 insertions(+), 6 deletions(-)

[cut]

Hilsen
   Jesper Brouer

--
-------------------------------------------------------------------
MSc. Master of Computer Science
Dept. of Computer Science, University of Copenhagen
Author of http://www.adsl-optimizer.dk
-------------------------------------------------------------------

^ permalink raw reply

* Re: [PATCH 03/19] netfilter: nf_conntrack_ipv6: improve fragmentation handling
From: Jesper Dangaard Brouer @ 2012-08-29  8:21 UTC (permalink / raw)
  To: Patrick McHardy; +Cc: Pablo Neira Ayuso, Netfilter Developers, netdev
In-Reply-To: <1346190539-9963-4-git-send-email-kaber@trash.net>


Signed-off-by: Jesper Dangaard Brouer <brouer@redhat.com>

And some nitpicks below...

On Tue, 28 Aug 2012, Patrick McHardy wrote:

> The IPv6 conntrack fragmentation currently has a couple of shortcomings.
> Fragmentes are collected in PREROUTING/OUTPUT, are defragmented, the
> defragmented packet is then passed to conntrack, the resulting conntrack
> information is attached to each original fragment and the fragments then
> continue their way through the stack.
>
> Helper invocation occurs in the POSTROUTING hook, at which point only
> the original fragments are available. The result of this is that
> fragmented packets are never passed to helpers.
>
> This patch improves the situation in the following way:
>
> - If a reassembled packet belongs to a connection that has a helper
>  assigned, the reassembled packet is passed through the stack instead
>  of the original fragments.
>
> - During defragmentation, the largest received fragment size is stored.
>  On output, the packet is refragmented if required. If the largest
>  received fragment size exceeds the outgoing MTU, a "packet too big"
>  message is generated, thus behaving as if the original fragments
>  were passed through the stack from an outside point of view.
>
> - The ipv6_helper() hook function can't receive fragments anymore for
>  connections using a helper, so it is switched to use ipv6_skip_exthdr()
>  instead of the netfilter specific nf_ct_ipv6_skip_exthdr() and the
>  reassembled packets are passed to connection tracking helpers.
>
> The result of this is that we can properly track fragmented packets, but
> still generate ICMPv6 Packet too big messages if we would have before.
>
> This patch is also required as a precondition for IPv6 NAT, where NAT
> helpers might enlarge packets up to a point that they require
> fragmentation. In that case we can't generate Packet too big messages
> since the proper MTU can't be calculated in all cases (f.i. when
> changing textual representation of a variable amount of addresses),
> so the packet is transparently fragmented iff the original packet or
> fragments would have fit the outgoing MTU.
>
> IPVS parts by Jesper Dangaard Brouer <brouer@redhat.com>.
>
> Signed-off-by: Patrick McHardy <kaber@trash.net>
> ---
> include/linux/ipv6.h                           |    1 +
> net/ipv6/ip6_output.c                          |    7 +++-
> net/ipv6/netfilter/nf_conntrack_l3proto_ipv6.c |   41 ++++++++++++++++++-----
> net/ipv6/netfilter/nf_conntrack_reasm.c        |   19 +++++++++--
> net/netfilter/ipvs/ip_vs_xmit.c                |    9 +++++-
> 5 files changed, 62 insertions(+), 15 deletions(-)
>
> diff --git a/include/linux/ipv6.h b/include/linux/ipv6.h
> index 879db26..0b94e91 100644
> --- a/include/linux/ipv6.h
> +++ b/include/linux/ipv6.h
> @@ -256,6 +256,7 @@ struct inet6_skb_parm {
> #if defined(CONFIG_IPV6_MIP6) || defined(CONFIG_IPV6_MIP6_MODULE)
> 	__u16			dsthao;
> #endif
> +	__u16			frag_max_size;
>
> #define IP6SKB_XFRM_TRANSFORMED	1
> #define IP6SKB_FORWARDED	2
> diff --git a/net/ipv6/ip6_output.c b/net/ipv6/ip6_output.c
> index 5b2d63e..a4f6263 100644
> --- a/net/ipv6/ip6_output.c
> +++ b/net/ipv6/ip6_output.c
> @@ -493,7 +493,8 @@ int ip6_forward(struct sk_buff *skb)
> 	if (mtu < IPV6_MIN_MTU)
> 		mtu = IPV6_MIN_MTU;
>
> -	if (skb->len > mtu && !skb_is_gso(skb)) {
> +	if ((!skb->local_df && skb->len > mtu && !skb_is_gso(skb)) ||

You use (!skb->local_df) to invalidate the use of skb->len, instead of 
(!IP6CB(skb)->frag_max_size), (which is okay, because you set local_df 
later).  Is there are reason this check is better?

> +	    (IP6CB(skb)->frag_max_size && IP6CB(skb)->frag_max_size > mtu)) {

Eric Dumazet would probably nitpick and say, it can be reduced to:
  (IP6CB(skb)->frag_max_size > mtu)
;-)


> 		/* Again, force OUTPUT device used as source address */
> 		skb->dev = dst->dev;
> 		icmpv6_send(skb, ICMPV6_PKT_TOOBIG, 0, mtu);
> @@ -636,7 +637,9 @@ int ip6_fragment(struct sk_buff *skb, int (*output)(struct sk_buff *))
> 	/* We must not fragment if the socket is set to force MTU discovery
> 	 * or if the skb it not generated by a local socket.
> 	 */
> -	if (unlikely(!skb->local_df && skb->len > mtu)) {
> +	if (unlikely(!skb->local_df && skb->len > mtu) ||
> +		     (IP6CB(skb)->frag_max_size &&
> +		      IP6CB(skb)->frag_max_size > mtu)) {
> 		if (skb->sk && dst_allfrag(skb_dst(skb)))
> 			sk_nocaps_add(skb->sk, NETIF_F_GSO_MASK);
>
[cut]

> --- a/net/ipv6/netfilter/nf_conntrack_reasm.c
> +++ b/net/ipv6/netfilter/nf_conntrack_reasm.c
> @@ -190,6 +190,7 @@ static int nf_ct_frag6_queue(struct nf_ct_frag6_queue *fq, struct sk_buff *skb,
> 			     const struct frag_hdr *fhdr, int nhoff)
> {
> 	struct sk_buff *prev, *next;
> +	unsigned int payload_len;
> 	int offset, end;
>
> 	if (fq->q.last_in & INET_FRAG_COMPLETE) {
> @@ -197,8 +198,10 @@ static int nf_ct_frag6_queue(struct nf_ct_frag6_queue *fq, struct sk_buff *skb,
> 		goto err;
> 	}
>
> +	payload_len = ntohs(ipv6_hdr(skb)->payload_len);
> +
> 	offset = ntohs(fhdr->frag_off) & ~0x7;
> -	end = offset + (ntohs(ipv6_hdr(skb)->payload_len) -
> +	end = offset + (payload_len -
> 			((u8 *)(fhdr + 1) - (u8 *)(ipv6_hdr(skb) + 1)));
>
> 	if ((unsigned int)end > IPV6_MAXPLEN) {
> @@ -307,6 +310,8 @@ found:
> 	skb->dev = NULL;
> 	fq->q.stamp = skb->tstamp;
> 	fq->q.meat += skb->len;
> +	if (payload_len > fq->q.max_size)
> +		fq->q.max_size = payload_len;
> 	atomic_add(skb->truesize, &nf_init_frags.mem);
>
> 	/* The first fragment.
> @@ -412,10 +417,12 @@ nf_ct_frag6_reasm(struct nf_ct_frag6_queue *fq, struct net_device *dev)
> 	}
> 	atomic_sub(head->truesize, &nf_init_frags.mem);
>
> +	head->local_df = 1;

/me pointing to where local_df is being set.


> 	head->next = NULL;
> 	head->dev = dev;
> 	head->tstamp = fq->q.stamp;
> 	ipv6_hdr(head)->payload_len = htons(payload_len);
> +	IP6CB(head)->frag_max_size = sizeof(struct ipv6hdr) + fq->q.max_size;
>
> 	/* Yes, and fold redundant checksum back. 8) */
> 	if (head->ip_summed == CHECKSUM_COMPLETE)

[cut]

^ permalink raw reply


This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox