* [GIT] Networking
@ 2010-05-25 23:59 David Miller
2010-05-27 19:06 ` boot crash in arp_error_report() (Re: [GIT] Networking) Ingo Molnar
0 siblings, 1 reply; 9+ messages in thread
From: David Miller @ 2010-05-25 23:59 UTC (permalink / raw)
To: torvalds; +Cc: akpm, netdev, linux-kernel
1) dev_get_valid_name can create conditions wherein it becomes impossible
to rename a device, fixed by Daniel Lezcano.
2) CAIF protocol bug fixes from Sjur Braendeland:
a) wait_ev*_timeout return value accidently stored in 'int' instead
of 'long'
b) By-hand list implementation buggy, use standard kernel lists.
c) Memory allocation failures not handled correctly.
d) poll() erroneously returns POLLHUP when connecting
e) missing spin_unlock in cfmuxl_remove_uplayer()
f) receive needs to set MSG_TRUNC when user buf size is insufficient
3) Cleanup accidently introduced uninitialized variable in pppoe_flush_dev().
Fix from Dan Carpenter.
4) ISDN fixes from Tilman Schmidt.
a) ->reset_ctr() op is marked optional, but code doesn't actually
check for NULL
b) Dummy stubs for ->reset_ctr() and ->load_firmware() are erroneous
and cause hangs, delete.
5) Blackfin SIR IRDA device is not harmed by the UART unit bug, so don't
adjust clock values using the bug workaround adjustment. From
Graf Yang.
6) Networking control group is severely limited because it tries to sample
the task control group at the time of packet transmission. This really
can't be done reliably, especially when packets are sent async from
another context.
Fix by storing the cgroupid in the socket, sampling it at I/O call
points (sendmsg, recvmsg, splice_read, sendpage), then use this
value when we classify via the skb->sk socket.
Handle special cases like TUN (which call netif_rx() to inject packets)
directly.
All of this work done by Herbert Xu.
7) DCCP stores error codes in a u8, which is insufficient for MIPS which
needs a u16, fix from Yoichi Yuasa.
8) BE2NET bug fixes from Sarveshwar Bandi:
a) Must PHY reset after FW init.
b) FW upgrade can take a while, use completions instead of polling
with softirqs disabled.
9) proc_dointvec change that came in via the networking tree for port
range specifications introduced a regression for procfs files, accidently
disallowing write("1\n"). Fix from J. R. Okajima.
10) Use after free in Phone socket close, fix from Rémi Denis-Courmont.
11) Memory leak in macvlan, from Jiri Pirko.
12) Initial GRO fraglist element's ->gso_size can be bogus, if packet
hits device not TSO capable but fraglist capable. Fix from Herbert
Xu.
13) Add support for some new IXGBE device IDs.
14) Memory leak and alloc failure fixes from Denis Kirjaniv.
a) sh_mdio_release() leaks memory
b) check for kzalloc() return value in ieee802154.
c) bfin_mac leaks miibus->irq memory
15) sja1000.c missing spin_lock_init() on priv->cmdreg_lock, fix from
Oliver Hartkopp.
16) The batched dequeuing of input_pkt_queue introduced this merge window
added some problems. Inaccurate packet counting can occur which defeats
the schemes that RFS uses to prevent out-of-order packet processing when
we want to modify the the target RX cpu for a flow.
Fix from Tom Herbert.
17) Several wireless fixes via John Linville and the wireless crew.
18) ENIC bug fixes from Scott Feldman.
a) Fix UUID fmt'ing array type.
b) port-profile assosciation happens before we have a MAC address
assigned, use a random one instead of garbage
19) qdisc_notify() can OOPS, because tc_fill_qdisc() can accidently be
called for a builtin qdisc. Fix from Eric Dumazet.
20) do_setlink() had some error handling bugs introduced this cycle
(failure to initialize 'err' in some error paths), fix from David
Howells.
21) ethoc_probe can deref a NULL pointer, fix from Thomas Chou.
22) netif_vdbg() definition is garbage when VERBOSE_DEBUG is defined.
Fix from Ben Hutchings.
23) Netfilter fixes via Patrick McHardy:
a) nf_ct_sip doesn't handle nonlinear packets, but it needs to
b) __nf_conntrack_confirm() races with nf_ct_get_next_corpse()
24) Fix race in i2400m_rx_edata() resulting in an OOPS on i2400m->rx_roq,
from Inaky Perez-Gonzalez.
Please pull, thanks a lot!
The following changes since commit ec96e2fe954c23a54bfdf2673437a39e193a1822:
Linus Torvalds (1):
Merge branch 'devel' of master.kernel.org:/home/rmk/linux-2.6-arm
are available in the git repository at:
master.kernel.org:/pub/scm/linux/kernel/git/davem/net-2.6.git master
Baruch Siach (1):
fec: add support for PHY interface platform data
Ben Hutchings (1):
net: Fix definition of netif_vdbg() when VERBOSE_DEBUG is not defined
Bruno Randolf (1):
ath5k: consistently use rx_bufsize for RX DMA
Dan Carpenter (4):
pppoe: uninitialized variable in pppoe_flush_dev()
ath9k_htc: dereferencing before check in hif_usb_tx_cb()
ath9k_htc: rare leak in ath9k_hif_usb_alloc_tx_urbs()
iwlwifi: testing the wrong variable in iwl_add_bssid_station()
Daniel Lezcano (1):
net-2.6 : V2 - fix dev_get_valid_name
David Howells (1):
rtnetlink: Fix error handling in do_setlink()
David S. Miller (4):
Merge branch 'master' of git://git.kernel.org/.../kaber/nf-next-2.6
Merge branch 'master' of git://git.kernel.org/.../linville/wireless-2.6
Merge branch 'wimax-2.6.35.y' of git://git.kernel.org/.../inaky/wimax
drivers/net/usb/asix.c: Fix pointer cast.
Denis Kirjanov (3):
sh_eth: Fix memleak in sh_mdio_release
ieee802154: Fix possible NULL pointer dereference in wpan_phy_alloc
bfin_mac: fix memleak in mii_bus{probe|remove}
Eric Dumazet (1):
net_sched: Fix qdisc_notify()
Felix Fietkau (3):
cfg80211: fix crash in cfg80211_set_freq()
ath9k: change beacon allocation to prefer the first beacon slot
ath9k: remove VEOL support for ad-hoc
Filip Aben (1):
hso: add support for new products
Gertjan van Wingerde (2):
rt2x00: Fix failed SLEEP->AWAKE and AWAKE->SLEEP transitions.
rt2x00: Fix rt2800usb TX descriptor writing.
Graf Yang (1):
net/irda: bfin_sir: IRDA is not affected by anomaly 05000230
Helmut Schaa (1):
rt2x00: don't use to_pci_dev in rt2x00pci_uninitialize
Herbert Xu (4):
gro: Fix bogus gso_size on the first fraglist entry
cls_cgroup: Store classid in struct sock
tun: Update classid on packet injection
cls_cgroup: Fix build error when built-in
Inaky Perez-Gonzalez (1):
wimax/i2400m: fix bad race condition check in RX path
J. R. Okajima (1):
proc_dointvec: write a single value
Jiri Pirko (1):
macvlan: do proper cleanup in macvlan_common_newlink() V2
Joerg Marx (1):
netfilter: nf_conntrack: fix a race in __nf_conntrack_confirm against nf_ct_get_next_corpse()
Johannes Berg (1):
cfg80211: add missing braces
John W. Linville (1):
Revert "ath9k: Group Key fix for VAPs"
Jussi Kivilinna (1):
rndis_wlan: replace wireless_send_event with cfg80211_disconnected
Juuso Oikarinen (1):
wl1271: Fix RX data path frame lengths
Luciano Coelho (1):
netfilter: fix description of expected checkentry return code on xt_target
Luis R. Rodriguez (1):
ath9k: remove AR9003 from PCI IDs for now
Mallikarjuna R Chilakala (1):
ixgbe:add support for a new 82599 10G Base-T device
Mike Frysinger (1):
net-caif: drop redundant Kconfig entries
Oliver Hartkopp (1):
can: SJA1000 add missing spin_lock_init()
Patrick McHardy (1):
netfilter: nf_ct_sip: handle non-linear skbs
Randy Dunlap (3):
wireless: fix mac80211.h kernel-doc warnings
wireless: fix sta_info.h kernel-doc warnings
sock.h: fix kernel-doc warning
Reinette Chatre (1):
iwlwifi: fix internal scan race
Rémi Denis-Courmont (1):
Phonet: fix potential use-after-free in pep_sock_close()
Sarveshwar Bandi (2):
be2net: Bug fix in init code in probe
be2net: Bug fix to avoid disabling bottom half during firmware upgrade.
Scott Feldman (2):
enic: bug fix: sprintf UUID to string as u8[] rather than u16[] array
enic: Use random mac addr when associating port-profile
Sjur Braendeland (6):
caif: Bugfix - wait_ev*_timeout returns long.
caif: Bugfix - use standard Linux lists
caif: Bugfix - handle mem-allocation failures
caif: Bugfix - Poll can't return POLLHUP while connecting.
caif: Bugfix - missing spin_unlock
caif: Bugfix - use MSG_TRUNC in receive
Sujith (1):
cfg80211: Fix signal_type comparison
Tejun Heo (1):
wireless: update gfp/slab.h includes
Thomas Chou (1):
ethoc: fix null dereference in ethoc_probe
Tilman Schmidt (2):
isdn/capi: make reset_ctr op truly optional
isdn/gigaset: remove dummy CAPI method implementations
Tom Herbert (1):
net: fix problem in dequeuing from input_pkt_queue
Vasanthakumar Thiagarajan (1):
ath9k: Fix rx of mcast/bcast frames in PS mode with auto sleep
Yoichi Yuasa (1):
net/dccp: expansion of error code size
drivers/isdn/capi/kcapi.c | 6 ++
drivers/isdn/gigaset/capi.c | 28 +--------
drivers/net/benet/be.h | 2 +
drivers/net/benet/be_cmds.c | 19 +++++-
drivers/net/benet/be_main.c | 11 ++-
drivers/net/bfin_mac.c | 2 +
drivers/net/can/sja1000/sja1000.c | 2 +
drivers/net/enic/enic_main.c | 29 ++++++---
drivers/net/ethoc.c | 34 +++++++++-
drivers/net/fec.c | 22 +++++++
drivers/net/fec.h | 2 +
drivers/net/irda/bfin_sir.c | 8 ++-
drivers/net/ixgbe/ixgbe.h | 3 +
drivers/net/ixgbe/ixgbe_82598.c | 1 +
drivers/net/ixgbe/ixgbe_82599.c | 1 +
drivers/net/ixgbe/ixgbe_main.c | 69 +++++++++++++++++++++
drivers/net/ixgbe/ixgbe_phy.c | 30 +++++++++
drivers/net/ixgbe/ixgbe_phy.h | 3 +
drivers/net/ixgbe/ixgbe_type.h | 4 +
drivers/net/macvlan.c | 9 +++-
drivers/net/pppoe.c | 1 +
drivers/net/sh_eth.c | 3 +
drivers/net/tun.c | 2 +
drivers/net/usb/asix.c | 4 +-
drivers/net/usb/hso.c | 3 +
drivers/net/wimax/i2400m/rx.c | 4 +-
drivers/net/wireless/ath/ath5k/base.c | 7 +-
drivers/net/wireless/ath/ath9k/beacon.c | 75 ++++-------------------
drivers/net/wireless/ath/ath9k/hif_usb.c | 10 +++-
drivers/net/wireless/ath/ath9k/htc.h | 1 +
drivers/net/wireless/ath/ath9k/main.c | 28 +--------
drivers/net/wireless/ath/ath9k/pci.c | 1 -
drivers/net/wireless/ath/ath9k/recv.c | 17 ++++--
drivers/net/wireless/iwlwifi/iwl-agn-ict.c | 1 +
drivers/net/wireless/iwlwifi/iwl-scan.c | 21 ++++++-
drivers/net/wireless/iwlwifi/iwl-sta.c | 2 +-
drivers/net/wireless/rndis_wlan.c | 16 +++--
drivers/net/wireless/rt2x00/rt2400pci.c | 9 ++-
drivers/net/wireless/rt2x00/rt2500pci.c | 9 ++-
drivers/net/wireless/rt2x00/rt2800usb.c | 2 +-
drivers/net/wireless/rt2x00/rt2x00pci.c | 2 +-
drivers/net/wireless/rt2x00/rt61pci.c | 7 +-
drivers/net/wireless/rt2x00/rt73usb.c | 7 +-
drivers/net/wireless/wl12xx/wl1271_rx.c | 2 +
include/linux/fec.h | 21 ++++++
include/linux/netdevice.h | 16 ++++-
include/linux/netfilter/x_tables.h | 2 +-
include/net/caif/cfctrl.h | 4 +-
include/net/cls_cgroup.h | 63 +++++++++++++++++++
include/net/mac80211.h | 4 +-
include/net/netfilter/nf_conntrack_core.h | 2 +-
include/net/sock.h | 12 +++-
kernel/sysctl.c | 4 +-
net/caif/Kconfig | 5 +-
net/caif/caif_socket.c | 91 +++++++++++-----------------
net/caif/cfctrl.c | 92 ++++++++--------------------
net/caif/cfmuxl.c | 3 +-
net/caif/cfpkt_skbuff.c | 25 +++++---
net/caif/cfserl.c | 3 +-
net/caif/cfsrvl.c | 6 ++
net/core/dev.c | 48 ++++++++------
net/core/rtnetlink.c | 4 +-
net/core/skbuff.c | 1 +
net/core/sock.c | 19 ++++++
net/dccp/input.c | 6 +-
net/ieee802154/wpan-class.c | 7 ++-
net/mac80211/key.c | 1 -
net/mac80211/sta_info.h | 2 +-
net/netfilter/nf_conntrack_core.c | 10 +++
net/netfilter/nf_conntrack_sip.c | 12 +---
net/phonet/pep.c | 2 +
net/sched/cls_cgroup.c | 50 ++++++++++-----
net/sched/sch_api.c | 14 ++--
net/socket.c | 9 +++
net/wireless/chan.c | 2 +-
net/wireless/nl80211.c | 6 +-
net/wireless/scan.c | 4 +-
77 files changed, 682 insertions(+), 387 deletions(-)
create mode 100644 include/linux/fec.h
create mode 100644 include/net/cls_cgroup.h
^ permalink raw reply [flat|nested] 9+ messages in thread
* boot crash in arp_error_report() (Re: [GIT] Networking)
2010-05-25 23:59 [GIT] Networking David Miller
@ 2010-05-27 19:06 ` Ingo Molnar
2010-05-27 19:27 ` Linus Torvalds
0 siblings, 1 reply; 9+ messages in thread
From: Ingo Molnar @ 2010-05-27 19:06 UTC (permalink / raw)
To: David Miller, Thomas Gleixner; +Cc: torvalds, akpm, netdev, linux-kernel
[-- Attachment #1: Type: text/plain, Size: 2631 bytes --]
Dave,
FYI, this boot crash in arp_error_report() started triggering in -tip testing:
[ 113.285384] BUG: unable to handle kernel paging request at 6b6b6b87
[ 113.285384] IP: [<c14c8237>] arp_error_report+0x1d/0x32
[ 113.285384] *pdpt = 00000000340fd001 *pde = 0000000000000000
[ 113.285384] Oops: 0000 [#1] SMP
[ 113.285384] last sysfs file: /sys/class/net/eth0/address
[ 113.285384] Modules linked in:
[ 113.285384]
[ 113.285384] Pid: 0, comm: swapper Not tainted 2.6.34-08129-gcc106eb-dirty #257 A8N-E/System Product Name
[ 113.285384] EIP: 0060:[<c14c8237>] EFLAGS: 00010202 CPU: 0
[ 113.285384] EIP is at arp_error_report+0x1d/0x32
[ 113.285384] EAX: 6b6b6b6b EBX: f4c820b0 ECX: 00000000 EDX: c1867a24
[ 113.285384] ESI: f40ff074 EDI: f4c820b0 EBP: c2401f34 ESP: c2401f30
[ 113.285384] DS: 007b ES: 007b FS: 00d8 GS: 00e0 SS: 0068
[ 113.285384] Process swapper (pid: 0, ti=c2401000 task=c185e3c0 task.ti=c1853000)
[ 113.285384] Stack:
[ 113.285384] f40ff000 c2401f4c c147bca4 f40ff024 f40ff000 00000000 ffffb6db c2401f64
[ 113.285384] <0> c147cfde f40ff024 00000100 f40ff0ec c2401f8c c2401f98 c10447ab f40ff000
[ 113.285384] <0> c147ce8c f40ff0a4 c22104c4 00000000 c1804b08 00000000 00000000 f40ff0a4
[ 113.285384] Call Trace:
[ 113.285384] [<c147bca4>] ? neigh_invalidate+0x6d/0x84
[ 113.285384] [<c147cfde>] ? neigh_timer_handler+0x152/0x1f9
[ 113.285384] [<c10447ab>] ? call_timer_fn+0x6f/0xed
[ 113.285384] [<c147ce8c>] ? neigh_timer_handler+0x0/0x1f9
[ 113.285384] [<c1044962>] ? run_timer_softirq+0x139/0x16f
[ 113.285384] [<c147ce8c>] ? neigh_timer_handler+0x0/0x1f9
[ 113.285384] [<c103ed4f>] ? __do_softirq+0xc9/0x18d
[ 113.285384] [<c103ec86>] ? __do_softirq+0x0/0x18d
[ 113.285384] <IRQ>
[ 113.285384] [<c103e9ab>] ? irq_exit+0x3a/0x6d
[ 113.285384] [<c1016895>] ? smp_apic_timer_interrupt+0x6c/0x7a
[ 113.285384] [<c15664d6>] ? apic_timer_interrupt+0x36/0x40
[ 113.285384] [<c1009740>] ? poll_idle+0x31/0x5d
[ 113.285384] [<c100255e>] ? cpu_idle+0xab/0xc5
[ 113.285384] [<c1529925>] ? rest_init+0xa1/0xa6
[ 113.285384] [<c18e6a2d>] ? start_kernel+0x3ed/0x3f2
[ 113.285384] [<c18e60ca>] ? i386_start_kernel+0xca/0xd1
[ 113.285384] Code: 0c 89 43 70 31 c0 8d 65 f4 5b 5e 5f 5d c3 55 89 e5 53 0f 1f 44 00 00 89 d3 89 d0 e8 fa fb ff ff 85 c0 74 12 8b 40 40 85 c0 74 0b <8b> 50 1c 85 d2 74 04 89 d8 ff d2 89 d8 e8 9b 50 fa ff 5b 5d c3
[ 113.285384] EIP: [<c14c8237>] arp_error_report+0x1d/0x32 SS:ESP 0068:c2401f30
[ 113.285384] CR2: 000000006b6b6b87
[ 113.493016] ---[ end trace e94352dcdbc4a293 ]---
Config and full crashlog attached.
Thanks,
Ingo
[-- Attachment #2: config --]
[-- Type: text/plain, Size: 79168 bytes --]
#
# Automatically generated make config: don't edit
# Linux kernel version: 2.6.34
# Thu May 27 21:03:43 2010
#
# CONFIG_64BIT is not set
CONFIG_X86_32=y
# CONFIG_X86_64 is not set
CONFIG_X86=y
CONFIG_INSTRUCTION_DECODER=y
CONFIG_OUTPUT_FORMAT="elf32-i386"
CONFIG_ARCH_DEFCONFIG="arch/x86/configs/i386_defconfig"
CONFIG_GENERIC_TIME=y
CONFIG_GENERIC_CMOS_UPDATE=y
CONFIG_CLOCKSOURCE_WATCHDOG=y
CONFIG_GENERIC_CLOCKEVENTS=y
CONFIG_GENERIC_CLOCKEVENTS_BROADCAST=y
CONFIG_LOCKDEP_SUPPORT=y
CONFIG_STACKTRACE_SUPPORT=y
CONFIG_HAVE_LATENCYTOP_SUPPORT=y
CONFIG_MMU=y
CONFIG_ZONE_DMA=y
CONFIG_NEED_DMA_MAP_STATE=y
CONFIG_NEED_SG_DMA_LENGTH=y
CONFIG_GENERIC_ISA_DMA=y
CONFIG_GENERIC_IOMAP=y
CONFIG_GENERIC_BUG=y
CONFIG_GENERIC_HWEIGHT=y
CONFIG_GENERIC_GPIO=y
CONFIG_ARCH_MAY_HAVE_PC_FDC=y
# CONFIG_RWSEM_GENERIC_SPINLOCK is not set
CONFIG_RWSEM_XCHGADD_ALGORITHM=y
CONFIG_ARCH_HAS_CPU_IDLE_WAIT=y
CONFIG_GENERIC_CALIBRATE_DELAY=y
# CONFIG_GENERIC_TIME_VSYSCALL is not set
CONFIG_ARCH_HAS_CPU_RELAX=y
CONFIG_ARCH_HAS_DEFAULT_IDLE=y
CONFIG_ARCH_HAS_CACHE_LINE_SIZE=y
CONFIG_HAVE_SETUP_PER_CPU_AREA=y
CONFIG_NEED_PER_CPU_EMBED_FIRST_CHUNK=y
CONFIG_NEED_PER_CPU_PAGE_FIRST_CHUNK=y
# CONFIG_HAVE_CPUMASK_OF_CPU_MAP is not set
CONFIG_ARCH_HIBERNATION_POSSIBLE=y
CONFIG_ARCH_SUSPEND_POSSIBLE=y
# CONFIG_ZONE_DMA32 is not set
CONFIG_ARCH_POPULATES_NODE_MAP=y
# CONFIG_AUDIT_ARCH is not set
CONFIG_ARCH_SUPPORTS_OPTIMIZED_INLINING=y
CONFIG_ARCH_SUPPORTS_DEBUG_PAGEALLOC=y
CONFIG_HAVE_EARLY_RES=y
CONFIG_HAVE_INTEL_TXT=y
CONFIG_GENERIC_HARDIRQS=y
CONFIG_GENERIC_HARDIRQS_NO__DO_IRQ=y
CONFIG_GENERIC_IRQ_PROBE=y
CONFIG_GENERIC_PENDING_IRQ=y
CONFIG_USE_GENERIC_SMP_HELPERS=y
CONFIG_X86_32_SMP=y
CONFIG_X86_HT=y
CONFIG_X86_TRAMPOLINE=y
CONFIG_ARCH_HWEIGHT_CFLAGS="-fcall-saved-ecx -fcall-saved-edx"
CONFIG_KTIME_SCALAR=y
CONFIG_DEFCONFIG_LIST="/lib/modules/$UNAME_RELEASE/.config"
CONFIG_CONSTRUCTORS=y
#
# General setup
#
CONFIG_EXPERIMENTAL=y
CONFIG_LOCK_KERNEL=y
CONFIG_INIT_ENV_ARG_LIMIT=32
CONFIG_LOCALVERSION=""
CONFIG_LOCALVERSION_AUTO=y
CONFIG_HAVE_KERNEL_GZIP=y
CONFIG_HAVE_KERNEL_BZIP2=y
CONFIG_HAVE_KERNEL_LZMA=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_LZO=y
# CONFIG_SWAP is not set
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_TASKSTATS is not set
# CONFIG_AUDIT is not set
#
# RCU Subsystem
#
CONFIG_TREE_RCU=y
# CONFIG_TREE_PREEMPT_RCU is not set
# CONFIG_TINY_RCU is not set
# CONFIG_RCU_TRACE is not set
CONFIG_RCU_FANOUT=32
# 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 is not set
CONFIG_SYSFS_DEPRECATED=y
CONFIG_SYSFS_DEPRECATED_V2=y
CONFIG_RELAY=y
CONFIG_NAMESPACES=y
# CONFIG_UTS_NS is not set
# CONFIG_IPC_NS is not set
CONFIG_USER_NS=y
# CONFIG_PID_NS is not set
CONFIG_NET_NS=y
CONFIG_BLK_DEV_INITRD=y
CONFIG_INITRAMFS_SOURCE=""
CONFIG_RD_GZIP=y
CONFIG_RD_BZIP2=y
CONFIG_RD_LZMA=y
CONFIG_RD_LZO=y
CONFIG_CC_OPTIMIZE_FOR_SIZE=y
CONFIG_SYSCTL=y
CONFIG_ANON_INODES=y
# CONFIG_EMBEDDED is not set
CONFIG_UID16=y
CONFIG_SYSCTL_SYSCALL=y
CONFIG_KALLSYMS=y
CONFIG_KALLSYMS_ALL=y
# CONFIG_KALLSYMS_EXTRA_PASS is not set
CONFIG_HOTPLUG=y
CONFIG_PRINTK=y
CONFIG_BUG=y
CONFIG_ELF_CORE=y
CONFIG_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_HAVE_PERF_EVENTS=y
CONFIG_PERF_USE_VMALLOC=y
#
# Kernel Performance Events And Counters
#
CONFIG_PERF_EVENTS=y
CONFIG_PERF_COUNTERS=y
CONFIG_DEBUG_PERF_USE_VMALLOC=y
CONFIG_VM_EVENT_COUNTERS=y
CONFIG_PCI_QUIRKS=y
CONFIG_SLUB_DEBUG=y
CONFIG_COMPAT_BRK=y
# CONFIG_SLAB is not set
CONFIG_SLUB=y
# CONFIG_SLOB is not set
CONFIG_PROFILING=y
CONFIG_TRACEPOINTS=y
# CONFIG_OPROFILE is not set
CONFIG_HAVE_OPROFILE=y
CONFIG_KPROBES=y
CONFIG_OPTPROBES=y
CONFIG_HAVE_EFFICIENT_UNALIGNED_ACCESS=y
CONFIG_KRETPROBES=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_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
#
# GCOV-based kernel profiling
#
# CONFIG_GCOV_KERNEL is not set
CONFIG_SLOW_WORK=y
CONFIG_SLOW_WORK_DEBUG=y
CONFIG_HAVE_GENERIC_DMA_COHERENT=y
CONFIG_SLABINFO=y
CONFIG_RT_MUTEXES=y
CONFIG_BASE_SMALL=0
CONFIG_MODULES=y
# CONFIG_MODULE_FORCE_LOAD is not set
# CONFIG_MODULE_UNLOAD is not set
CONFIG_MODVERSIONS=y
CONFIG_MODULE_SRCVERSION_ALL=y
CONFIG_STOP_MACHINE=y
CONFIG_BLOCK=y
CONFIG_LBDAF=y
# CONFIG_BLK_DEV_BSG is not set
CONFIG_BLK_DEV_INTEGRITY=y
#
# IO Schedulers
#
CONFIG_IOSCHED_NOOP=y
CONFIG_IOSCHED_DEADLINE=m
# CONFIG_IOSCHED_CFQ is not set
# CONFIG_DEFAULT_DEADLINE is not set
# CONFIG_DEFAULT_CFQ is not set
CONFIG_DEFAULT_NOOP=y
CONFIG_DEFAULT_IOSCHED="noop"
CONFIG_PADATA=y
# 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_INLINE_SPIN_UNLOCK is not set
# CONFIG_INLINE_SPIN_UNLOCK_BH is not set
# CONFIG_INLINE_SPIN_UNLOCK_IRQ is not set
# CONFIG_INLINE_SPIN_UNLOCK_IRQRESTORE is not set
# CONFIG_INLINE_READ_TRYLOCK is not set
# CONFIG_INLINE_READ_LOCK is not set
# CONFIG_INLINE_READ_LOCK_BH is not set
# CONFIG_INLINE_READ_LOCK_IRQ is not set
# CONFIG_INLINE_READ_LOCK_IRQSAVE is not set
# CONFIG_INLINE_READ_UNLOCK is not set
# CONFIG_INLINE_READ_UNLOCK_BH is not set
# CONFIG_INLINE_READ_UNLOCK_IRQ is not set
# CONFIG_INLINE_READ_UNLOCK_IRQRESTORE is not set
# CONFIG_INLINE_WRITE_TRYLOCK is not set
# CONFIG_INLINE_WRITE_LOCK is not set
# CONFIG_INLINE_WRITE_LOCK_BH is not set
# CONFIG_INLINE_WRITE_LOCK_IRQ is not set
# CONFIG_INLINE_WRITE_LOCK_IRQSAVE is not set
# CONFIG_INLINE_WRITE_UNLOCK is not set
# CONFIG_INLINE_WRITE_UNLOCK_BH is not set
# CONFIG_INLINE_WRITE_UNLOCK_IRQ is not set
# CONFIG_INLINE_WRITE_UNLOCK_IRQRESTORE is not set
# CONFIG_MUTEX_SPIN_ON_OWNER is not set
# CONFIG_FREEZER is not set
#
# Processor type and features
#
CONFIG_TICK_ONESHOT=y
CONFIG_NO_HZ=y
# CONFIG_HIGH_RES_TIMERS is not set
CONFIG_GENERIC_CLOCKEVENTS_BUILD=y
CONFIG_SMP=y
CONFIG_SPARSE_IRQ=y
CONFIG_NUMA_IRQ_DESC=y
CONFIG_X86_MPPARSE=y
CONFIG_X86_BIGSMP=y
CONFIG_X86_EXTENDED_PLATFORM=y
# CONFIG_X86_ELAN is not set
# CONFIG_X86_RDC321X is not set
CONFIG_X86_32_NON_STANDARD=y
CONFIG_X86_NUMAQ=y
CONFIG_X86_SUMMIT=y
CONFIG_X86_ES7000=y
# CONFIG_SCHED_OMIT_FRAME_POINTER is not set
CONFIG_PARAVIRT_GUEST=y
CONFIG_VMI=y
CONFIG_KVM_CLOCK=y
CONFIG_KVM_GUEST=y
CONFIG_LGUEST_GUEST=y
CONFIG_PARAVIRT=y
CONFIG_PARAVIRT_SPINLOCKS=y
CONFIG_PARAVIRT_CLOCK=y
CONFIG_PARAVIRT_DEBUG=y
CONFIG_NO_BOOTMEM=y
# CONFIG_MEMTEST is not set
CONFIG_X86_SUMMIT_NUMA=y
CONFIG_X86_CYCLONE_TIMER=y
# CONFIG_M386 is not set
# CONFIG_M486 is not set
# CONFIG_M586 is not set
# CONFIG_M586TSC is not set
# CONFIG_M586MMX is not set
# CONFIG_M686 is not set
# CONFIG_MPENTIUMII is not set
# CONFIG_MPENTIUMIII is not set
# CONFIG_MPENTIUMM is not set
# CONFIG_MPENTIUM4 is not set
# CONFIG_MK6 is not set
# CONFIG_MK7 is not set
# CONFIG_MK8 is not set
# CONFIG_MCRUSOE is not set
# CONFIG_MEFFICEON is not set
CONFIG_MWINCHIPC6=y
# CONFIG_MWINCHIP3D is not set
# CONFIG_MGEODEGX1 is not set
# CONFIG_MGEODE_LX is not set
# CONFIG_MCYRIXIII is not set
# CONFIG_MVIAC3_2 is not set
# CONFIG_MVIAC7 is not set
# CONFIG_MPSC is not set
# CONFIG_MCORE2 is not set
# CONFIG_MATOM is not set
# CONFIG_GENERIC_CPU is not set
# CONFIG_X86_GENERIC is not set
CONFIG_X86_CPU=y
CONFIG_X86_INTERNODE_CACHE_SHIFT=7
CONFIG_X86_CMPXCHG=y
CONFIG_X86_L1_CACHE_SHIFT=5
CONFIG_X86_XADD=y
CONFIG_X86_WP_WORKS_OK=y
CONFIG_X86_INVLPG=y
CONFIG_X86_BSWAP=y
CONFIG_X86_POPAD_OK=y
CONFIG_X86_ALIGNMENT_16=y
CONFIG_X86_USE_PPRO_CHECKSUM=y
CONFIG_X86_OOSTORE=y
CONFIG_X86_CMPXCHG64=y
CONFIG_X86_MINIMUM_CPU_FAMILY=5
CONFIG_CPU_SUP_INTEL=y
CONFIG_CPU_SUP_CYRIX_32=y
CONFIG_CPU_SUP_AMD=y
CONFIG_CPU_SUP_CENTAUR=y
CONFIG_CPU_SUP_TRANSMETA_32=y
CONFIG_CPU_SUP_UMC_32=y
CONFIG_HPET_TIMER=y
CONFIG_HPET_EMULATE_RTC=y
CONFIG_DMI=y
# CONFIG_IOMMU_HELPER is not set
CONFIG_IOMMU_API=y
CONFIG_NR_CPUS=32
CONFIG_SCHED_SMT=y
CONFIG_SCHED_MC=y
CONFIG_PREEMPT_NONE=y
# CONFIG_PREEMPT_VOLUNTARY is not set
# CONFIG_PREEMPT is not set
CONFIG_X86_LOCAL_APIC=y
CONFIG_X86_IO_APIC=y
CONFIG_X86_REROUTE_FOR_BROKEN_BOOT_IRQS=y
# CONFIG_X86_MCE is not set
CONFIG_VM86=y
# CONFIG_TOSHIBA is not set
CONFIG_I8K=m
CONFIG_X86_REBOOTFIXUPS=y
CONFIG_MICROCODE=y
# CONFIG_MICROCODE_INTEL is not set
CONFIG_MICROCODE_AMD=y
CONFIG_MICROCODE_OLD_INTERFACE=y
CONFIG_X86_MSR=y
CONFIG_X86_CPUID=y
# CONFIG_NOHIGHMEM is not set
# CONFIG_HIGHMEM4G is not set
CONFIG_HIGHMEM64G=y
CONFIG_PAGE_OFFSET=0xC0000000
CONFIG_HIGHMEM=y
CONFIG_X86_PAE=y
CONFIG_ARCH_PHYS_ADDR_T_64BIT=y
CONFIG_NUMA=y
CONFIG_NODES_SHIFT=4
CONFIG_HAVE_ARCH_BOOTMEM=y
CONFIG_ARCH_HAVE_MEMORY_PRESENT=y
CONFIG_NEED_NODE_MEMMAP_SIZE=y
CONFIG_HAVE_ARCH_ALLOC_REMAP=y
CONFIG_ARCH_DISCONTIGMEM_ENABLE=y
CONFIG_ARCH_DISCONTIGMEM_DEFAULT=y
CONFIG_ARCH_SPARSEMEM_ENABLE=y
CONFIG_ARCH_SELECT_MEMORY_MODEL=y
CONFIG_ILLEGAL_POINTER_VALUE=0
CONFIG_SELECT_MEMORY_MODEL=y
# CONFIG_FLATMEM_MANUAL is not set
CONFIG_DISCONTIGMEM_MANUAL=y
# CONFIG_SPARSEMEM_MANUAL is not set
CONFIG_DISCONTIGMEM=y
CONFIG_FLAT_NODE_MEM_MAP=y
CONFIG_NEED_MULTIPLE_NODES=y
CONFIG_HAVE_MEMORY_PRESENT=y
CONFIG_SPARSEMEM_STATIC=y
CONFIG_PAGEFLAGS_EXTENDED=y
CONFIG_SPLIT_PTLOCK_CPUS=999999
# CONFIG_COMPACTION is not set
CONFIG_MIGRATION=y
CONFIG_PHYS_ADDR_T_64BIT=y
CONFIG_ZONE_DMA_FLAG=1
CONFIG_BOUNCE=y
CONFIG_VIRT_TO_BUS=y
# CONFIG_KSM is not set
CONFIG_DEFAULT_MMAP_MIN_ADDR=4096
# CONFIG_HIGHPTE is not set
# CONFIG_X86_CHECK_BIOS_CORRUPTION is not set
CONFIG_X86_RESERVE_LOW_64K=y
# CONFIG_MATH_EMULATION is not set
CONFIG_MTRR=y
# CONFIG_MTRR_SANITIZER is not set
CONFIG_X86_PAT=y
CONFIG_ARCH_USES_PG_UNCACHED=y
CONFIG_EFI=y
CONFIG_SECCOMP=y
CONFIG_CC_STACKPROTECTOR=y
CONFIG_HZ_100=y
# CONFIG_HZ_250 is not set
# CONFIG_HZ_300 is not set
# CONFIG_HZ_1000 is not set
CONFIG_HZ=100
# CONFIG_SCHED_HRTICK is not set
# CONFIG_KEXEC is not set
CONFIG_CRASH_DUMP=y
CONFIG_PHYSICAL_START=0x1000000
CONFIG_RELOCATABLE=y
CONFIG_X86_NEED_RELOCS=y
CONFIG_PHYSICAL_ALIGN=0x1000000
CONFIG_HOTPLUG_CPU=y
# CONFIG_COMPAT_VDSO is not set
CONFIG_CMDLINE_BOOL=y
CONFIG_CMDLINE=""
# CONFIG_CMDLINE_OVERRIDE is not set
CONFIG_ARCH_ENABLE_MEMORY_HOTPLUG=y
# CONFIG_HAVE_ARCH_EARLY_PFN_TO_NID is not set
# CONFIG_USE_PERCPU_NUMA_NODE_ID is not set
#
# Power management and ACPI options
#
CONFIG_PM=y
# CONFIG_PM_DEBUG is not set
# CONFIG_SUSPEND is not set
# CONFIG_PM_RUNTIME is not set
CONFIG_ACPI=y
CONFIG_ACPI_PROCFS=y
CONFIG_ACPI_PROCFS_POWER=y
# CONFIG_ACPI_POWER_METER is not set
CONFIG_ACPI_SYSFS_POWER=y
CONFIG_ACPI_PROC_EVENT=y
# CONFIG_ACPI_AC is not set
CONFIG_ACPI_BATTERY=y
CONFIG_ACPI_BUTTON=m
CONFIG_ACPI_FAN=y
CONFIG_ACPI_DOCK=y
CONFIG_ACPI_PROCESSOR=m
CONFIG_ACPI_HOTPLUG_CPU=y
CONFIG_ACPI_PROCESSOR_AGGREGATOR=m
CONFIG_ACPI_THERMAL=m
CONFIG_ACPI_NUMA=y
# CONFIG_ACPI_CUSTOM_DSDT is not set
CONFIG_ACPI_BLACKLIST_YEAR=0
CONFIG_ACPI_DEBUG=y
CONFIG_ACPI_DEBUG_FUNC_TRACE=y
# CONFIG_ACPI_PCI_SLOT is not set
CONFIG_X86_PM_TIMER=y
CONFIG_ACPI_CONTAINER=m
# CONFIG_ACPI_SBS is not set
CONFIG_SFI=y
#
# CPU Frequency scaling
#
CONFIG_CPU_FREQ=y
CONFIG_CPU_FREQ_TABLE=y
# CONFIG_CPU_FREQ_DEBUG is not set
# 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=m
# 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
#
# CPUFreq processor drivers
#
CONFIG_X86_PCC_CPUFREQ=m
CONFIG_X86_ACPI_CPUFREQ=m
# CONFIG_X86_POWERNOW_K6 is not set
CONFIG_X86_POWERNOW_K7=m
CONFIG_X86_POWERNOW_K7_ACPI=y
CONFIG_X86_POWERNOW_K8=m
CONFIG_X86_GX_SUSPMOD=y
# CONFIG_X86_SPEEDSTEP_CENTRINO is not set
# CONFIG_X86_SPEEDSTEP_ICH is not set
CONFIG_X86_SPEEDSTEP_SMI=y
CONFIG_X86_P4_CLOCKMOD=y
CONFIG_X86_CPUFREQ_NFORCE2=m
CONFIG_X86_LONGRUN=m
# CONFIG_X86_LONGHAUL is not set
CONFIG_X86_E_POWERSAVER=m
#
# shared options
#
CONFIG_X86_SPEEDSTEP_LIB=y
CONFIG_X86_SPEEDSTEP_RELAXED_CAP_CHECK=y
CONFIG_CPU_IDLE=y
CONFIG_CPU_IDLE_GOV_LADDER=y
CONFIG_CPU_IDLE_GOV_MENU=y
#
# Bus options (PCI etc.)
#
CONFIG_PCI=y
# CONFIG_PCI_GOBIOS is not set
CONFIG_PCI_GOMMCONFIG=y
# CONFIG_PCI_GODIRECT is not set
# CONFIG_PCI_GOOLPC is not set
# CONFIG_PCI_GOANY is not set
CONFIG_PCI_MMCONFIG=y
CONFIG_PCI_DOMAINS=y
# CONFIG_PCI_CNB20LE_QUIRK is not set
CONFIG_DMAR=y
CONFIG_DMAR_DEFAULT_ON=y
CONFIG_DMAR_FLOPPY_WA=y
# CONFIG_PCIEPORTBUS is not set
CONFIG_ARCH_SUPPORTS_MSI=y
CONFIG_PCI_MSI=y
# CONFIG_PCI_DEBUG is not set
CONFIG_PCI_STUB=y
CONFIG_HT_IRQ=y
CONFIG_PCI_IOV=y
CONFIG_PCI_IOAPIC=y
CONFIG_ISA_DMA_API=y
CONFIG_ISA=y
CONFIG_EISA=y
CONFIG_EISA_VLB_PRIMING=y
CONFIG_EISA_PCI_EISA=y
# CONFIG_EISA_VIRTUAL_ROOT is not set
CONFIG_EISA_NAMES=y
CONFIG_MCA=y
CONFIG_MCA_LEGACY=y
# CONFIG_MCA_PROC_FS is not set
CONFIG_SCx200=m
CONFIG_SCx200HR_TIMER=m
CONFIG_OLPC=y
CONFIG_K8_NB=y
# CONFIG_PCCARD is not set
CONFIG_HOTPLUG_PCI=y
CONFIG_HOTPLUG_PCI_FAKE=y
CONFIG_HOTPLUG_PCI_ACPI=m
CONFIG_HOTPLUG_PCI_ACPI_IBM=m
CONFIG_HOTPLUG_PCI_CPCI=y
# CONFIG_HOTPLUG_PCI_CPCI_ZT5550 is not set
CONFIG_HOTPLUG_PCI_CPCI_GENERIC=y
CONFIG_HOTPLUG_PCI_SHPC=m
#
# Executable file formats / Emulations
#
CONFIG_BINFMT_ELF=y
CONFIG_CORE_DUMP_DEFAULT_ELF_HEADERS=y
CONFIG_HAVE_AOUT=y
# CONFIG_BINFMT_AOUT is not set
# CONFIG_BINFMT_MISC is not set
CONFIG_HAVE_ATOMIC_IOMAP=y
CONFIG_NET=y
#
# Networking options
#
CONFIG_PACKET=y
CONFIG_UNIX=y
CONFIG_XFRM=y
# CONFIG_XFRM_USER is not set
CONFIG_XFRM_SUB_POLICY=y
# CONFIG_XFRM_MIGRATE is not set
CONFIG_XFRM_STATISTICS=y
CONFIG_XFRM_IPCOMP=y
# CONFIG_NET_KEY is not set
CONFIG_INET=y
# CONFIG_IP_MULTICAST is not set
CONFIG_IP_ADVANCED_ROUTER=y
CONFIG_ASK_IP_FIB_HASH=y
# CONFIG_IP_FIB_TRIE is not set
CONFIG_IP_FIB_HASH=y
# CONFIG_IP_MULTIPLE_TABLES is not set
# CONFIG_IP_ROUTE_MULTIPATH is not set
# CONFIG_IP_ROUTE_VERBOSE is not set
# CONFIG_IP_PNP is not set
CONFIG_NET_IPIP=y
# CONFIG_NET_IPGRE is not set
CONFIG_ARPD=y
CONFIG_SYN_COOKIES=y
# CONFIG_INET_AH is not set
CONFIG_INET_ESP=m
CONFIG_INET_IPCOMP=y
CONFIG_INET_XFRM_TUNNEL=y
CONFIG_INET_TUNNEL=y
# CONFIG_INET_XFRM_MODE_TRANSPORT is not set
CONFIG_INET_XFRM_MODE_TUNNEL=y
# CONFIG_INET_XFRM_MODE_BEET is not set
CONFIG_INET_LRO=y
CONFIG_INET_DIAG=m
CONFIG_INET_TCP_DIAG=m
CONFIG_TCP_CONG_ADVANCED=y
CONFIG_TCP_CONG_BIC=m
CONFIG_TCP_CONG_CUBIC=m
CONFIG_TCP_CONG_WESTWOOD=m
CONFIG_TCP_CONG_HTCP=y
CONFIG_TCP_CONG_HSTCP=y
# CONFIG_TCP_CONG_HYBLA is not set
CONFIG_TCP_CONG_VEGAS=y
CONFIG_TCP_CONG_SCALABLE=y
# CONFIG_TCP_CONG_LP is not set
CONFIG_TCP_CONG_VENO=m
# CONFIG_TCP_CONG_YEAH is not set
# CONFIG_TCP_CONG_ILLINOIS is not set
# CONFIG_DEFAULT_BIC is not set
# CONFIG_DEFAULT_CUBIC is not set
CONFIG_DEFAULT_HTCP=y
# CONFIG_DEFAULT_HYBLA is not set
# CONFIG_DEFAULT_VEGAS is not set
# CONFIG_DEFAULT_VENO is not set
# CONFIG_DEFAULT_WESTWOOD is not set
# CONFIG_DEFAULT_RENO is not set
CONFIG_DEFAULT_TCP_CONG="htcp"
CONFIG_TCP_MD5SIG=y
# CONFIG_IPV6 is not set
CONFIG_NETLABEL=y
CONFIG_NETWORK_SECMARK=y
CONFIG_NETFILTER=y
CONFIG_NETFILTER_DEBUG=y
CONFIG_NETFILTER_ADVANCED=y
#
# Core Netfilter Configuration
#
CONFIG_NETFILTER_NETLINK=m
CONFIG_NETFILTER_NETLINK_QUEUE=m
CONFIG_NETFILTER_NETLINK_LOG=m
# CONFIG_NF_CONNTRACK is not set
CONFIG_NETFILTER_XTABLES=y
#
# Xtables combined modules
#
CONFIG_NETFILTER_XT_MARK=m
#
# Xtables targets
#
CONFIG_NETFILTER_XT_TARGET_CLASSIFY=m
# CONFIG_NETFILTER_XT_TARGET_LED is not set
# CONFIG_NETFILTER_XT_TARGET_MARK is not set
CONFIG_NETFILTER_XT_TARGET_NFLOG=m
CONFIG_NETFILTER_XT_TARGET_NFQUEUE=m
CONFIG_NETFILTER_XT_TARGET_RATEEST=m
CONFIG_NETFILTER_XT_TARGET_TEE=y
CONFIG_NETFILTER_XT_TARGET_SECMARK=y
CONFIG_NETFILTER_XT_TARGET_TCPMSS=y
#
# Xtables matches
#
CONFIG_NETFILTER_XT_MATCH_COMMENT=m
CONFIG_NETFILTER_XT_MATCH_DCCP=m
# CONFIG_NETFILTER_XT_MATCH_DSCP is not set
CONFIG_NETFILTER_XT_MATCH_ESP=m
CONFIG_NETFILTER_XT_MATCH_HASHLIMIT=m
CONFIG_NETFILTER_XT_MATCH_HL=y
CONFIG_NETFILTER_XT_MATCH_IPRANGE=y
CONFIG_NETFILTER_XT_MATCH_LENGTH=m
CONFIG_NETFILTER_XT_MATCH_LIMIT=y
CONFIG_NETFILTER_XT_MATCH_MAC=m
# CONFIG_NETFILTER_XT_MATCH_MARK is not set
# CONFIG_NETFILTER_XT_MATCH_MULTIPORT is not set
# CONFIG_NETFILTER_XT_MATCH_OSF is not set
# CONFIG_NETFILTER_XT_MATCH_OWNER is not set
CONFIG_NETFILTER_XT_MATCH_POLICY=y
# CONFIG_NETFILTER_XT_MATCH_PKTTYPE is not set
CONFIG_NETFILTER_XT_MATCH_QUOTA=y
CONFIG_NETFILTER_XT_MATCH_RATEEST=m
CONFIG_NETFILTER_XT_MATCH_REALM=y
CONFIG_NETFILTER_XT_MATCH_RECENT=y
CONFIG_NETFILTER_XT_MATCH_SCTP=y
CONFIG_NETFILTER_XT_MATCH_STATISTIC=y
# CONFIG_NETFILTER_XT_MATCH_STRING is not set
CONFIG_NETFILTER_XT_MATCH_TCPMSS=m
CONFIG_NETFILTER_XT_MATCH_TIME=m
CONFIG_NETFILTER_XT_MATCH_U32=m
CONFIG_IP_VS=m
CONFIG_IP_VS_DEBUG=y
CONFIG_IP_VS_TAB_BITS=12
#
# IPVS transport protocol load balancing support
#
# CONFIG_IP_VS_PROTO_TCP is not set
CONFIG_IP_VS_PROTO_UDP=y
CONFIG_IP_VS_PROTO_AH_ESP=y
# CONFIG_IP_VS_PROTO_ESP is not set
CONFIG_IP_VS_PROTO_AH=y
# CONFIG_IP_VS_PROTO_SCTP is not set
#
# IPVS scheduler
#
CONFIG_IP_VS_RR=m
# CONFIG_IP_VS_WRR is not set
# CONFIG_IP_VS_LC is not set
CONFIG_IP_VS_WLC=m
CONFIG_IP_VS_LBLC=m
# CONFIG_IP_VS_LBLCR is not set
# CONFIG_IP_VS_DH is not set
# CONFIG_IP_VS_SH is not set
CONFIG_IP_VS_SED=m
# CONFIG_IP_VS_NQ is not set
#
# IPVS application helper
#
#
# IP: Netfilter Configuration
#
# CONFIG_NF_DEFRAG_IPV4 is not set
# CONFIG_IP_NF_QUEUE is not set
# CONFIG_IP_NF_IPTABLES is not set
# CONFIG_IP_NF_ARPTABLES is not set
#
# DECnet: Netfilter Configuration
#
# CONFIG_DECNET_NF_GRABULATOR is not set
# CONFIG_IP_DCCP is not set
CONFIG_IP_SCTP=y
CONFIG_NET_SCTPPROBE=m
CONFIG_SCTP_DBG_MSG=y
# CONFIG_SCTP_DBG_OBJCNT is not set
# CONFIG_SCTP_HMAC_NONE is not set
# CONFIG_SCTP_HMAC_SHA1 is not set
CONFIG_SCTP_HMAC_MD5=y
CONFIG_RDS=m
# CONFIG_RDS_TCP is not set
CONFIG_RDS_DEBUG=y
CONFIG_TIPC=y
# CONFIG_TIPC_ADVANCED is not set
# CONFIG_TIPC_DEBUG is not set
CONFIG_ATM=y
CONFIG_ATM_CLIP=m
# CONFIG_ATM_CLIP_NO_ICMP is not set
# CONFIG_ATM_LANE is not set
# CONFIG_ATM_BR2684 is not set
# CONFIG_L2TP is not set
CONFIG_STP=m
CONFIG_GARP=m
# CONFIG_BRIDGE is not set
CONFIG_NET_DSA=y
CONFIG_NET_DSA_TAG_DSA=y
CONFIG_NET_DSA_TAG_EDSA=y
# CONFIG_NET_DSA_TAG_TRAILER is not set
CONFIG_NET_DSA_MV88E6XXX=y
# CONFIG_NET_DSA_MV88E6060 is not set
CONFIG_NET_DSA_MV88E6XXX_NEED_PPU=y
CONFIG_NET_DSA_MV88E6131=y
CONFIG_NET_DSA_MV88E6123_61_65=y
CONFIG_VLAN_8021Q=m
CONFIG_VLAN_8021Q_GVRP=y
CONFIG_DECNET=m
CONFIG_DECNET_ROUTER=y
CONFIG_LLC=y
CONFIG_LLC2=y
CONFIG_IPX=m
CONFIG_IPX_INTERN=y
# CONFIG_ATALK is not set
CONFIG_X25=m
# CONFIG_LAPB is not set
# CONFIG_ECONET is not set
# CONFIG_WAN_ROUTER is not set
CONFIG_PHONET=m
# CONFIG_IEEE802154 is not set
CONFIG_NET_SCHED=y
#
# Queueing/Scheduling
#
# CONFIG_NET_SCH_CBQ is not set
CONFIG_NET_SCH_HTB=y
CONFIG_NET_SCH_HFSC=y
CONFIG_NET_SCH_ATM=m
CONFIG_NET_SCH_PRIO=m
CONFIG_NET_SCH_MULTIQ=y
# CONFIG_NET_SCH_RED is not set
CONFIG_NET_SCH_SFQ=m
# CONFIG_NET_SCH_TEQL is not set
CONFIG_NET_SCH_TBF=y
CONFIG_NET_SCH_GRED=y
# CONFIG_NET_SCH_DSMARK is not set
CONFIG_NET_SCH_NETEM=y
# CONFIG_NET_SCH_DRR is not set
#
# Classification
#
CONFIG_NET_CLS=y
# CONFIG_NET_CLS_BASIC is not set
CONFIG_NET_CLS_TCINDEX=y
CONFIG_NET_CLS_ROUTE4=m
CONFIG_NET_CLS_ROUTE=y
# CONFIG_NET_CLS_FW is not set
CONFIG_NET_CLS_U32=y
CONFIG_CLS_U32_PERF=y
# CONFIG_CLS_U32_MARK is not set
# CONFIG_NET_CLS_RSVP is not set
CONFIG_NET_CLS_RSVP6=y
CONFIG_NET_CLS_FLOW=y
CONFIG_NET_EMATCH=y
CONFIG_NET_EMATCH_STACK=32
# CONFIG_NET_EMATCH_CMP is not set
# CONFIG_NET_EMATCH_NBYTE is not set
# CONFIG_NET_EMATCH_U32 is not set
CONFIG_NET_EMATCH_META=y
CONFIG_NET_EMATCH_TEXT=y
# CONFIG_NET_CLS_ACT is not set
CONFIG_NET_CLS_IND=y
CONFIG_NET_SCH_FIFO=y
# CONFIG_DCB is not set
CONFIG_RPS=y
#
# Network testing
#
# CONFIG_NET_PKTGEN is not set
CONFIG_NET_TCPPROBE=y
# CONFIG_NET_DROP_MONITOR is not set
# CONFIG_HAMRADIO is not set
CONFIG_CAN=y
CONFIG_CAN_RAW=m
CONFIG_CAN_BCM=y
#
# CAN Device Drivers
#
# CONFIG_CAN_VCAN is not set
CONFIG_CAN_DEV=y
CONFIG_CAN_CALC_BITTIMING=y
CONFIG_CAN_SJA1000=y
# CONFIG_CAN_SJA1000_ISA is not set
CONFIG_CAN_SJA1000_PLATFORM=m
# CONFIG_CAN_EMS_PCI is not set
CONFIG_CAN_KVASER_PCI=y
CONFIG_CAN_PLX_PCI=y
#
# CAN USB interfaces
#
CONFIG_CAN_EMS_USB=m
CONFIG_CAN_DEBUG_DEVICES=y
CONFIG_IRDA=m
#
# IrDA protocols
#
# CONFIG_IRLAN is not set
# CONFIG_IRCOMM is not set
# CONFIG_IRDA_ULTRA is not set
#
# IrDA options
#
CONFIG_IRDA_CACHE_LAST_LSAP=y
CONFIG_IRDA_FAST_RR=y
# CONFIG_IRDA_DEBUG is not set
#
# Infrared-port device drivers
#
#
# SIR device drivers
#
# CONFIG_IRTTY_SIR is not set
#
# Dongle support
#
CONFIG_KINGSUN_DONGLE=m
CONFIG_KSDAZZLE_DONGLE=m
# CONFIG_KS959_DONGLE is not set
#
# FIR device drivers
#
CONFIG_USB_IRDA=m
# CONFIG_SIGMATEL_FIR is not set
CONFIG_NSC_FIR=m
# CONFIG_WINBOND_FIR is not set
CONFIG_TOSHIBA_FIR=m
CONFIG_SMC_IRCC_FIR=m
CONFIG_ALI_FIR=m
# CONFIG_VLSI_FIR is not set
# CONFIG_VIA_FIR is not set
CONFIG_MCS_FIR=m
CONFIG_BT=y
# CONFIG_BT_L2CAP is not set
CONFIG_BT_SCO=y
#
# Bluetooth device drivers
#
CONFIG_BT_HCIBTUSB=m
CONFIG_BT_HCIBTSDIO=m
CONFIG_BT_HCIUART=m
CONFIG_BT_HCIUART_H4=y
CONFIG_BT_HCIUART_BCSP=y
CONFIG_BT_HCIUART_LL=y
# CONFIG_BT_HCIBCM203X is not set
# CONFIG_BT_HCIBPA10X is not set
# CONFIG_BT_HCIBFUSB is not set
CONFIG_BT_HCIVHCI=m
CONFIG_BT_MRVL=y
CONFIG_BT_MRVL_SDIO=y
# CONFIG_BT_ATH3K is not set
CONFIG_AF_RXRPC=m
CONFIG_AF_RXRPC_DEBUG=y
CONFIG_RXKAD=m
CONFIG_FIB_RULES=y
# CONFIG_WIRELESS is not set
CONFIG_WIMAX=m
CONFIG_WIMAX_DEBUG_LEVEL=8
# CONFIG_RFKILL is not set
# CONFIG_NET_9P is not set
# CONFIG_CAIF is not set
#
# Device Drivers
#
#
# Generic Driver Options
#
CONFIG_UEVENT_HELPER_PATH=""
CONFIG_DEVTMPFS=y
# CONFIG_DEVTMPFS_MOUNT is not set
CONFIG_STANDALONE=y
CONFIG_PREVENT_FIRMWARE_BUILD=y
CONFIG_FW_LOADER=y
# CONFIG_FIRMWARE_IN_KERNEL is not set
CONFIG_EXTRA_FIRMWARE=""
CONFIG_DEBUG_DRIVER=y
CONFIG_DEBUG_DEVRES=y
# CONFIG_SYS_HYPERVISOR is not set
# CONFIG_CONNECTOR is not set
# CONFIG_MTD is not set
# CONFIG_PARPORT is not set
CONFIG_PNP=y
CONFIG_PNP_DEBUG_MESSAGES=y
#
# Protocols
#
CONFIG_ISAPNP=y
# CONFIG_PNPBIOS is not set
CONFIG_PNPACPI=y
CONFIG_BLK_DEV=y
# CONFIG_BLK_DEV_FD is not set
CONFIG_BLK_DEV_XD=m
CONFIG_BLK_CPQ_DA=y
# CONFIG_BLK_CPQ_CISS_DA is not set
CONFIG_BLK_DEV_DAC960=y
CONFIG_BLK_DEV_UMEM=m
# CONFIG_BLK_DEV_COW_COMMON is not set
# CONFIG_BLK_DEV_LOOP is not set
#
# DRBD disabled because PROC_FS, INET or CONNECTOR not selected
#
CONFIG_BLK_DEV_NBD=m
CONFIG_BLK_DEV_OSD=m
# CONFIG_BLK_DEV_SX8 is not set
CONFIG_BLK_DEV_UB=m
CONFIG_BLK_DEV_RAM=m
CONFIG_BLK_DEV_RAM_COUNT=16
CONFIG_BLK_DEV_RAM_SIZE=4096
CONFIG_BLK_DEV_XIP=y
# CONFIG_CDROM_PKTCDVD is not set
# CONFIG_ATA_OVER_ETH is not set
CONFIG_VIRTIO_BLK=m
# CONFIG_BLK_DEV_HD is not set
CONFIG_MISC_DEVICES=y
# CONFIG_AD525X_DPOT is not set
CONFIG_IBM_ASM=y
CONFIG_PHANTOM=y
# CONFIG_SGI_IOC4 is not set
CONFIG_TIFM_CORE=m
# CONFIG_TIFM_7XX1 is not set
CONFIG_ICS932S401=y
CONFIG_ENCLOSURE_SERVICES=m
CONFIG_CS5535_MFGPT=y
CONFIG_CS5535_MFGPT_DEFAULT_IRQ=7
CONFIG_CS5535_CLOCK_EVENT_SRC=m
CONFIG_HP_ILO=m
CONFIG_ISL29003=m
CONFIG_SENSORS_TSL2550=m
CONFIG_DS1682=y
CONFIG_VMWARE_BALLOON=m
# 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=y
# CONFIG_CB710_DEBUG is not set
CONFIG_CB710_DEBUG_ASSUMPTIONS=y
CONFIG_IWMC3200TOP=m
# CONFIG_IWMC3200TOP_DEBUG is not set
# CONFIG_IWMC3200TOP_DEBUGFS is not set
CONFIG_HAVE_IDE=y
# CONFIG_IDE is not set
#
# SCSI device support
#
CONFIG_SCSI_MOD=y
CONFIG_RAID_ATTRS=m
CONFIG_SCSI=y
CONFIG_SCSI_DMA=y
CONFIG_SCSI_TGT=m
CONFIG_SCSI_NETLINK=y
CONFIG_SCSI_PROC_FS=y
#
# SCSI support type (disk, tape, CD-ROM)
#
CONFIG_BLK_DEV_SD=y
CONFIG_CHR_DEV_ST=m
CONFIG_CHR_DEV_OSST=y
CONFIG_BLK_DEV_SR=y
CONFIG_BLK_DEV_SR_VENDOR=y
# CONFIG_CHR_DEV_SG is not set
# CONFIG_CHR_DEV_SCH is not set
CONFIG_SCSI_ENCLOSURE=m
# CONFIG_SCSI_MULTI_LUN is not set
CONFIG_SCSI_CONSTANTS=y
CONFIG_SCSI_LOGGING=y
# CONFIG_SCSI_SCAN_ASYNC is not set
CONFIG_SCSI_WAIT_SCAN=m
#
# SCSI Transports
#
CONFIG_SCSI_SPI_ATTRS=y
CONFIG_SCSI_FC_ATTRS=m
# CONFIG_SCSI_FC_TGT_ATTRS is not set
CONFIG_SCSI_ISCSI_ATTRS=y
CONFIG_SCSI_SAS_ATTRS=y
CONFIG_SCSI_SAS_LIBSAS=y
CONFIG_SCSI_SAS_ATA=y
# CONFIG_SCSI_SAS_HOST_SMP is not set
# CONFIG_SCSI_SAS_LIBSAS_DEBUG is not set
# CONFIG_SCSI_SRP_ATTRS is not set
# CONFIG_SCSI_LOWLEVEL is not set
CONFIG_SCSI_DH=y
CONFIG_SCSI_DH_RDAC=m
# CONFIG_SCSI_DH_HP_SW is not set
# CONFIG_SCSI_DH_EMC is not set
# CONFIG_SCSI_DH_ALUA is not set
CONFIG_SCSI_OSD_INITIATOR=y
CONFIG_SCSI_OSD_ULD=m
CONFIG_SCSI_OSD_DPRINT_SENSE=1
# CONFIG_SCSI_OSD_DEBUG is not set
CONFIG_ATA=y
# CONFIG_ATA_NONSTANDARD is not set
# CONFIG_ATA_VERBOSE_ERROR is not set
CONFIG_ATA_ACPI=y
CONFIG_SATA_PMP=y
CONFIG_SATA_AHCI=y
# CONFIG_SATA_AHCI_PLATFORM is not set
CONFIG_SATA_SIL24=y
# CONFIG_SATA_INIC162X is not set
CONFIG_ATA_SFF=y
# CONFIG_SATA_SVW is not set
CONFIG_ATA_PIIX=y
CONFIG_SATA_MV=y
CONFIG_SATA_NV=y
# CONFIG_PDC_ADMA is not set
CONFIG_SATA_QSTOR=y
# CONFIG_SATA_PROMISE is not set
CONFIG_SATA_SX4=m
CONFIG_SATA_SIL=y
CONFIG_SATA_SIS=m
CONFIG_SATA_ULI=m
# CONFIG_SATA_VIA is not set
# CONFIG_SATA_VITESSE is not set
CONFIG_PATA_ACPI=y
CONFIG_PATA_ALI=y
CONFIG_PATA_AMD=y
# CONFIG_PATA_ARTOP is not set
CONFIG_PATA_ATP867X=y
# CONFIG_PATA_ATIIXP is not set
CONFIG_PATA_CMD640_PCI=y
# CONFIG_PATA_CMD64X is not set
CONFIG_PATA_CS5520=m
CONFIG_PATA_CS5530=y
CONFIG_PATA_CS5535=y
CONFIG_PATA_CS5536=y
CONFIG_PATA_CYPRESS=y
CONFIG_PATA_EFAR=y
# CONFIG_ATA_GENERIC is not set
CONFIG_PATA_HPT366=m
# CONFIG_PATA_HPT37X is not set
CONFIG_PATA_HPT3X2N=y
CONFIG_PATA_HPT3X3=m
CONFIG_PATA_HPT3X3_DMA=y
CONFIG_PATA_ISAPNP=m
CONFIG_PATA_IT821X=m
CONFIG_PATA_IT8213=m
CONFIG_PATA_JMICRON=m
# CONFIG_PATA_LEGACY is not set
CONFIG_PATA_TRIFLEX=y
# CONFIG_PATA_MARVELL is not set
CONFIG_PATA_MPIIX=y
CONFIG_PATA_OLDPIIX=y
CONFIG_PATA_NETCELL=y
# CONFIG_PATA_NINJA32 is not set
# CONFIG_PATA_NS87410 is not set
# CONFIG_PATA_NS87415 is not set
CONFIG_PATA_OPTI=m
# CONFIG_PATA_OPTIDMA is not set
CONFIG_PATA_PDC2027X=y
CONFIG_PATA_PDC_OLD=y
CONFIG_PATA_QDI=m
CONFIG_PATA_RADISYS=y
CONFIG_PATA_RDC=y
# CONFIG_PATA_RZ1000 is not set
CONFIG_PATA_SC1200=y
CONFIG_PATA_SERVERWORKS=y
CONFIG_PATA_SIL680=y
CONFIG_PATA_SIS=m
CONFIG_PATA_TOSHIBA=m
CONFIG_PATA_VIA=y
CONFIG_PATA_WINBOND=y
CONFIG_PATA_WINBOND_VLB=y
# CONFIG_PATA_SCH is not set
# CONFIG_MD is not set
CONFIG_FUSION=y
CONFIG_FUSION_SPI=y
CONFIG_FUSION_FC=m
CONFIG_FUSION_SAS=m
CONFIG_FUSION_MAX_SGE=128
# CONFIG_FUSION_CTL is not set
CONFIG_FUSION_LOGGING=y
#
# IEEE 1394 (FireWire) support
#
#
# You can enable one or both FireWire driver stacks.
#
#
# The newer stack is recommended.
#
CONFIG_FIREWIRE=m
CONFIG_FIREWIRE_OHCI=m
CONFIG_FIREWIRE_OHCI_DEBUG=y
# CONFIG_FIREWIRE_SBP2 is not set
# CONFIG_FIREWIRE_NET is not set
# CONFIG_IEEE1394 is not set
CONFIG_I2O=y
CONFIG_I2O_LCT_NOTIFY_ON_CHANGES=y
# CONFIG_I2O_EXT_ADAPTEC is not set
# CONFIG_I2O_CONFIG is not set
CONFIG_I2O_BUS=y
CONFIG_I2O_BLOCK=m
# CONFIG_I2O_SCSI is not set
CONFIG_I2O_PROC=m
# CONFIG_MACINTOSH_DRIVERS is not set
CONFIG_NETDEVICES=y
CONFIG_DUMMY=m
CONFIG_BONDING=m
CONFIG_MACVLAN=m
CONFIG_MACVTAP=m
# CONFIG_EQUALIZER is not set
CONFIG_TUN=y
CONFIG_VETH=m
# CONFIG_NET_SB1000 is not set
CONFIG_ARCNET=y
CONFIG_ARCNET_1201=m
# CONFIG_ARCNET_1051 is not set
# CONFIG_ARCNET_RAW is not set
CONFIG_ARCNET_CAP=y
CONFIG_ARCNET_COM90xx=m
CONFIG_ARCNET_COM90xxIO=y
CONFIG_ARCNET_RIM_I=y
CONFIG_ARCNET_COM20020=m
# CONFIG_ARCNET_COM20020_ISA is not set
# CONFIG_ARCNET_COM20020_PCI is not set
CONFIG_PHYLIB=y
#
# MII PHY device drivers
#
# CONFIG_MARVELL_PHY is not set
# CONFIG_DAVICOM_PHY is not set
# CONFIG_QSEMI_PHY is not set
CONFIG_LXT_PHY=y
CONFIG_CICADA_PHY=y
CONFIG_VITESSE_PHY=y
CONFIG_SMSC_PHY=y
CONFIG_BROADCOM_PHY=y
CONFIG_ICPLUS_PHY=m
CONFIG_REALTEK_PHY=m
# CONFIG_NATIONAL_PHY is not set
CONFIG_STE10XP=y
# CONFIG_LSI_ET1011C_PHY is not set
CONFIG_MICREL_PHY=y
# CONFIG_FIXED_PHY is not set
CONFIG_MDIO_BITBANG=m
# CONFIG_MDIO_GPIO is not set
CONFIG_NET_ETHERNET=y
CONFIG_MII=y
# CONFIG_HAPPYMEAL is not set
CONFIG_SUNGEM=y
# CONFIG_CASSINI is not set
# CONFIG_NET_VENDOR_3COM is not set
CONFIG_LANCE=y
CONFIG_NET_VENDOR_SMC=y
# CONFIG_WD80x3 is not set
CONFIG_ULTRAMCA=m
# CONFIG_ULTRA is not set
CONFIG_ULTRA32=y
CONFIG_SMC9194=y
CONFIG_ETHOC=m
# CONFIG_NET_VENDOR_RACAL is not set
CONFIG_DNET=y
# CONFIG_NET_TULIP is not set
# CONFIG_AT1700 is not set
CONFIG_DEPCA=m
CONFIG_HP100=m
CONFIG_NET_ISA=y
CONFIG_E2100=m
# CONFIG_EWRK3 is not set
CONFIG_EEXPRESS=y
CONFIG_EEXPRESS_PRO=y
# CONFIG_HPLAN_PLUS is not set
# CONFIG_HPLAN is not set
CONFIG_LP486E=m
CONFIG_ETH16I=y
CONFIG_NE2000=m
CONFIG_ZNET=y
CONFIG_SEEQ8005=y
CONFIG_NE2_MCA=m
# CONFIG_IBMLANA is not set
# CONFIG_IBM_NEW_EMAC_ZMII is not set
# CONFIG_IBM_NEW_EMAC_RGMII is not set
# CONFIG_IBM_NEW_EMAC_TAH is not set
# CONFIG_IBM_NEW_EMAC_EMAC4 is not set
# CONFIG_IBM_NEW_EMAC_NO_FLOW_CTRL is not set
# CONFIG_IBM_NEW_EMAC_MAL_CLR_ICINTSTAT is not set
# CONFIG_IBM_NEW_EMAC_MAL_COMMON_ERR is not set
CONFIG_NET_PCI=y
CONFIG_PCNET32=y
CONFIG_AMD8111_ETH=m
CONFIG_ADAPTEC_STARFIRE=m
# CONFIG_AC3200 is not set
CONFIG_KSZ884X_PCI=y
# CONFIG_APRICOT is not set
# CONFIG_B44 is not set
CONFIG_FORCEDETH=y
CONFIG_CS89x0=y
CONFIG_E100=y
CONFIG_LNE390=y
CONFIG_FEALNX=m
# CONFIG_NATSEMI is not set
# CONFIG_NE2K_PCI is not set
# CONFIG_NE3210 is not set
CONFIG_ES3210=m
CONFIG_8139CP=m
CONFIG_8139TOO=y
CONFIG_8139TOO_PIO=y
CONFIG_8139TOO_TUNE_TWISTER=y
# CONFIG_8139TOO_8129 is not set
CONFIG_8139_OLD_RX_RESET=y
# CONFIG_R6040 is not set
CONFIG_SIS900=m
# CONFIG_EPIC100 is not set
# CONFIG_SMSC9420 is not set
CONFIG_SUNDANCE=m
CONFIG_SUNDANCE_MMIO=y
CONFIG_TLAN=y
CONFIG_KS8842=m
CONFIG_KS8851_MLL=y
CONFIG_VIA_RHINE=y
# CONFIG_VIA_RHINE_MMIO is not set
CONFIG_SC92031=y
CONFIG_ATL2=y
CONFIG_NETDEV_1000=y
CONFIG_ACENIC=m
# CONFIG_ACENIC_OMIT_TIGON_I is not set
CONFIG_DL2K=y
# CONFIG_E1000 is not set
CONFIG_E1000E=y
# CONFIG_IP1000 is not set
CONFIG_IGB=m
# CONFIG_IGB_DCA is not set
# CONFIG_IGBVF is not set
CONFIG_NS83820=y
# CONFIG_HAMACHI is not set
CONFIG_YELLOWFIN=y
CONFIG_R8169=y
# CONFIG_R8169_VLAN is not set
CONFIG_SIS190=y
CONFIG_SKGE=y
# CONFIG_SKGE_DEBUG is not set
CONFIG_SKY2=y
CONFIG_SKY2_DEBUG=y
# CONFIG_VIA_VELOCITY is not set
CONFIG_TIGON3=y
CONFIG_BNX2=y
CONFIG_CNIC=y
CONFIG_QLA3XXX=m
# CONFIG_ATL1 is not set
# CONFIG_ATL1E is not set
CONFIG_ATL1C=m
CONFIG_JME=y
CONFIG_NETDEV_10000=y
CONFIG_MDIO=m
# CONFIG_CHELSIO_T1 is not set
CONFIG_CHELSIO_T3_DEPENDS=y
CONFIG_CHELSIO_T3=m
CONFIG_CHELSIO_T4_DEPENDS=y
# CONFIG_CHELSIO_T4 is not set
CONFIG_ENIC=y
# CONFIG_IXGBE is not set
CONFIG_IXGBEVF=y
CONFIG_IXGB=y
# CONFIG_S2IO is not set
# CONFIG_VXGE is not set
# CONFIG_MYRI10GE is not set
# CONFIG_NETXEN_NIC is not set
CONFIG_NIU=m
CONFIG_MLX4_EN=m
CONFIG_MLX4_CORE=m
CONFIG_MLX4_DEBUG=y
# CONFIG_TEHUTI is not set
CONFIG_BNX2X=m
CONFIG_QLCNIC=y
CONFIG_QLGE=y
CONFIG_SFC=m
CONFIG_BE2NET=m
# CONFIG_TR is not set
# CONFIG_WLAN is not set
#
# WiMAX Wireless Broadband devices
#
# CONFIG_WIMAX_I2400M_USB is not set
# CONFIG_WIMAX_I2400M_SDIO is not set
#
# USB Network Adapters
#
CONFIG_USB_CATC=y
# CONFIG_USB_KAWETH is not set
CONFIG_USB_PEGASUS=m
# CONFIG_USB_RTL8150 is not set
# CONFIG_USB_USBNET is not set
CONFIG_USB_CDC_PHONET=m
CONFIG_USB_IPHETH=y
CONFIG_WAN=y
# CONFIG_HOSTESS_SV11 is not set
CONFIG_COSA=m
# CONFIG_LANMEDIA is not set
CONFIG_SEALEVEL_4021=m
CONFIG_HDLC=m
# CONFIG_HDLC_RAW is not set
CONFIG_HDLC_RAW_ETH=m
# CONFIG_HDLC_CISCO is not set
CONFIG_HDLC_FR=m
CONFIG_HDLC_PPP=m
#
# X.25/LAPB support is disabled
#
# CONFIG_PCI200SYN is not set
CONFIG_WANXL=m
CONFIG_PC300TOO=m
# CONFIG_N2 is not set
CONFIG_C101=m
CONFIG_FARSYNC=m
CONFIG_DSCC4=m
CONFIG_DSCC4_PCISYNC=y
# CONFIG_DSCC4_PCI_RST is not set
CONFIG_DLCI=m
CONFIG_DLCI_MAX=8
# CONFIG_SDLA is not set
CONFIG_SBNI=y
CONFIG_SBNI_MULTILINE=y
CONFIG_ATM_DRIVERS=y
CONFIG_ATM_DUMMY=m
CONFIG_ATM_TCP=m
CONFIG_ATM_LANAI=y
CONFIG_ATM_ENI=m
CONFIG_ATM_ENI_DEBUG=y
# CONFIG_ATM_ENI_TUNE_BURST is not set
CONFIG_ATM_FIRESTREAM=y
# CONFIG_ATM_ZATM is not set
CONFIG_ATM_NICSTAR=m
# CONFIG_ATM_NICSTAR_USE_SUNI is not set
CONFIG_ATM_NICSTAR_USE_IDT77105=y
CONFIG_ATM_IDT77252=y
CONFIG_ATM_IDT77252_DEBUG=y
CONFIG_ATM_IDT77252_RCV_ALL=y
CONFIG_ATM_IDT77252_USE_SUNI=y
CONFIG_ATM_AMBASSADOR=y
CONFIG_ATM_AMBASSADOR_DEBUG=y
# CONFIG_ATM_HORIZON is not set
# CONFIG_ATM_IA is not set
CONFIG_ATM_FORE200E=y
CONFIG_ATM_FORE200E_USE_TASKLET=y
CONFIG_ATM_FORE200E_TX_RETRY=16
CONFIG_ATM_FORE200E_DEBUG=0
CONFIG_ATM_HE=m
# CONFIG_ATM_HE_USE_SUNI is not set
CONFIG_ATM_SOLOS=m
CONFIG_FDDI=m
CONFIG_DEFXX=m
CONFIG_DEFXX_MMIO=y
CONFIG_SKFP=m
# CONFIG_HIPPI is not set
# CONFIG_PPP is not set
CONFIG_SLIP=m
# CONFIG_SLIP_COMPRESSED is not set
CONFIG_SLIP_SMART=y
CONFIG_SLIP_MODE_SLIP6=y
# CONFIG_NET_FC is not set
CONFIG_NETCONSOLE=y
# CONFIG_NETCONSOLE_DYNAMIC is not set
CONFIG_NETPOLL=y
CONFIG_NETPOLL_TRAP=y
CONFIG_NET_POLL_CONTROLLER=y
CONFIG_VIRTIO_NET=y
# CONFIG_VMXNET3 is not set
# CONFIG_ISDN is not set
CONFIG_PHONE=y
CONFIG_PHONE_IXJ=m
#
# Input device support
#
CONFIG_INPUT=y
# CONFIG_INPUT_FF_MEMLESS is not set
CONFIG_INPUT_POLLDEV=y
CONFIG_INPUT_SPARSEKMAP=m
#
# Userland interfaces
#
CONFIG_INPUT_MOUSEDEV=y
# CONFIG_INPUT_MOUSEDEV_PSAUX is not set
CONFIG_INPUT_MOUSEDEV_SCREEN_X=1024
CONFIG_INPUT_MOUSEDEV_SCREEN_Y=768
# CONFIG_INPUT_JOYDEV is not set
CONFIG_INPUT_EVDEV=m
# CONFIG_INPUT_EVBUG is not set
#
# Input Device Drivers
#
CONFIG_INPUT_KEYBOARD=y
CONFIG_KEYBOARD_ADP5520=m
CONFIG_KEYBOARD_ADP5588=m
CONFIG_KEYBOARD_ATKBD=y
CONFIG_QT2160=m
# CONFIG_KEYBOARD_LKKBD is not set
# CONFIG_KEYBOARD_GPIO is not set
# CONFIG_KEYBOARD_TCA6416 is not set
# CONFIG_KEYBOARD_MATRIX is not set
CONFIG_KEYBOARD_LM8323=m
CONFIG_KEYBOARD_MAX7359=y
CONFIG_KEYBOARD_NEWTON=m
CONFIG_KEYBOARD_OPENCORES=m
CONFIG_KEYBOARD_STOWAWAY=m
# CONFIG_KEYBOARD_SUNKBD is not set
CONFIG_KEYBOARD_XTKBD=m
CONFIG_INPUT_MOUSE=y
# CONFIG_MOUSE_PS2 is not set
CONFIG_MOUSE_SERIAL=y
CONFIG_MOUSE_APPLETOUCH=m
# CONFIG_MOUSE_BCM5974 is not set
# CONFIG_MOUSE_INPORT is not set
# CONFIG_MOUSE_LOGIBM is not set
CONFIG_MOUSE_PC110PAD=y
CONFIG_MOUSE_VSXXXAA=m
CONFIG_MOUSE_GPIO=m
CONFIG_MOUSE_SYNAPTICS_I2C=y
CONFIG_INPUT_JOYSTICK=y
CONFIG_JOYSTICK_ANALOG=y
# CONFIG_JOYSTICK_A3D is not set
CONFIG_JOYSTICK_ADI=y
CONFIG_JOYSTICK_COBRA=m
CONFIG_JOYSTICK_GF2K=y
CONFIG_JOYSTICK_GRIP=y
CONFIG_JOYSTICK_GRIP_MP=y
# CONFIG_JOYSTICK_GUILLEMOT is not set
CONFIG_JOYSTICK_INTERACT=y
# CONFIG_JOYSTICK_SIDEWINDER is not set
CONFIG_JOYSTICK_TMDC=m
# CONFIG_JOYSTICK_IFORCE is not set
CONFIG_JOYSTICK_WARRIOR=y
CONFIG_JOYSTICK_MAGELLAN=y
CONFIG_JOYSTICK_SPACEORB=m
CONFIG_JOYSTICK_SPACEBALL=y
# CONFIG_JOYSTICK_STINGER is not set
# CONFIG_JOYSTICK_TWIDJOY is not set
CONFIG_JOYSTICK_ZHENHUA=m
CONFIG_JOYSTICK_JOYDUMP=y
# CONFIG_JOYSTICK_XPAD 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=m
CONFIG_SERIO_CT82C710=m
CONFIG_SERIO_PCIPS2=y
CONFIG_SERIO_LIBPS2=y
CONFIG_SERIO_RAW=y
CONFIG_SERIO_ALTERA_PS2=y
CONFIG_GAMEPORT=y
CONFIG_GAMEPORT_NS558=m
# CONFIG_GAMEPORT_L4 is not set
CONFIG_GAMEPORT_EMU10K1=y
CONFIG_GAMEPORT_FM801=m
#
# Character devices
#
CONFIG_VT=y
CONFIG_CONSOLE_TRANSLATIONS=y
CONFIG_VT_CONSOLE=y
CONFIG_HW_CONSOLE=y
CONFIG_VT_HW_CONSOLE_BINDING=y
CONFIG_DEVKMEM=y
CONFIG_SERIAL_NONSTANDARD=y
CONFIG_COMPUTONE=m
# CONFIG_ROCKETPORT is not set
CONFIG_CYCLADES=m
# CONFIG_CYZ_INTR is not set
CONFIG_DIGIEPCA=m
CONFIG_MOXA_INTELLIO=m
# CONFIG_MOXA_SMARTIO is not set
CONFIG_ISI=y
# CONFIG_SYNCLINK is not set
# CONFIG_SYNCLINKMP is not set
CONFIG_SYNCLINK_GT=m
CONFIG_N_HDLC=m
CONFIG_N_GSM=m
# CONFIG_RISCOM8 is not set
# CONFIG_SPECIALIX is not set
CONFIG_STALDRV=y
# CONFIG_STALLION is not set
# CONFIG_ISTALLION is not set
CONFIG_NOZOMI=m
#
# 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_NR_UARTS=4
CONFIG_SERIAL_8250_RUNTIME_UARTS=4
CONFIG_SERIAL_8250_EXTENDED=y
# CONFIG_SERIAL_8250_MANY_PORTS is not set
CONFIG_SERIAL_8250_SHARE_IRQ=y
CONFIG_SERIAL_8250_DETECT_IRQ=y
CONFIG_SERIAL_8250_RSA=y
CONFIG_SERIAL_8250_MCA=y
#
# Non-8250 serial port support
#
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=m
CONFIG_SERIAL_ALTERA_UART_MAXPORTS=4
CONFIG_SERIAL_ALTERA_UART_BAUDRATE=115200
CONFIG_UNIX98_PTYS=y
CONFIG_DEVPTS_MULTIPLE_INSTANCES=y
CONFIG_LEGACY_PTYS=y
CONFIG_LEGACY_PTY_COUNT=256
CONFIG_HVC_DRIVER=y
CONFIG_VIRTIO_CONSOLE=y
# CONFIG_IPMI_HANDLER is not set
# CONFIG_HW_RANDOM is not set
CONFIG_NVRAM=y
CONFIG_DTLK=m
CONFIG_R3964=y
CONFIG_APPLICOM=y
# CONFIG_SONYPI is not set
# CONFIG_MWAVE is not set
CONFIG_SCx200_GPIO=m
CONFIG_PC8736x_GPIO=m
CONFIG_NSC_GPIO=y
CONFIG_CS5535_GPIO=m
# CONFIG_RAW_DRIVER is not set
CONFIG_HPET=y
CONFIG_HPET_MMAP=y
CONFIG_HANGCHECK_TIMER=y
CONFIG_TCG_TPM=y
CONFIG_TCG_TIS=y
CONFIG_TCG_NSC=y
CONFIG_TCG_ATMEL=y
CONFIG_TCG_INFINEON=y
CONFIG_TELCLOCK=y
CONFIG_DEVPORT=y
# CONFIG_RAMOOPS is not set
CONFIG_I2C=y
CONFIG_I2C_BOARDINFO=y
# CONFIG_I2C_COMPAT is not set
CONFIG_I2C_CHARDEV=y
# CONFIG_I2C_HELPER_AUTO is not set
CONFIG_I2C_SMBUS=y
#
# I2C Algorithms
#
CONFIG_I2C_ALGOBIT=y
CONFIG_I2C_ALGOPCF=y
# CONFIG_I2C_ALGOPCA is not set
#
# I2C Hardware Bus support
#
#
# PC SMBus host controller drivers
#
# CONFIG_I2C_ALI1535 is not set
CONFIG_I2C_ALI1563=y
CONFIG_I2C_ALI15X3=y
# CONFIG_I2C_AMD756 is not set
CONFIG_I2C_AMD8111=y
# CONFIG_I2C_I801 is not set
# CONFIG_I2C_ISCH is not set
# CONFIG_I2C_PIIX4 is not set
CONFIG_I2C_NFORCE2=m
# CONFIG_I2C_NFORCE2_S4985 is not set
# CONFIG_I2C_SIS5595 is not set
CONFIG_I2C_SIS630=y
# CONFIG_I2C_SIS96X is not set
CONFIG_I2C_VIA=m
# CONFIG_I2C_VIAPRO is not set
#
# ACPI drivers
#
CONFIG_I2C_SCMI=y
#
# I2C system bus drivers (mostly embedded / system-on-chip)
#
CONFIG_I2C_GPIO=y
CONFIG_I2C_OCORES=m
CONFIG_I2C_SIMTEC=y
# CONFIG_I2C_XILINX is not set
#
# External I2C/SMBus adapter drivers
#
CONFIG_I2C_PARPORT_LIGHT=y
CONFIG_I2C_TAOS_EVM=m
# CONFIG_I2C_TINY_USB is not set
#
# Other I2C/SMBus bus drivers
#
# CONFIG_I2C_PCA_ISA is not set
# CONFIG_I2C_PCA_PLATFORM is not set
CONFIG_I2C_STUB=m
CONFIG_SCx200_I2C=m
CONFIG_SCx200_I2C_SCL=12
CONFIG_SCx200_I2C_SDA=13
# CONFIG_SCx200_ACB is not set
CONFIG_I2C_DEBUG_CORE=y
CONFIG_I2C_DEBUG_ALGO=y
CONFIG_I2C_DEBUG_BUS=y
# CONFIG_SPI is not set
#
# PPS support
#
CONFIG_PPS=y
# CONFIG_PPS_DEBUG is not set
#
# PPS clients support
#
CONFIG_PPS_CLIENT_KTIMER=m
CONFIG_PPS_CLIENT_LDISC=y
CONFIG_ARCH_WANT_OPTIONAL_GPIOLIB=y
CONFIG_GPIOLIB=y
CONFIG_DEBUG_GPIO=y
CONFIG_GPIO_SYSFS=y
#
# Memory mapped GPIO expanders:
#
CONFIG_GPIO_IT8761E=m
CONFIG_GPIO_SCH=y
#
# I2C GPIO expanders:
#
# CONFIG_GPIO_MAX7300 is not set
CONFIG_GPIO_MAX732X=y
CONFIG_GPIO_MAX732X_IRQ=y
CONFIG_GPIO_PCA953X=y
# CONFIG_GPIO_PCA953X_IRQ is not set
CONFIG_GPIO_PCF857X=m
CONFIG_GPIO_WM8350=m
CONFIG_GPIO_ADP5520=m
CONFIG_GPIO_ADP5588=y
#
# PCI GPIO expanders:
#
CONFIG_GPIO_CS5535=m
CONFIG_GPIO_LANGWELL=y
#
# SPI GPIO expanders:
#
#
# AC97 GPIO expanders:
#
CONFIG_W1=m
#
# 1-wire Bus Masters
#
CONFIG_W1_MASTER_MATROX=m
CONFIG_W1_MASTER_DS2490=m
CONFIG_W1_MASTER_DS2482=m
CONFIG_W1_MASTER_GPIO=m
#
# 1-wire Slaves
#
CONFIG_W1_SLAVE_THERM=m
# CONFIG_W1_SLAVE_SMEM is not set
# CONFIG_W1_SLAVE_DS2431 is not set
CONFIG_W1_SLAVE_DS2433=m
CONFIG_W1_SLAVE_DS2433_CRC=y
CONFIG_W1_SLAVE_DS2760=m
CONFIG_W1_SLAVE_BQ27000=m
CONFIG_POWER_SUPPLY=y
CONFIG_POWER_SUPPLY_DEBUG=y
CONFIG_PDA_POWER=y
CONFIG_MAX8925_POWER=y
# CONFIG_WM8350_POWER is not set
CONFIG_TEST_POWER=m
CONFIG_BATTERY_DS2760=m
# CONFIG_BATTERY_DS2782 is not set
CONFIG_BATTERY_OLPC=m
CONFIG_BATTERY_BQ27x00=m
# CONFIG_BATTERY_DA9030 is not set
CONFIG_BATTERY_MAX17040=y
CONFIG_CHARGER_PCF50633=m
CONFIG_HWMON=y
CONFIG_HWMON_VID=y
CONFIG_HWMON_DEBUG_CHIP=y
#
# Native drivers
#
# CONFIG_SENSORS_ABITUGURU is not set
CONFIG_SENSORS_ABITUGURU3=y
# CONFIG_SENSORS_AD7414 is not set
# CONFIG_SENSORS_AD7418 is not set
CONFIG_SENSORS_ADM1021=m
# CONFIG_SENSORS_ADM1025 is not set
CONFIG_SENSORS_ADM1026=y
CONFIG_SENSORS_ADM1029=y
CONFIG_SENSORS_ADM1031=y
# CONFIG_SENSORS_ADM9240 is not set
# CONFIG_SENSORS_ADT7411 is not set
CONFIG_SENSORS_ADT7462=m
CONFIG_SENSORS_ADT7470=m
CONFIG_SENSORS_ADT7475=y
# CONFIG_SENSORS_ASC7621 is not set
CONFIG_SENSORS_K8TEMP=m
CONFIG_SENSORS_K10TEMP=y
CONFIG_SENSORS_ASB100=m
# CONFIG_SENSORS_ATXP1 is not set
# CONFIG_SENSORS_DS1621 is not set
# CONFIG_SENSORS_I5K_AMB is not set
CONFIG_SENSORS_F71805F=m
CONFIG_SENSORS_F71882FG=y
CONFIG_SENSORS_F75375S=y
CONFIG_SENSORS_FSCHMD=y
# CONFIG_SENSORS_G760A is not set
CONFIG_SENSORS_GL518SM=m
CONFIG_SENSORS_GL520SM=y
CONFIG_SENSORS_CORETEMP=y
# CONFIG_SENSORS_IT87 is not set
CONFIG_SENSORS_LM63=y
CONFIG_SENSORS_LM73=m
# CONFIG_SENSORS_LM75 is not set
CONFIG_SENSORS_LM77=y
CONFIG_SENSORS_LM78=m
CONFIG_SENSORS_LM80=m
# CONFIG_SENSORS_LM83 is not set
CONFIG_SENSORS_LM85=m
CONFIG_SENSORS_LM87=m
# CONFIG_SENSORS_LM90 is not set
# CONFIG_SENSORS_LM92 is not set
# CONFIG_SENSORS_LM93 is not set
CONFIG_SENSORS_LTC4215=y
# CONFIG_SENSORS_LTC4245 is not set
CONFIG_SENSORS_LM95241=m
# CONFIG_SENSORS_MAX1619 is not set
CONFIG_SENSORS_MAX6650=y
# CONFIG_SENSORS_PC87360 is not set
CONFIG_SENSORS_PC87427=m
# CONFIG_SENSORS_PCF8591 is not set
CONFIG_SENSORS_SHT15=y
# CONFIG_SENSORS_SIS5595 is not set
CONFIG_SENSORS_DME1737=m
CONFIG_SENSORS_SMSC47M1=m
# CONFIG_SENSORS_SMSC47M192 is not set
CONFIG_SENSORS_SMSC47B397=m
CONFIG_SENSORS_ADS7828=m
CONFIG_SENSORS_AMC6821=y
CONFIG_SENSORS_THMC50=m
CONFIG_SENSORS_TMP401=m
CONFIG_SENSORS_TMP421=m
CONFIG_SENSORS_VIA_CPUTEMP=m
# CONFIG_SENSORS_VIA686A is not set
# CONFIG_SENSORS_VT1211 is not set
CONFIG_SENSORS_VT8231=y
CONFIG_SENSORS_W83781D=m
CONFIG_SENSORS_W83791D=m
# CONFIG_SENSORS_W83792D is not set
# CONFIG_SENSORS_W83793 is not set
CONFIG_SENSORS_W83L785TS=m
# CONFIG_SENSORS_W83L786NG is not set
# CONFIG_SENSORS_W83627HF is not set
# CONFIG_SENSORS_W83627EHF is not set
CONFIG_SENSORS_WM8350=m
CONFIG_SENSORS_HDAPS=m
# CONFIG_SENSORS_LIS3_I2C is not set
CONFIG_SENSORS_APPLESMC=m
#
# ACPI drivers
#
CONFIG_SENSORS_ATK0110=y
CONFIG_SENSORS_LIS3LV02D=m
CONFIG_THERMAL=y
CONFIG_THERMAL_HWMON=y
CONFIG_WATCHDOG=y
CONFIG_WATCHDOG_NOWAYOUT=y
#
# Watchdog Device Drivers
#
CONFIG_SOFT_WATCHDOG=y
# CONFIG_WM8350_WATCHDOG is not set
CONFIG_ACQUIRE_WDT=y
CONFIG_ADVANTECH_WDT=m
CONFIG_ALIM1535_WDT=m
CONFIG_ALIM7101_WDT=m
# CONFIG_GEODE_WDT is not set
CONFIG_SC520_WDT=y
# CONFIG_SBC_FITPC2_WATCHDOG is not set
# CONFIG_EUROTECH_WDT is not set
# CONFIG_IB700_WDT is not set
CONFIG_IBMASR=m
CONFIG_WAFER_WDT=y
# CONFIG_I6300ESB_WDT is not set
CONFIG_ITCO_WDT=y
CONFIG_ITCO_VENDOR_SUPPORT=y
CONFIG_IT8712F_WDT=m
# CONFIG_IT87_WDT is not set
# CONFIG_HP_WATCHDOG is not set
CONFIG_SC1200_WDT=y
CONFIG_SCx200_WDT=m
CONFIG_PC87413_WDT=m
CONFIG_60XX_WDT=m
CONFIG_SBC8360_WDT=y
CONFIG_SBC7240_WDT=y
CONFIG_CPU5_WDT=y
CONFIG_SMSC_SCH311X_WDT=y
# CONFIG_SMSC37B787_WDT is not set
CONFIG_W83627HF_WDT=m
# 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=m
CONFIG_SBC_EPX_C3_WATCHDOG=y
#
# ISA-based Watchdog Cards
#
CONFIG_PCWATCHDOG=m
CONFIG_MIXCOMWD=m
# CONFIG_WDT is not set
#
# PCI-based Watchdog Cards
#
CONFIG_PCIPCWATCHDOG=m
# CONFIG_WDTPCI is not set
#
# USB-based Watchdog Cards
#
CONFIG_USBPCWATCHDOG=m
CONFIG_SSB_POSSIBLE=y
#
# Sonics Silicon Backplane
#
CONFIG_SSB=m
CONFIG_SSB_SPROM=y
CONFIG_SSB_PCIHOST_POSSIBLE=y
CONFIG_SSB_PCIHOST=y
# CONFIG_SSB_B43_PCI_BRIDGE is not set
CONFIG_SSB_SDIOHOST_POSSIBLE=y
CONFIG_SSB_SDIOHOST=y
CONFIG_SSB_DEBUG=y
CONFIG_SSB_DRIVER_PCICORE_POSSIBLE=y
CONFIG_SSB_DRIVER_PCICORE=y
#
# Multifunction device drivers
#
CONFIG_MFD_CORE=y
# CONFIG_MFD_88PM860X is not set
CONFIG_MFD_SM501=m
CONFIG_MFD_SM501_GPIO=y
CONFIG_HTC_PASIC3=y
CONFIG_HTC_I2CPLD=y
# CONFIG_TPS65010 is not set
# CONFIG_TWL4030_CORE is not set
# CONFIG_MFD_TMIO is not set
CONFIG_PMIC_DA903X=y
CONFIG_PMIC_ADP5520=y
CONFIG_MFD_MAX8925=y
CONFIG_MFD_WM8400=m
# CONFIG_MFD_WM831X is not set
CONFIG_MFD_WM8350=y
CONFIG_MFD_WM8350_I2C=y
# CONFIG_MFD_WM8994 is not set
CONFIG_MFD_PCF50633=y
# CONFIG_PCF50633_ADC is not set
# CONFIG_PCF50633_GPIO is not set
CONFIG_AB3100_CORE=y
CONFIG_AB3100_OTP=m
# CONFIG_MFD_TIMBERDALE is not set
CONFIG_LPC_SCH=y
CONFIG_REGULATOR=y
CONFIG_REGULATOR_DEBUG=y
# CONFIG_REGULATOR_DUMMY is not set
# CONFIG_REGULATOR_FIXED_VOLTAGE is not set
CONFIG_REGULATOR_VIRTUAL_CONSUMER=m
CONFIG_REGULATOR_USERSPACE_CONSUMER=m
CONFIG_REGULATOR_BQ24022=m
CONFIG_REGULATOR_MAX1586=m
CONFIG_REGULATOR_MAX8649=y
CONFIG_REGULATOR_MAX8660=y
CONFIG_REGULATOR_MAX8925=y
CONFIG_REGULATOR_WM8350=m
CONFIG_REGULATOR_WM8400=m
CONFIG_REGULATOR_DA903X=m
CONFIG_REGULATOR_PCF50633=y
# CONFIG_REGULATOR_LP3971 is not set
# CONFIG_REGULATOR_AB3100 is not set
CONFIG_REGULATOR_TPS65023=m
CONFIG_REGULATOR_TPS6507X=y
CONFIG_MEDIA_SUPPORT=m
#
# Multimedia core support
#
CONFIG_VIDEO_DEV=m
CONFIG_VIDEO_V4L2_COMMON=m
CONFIG_VIDEO_ALLOW_V4L1=y
CONFIG_VIDEO_V4L1_COMPAT=y
CONFIG_DVB_CORE=m
CONFIG_VIDEO_MEDIA=m
#
# Multimedia drivers
#
CONFIG_VIDEO_SAA7146=m
CONFIG_VIDEO_SAA7146_VV=m
CONFIG_IR_CORE=m
CONFIG_VIDEO_IR=m
CONFIG_RC_MAP=m
# CONFIG_IR_NEC_DECODER is not set
CONFIG_IR_RC5_DECODER=m
CONFIG_IR_RC6_DECODER=m
# CONFIG_IR_JVC_DECODER is not set
CONFIG_IR_SONY_DECODER=m
# CONFIG_IR_IMON is not set
CONFIG_MEDIA_ATTACH=y
CONFIG_MEDIA_TUNER=m
CONFIG_MEDIA_TUNER_CUSTOMISE=y
CONFIG_MEDIA_TUNER_SIMPLE=m
CONFIG_MEDIA_TUNER_TDA8290=m
CONFIG_MEDIA_TUNER_TDA827X=m
CONFIG_MEDIA_TUNER_TDA18271=m
CONFIG_MEDIA_TUNER_TDA9887=m
CONFIG_MEDIA_TUNER_TEA5761=m
CONFIG_MEDIA_TUNER_TEA5767=m
CONFIG_MEDIA_TUNER_MT20XX=m
# CONFIG_MEDIA_TUNER_MT2060 is not set
CONFIG_MEDIA_TUNER_MT2266=m
# CONFIG_MEDIA_TUNER_MT2131 is not set
# CONFIG_MEDIA_TUNER_QT1010 is not set
# CONFIG_MEDIA_TUNER_XC2028 is not set
CONFIG_MEDIA_TUNER_XC5000=m
CONFIG_MEDIA_TUNER_MXL5005S=m
# CONFIG_MEDIA_TUNER_MXL5007T is not set
CONFIG_MEDIA_TUNER_MC44S803=m
CONFIG_MEDIA_TUNER_MAX2165=m
CONFIG_VIDEO_V4L2=m
CONFIG_VIDEO_V4L1=m
CONFIG_VIDEOBUF_GEN=m
CONFIG_VIDEOBUF_DMA_SG=m
CONFIG_VIDEOBUF_VMALLOC=m
CONFIG_VIDEOBUF_DVB=m
CONFIG_VIDEO_BTCX=m
CONFIG_VIDEO_TVEEPROM=m
CONFIG_VIDEO_TUNER=m
CONFIG_V4L2_MEM2MEM_DEV=m
CONFIG_VIDEO_CAPTURE_DRIVERS=y
CONFIG_VIDEO_ADV_DEBUG=y
# CONFIG_VIDEO_FIXED_MINOR_RANGES is not set
CONFIG_VIDEO_HELPER_CHIPS_AUTO=y
CONFIG_VIDEO_IR_I2C=m
CONFIG_VIDEO_TVAUDIO=m
CONFIG_VIDEO_TDA7432=m
CONFIG_VIDEO_TDA9840=m
CONFIG_VIDEO_TEA6415C=m
CONFIG_VIDEO_TEA6420=m
CONFIG_VIDEO_MSP3400=m
CONFIG_VIDEO_CS5345=m
CONFIG_VIDEO_SAA6588=m
CONFIG_VIDEO_OV7670=m
CONFIG_VIDEO_SAA711X=m
CONFIG_VIDEO_VPX3220=m
CONFIG_VIDEO_CX25840=m
CONFIG_VIDEO_CX2341X=m
CONFIG_VIDEO_ADV7175=m
CONFIG_VIDEO_BT848=m
# CONFIG_VIDEO_BT848_DVB is not set
# CONFIG_VIDEO_PMS is not set
CONFIG_VIDEO_CPIA=m
# CONFIG_VIDEO_CPIA_USB is not set
CONFIG_VIDEO_CPIA2=m
# CONFIG_VIDEO_SAA5246A is not set
CONFIG_VIDEO_SAA5249=m
CONFIG_VIDEO_STRADIS=m
CONFIG_VIDEO_ZORAN=m
CONFIG_VIDEO_ZORAN_DC30=m
# CONFIG_VIDEO_ZORAN_ZR36060 is not set
CONFIG_VIDEO_SAA7134=m
CONFIG_VIDEO_SAA7134_ALSA=m
# CONFIG_VIDEO_SAA7134_DVB is not set
CONFIG_VIDEO_MXB=m
CONFIG_VIDEO_HEXIUM_ORION=m
# CONFIG_VIDEO_HEXIUM_GEMINI is not set
# CONFIG_VIDEO_CX88 is not set
CONFIG_VIDEO_CX23885=m
# CONFIG_VIDEO_AU0828 is not set
# CONFIG_VIDEO_IVTV is not set
CONFIG_VIDEO_CX18=m
CONFIG_VIDEO_CX18_ALSA=m
CONFIG_VIDEO_SAA7164=m
CONFIG_VIDEO_CAFE_CCIC=m
# CONFIG_SOC_CAMERA is not set
# CONFIG_V4L_USB_DRIVERS is not set
CONFIG_V4L_MEM2MEM_DRIVERS=y
CONFIG_VIDEO_MEM2MEM_TESTDEV=m
CONFIG_RADIO_ADAPTERS=y
CONFIG_RADIO_CADET=m
# CONFIG_RADIO_RTRACK is not set
# CONFIG_RADIO_RTRACK2 is not set
CONFIG_RADIO_AZTECH=m
CONFIG_RADIO_GEMTEK=m
CONFIG_RADIO_GEMTEK_PCI=m
CONFIG_RADIO_MAXIRADIO=m
# CONFIG_RADIO_MAESTRO is not set
CONFIG_RADIO_MIROPCM20=m
CONFIG_RADIO_SF16FMI=m
# CONFIG_RADIO_SF16FMR2 is not set
CONFIG_RADIO_TERRATEC=m
# CONFIG_RADIO_TRUST is not set
# CONFIG_RADIO_TYPHOON is not set
CONFIG_RADIO_ZOLTRIX=m
CONFIG_I2C_SI4713=m
# CONFIG_RADIO_SI4713 is not set
# CONFIG_USB_DSBR is not set
# CONFIG_RADIO_SI470X is not set
CONFIG_USB_MR800=m
CONFIG_RADIO_TEA5764=m
CONFIG_RADIO_SAA7706H=m
CONFIG_RADIO_TEF6862=m
CONFIG_DVB_MAX_ADAPTERS=8
# CONFIG_DVB_DYNAMIC_MINORS is not set
CONFIG_DVB_CAPTURE_DRIVERS=y
#
# Supported SAA7146 based PCI Adapters
#
CONFIG_TTPCI_EEPROM=m
CONFIG_DVB_AV7110=m
CONFIG_DVB_AV7110_OSD=y
CONFIG_DVB_BUDGET_CORE=m
# CONFIG_DVB_BUDGET is not set
# CONFIG_DVB_BUDGET_CI is not set
# CONFIG_DVB_BUDGET_AV is not set
# CONFIG_DVB_BUDGET_PATCH is not set
#
# Supported USB Adapters
#
# CONFIG_DVB_USB is not set
# CONFIG_DVB_TTUSB_BUDGET is not set
CONFIG_DVB_TTUSB_DEC=m
CONFIG_SMS_SIANO_MDTV=m
#
# Siano module components
#
CONFIG_SMS_USB_DRV=m
# CONFIG_SMS_SDIO_DRV is not set
#
# Supported FlexCopII (B2C2) Adapters
#
CONFIG_DVB_B2C2_FLEXCOP=m
CONFIG_DVB_B2C2_FLEXCOP_PCI=m
CONFIG_DVB_B2C2_FLEXCOP_USB=m
CONFIG_DVB_B2C2_FLEXCOP_DEBUG=y
#
# Supported BT878 Adapters
#
# CONFIG_DVB_BT8XX is not set
#
# Supported Pluto2 Adapters
#
CONFIG_DVB_PLUTO2=m
#
# Supported SDMC DM1105 Adapters
#
CONFIG_DVB_DM1105=m
# CONFIG_DVB_FIREDTV is not set
#
# Supported Earthsoft PT1 Adapters
#
# CONFIG_DVB_PT1 is not set
#
# Supported Mantis Adapters
#
# CONFIG_MANTIS_CORE is not set
#
# Supported nGene Adapters
#
# CONFIG_DVB_NGENE is not set
#
# Supported DVB Frontends
#
# CONFIG_DVB_FE_CUSTOMISE is not set
CONFIG_DVB_CX24123=m
CONFIG_DVB_MT312=m
CONFIG_DVB_S5H1420=m
CONFIG_DVB_STV0288=m
CONFIG_DVB_STB6000=m
CONFIG_DVB_STV0299=m
CONFIG_DVB_STV6110=m
CONFIG_DVB_STV0900=m
CONFIG_DVB_TDA8083=m
CONFIG_DVB_VES1X93=m
CONFIG_DVB_TUNER_ITD1000=m
CONFIG_DVB_TUNER_CX24113=m
CONFIG_DVB_CX24116=m
CONFIG_DVB_SI21XX=m
CONFIG_DVB_DS3000=m
CONFIG_DVB_SP8870=m
CONFIG_DVB_L64781=m
CONFIG_DVB_TDA1004X=m
CONFIG_DVB_MT352=m
CONFIG_DVB_ZL10353=m
CONFIG_DVB_DIB7000P=m
CONFIG_DVB_TDA10048=m
CONFIG_DVB_VES1820=m
CONFIG_DVB_STV0297=m
CONFIG_DVB_NXT200X=m
CONFIG_DVB_BCM3510=m
CONFIG_DVB_LGDT330X=m
CONFIG_DVB_S5H1409=m
CONFIG_DVB_S5H1411=m
CONFIG_DVB_PLL=m
CONFIG_DVB_LNBP21=m
CONFIG_DVB_ISL6421=m
# CONFIG_DAB is not set
#
# Graphics support
#
CONFIG_AGP=y
CONFIG_AGP_ALI=m
CONFIG_AGP_ATI=m
CONFIG_AGP_AMD=m
# CONFIG_AGP_AMD64 is not set
CONFIG_AGP_INTEL=y
# CONFIG_AGP_NVIDIA is not set
CONFIG_AGP_SIS=y
# CONFIG_AGP_SWORKS is not set
CONFIG_AGP_VIA=m
CONFIG_AGP_EFFICEON=m
CONFIG_VGA_ARB=y
CONFIG_VGA_ARB_MAX_GPUS=16
# CONFIG_VGA_SWITCHEROO is not set
CONFIG_DRM=y
CONFIG_DRM_TDFX=y
# CONFIG_DRM_R128 is not set
# CONFIG_DRM_RADEON is not set
# CONFIG_DRM_I810 is not set
# CONFIG_DRM_I830 is not set
# CONFIG_DRM_I915 is not set
CONFIG_DRM_MGA=y
# CONFIG_DRM_SIS is not set
# CONFIG_DRM_VIA is not set
CONFIG_DRM_SAVAGE=y
CONFIG_VGASTATE=y
# CONFIG_VIDEO_OUTPUT_CONTROL is not set
CONFIG_FB=y
# CONFIG_FIRMWARE_EDID is not set
CONFIG_FB_DDC=y
# 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=y
CONFIG_FB_SYS_COPYAREA=y
CONFIG_FB_SYS_IMAGEBLIT=y
# CONFIG_FB_FOREIGN_ENDIAN is not set
CONFIG_FB_SYS_FOPS=y
CONFIG_FB_DEFERRED_IO=y
CONFIG_FB_SVGALIB=y
# CONFIG_FB_MACMODES is not set
CONFIG_FB_BACKLIGHT=y
CONFIG_FB_MODE_HELPERS=y
CONFIG_FB_TILEBLITTING=y
#
# Frame buffer hardware drivers
#
# CONFIG_FB_CIRRUS is not set
CONFIG_FB_PM2=y
CONFIG_FB_PM2_FIFO_DISCONNECT=y
# CONFIG_FB_CYBER2000 is not set
CONFIG_FB_ARC=m
# CONFIG_FB_ASILIANT is not set
# CONFIG_FB_IMSTT is not set
# CONFIG_FB_VGA16 is not set
# CONFIG_FB_VESA is not set
CONFIG_FB_EFI=y
# CONFIG_FB_N411 is not set
# CONFIG_FB_HGA is not set
CONFIG_FB_S1D13XXX=y
# CONFIG_FB_NVIDIA is not set
CONFIG_FB_RIVA=y
CONFIG_FB_RIVA_I2C=y
CONFIG_FB_RIVA_DEBUG=y
CONFIG_FB_RIVA_BACKLIGHT=y
# CONFIG_FB_I810 is not set
# CONFIG_FB_LE80578 is not set
CONFIG_FB_MATROX=y
CONFIG_FB_MATROX_MILLENIUM=y
CONFIG_FB_MATROX_MYSTIQUE=y
# CONFIG_FB_MATROX_G is not set
CONFIG_FB_MATROX_I2C=m
# CONFIG_FB_RADEON is not set
CONFIG_FB_ATY128=m
# CONFIG_FB_ATY128_BACKLIGHT is not set
CONFIG_FB_ATY=y
CONFIG_FB_ATY_CT=y
CONFIG_FB_ATY_GENERIC_LCD=y
CONFIG_FB_ATY_GX=y
CONFIG_FB_ATY_BACKLIGHT=y
CONFIG_FB_S3=y
CONFIG_FB_SAVAGE=y
CONFIG_FB_SAVAGE_I2C=y
# CONFIG_FB_SAVAGE_ACCEL is not set
CONFIG_FB_SIS=m
# CONFIG_FB_SIS_300 is not set
CONFIG_FB_SIS_315=y
CONFIG_FB_VIA=m
CONFIG_FB_VIA_DIRECT_PROCFS=y
CONFIG_FB_NEOMAGIC=y
# CONFIG_FB_KYRO is not set
CONFIG_FB_3DFX=y
CONFIG_FB_3DFX_ACCEL=y
CONFIG_FB_3DFX_I2C=y
CONFIG_FB_VOODOO1=m
CONFIG_FB_VT8623=m
CONFIG_FB_TRIDENT=y
CONFIG_FB_ARK=m
CONFIG_FB_PM3=y
CONFIG_FB_CARMINE=m
CONFIG_FB_CARMINE_DRAM_EVAL=y
# CONFIG_CARMINE_DRAM_CUSTOM is not set
CONFIG_FB_GEODE=y
CONFIG_FB_GEODE_LX=y
CONFIG_FB_GEODE_GX=y
# CONFIG_FB_GEODE_GX1 is not set
# CONFIG_FB_TMIO is not set
CONFIG_FB_SM501=m
# CONFIG_FB_VIRTUAL is not set
CONFIG_FB_METRONOME=y
CONFIG_FB_MB862XX=m
CONFIG_FB_MB862XX_PCI_GDC=y
CONFIG_FB_BROADSHEET=m
CONFIG_BACKLIGHT_LCD_SUPPORT=y
CONFIG_LCD_CLASS_DEVICE=m
# CONFIG_LCD_ILI9320 is not set
CONFIG_LCD_PLATFORM=m
CONFIG_BACKLIGHT_CLASS_DEVICE=y
CONFIG_BACKLIGHT_GENERIC=m
CONFIG_BACKLIGHT_PROGEAR=y
CONFIG_BACKLIGHT_DA903X=m
CONFIG_BACKLIGHT_MAX8925=m
CONFIG_BACKLIGHT_MBP_NVIDIA=m
# CONFIG_BACKLIGHT_SAHARA is not set
CONFIG_BACKLIGHT_ADP5520=m
#
# Display device support
#
# CONFIG_DISPLAY_SUPPORT is not set
#
# Console display driver support
#
CONFIG_VGA_CONSOLE=y
# CONFIG_VGACON_SOFT_SCROLLBACK is not set
# CONFIG_MDA_CONSOLE is not set
CONFIG_DUMMY_CONSOLE=y
# CONFIG_FRAMEBUFFER_CONSOLE is not set
# CONFIG_LOGO is not set
CONFIG_SOUND=m
CONFIG_SOUND_OSS_CORE=y
# CONFIG_SOUND_OSS_CORE_PRECLAIM is not set
CONFIG_SND=m
CONFIG_SND_TIMER=m
CONFIG_SND_PCM=m
CONFIG_SND_HWDEP=m
CONFIG_SND_RAWMIDI=m
CONFIG_SND_JACK=y
CONFIG_SND_SEQUENCER=m
CONFIG_SND_SEQ_DUMMY=m
CONFIG_SND_OSSEMUL=y
# CONFIG_SND_MIXER_OSS is not set
CONFIG_SND_PCM_OSS=m
CONFIG_SND_PCM_OSS_PLUGINS=y
# CONFIG_SND_SEQUENCER_OSS is not set
# CONFIG_SND_DYNAMIC_MINORS is not set
CONFIG_SND_SUPPORT_OLD_API=y
CONFIG_SND_VERBOSE_PROCFS=y
CONFIG_SND_VERBOSE_PRINTK=y
CONFIG_SND_DEBUG=y
CONFIG_SND_DEBUG_VERBOSE=y
# CONFIG_SND_PCM_XRUN_DEBUG is not set
CONFIG_SND_DMA_SGBUF=y
CONFIG_SND_RAWMIDI_SEQ=m
CONFIG_SND_OPL3_LIB_SEQ=m
CONFIG_SND_OPL4_LIB_SEQ=m
CONFIG_SND_SBAWE_SEQ=m
# CONFIG_SND_EMU10K1_SEQ is not set
CONFIG_SND_MPU401_UART=m
CONFIG_SND_OPL3_LIB=m
CONFIG_SND_OPL4_LIB=m
CONFIG_SND_DRIVERS=y
CONFIG_SND_DUMMY=m
CONFIG_SND_VIRMIDI=m
# CONFIG_SND_MTPAV is not set
CONFIG_SND_SERIAL_U16550=m
# CONFIG_SND_MPU401 is not set
CONFIG_SND_WSS_LIB=m
CONFIG_SND_SB_COMMON=m
CONFIG_SND_SB8_DSP=m
CONFIG_SND_SB16_DSP=m
CONFIG_SND_ISA=y
CONFIG_SND_ADLIB=m
CONFIG_SND_AD1816A=m
# CONFIG_SND_AD1848 is not set
CONFIG_SND_ALS100=m
# CONFIG_SND_AZT2320 is not set
# CONFIG_SND_CMI8330 is not set
CONFIG_SND_CS4231=m
CONFIG_SND_CS4236=m
CONFIG_SND_ES1688=m
CONFIG_SND_ES18XX=m
CONFIG_SND_SC6000=m
CONFIG_SND_GUSCLASSIC=m
# CONFIG_SND_GUSEXTREME is not set
# CONFIG_SND_GUSMAX is not set
CONFIG_SND_INTERWAVE=m
# CONFIG_SND_INTERWAVE_STB is not set
CONFIG_SND_JAZZ16=m
CONFIG_SND_OPL3SA2=m
# CONFIG_SND_OPTI92X_AD1848 is not set
CONFIG_SND_OPTI92X_CS4231=m
CONFIG_SND_OPTI93X=m
CONFIG_SND_MIRO=m
CONFIG_SND_SB8=m
# CONFIG_SND_SB16 is not set
CONFIG_SND_SBAWE=m
CONFIG_SND_SB16_CSP=y
CONFIG_SND_SGALAXY=m
CONFIG_SND_SSCAPE=m
# CONFIG_SND_WAVEFRONT is not set
# CONFIG_SND_MSND_PINNACLE is not set
CONFIG_SND_MSND_CLASSIC=m
# CONFIG_SND_PCI is not set
CONFIG_SND_USB=y
CONFIG_SND_USB_AUDIO=m
CONFIG_SND_USB_UA101=m
CONFIG_SND_USB_USX2Y=m
# CONFIG_SND_USB_CAIAQ is not set
CONFIG_SND_USB_US122L=m
CONFIG_SND_SOC=m
CONFIG_SND_SOC_I2C_AND_SPI=m
CONFIG_SND_SOC_ALL_CODECS=m
CONFIG_SND_SOC_WM_HUBS=m
CONFIG_SND_SOC_AD193X=m
CONFIG_SND_SOC_AD73311=m
CONFIG_SND_SOC_ADS117X=m
CONFIG_SND_SOC_AK4535=m
CONFIG_SND_SOC_AK4642=m
CONFIG_SND_SOC_AK4671=m
CONFIG_SND_SOC_CS4270=m
CONFIG_SND_SOC_DA7210=m
CONFIG_SND_SOC_L3=m
CONFIG_SND_SOC_PCM3008=m
CONFIG_SND_SOC_SPDIF=m
CONFIG_SND_SOC_SSM2602=m
CONFIG_SND_SOC_TLV320AIC23=m
CONFIG_SND_SOC_TLV320AIC3X=m
CONFIG_SND_SOC_TLV320DAC33=m
CONFIG_SND_SOC_UDA134X=m
CONFIG_SND_SOC_UDA1380=m
CONFIG_SND_SOC_WM8350=m
CONFIG_SND_SOC_WM8400=m
CONFIG_SND_SOC_WM8510=m
CONFIG_SND_SOC_WM8523=m
CONFIG_SND_SOC_WM8580=m
CONFIG_SND_SOC_WM8711=m
CONFIG_SND_SOC_WM8727=m
CONFIG_SND_SOC_WM8728=m
CONFIG_SND_SOC_WM8731=m
CONFIG_SND_SOC_WM8750=m
CONFIG_SND_SOC_WM8753=m
CONFIG_SND_SOC_WM8776=m
CONFIG_SND_SOC_WM8900=m
CONFIG_SND_SOC_WM8903=m
CONFIG_SND_SOC_WM8904=m
CONFIG_SND_SOC_WM8940=m
CONFIG_SND_SOC_WM8955=m
CONFIG_SND_SOC_WM8960=m
CONFIG_SND_SOC_WM8961=m
CONFIG_SND_SOC_WM8971=m
CONFIG_SND_SOC_WM8974=m
CONFIG_SND_SOC_WM8978=m
CONFIG_SND_SOC_WM8988=m
CONFIG_SND_SOC_WM8990=m
CONFIG_SND_SOC_WM8993=m
CONFIG_SND_SOC_WM9081=m
CONFIG_SND_SOC_MAX9877=m
CONFIG_SND_SOC_TPA6130A2=m
CONFIG_SND_SOC_WM2000=m
CONFIG_SND_SOC_WM9090=m
CONFIG_SOUND_PRIME=m
CONFIG_SOUND_MSNDCLAS=m
CONFIG_MSNDCLAS_INIT_FILE="/etc/sound/msndinit.bin"
CONFIG_MSNDCLAS_PERM_FILE="/etc/sound/msndperm.bin"
CONFIG_SOUND_MSNDPIN=m
CONFIG_MSNDPIN_INIT_FILE="/etc/sound/pndspini.bin"
CONFIG_MSNDPIN_PERM_FILE="/etc/sound/pndsperm.bin"
CONFIG_SOUND_OSS=m
CONFIG_SOUND_TRACEINIT=y
# CONFIG_SOUND_DMAP is not set
CONFIG_SOUND_VMIDI=m
# CONFIG_SOUND_TRIX is not set
# CONFIG_SOUND_MSS is not set
CONFIG_SOUND_MPU401=m
CONFIG_SOUND_PAS=m
# CONFIG_SOUND_PSS is not set
CONFIG_SOUND_SB=m
CONFIG_SOUND_YM3812=m
CONFIG_SOUND_UART6850=m
# CONFIG_SOUND_AEDSP16 is not set
# CONFIG_SOUND_KAHLUA is not set
# CONFIG_HID_SUPPORT is not set
CONFIG_USB_SUPPORT=y
CONFIG_USB_ARCH_HAS_HCD=y
CONFIG_USB_ARCH_HAS_OHCI=y
CONFIG_USB_ARCH_HAS_EHCI=y
CONFIG_USB=y
CONFIG_USB_DEBUG=y
# CONFIG_USB_ANNOUNCE_NEW_DEVICES is not set
#
# Miscellaneous USB options
#
CONFIG_USB_DEVICEFS=y
# CONFIG_USB_DEVICE_CLASS is not set
CONFIG_USB_DYNAMIC_MINORS=y
# CONFIG_USB_MON is not set
CONFIG_USB_WUSB=y
# CONFIG_USB_WUSB_CBAF is not set
#
# USB Host Controller Drivers
#
CONFIG_USB_C67X00_HCD=m
CONFIG_USB_XHCI_HCD=y
CONFIG_USB_XHCI_HCD_DEBUGGING=y
CONFIG_USB_EHCI_HCD=y
CONFIG_USB_EHCI_ROOT_HUB_TT=y
CONFIG_USB_EHCI_TT_NEWSCHED=y
# CONFIG_USB_OXU210HP_HCD is not set
CONFIG_USB_ISP116X_HCD=y
CONFIG_USB_ISP1760_HCD=y
# CONFIG_USB_ISP1362_HCD is not set
CONFIG_USB_OHCI_HCD=y
# CONFIG_USB_OHCI_BIG_ENDIAN_DESC is not set
# CONFIG_USB_OHCI_BIG_ENDIAN_MMIO is not set
CONFIG_USB_OHCI_LITTLE_ENDIAN=y
CONFIG_USB_UHCI_HCD=y
# CONFIG_USB_SL811_HCD is not set
CONFIG_USB_R8A66597_HCD=y
# CONFIG_USB_WHCI_HCD is not set
# CONFIG_USB_HWA_HCD is not set
#
# USB Device Class drivers
#
CONFIG_USB_ACM=y
# CONFIG_USB_PRINTER is not set
CONFIG_USB_WDM=y
CONFIG_USB_TMC=m
#
# NOTE: USB_STORAGE depends on SCSI but BLK_DEV_SD may
#
#
# also be needed; see USB_STORAGE Help for more info
#
# CONFIG_USB_STORAGE is not set
CONFIG_USB_LIBUSUAL=y
#
# USB Imaging devices
#
CONFIG_USB_MDC800=y
CONFIG_USB_MICROTEK=m
#
# USB port drivers
#
CONFIG_USB_SERIAL=m
CONFIG_USB_EZUSB=y
CONFIG_USB_SERIAL_GENERIC=y
CONFIG_USB_SERIAL_AIRCABLE=m
CONFIG_USB_SERIAL_ARK3116=m
CONFIG_USB_SERIAL_BELKIN=m
CONFIG_USB_SERIAL_CH341=m
# CONFIG_USB_SERIAL_WHITEHEAT is not set
CONFIG_USB_SERIAL_DIGI_ACCELEPORT=m
CONFIG_USB_SERIAL_CP210X=m
CONFIG_USB_SERIAL_CYPRESS_M8=m
# CONFIG_USB_SERIAL_EMPEG is not set
CONFIG_USB_SERIAL_FTDI_SIO=m
# CONFIG_USB_SERIAL_FUNSOFT is not set
CONFIG_USB_SERIAL_VISOR=m
CONFIG_USB_SERIAL_IPAQ=m
CONFIG_USB_SERIAL_IR=m
CONFIG_USB_SERIAL_EDGEPORT=m
CONFIG_USB_SERIAL_EDGEPORT_TI=m
CONFIG_USB_SERIAL_GARMIN=m
CONFIG_USB_SERIAL_IPW=m
CONFIG_USB_SERIAL_IUU=m
# CONFIG_USB_SERIAL_KEYSPAN_PDA is not set
CONFIG_USB_SERIAL_KEYSPAN=m
CONFIG_USB_SERIAL_KLSI=m
CONFIG_USB_SERIAL_KOBIL_SCT=m
CONFIG_USB_SERIAL_MCT_U232=m
CONFIG_USB_SERIAL_MOS7720=m
CONFIG_USB_SERIAL_MOS7840=m
CONFIG_USB_SERIAL_MOTOROLA=m
CONFIG_USB_SERIAL_NAVMAN=m
# CONFIG_USB_SERIAL_PL2303 is not set
CONFIG_USB_SERIAL_OTI6858=m
CONFIG_USB_SERIAL_QCAUX=m
CONFIG_USB_SERIAL_QUALCOMM=m
CONFIG_USB_SERIAL_SPCP8X5=m
# CONFIG_USB_SERIAL_HP4X is not set
CONFIG_USB_SERIAL_SAFE=m
CONFIG_USB_SERIAL_SAFE_PADDED=y
CONFIG_USB_SERIAL_SIEMENS_MPI=m
CONFIG_USB_SERIAL_SIERRAWIRELESS=m
# 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_WWAN=m
CONFIG_USB_SERIAL_OPTION=m
CONFIG_USB_SERIAL_OMNINET=m
CONFIG_USB_SERIAL_OPTICON=m
CONFIG_USB_SERIAL_VIVOPAY_SERIAL=m
CONFIG_USB_SERIAL_ZIO=m
# CONFIG_USB_SERIAL_DEBUG is not set
#
# USB Miscellaneous drivers
#
CONFIG_USB_EMI62=m
CONFIG_USB_EMI26=m
CONFIG_USB_ADUTUX=y
CONFIG_USB_SEVSEG=m
CONFIG_USB_RIO500=m
# CONFIG_USB_LEGOTOWER is not set
# CONFIG_USB_LCD is not set
CONFIG_USB_LED=y
CONFIG_USB_CYPRESS_CY7C63=m
CONFIG_USB_CYTHERM=m
CONFIG_USB_IDMOUSE=m
# CONFIG_USB_FTDI_ELAN is not set
CONFIG_USB_APPLEDISPLAY=y
# CONFIG_USB_SISUSBVGA is not set
CONFIG_USB_LD=y
# CONFIG_USB_TRANCEVIBRATOR is not set
CONFIG_USB_IOWARRIOR=m
CONFIG_USB_TEST=m
# CONFIG_USB_ISIGHTFW is not set
CONFIG_USB_ATM=y
CONFIG_USB_SPEEDTOUCH=m
# CONFIG_USB_CXACRU is not set
CONFIG_USB_UEAGLEATM=m
# CONFIG_USB_XUSBATM is not set
# CONFIG_USB_GADGET is not set
#
# OTG and related infrastructure
#
CONFIG_USB_OTG_UTILS=y
# CONFIG_USB_GPIO_VBUS is not set
CONFIG_NOP_USB_XCEIV=m
CONFIG_UWB=y
CONFIG_UWB_HWA=y
CONFIG_UWB_WHCI=y
CONFIG_UWB_WLP=m
CONFIG_UWB_I1480U=m
CONFIG_UWB_I1480U_WLP=m
CONFIG_MMC=y
# CONFIG_MMC_DEBUG is not set
CONFIG_MMC_UNSAFE_RESUME=y
#
# MMC/SD/SDIO Card Drivers
#
CONFIG_MMC_BLOCK=m
CONFIG_MMC_BLOCK_BOUNCE=y
CONFIG_SDIO_UART=m
# CONFIG_MMC_TEST is not set
#
# MMC/SD/SDIO Host Controller Drivers
#
# CONFIG_MMC_SDHCI is not set
# CONFIG_MMC_WBSD is not set
CONFIG_MMC_TIFM_SD=m
CONFIG_MMC_CB710=y
# CONFIG_MMC_VIA_SDMMC is not set
CONFIG_MEMSTICK=m
CONFIG_MEMSTICK_DEBUG=y
#
# MemoryStick drivers
#
# CONFIG_MEMSTICK_UNSAFE_RESUME is not set
CONFIG_MSPRO_BLOCK=m
#
# MemoryStick Host Controller Drivers
#
CONFIG_MEMSTICK_TIFM_MS=m
# CONFIG_MEMSTICK_JMICRON_38X is not set
CONFIG_NEW_LEDS=y
CONFIG_LEDS_CLASS=m
#
# LED drivers
#
# CONFIG_LEDS_NET48XX is not set
CONFIG_LEDS_WRAP=m
CONFIG_LEDS_ALIX2=m
CONFIG_LEDS_PCA9532=m
# CONFIG_LEDS_GPIO is not set
CONFIG_LEDS_LP3944=m
# CONFIG_LEDS_CLEVO_MAIL is not set
CONFIG_LEDS_PCA955X=m
CONFIG_LEDS_WM8350=m
# CONFIG_LEDS_DA903X is not set
CONFIG_LEDS_REGULATOR=m
CONFIG_LEDS_BD2802=m
# CONFIG_LEDS_INTEL_SS4200 is not set
CONFIG_LEDS_LT3593=m
CONFIG_LEDS_ADP5520=m
CONFIG_LEDS_TRIGGERS=y
#
# LED Triggers
#
CONFIG_LEDS_TRIGGER_TIMER=m
# CONFIG_LEDS_TRIGGER_HEARTBEAT is not set
CONFIG_LEDS_TRIGGER_BACKLIGHT=m
# CONFIG_LEDS_TRIGGER_GPIO is not set
# CONFIG_LEDS_TRIGGER_DEFAULT_ON is not set
#
# iptables trigger is under Netfilter config (LED target)
#
# CONFIG_ACCESSIBILITY is not set
# CONFIG_INFINIBAND is not set
CONFIG_EDAC=y
#
# Reporting subsystems
#
CONFIG_EDAC_DEBUG=y
# CONFIG_EDAC_DEBUG_VERBOSE is not set
CONFIG_EDAC_MM_EDAC=m
# CONFIG_EDAC_AMD76X is not set
CONFIG_EDAC_E7XXX=m
CONFIG_EDAC_E752X=m
CONFIG_EDAC_I82875P=m
CONFIG_EDAC_I82975X=m
# CONFIG_EDAC_I3000 is not set
# CONFIG_EDAC_I3200 is not set
# CONFIG_EDAC_X38 is not set
CONFIG_EDAC_I5400=m
CONFIG_EDAC_I82860=m
# CONFIG_EDAC_R82600 is not set
CONFIG_EDAC_I5000=m
# CONFIG_EDAC_I5100 is not set
CONFIG_RTC_LIB=m
CONFIG_RTC_CLASS=m
#
# RTC interfaces
#
CONFIG_RTC_INTF_SYSFS=y
# CONFIG_RTC_INTF_PROC is not set
CONFIG_RTC_INTF_DEV=y
CONFIG_RTC_INTF_DEV_UIE_EMUL=y
CONFIG_RTC_DRV_TEST=m
#
# I2C RTC drivers
#
CONFIG_RTC_DRV_DS1307=m
# CONFIG_RTC_DRV_DS1374 is not set
CONFIG_RTC_DRV_DS1672=m
CONFIG_RTC_DRV_MAX6900=m
CONFIG_RTC_DRV_MAX8925=m
CONFIG_RTC_DRV_RS5C372=m
CONFIG_RTC_DRV_ISL1208=m
CONFIG_RTC_DRV_X1205=m
CONFIG_RTC_DRV_PCF8563=m
CONFIG_RTC_DRV_PCF8583=m
CONFIG_RTC_DRV_M41T80=m
CONFIG_RTC_DRV_M41T80_WDT=y
# CONFIG_RTC_DRV_BQ32K is not set
CONFIG_RTC_DRV_S35390A=m
CONFIG_RTC_DRV_FM3130=m
CONFIG_RTC_DRV_RX8581=m
# CONFIG_RTC_DRV_RX8025 is not set
#
# SPI RTC drivers
#
#
# Platform RTC drivers
#
CONFIG_RTC_DRV_CMOS=m
CONFIG_RTC_DRV_DS1286=m
CONFIG_RTC_DRV_DS1511=m
CONFIG_RTC_DRV_DS1553=m
# CONFIG_RTC_DRV_DS1742 is not set
CONFIG_RTC_DRV_STK17TA8=m
# 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=m
CONFIG_RTC_DRV_BQ4802=m
# CONFIG_RTC_DRV_RP5C01 is not set
CONFIG_RTC_DRV_V3020=m
# CONFIG_RTC_DRV_WM8350 is not set
CONFIG_RTC_DRV_PCF50633=m
CONFIG_RTC_DRV_AB3100=m
#
# on-CPU RTC drivers
#
CONFIG_DMADEVICES=y
CONFIG_DMADEVICES_DEBUG=y
CONFIG_DMADEVICES_VDEBUG=y
#
# DMA Devices
#
CONFIG_ASYNC_TX_DISABLE_CHANNEL_SWITCH=y
CONFIG_INTEL_IOATDMA=y
# CONFIG_TIMB_DMA is not set
CONFIG_DMA_ENGINE=y
#
# DMA Clients
#
# CONFIG_NET_DMA is not set
CONFIG_ASYNC_TX_DMA=y
CONFIG_DMATEST=y
CONFIG_DCA=y
CONFIG_AUXDISPLAY=y
CONFIG_UIO=y
CONFIG_UIO_CIF=y
CONFIG_UIO_PDRV=y
# CONFIG_UIO_PDRV_GENIRQ is not set
CONFIG_UIO_AEC=m
# CONFIG_UIO_SERCOS3 is not set
# CONFIG_UIO_PCI_GENERIC is not set
CONFIG_UIO_NETX=y
# CONFIG_STAGING is not set
# CONFIG_X86_PLATFORM_DEVICES is not set
#
# Firmware Drivers
#
CONFIG_EDD=m
CONFIG_EDD_OFF=y
CONFIG_FIRMWARE_MEMMAP=y
# CONFIG_EFI_VARS is not set
CONFIG_DELL_RBU=m
CONFIG_DCDBAS=m
# CONFIG_DMIID is not set
CONFIG_ISCSI_IBFT_FIND=y
# CONFIG_ISCSI_IBFT is not set
#
# File systems
#
CONFIG_EXT2_FS=m
# CONFIG_EXT2_FS_XATTR is not set
CONFIG_EXT2_FS_XIP=y
CONFIG_EXT3_FS=y
CONFIG_EXT3_DEFAULTS_TO_ORDERED=y
CONFIG_EXT3_FS_XATTR=y
CONFIG_EXT3_FS_POSIX_ACL=y
CONFIG_EXT3_FS_SECURITY=y
# CONFIG_EXT4_FS is not set
CONFIG_FS_XIP=y
CONFIG_JBD=y
CONFIG_JBD_DEBUG=y
CONFIG_FS_MBCACHE=y
CONFIG_REISERFS_FS=m
CONFIG_REISERFS_CHECK=y
CONFIG_REISERFS_PROC_INFO=y
# CONFIG_REISERFS_FS_XATTR is not set
# CONFIG_JFS_FS is not set
CONFIG_FS_POSIX_ACL=y
# CONFIG_XFS_FS is not set
# CONFIG_GFS2_FS is not set
# CONFIG_OCFS2_FS is not set
CONFIG_BTRFS_FS=m
CONFIG_BTRFS_FS_POSIX_ACL=y
# CONFIG_NILFS2_FS is not set
CONFIG_FILE_LOCKING=y
CONFIG_FSNOTIFY=y
CONFIG_DNOTIFY=y
CONFIG_INOTIFY=y
CONFIG_INOTIFY_USER=y
CONFIG_QUOTA=y
# CONFIG_QUOTA_NETLINK_INTERFACE is not set
# CONFIG_PRINT_QUOTA_WARNING is not set
CONFIG_QUOTA_DEBUG=y
CONFIG_QUOTA_TREE=y
# CONFIG_QFMT_V1 is not set
CONFIG_QFMT_V2=y
CONFIG_QUOTACTL=y
CONFIG_AUTOFS_FS=y
# CONFIG_AUTOFS4_FS is not set
# CONFIG_FUSE_FS is not set
CONFIG_GENERIC_ACL=y
#
# Caches
#
CONFIG_FSCACHE=m
CONFIG_FSCACHE_STATS=y
CONFIG_FSCACHE_HISTOGRAM=y
# CONFIG_FSCACHE_DEBUG is not set
# CONFIG_FSCACHE_OBJECT_LIST is not set
CONFIG_CACHEFILES=m
CONFIG_CACHEFILES_DEBUG=y
CONFIG_CACHEFILES_HISTOGRAM=y
#
# CD-ROM/DVD Filesystems
#
CONFIG_ISO9660_FS=m
CONFIG_JOLIET=y
CONFIG_ZISOFS=y
# CONFIG_UDF_FS is not set
#
# DOS/FAT/NT Filesystems
#
CONFIG_FAT_FS=y
CONFIG_MSDOS_FS=y
# CONFIG_VFAT_FS is not set
CONFIG_FAT_DEFAULT_CODEPAGE=437
# CONFIG_NTFS_FS is not set
#
# Pseudo filesystems
#
CONFIG_PROC_FS=y
CONFIG_PROC_KCORE=y
CONFIG_PROC_VMCORE=y
CONFIG_PROC_SYSCTL=y
CONFIG_PROC_PAGE_MONITOR=y
CONFIG_SYSFS=y
CONFIG_TMPFS=y
CONFIG_TMPFS_POSIX_ACL=y
CONFIG_HUGETLBFS=y
CONFIG_HUGETLB_PAGE=y
CONFIG_CONFIGFS_FS=y
CONFIG_MISC_FILESYSTEMS=y
CONFIG_ADFS_FS=y
CONFIG_ADFS_FS_RW=y
# CONFIG_AFFS_FS is not set
CONFIG_ECRYPT_FS=m
CONFIG_HFS_FS=y
CONFIG_HFSPLUS_FS=m
CONFIG_BEFS_FS=y
# CONFIG_BEFS_DEBUG is not set
CONFIG_BFS_FS=m
CONFIG_EFS_FS=y
CONFIG_LOGFS=y
CONFIG_CRAMFS=y
CONFIG_SQUASHFS=y
CONFIG_SQUASHFS_XATTRS=y
CONFIG_SQUASHFS_EMBEDDED=y
CONFIG_SQUASHFS_FRAGMENT_CACHE_SIZE=3
CONFIG_VXFS_FS=m
CONFIG_MINIX_FS=m
CONFIG_OMFS_FS=y
CONFIG_HPFS_FS=m
CONFIG_QNX4FS_FS=m
# CONFIG_ROMFS_FS is not set
CONFIG_SYSV_FS=y
# CONFIG_UFS_FS is not set
CONFIG_EXOFS_FS=m
CONFIG_EXOFS_DEBUG=y
CONFIG_NETWORK_FILESYSTEMS=y
# CONFIG_NFS_FS is not set
# CONFIG_NFSD is not set
# CONFIG_SMB_FS is not set
# CONFIG_CEPH_FS is not set
CONFIG_CIFS=m
# CONFIG_CIFS_STATS is not set
# CONFIG_CIFS_WEAK_PW_HASH is not set
CONFIG_CIFS_UPCALL=y
CONFIG_CIFS_XATTR=y
# CONFIG_CIFS_POSIX is not set
CONFIG_CIFS_DEBUG2=y
CONFIG_CIFS_DFS_UPCALL=y
CONFIG_CIFS_EXPERIMENTAL=y
CONFIG_NCP_FS=m
CONFIG_NCPFS_PACKET_SIGNING=y
# CONFIG_NCPFS_IOCTL_LOCKING is not set
CONFIG_NCPFS_STRONG=y
# CONFIG_NCPFS_NFS_NS is not set
CONFIG_NCPFS_OS2_NS=y
CONFIG_NCPFS_SMALLDOS=y
CONFIG_NCPFS_NLS=y
CONFIG_NCPFS_EXTRAS=y
CONFIG_CODA_FS=y
CONFIG_AFS_FS=m
CONFIG_AFS_DEBUG=y
CONFIG_AFS_FSCACHE=y
#
# Partition Types
#
CONFIG_PARTITION_ADVANCED=y
CONFIG_ACORN_PARTITION=y
CONFIG_ACORN_PARTITION_CUMANA=y
# CONFIG_ACORN_PARTITION_EESOX is not set
CONFIG_ACORN_PARTITION_ICS=y
CONFIG_ACORN_PARTITION_ADFS=y
CONFIG_ACORN_PARTITION_POWERTEC=y
# CONFIG_ACORN_PARTITION_RISCIX is not set
# CONFIG_OSF_PARTITION is not set
CONFIG_AMIGA_PARTITION=y
# CONFIG_ATARI_PARTITION is not set
# CONFIG_MAC_PARTITION is not set
CONFIG_MSDOS_PARTITION=y
CONFIG_BSD_DISKLABEL=y
CONFIG_MINIX_SUBPARTITION=y
CONFIG_SOLARIS_X86_PARTITION=y
CONFIG_UNIXWARE_DISKLABEL=y
CONFIG_LDM_PARTITION=y
# CONFIG_LDM_DEBUG is not set
CONFIG_SGI_PARTITION=y
CONFIG_ULTRIX_PARTITION=y
CONFIG_SUN_PARTITION=y
CONFIG_KARMA_PARTITION=y
CONFIG_EFI_PARTITION=y
CONFIG_SYSV68_PARTITION=y
CONFIG_NLS=y
CONFIG_NLS_DEFAULT="iso8859-1"
CONFIG_NLS_CODEPAGE_437=y
CONFIG_NLS_CODEPAGE_737=y
# CONFIG_NLS_CODEPAGE_775 is not set
CONFIG_NLS_CODEPAGE_850=m
CONFIG_NLS_CODEPAGE_852=y
CONFIG_NLS_CODEPAGE_855=m
CONFIG_NLS_CODEPAGE_857=y
# CONFIG_NLS_CODEPAGE_860 is not set
CONFIG_NLS_CODEPAGE_861=m
# CONFIG_NLS_CODEPAGE_862 is not set
# CONFIG_NLS_CODEPAGE_863 is not set
CONFIG_NLS_CODEPAGE_864=y
CONFIG_NLS_CODEPAGE_865=m
# 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=y
CONFIG_NLS_CODEPAGE_932=y
# CONFIG_NLS_CODEPAGE_949 is not set
CONFIG_NLS_CODEPAGE_874=m
CONFIG_NLS_ISO8859_8=y
CONFIG_NLS_CODEPAGE_1250=y
CONFIG_NLS_CODEPAGE_1251=m
CONFIG_NLS_ASCII=y
# CONFIG_NLS_ISO8859_1 is not set
# CONFIG_NLS_ISO8859_2 is not set
CONFIG_NLS_ISO8859_3=m
CONFIG_NLS_ISO8859_4=y
CONFIG_NLS_ISO8859_5=y
# 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=m
CONFIG_NLS_ISO8859_15=m
CONFIG_NLS_KOI8_R=y
CONFIG_NLS_KOI8_U=m
CONFIG_NLS_UTF8=m
CONFIG_DLM=y
CONFIG_DLM_DEBUG=y
#
# Kernel hacking
#
CONFIG_TRACE_IRQFLAGS_SUPPORT=y
CONFIG_PRINTK_TIME=y
# CONFIG_ENABLE_WARN_DEPRECATED is not set
CONFIG_ENABLE_MUST_CHECK=y
CONFIG_FRAME_WARN=1024
CONFIG_MAGIC_SYSRQ=y
# CONFIG_STRIP_ASM_SYMS is not set
CONFIG_UNUSED_SYMBOLS=y
CONFIG_DEBUG_FS=y
CONFIG_HEADERS_CHECK=y
CONFIG_DEBUG_KERNEL=y
CONFIG_DEBUG_SHIRQ=y
CONFIG_DETECT_SOFTLOCKUP=y
CONFIG_BOOTPARAM_SOFTLOCKUP_PANIC=y
CONFIG_BOOTPARAM_SOFTLOCKUP_PANIC_VALUE=1
# CONFIG_DETECT_HUNG_TASK is not set
CONFIG_SCHED_DEBUG=y
CONFIG_SCHEDSTATS=y
CONFIG_TIMER_STATS=y
CONFIG_DEBUG_OBJECTS=y
# CONFIG_DEBUG_OBJECTS_SELFTEST is not set
CONFIG_DEBUG_OBJECTS_FREE=y
CONFIG_DEBUG_OBJECTS_TIMERS=y
# CONFIG_DEBUG_OBJECTS_WORK is not set
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 is not set
CONFIG_LOCKDEP=y
CONFIG_LOCK_STAT=y
CONFIG_DEBUG_LOCKDEP=y
CONFIG_TRACE_IRQFLAGS=y
CONFIG_DEBUG_SPINLOCK_SLEEP=y
# CONFIG_DEBUG_LOCKING_API_SELFTESTS is not set
CONFIG_STACKTRACE=y
# CONFIG_DEBUG_KOBJECT is not set
CONFIG_DEBUG_HIGHMEM=y
CONFIG_DEBUG_BUGVERBOSE=y
# CONFIG_DEBUG_INFO is not set
# CONFIG_DEBUG_VM is not set
CONFIG_DEBUG_VIRTUAL=y
# CONFIG_DEBUG_WRITECOUNT is not set
CONFIG_DEBUG_MEMORY_INIT=y
CONFIG_DEBUG_LIST=y
# CONFIG_DEBUG_SG is not set
# CONFIG_DEBUG_NOTIFIERS is not set
CONFIG_DEBUG_CREDENTIALS=y
CONFIG_ARCH_WANT_FRAME_POINTERS=y
CONFIG_FRAME_POINTER=y
CONFIG_BOOT_PRINTK_DELAY=y
# CONFIG_RCU_TORTURE_TEST is not set
CONFIG_RCU_CPU_STALL_DETECTOR=y
# CONFIG_KPROBES_SANITY_TEST is not set
# CONFIG_BACKTRACE_SELF_TEST is not set
# CONFIG_DEBUG_BLOCK_EXT_DEVT is not set
# CONFIG_DEBUG_FORCE_WEAK_PER_CPU is not set
CONFIG_LKDTM=m
CONFIG_CPU_NOTIFIER_ERROR_INJECT=y
# CONFIG_FAULT_INJECTION is not set
CONFIG_LATENCYTOP=y
CONFIG_SYSCTL_SYSCALL_CHECK=y
# CONFIG_DEBUG_PAGEALLOC is not set
CONFIG_USER_STACKTRACE_SUPPORT=y
CONFIG_NOP_TRACER=y
CONFIG_HAVE_FTRACE_NMI_ENTER=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_TRACER_MAX_TRACE=y
CONFIG_RING_BUFFER=y
CONFIG_FTRACE_NMI_ENTER=y
CONFIG_EVENT_TRACING=y
CONFIG_CONTEXT_SWITCH_TRACER=y
CONFIG_TRACING=y
CONFIG_GENERIC_TRACER=y
CONFIG_TRACING_SUPPORT=y
CONFIG_FTRACE=y
CONFIG_FUNCTION_TRACER=y
# CONFIG_IRQSOFF_TRACER is not set
CONFIG_SYSPROF_TRACER=y
CONFIG_SCHED_TRACER=y
CONFIG_FTRACE_SYSCALLS=y
CONFIG_BOOT_TRACER=y
CONFIG_BRANCH_PROFILE_NONE=y
# CONFIG_PROFILE_ANNOTATED_BRANCHES is not set
# CONFIG_PROFILE_ALL_BRANCHES is not set
CONFIG_KSYM_TRACER=y
CONFIG_PROFILE_KSYM_TRACER=y
CONFIG_STACK_TRACER=y
CONFIG_KMEMTRACE=y
CONFIG_WORKQUEUE_TRACER=y
# CONFIG_BLK_DEV_IO_TRACE is not set
# CONFIG_KPROBE_EVENT is not set
CONFIG_DYNAMIC_FTRACE=y
CONFIG_FUNCTION_PROFILER=y
CONFIG_FTRACE_MCOUNT_RECORD=y
CONFIG_FTRACE_SELFTEST=y
CONFIG_FTRACE_STARTUP_TEST=y
CONFIG_EVENT_TRACE_TEST_SYSCALLS=y
CONFIG_MMIOTRACE=y
# CONFIG_MMIOTRACE_TEST is not set
# CONFIG_RING_BUFFER_BENCHMARK is not set
CONFIG_PROVIDE_OHCI1394_DMA_INIT=y
CONFIG_FIREWIRE_OHCI_REMOTE_DMA=y
CONFIG_BUILD_DOCSRC=y
CONFIG_DYNAMIC_DEBUG=y
CONFIG_DMA_API_DEBUG=y
# CONFIG_ATOMIC64_SELFTEST is not set
CONFIG_SAMPLES=y
CONFIG_SAMPLE_TRACEPOINTS=m
CONFIG_SAMPLE_TRACE_EVENTS=m
# CONFIG_SAMPLE_KOBJECT is not set
CONFIG_SAMPLE_KPROBES=m
CONFIG_SAMPLE_KRETPROBES=m
CONFIG_SAMPLE_HW_BREAKPOINT=m
CONFIG_HAVE_ARCH_KGDB=y
# CONFIG_KGDB is not set
CONFIG_HAVE_ARCH_KMEMCHECK=y
CONFIG_STRICT_DEVMEM=y
CONFIG_X86_VERBOSE_BOOTUP=y
CONFIG_EARLY_PRINTK=y
CONFIG_EARLY_PRINTK_DBGP=y
CONFIG_DEBUG_STACKOVERFLOW=y
CONFIG_DEBUG_STACK_USAGE=y
# CONFIG_DEBUG_PER_CPU_MAPS is not set
CONFIG_X86_PTDUMP=y
CONFIG_DEBUG_RODATA=y
# CONFIG_DEBUG_RODATA_TEST is not set
CONFIG_DEBUG_NX_TEST=m
CONFIG_4KSTACKS=y
CONFIG_DOUBLEFAULT=y
CONFIG_IOMMU_STRESS=y
CONFIG_HAVE_MMIOTRACE_SUPPORT=y
CONFIG_X86_DECODER_SELFTEST=y
CONFIG_IO_DELAY_TYPE_0X80=0
CONFIG_IO_DELAY_TYPE_0XED=1
CONFIG_IO_DELAY_TYPE_UDELAY=2
CONFIG_IO_DELAY_TYPE_NONE=3
# CONFIG_IO_DELAY_0X80 is not set
CONFIG_IO_DELAY_0XED=y
# CONFIG_IO_DELAY_UDELAY is not set
# CONFIG_IO_DELAY_NONE is not set
CONFIG_DEFAULT_IO_DELAY_TYPE=1
CONFIG_DEBUG_BOOT_PARAMS=y
CONFIG_CPA_DEBUG=y
CONFIG_OPTIMIZE_INLINING=y
# CONFIG_DEBUG_STRICT_USER_COPY_CHECKS is not set
#
# Security options
#
CONFIG_KEYS=y
# CONFIG_KEYS_DEBUG_PROC_KEYS is not set
CONFIG_SECURITY=y
CONFIG_SECURITYFS=y
# CONFIG_SECURITY_NETWORK is not set
CONFIG_SECURITY_PATH=y
# CONFIG_INTEL_TXT is not set
CONFIG_SECURITY_TOMOYO=y
CONFIG_IMA=y
CONFIG_IMA_MEASURE_PCR_IDX=10
CONFIG_IMA_AUDIT=y
# CONFIG_DEFAULT_SECURITY_SELINUX is not set
# CONFIG_DEFAULT_SECURITY_SMACK is not set
CONFIG_DEFAULT_SECURITY_TOMOYO=y
# CONFIG_DEFAULT_SECURITY_DAC is not set
CONFIG_DEFAULT_SECURITY="tomoyo"
CONFIG_ASYNC_TX_DISABLE_PQ_VAL_DMA=y
CONFIG_ASYNC_TX_DISABLE_XOR_VAL_DMA=y
CONFIG_CRYPTO=y
#
# Crypto core or helper
#
CONFIG_CRYPTO_FIPS=y
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_RNG=y
CONFIG_CRYPTO_RNG2=y
CONFIG_CRYPTO_PCOMP=y
CONFIG_CRYPTO_MANAGER=y
CONFIG_CRYPTO_MANAGER2=y
CONFIG_CRYPTO_GF128MUL=y
CONFIG_CRYPTO_NULL=m
CONFIG_CRYPTO_PCRYPT=m
CONFIG_CRYPTO_WORKQUEUE=y
CONFIG_CRYPTO_CRYPTD=y
CONFIG_CRYPTO_AUTHENC=y
# CONFIG_CRYPTO_TEST is not set
#
# Authenticated Encryption with Associated Data
#
CONFIG_CRYPTO_CCM=m
CONFIG_CRYPTO_GCM=m
CONFIG_CRYPTO_SEQIV=y
#
# Block modes
#
CONFIG_CRYPTO_CBC=y
CONFIG_CRYPTO_CTR=m
CONFIG_CRYPTO_CTS=m
CONFIG_CRYPTO_ECB=m
CONFIG_CRYPTO_LRW=y
CONFIG_CRYPTO_PCBC=y
CONFIG_CRYPTO_XTS=y
#
# Hash modes
#
CONFIG_CRYPTO_HMAC=y
CONFIG_CRYPTO_XCBC=y
CONFIG_CRYPTO_VMAC=y
#
# Digest
#
CONFIG_CRYPTO_CRC32C=y
# CONFIG_CRYPTO_CRC32C_INTEL is not set
CONFIG_CRYPTO_GHASH=m
# CONFIG_CRYPTO_MD4 is not set
CONFIG_CRYPTO_MD5=y
CONFIG_CRYPTO_MICHAEL_MIC=y
CONFIG_CRYPTO_RMD128=y
CONFIG_CRYPTO_RMD160=y
CONFIG_CRYPTO_RMD256=y
CONFIG_CRYPTO_RMD320=m
CONFIG_CRYPTO_SHA1=y
CONFIG_CRYPTO_SHA256=m
CONFIG_CRYPTO_SHA512=m
CONFIG_CRYPTO_TGR192=m
CONFIG_CRYPTO_WP512=y
#
# Ciphers
#
CONFIG_CRYPTO_AES=y
# CONFIG_CRYPTO_AES_586 is not set
CONFIG_CRYPTO_ANUBIS=y
CONFIG_CRYPTO_ARC4=m
CONFIG_CRYPTO_BLOWFISH=y
CONFIG_CRYPTO_CAMELLIA=y
# CONFIG_CRYPTO_CAST5 is not set
CONFIG_CRYPTO_CAST6=m
CONFIG_CRYPTO_DES=y
CONFIG_CRYPTO_FCRYPT=m
# CONFIG_CRYPTO_KHAZAD is not set
CONFIG_CRYPTO_SALSA20=y
CONFIG_CRYPTO_SALSA20_586=y
CONFIG_CRYPTO_SEED=m
CONFIG_CRYPTO_SERPENT=y
CONFIG_CRYPTO_TEA=y
# CONFIG_CRYPTO_TWOFISH is not set
# CONFIG_CRYPTO_TWOFISH_586 is not set
#
# Compression
#
CONFIG_CRYPTO_DEFLATE=y
CONFIG_CRYPTO_ZLIB=y
CONFIG_CRYPTO_LZO=y
#
# Random Number Generation
#
CONFIG_CRYPTO_ANSI_CPRNG=m
CONFIG_CRYPTO_HW=y
CONFIG_CRYPTO_DEV_PADLOCK=y
# CONFIG_CRYPTO_DEV_PADLOCK_AES is not set
CONFIG_CRYPTO_DEV_PADLOCK_SHA=m
CONFIG_CRYPTO_DEV_GEODE=m
# CONFIG_CRYPTO_DEV_HIFN_795X is not set
CONFIG_HAVE_KVM=y
# CONFIG_VIRTUALIZATION is not set
CONFIG_VIRTIO=y
CONFIG_VIRTIO_RING=y
CONFIG_BINARY_PRINTF=y
#
# Library routines
#
CONFIG_BITREVERSE=y
CONFIG_GENERIC_FIND_FIRST_BIT=y
CONFIG_GENERIC_FIND_NEXT_BIT=y
CONFIG_GENERIC_FIND_LAST_BIT=y
CONFIG_CRC_CCITT=y
CONFIG_CRC16=m
CONFIG_CRC_T10DIF=y
CONFIG_CRC_ITU_T=y
CONFIG_CRC32=y
CONFIG_CRC7=m
CONFIG_LIBCRC32C=y
CONFIG_ZLIB_INFLATE=y
CONFIG_ZLIB_DEFLATE=y
CONFIG_LZO_COMPRESS=y
CONFIG_LZO_DECOMPRESS=y
CONFIG_DECOMPRESS_GZIP=y
CONFIG_DECOMPRESS_BZIP2=y
CONFIG_DECOMPRESS_LZMA=y
CONFIG_DECOMPRESS_LZO=y
CONFIG_TEXTSEARCH=y
CONFIG_TEXTSEARCH_KMP=y
CONFIG_TEXTSEARCH_BM=y
CONFIG_TEXTSEARCH_FSM=y
CONFIG_BTREE=y
CONFIG_HAS_IOMEM=y
CONFIG_HAS_IOPORT=y
CONFIG_HAS_DMA=y
CONFIG_CHECK_SIGNATURE=y
CONFIG_NLATTR=y
[-- Attachment #3: crash.log --]
[-- Type: text/plain, Size: 340917 bytes --]
[ 0.000000] Linux version 2.6.34-08129-gcc106eb-dirty (mingo@lyra) (gcc version 4.4.2 20091002 (prerelease) (GCC) ) #257 SMP Thu May 27 20:57:09 CEST 2010
[ 0.000000] BIOS-provided physical RAM map:
[ 0.000000] BIOS-e820: 0000000000000000 - 000000000009f800 (usable)
[ 0.000000] BIOS-e820: 000000000009f800 - 00000000000a0000 (reserved)
[ 0.000000] BIOS-e820: 00000000000f0000 - 0000000000100000 (reserved)
[ 0.000000] BIOS-e820: 0000000000100000 - 000000003fff0000 (usable)
[ 0.000000] BIOS-e820: 000000003fff0000 - 000000003fff3000 (ACPI NVS)
[ 0.000000] BIOS-e820: 000000003fff3000 - 0000000040000000 (ACPI data)
[ 0.000000] BIOS-e820: 00000000e0000000 - 00000000f0000000 (reserved)
[ 0.000000] BIOS-e820: 00000000fec00000 - 0000000100000000 (reserved)
[ 0.000000] bootconsole [earlyser0] enabled
[ 0.000000] debug: ignoring loglevel setting.
[ 0.000000] using polling idle threads.
[ 0.000000] PAT support disabled.
[ 0.000000] NX (Execute Disable) protection: active
[ 0.000000] DMI 2.3 present.
[ 0.000000] Phoenix BIOS detected: BIOS may corrupt low RAM, working around it.
[ 0.000000] e820 update range: 0000000000000000 - 0000000000010000 (usable) ==> (reserved)
[ 0.000000] e820 update range: 0000000000000000 - 0000000000001000 (usable) ==> (reserved)
[ 0.000000] e820 remove range: 00000000000a0000 - 0000000000100000 (usable)
[ 0.000000] last_pfn = 0x3fff0 max_arch_pfn = 0x1000000
[ 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-C7FFF write-protect
[ 0.000000] C8000-FFFFF uncachable
[ 0.000000] MTRR variable ranges enabled:
[ 0.000000] 0 base 0000000000 mask FFC0000000 write-back
[ 0.000000] 1 disabled
[ 0.000000] 2 disabled
[ 0.000000] 3 disabled
[ 0.000000] 4 disabled
[ 0.000000] 5 disabled
[ 0.000000] 6 disabled
[ 0.000000] 7 disabled
[ 0.000000] only 137MB highmem pages available, ignoring highmem size of 512MB!
[ 0.000000] initial memory mapped : 0 - 02600000
[ 0.000000] Scan SMP from c0000000 for 1024 bytes.
[ 0.000000] Scan SMP from c009fc00 for 1024 bytes.
[ 0.000000] Scan SMP from c00f0000 for 65536 bytes.
[ 0.000000] found SMP MP-table at [c00f5680] f5680
[ 0.000000] mpc: f1400-f152c
[ 0.000000] init_memory_mapping: 0000000000000000-00000000375fe000
[ 0.000000] 0000000000 - 0000200000 page 4k
[ 0.000000] 0000200000 - 0037400000 page 2M
[ 0.000000] 0037400000 - 00375fe000 page 4k
[ 0.000000] kernel direct mapping tables up to 375fe000 @ 11000-19000
[ 0.000000] ACPI: RSDP 000f76f0 00014 (v00 Nvidia)
[ 0.000000] ACPI: RSDT 3fff3040 00034 (v01 Nvidia AWRDACPI 42302E31 AWRD 00000000)
[ 0.000000] ACPI: FACP 3fff30c0 00074 (v01 Nvidia AWRDACPI 42302E31 AWRD 00000000)
[ 0.000000] ACPI: DSDT 3fff3180 06264 (v01 NVIDIA AWRDACPI 00001000 MSFT 0100000E)
[ 0.000000] ACPI: FACS 3fff0000 00040
[ 0.000000] ACPI: SRAT 3fff9500 000A0 (v01 AMD HAMMER 00000001 AMD 00000001)
[ 0.000000] ACPI: MCFG 3fff9600 0003C (v01 Nvidia AWRDACPI 42302E31 AWRD 00000000)
[ 0.000000] ACPI: APIC 3fff9440 0007C (v01 Nvidia AWRDACPI 42302E31 AWRD 00000000)
[ 0.000000] ACPI: Local APIC address 0xfee00000
[ 0.000000] CPU 00 in proximity domain 00
[ 0.000000] CPU 01 in proximity domain 00
[ 0.000000] Memory range 00000000 to 000000a0 in proximity domain 00 enabled
[ 0.000000] Memory range 00000100 to 00040000 in proximity domain 00 enabled
[ 0.000000] pxm bitmap: 01 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00
[ 0.000000] Number of logical nodes in system = 1
[ 0.000000] Number of memory chunks in system = 2
[ 0.000000] chunk 0 nid 0 start_pfn 00000000 end_pfn 000000a0
[ 0.000000] chunk 1 nid 0 start_pfn 00000100 end_pfn 00040000
[ 0.000000] Node: 0, start_pfn: 0, end_pfn: 3fff0
[ 0.000000] Setting physnode_map array to node 0 for pfns:
[ 0.000000] 0 4000 8000 c000 10000 14000 18000 1c000 20000 24000 28000 2c000 30000 34000 38000 3c000
[ 0.000000] node 0 pfn: [0 - 40000]
[ 0.000000] Reserving 2560 pages of KVA for lmem_map of node 0 at 3f400
[ 0.000000] remove_active_range (0, 259072, 261632)
[ 0.000000] Reserving total of a00 pages for numa KVA remap
[ 0.000000] kva_start_pfn ~ 36a00 max_low_pfn ~ 375fe
[ 0.000000] max_pfn = 3fff0
[ 0.000000] 137MB HIGHMEM available.
[ 0.000000] 885MB LOWMEM available.
[ 0.000000] max_low_pfn = 375fe, highstart_pfn = 375fe
[ 0.000000] Low memory ends at vaddr f75fe000
[ 0.000000] node 0 will remap to vaddr f6a00000 - f7400000
[ 0.000000] allocate_pgdat: node 0 NODE_DATA f6a00000
[ 0.000000] remap_numa_kva: node 0
[ 0.000000] remap_numa_kva: f6a00000 to pfn 0003f400
[ 0.000000] remap_numa_kva: f6c00000 to pfn 0003f600
[ 0.000000] remap_numa_kva: f6e00000 to pfn 0003f800
[ 0.000000] remap_numa_kva: f7000000 to pfn 0003fa00
[ 0.000000] remap_numa_kva: f7200000 to pfn 0003fc00
[ 0.000000] High memory starts at vaddr f75fe000
[ 0.000000] mapped low ram: 0 - 375fe000
[ 0.000000] low ram: 0 - 375fe000
[ 0.000000] Zone PFN ranges:
[ 0.000000] DMA 0x00000010 -> 0x00001000
[ 0.000000] Normal 0x00001000 -> 0x000375fe
[ 0.000000] HighMem 0x000375fe -> 0x0003fff0
[ 0.000000] Movable zone start PFN for each node
[ 0.000000] early_node_map[3] active PFN ranges
[ 0.000000] 0: 0x00000010 -> 0x0000009f
[ 0.000000] 0: 0x00000100 -> 0x0003f400
[ 0.000000] 0: 0x0003fe00 -> 0x0003fff0
[ 0.000000] On node 0 totalpages: 259455
[ 0.000000] free_area_init_node: node 0, pgdat f6a00000, node_mem_map f6a02200
[ 0.000000] DMA zone: 32 pages used for memmap
[ 0.000000] DMA zone: 0 pages reserved
[ 0.000000] DMA zone: 3951 pages, LIFO batch:0
[ 0.000000] Normal zone: 1740 pages used for memmap
[ 0.000000] Normal zone: 220978 pages, LIFO batch:31
[ 0.000000] HighMem zone: 276 pages used for memmap
[ 0.000000] HighMem zone: 32478 pages, LIFO batch:7
[ 0.000000] Using APIC driver default
[ 0.000000] Nvidia board detected. Ignoring ACPI timer override.
[ 0.000000] If you got timer trouble try acpi_use_timer_override
[ 0.000000] ACPI: PM-Timer IO Port: 0x4008
[ 0.000000] ACPI: Local APIC address 0xfee00000
[ 0.000000] ACPI: LAPIC (acpi_id[0x00] lapic_id[0x00] enabled)
[ 0.000000] ACPI: LAPIC (acpi_id[0x01] lapic_id[0x01] enabled)
[ 0.000000] ACPI: LAPIC_NMI (acpi_id[0x00] high edge lint[0x1])
[ 0.000000] ACPI: LAPIC_NMI (acpi_id[0x01] high edge lint[0x1])
[ 0.000000] ACPI: IOAPIC (id[0x02] address[0xfec00000] gsi_base[0])
[ 0.000000] IOAPIC[0]: apic_id 2, version 17, address 0xfec00000, GSI 0-23
[ 0.000000] ACPI: INT_SRC_OVR (bus 0 bus_irq 0 global_irq 2 dfl dfl)
[ 0.000000] ACPI: BIOS IRQ0 pin2 override ignored.
[ 0.000000] ACPI: INT_SRC_OVR (bus 0 bus_irq 9 global_irq 9 high level)
[ 0.000000] ACPI: INT_SRC_OVR (bus 0 bus_irq 14 global_irq 14 high edge)
[ 0.000000] ACPI: INT_SRC_OVR (bus 0 bus_irq 15 global_irq 15 high edge)
[ 0.000000] ACPI: IRQ9 used by override.
[ 0.000000] ACPI: IRQ14 used by override.
[ 0.000000] ACPI: IRQ15 used by override.
[ 0.000000] Using ACPI (MADT) for SMP configuration information
[ 0.000000] SMP: Allowing 2 CPUs, 0 hotplug CPUs
[ 0.000000] mapped APIC to ffffa000 (fee00000)
[ 0.000000] mapped IOAPIC to ffff9000 (fec00000)
[ 0.000000] nr_irqs_gsi: 40
[ 0.000000] early_res array is doubled to 64 at [15000 - 157ff]
[ 0.000000] Allocating PCI resources starting at 40000000 (gap: 40000000:a0000000)
[ 0.000000] Booting paravirtualized kernel on bare hardware
[ 0.000000] setup_percpu: NR_CPUS:32 nr_cpumask_bits:32 nr_cpu_ids:2 nr_node_ids:16
[ 0.000000] PERCPU: Embedded 336 pages/cpu @c2400000 s1354240 r0 d22016 u2097152
[ 0.000000] pcpu-alloc: s1354240 r0 d22016 u2097152 alloc=1*2097152
[ 0.000000] pcpu-alloc: [0] 0 [0] 1
[ 0.000000] Built 1 zonelists in Zone order, mobility grouping on. Total pages: 257407
[ 0.000000] Policy zone: HighMem
[ 0.000000] Kernel command line: root=/dev/sda1 earlyprintk=ttyS0,115200 console=ttyS0,115200 debug initcall_debug enforcing=0 apic=verbose ignore_loglevel sysrq_always_enabled selinux=0 nmi_watchdog=0 3 panic=1 3 no_hz=off highres=0 nmi_watchdog=0 nolapic_timer hpet=disable idle=poll highmem=512m nopat notsc
[ 0.000000] sysrq: sysrq always enabled.
[ 0.000000] PID hash table entries: 4096 (order: 2, 16384 bytes)
[ 0.000000] Dentry cache hash table entries: 131072 (order: 7, 524288 bytes)
[ 0.000000] Inode-cache hash table entries: 65536 (order: 6, 262144 bytes)
[ 0.000000] Enabling fast FPU save and restore... done.
[ 0.000000] Enabling unmasked SIMD FPU exception support... done.
[ 0.000000] Initializing CPU#0
[ 0.000000] Subtract (43 early reservations)
[ 0.000000] #1 [0000001000 - 0000002000] EX TRAMPOLINE
[ 0.000000] #2 [0001000000 - 0002216cf0] TEXT DATA BSS
[ 0.000000] #3 [0002217000 - 000222a149] BRK
[ 0.000000] #4 [00000f5690 - 0000100000] BIOS reserved
[ 0.000000] #5 [00000f5680 - 00000f5690] MP-table mpf
[ 0.000000] #6 [000009f800 - 00000f1400] BIOS reserved
[ 0.000000] #7 [00000f152c - 00000f5680] BIOS reserved
[ 0.000000] #8 [00000f1400 - 00000f152c] MP-table mpc
[ 0.000000] #9 [0000010000 - 0000011000] TRAMPOLINE
[ 0.000000] #10 [0000011000 - 0000015000] PGTABLE
[ 0.000000] #11 [003f400000 - 003fe00000] KVA RAM
[ 0.000000] #12 [0036a00000 - 0037400000] KVA PG
[ 0.000000] #13 [000222b000 - 000222c000] BOOTMEM
[ 0.000000] #14 [0002216d00 - 0002216d04] BOOTMEM
[ 0.000000] #15 [0002216d20 - 0002216fe0] BOOTMEM
[ 0.000000] #16 [000222a160 - 000222a204] BOOTMEM
[ 0.000000] #17 [000222c000 - 0002237000] BOOTMEM
[ 0.000000] #18 [0002216fe0 - 0002216ffc] BOOTMEM
[ 0.000000] #19 [0002237000 - 0002239c00] BOOTMEM
[ 0.000000] #20 [000222a220 - 000222a24f] BOOTMEM
[ 0.000000] #21 [000222a260 - 000222a3a4] BOOTMEM
[ 0.000000] #22 [000222a3c0 - 000222a400] BOOTMEM
[ 0.000000] #23 [000222a400 - 000222a440] BOOTMEM
[ 0.000000] #24 [000222a440 - 000222a480] BOOTMEM
[ 0.000000] #25 [000222a480 - 000222a4c0] BOOTMEM
[ 0.000000] #26 [000222a4c0 - 000222a500] BOOTMEM
[ 0.000000] #27 [000222a500 - 000222a540] BOOTMEM
[ 0.000000] #28 [000222a540 - 000222a580] BOOTMEM
[ 0.000000] #29 [000222a580 - 000222a5c0] BOOTMEM
[ 0.000000] #30 [000222a5c0 - 000222a6d6] BOOTMEM
[ 0.000000] #31 [000222a6e0 - 000222a7f6] BOOTMEM
[ 0.000000] #32 [0002400000 - 0002550000] BOOTMEM
[ 0.000000] #33 [0002600000 - 0002750000] BOOTMEM
[ 0.000000] #34 [000222a800 - 000222a804] BOOTMEM
[ 0.000000] #35 [000222a820 - 000222a824] BOOTMEM
[ 0.000000] #36 [000222a840 - 000222a848] BOOTMEM
[ 0.000000] #37 [000222a860 - 000222a868] BOOTMEM
[ 0.000000] #38 [000222a880 - 000222a928] BOOTMEM
[ 0.000000] #39 [000222a940 - 000222a9a8] BOOTMEM
[ 0.000000] #40 [0002239c00 - 000223dc00] BOOTMEM
[ 0.000000] #41 [000223dc00 - 00022bdc00] BOOTMEM
[ 0.000000] #42 [00022bdc00 - 00022fdc00] BOOTMEM
[ 0.000000] Initializing HighMem for node 0 (000375fe:0003fff0)
[ 0.000000] Memory: 1005424k/1048512k available (5549k kernel code, 32396k reserved, 3559k data, 2004k init, 131016k highmem)
[ 0.000000] virtual kernel memory layout:
[ 0.000000] fixmap : 0xffa94000 - 0xfffff000 (5548 kB)
[ 0.000000] pkmap : 0xff600000 - 0xff800000 (2048 kB)
[ 0.000000] vmalloc : 0xf7dfe000 - 0xff5fe000 ( 120 MB)
[ 0.000000] lowmem : 0xc0000000 - 0xf75fe000 ( 885 MB)
[ 0.000000] .init : 0xc18e6000 - 0xc1adb000 (2004 kB)
[ 0.000000] .data : 0xc156b4ac - 0xc18e51e0 (3559 kB)
[ 0.000000] .text : 0xc1000000 - 0xc156b4ac (5549 kB)
[ 0.000000] Checking if this processor honours the WP bit even in supervisor mode...Ok.
[ 0.000000] SLUB: Genslabs=14, HWalign=64, Order=0-3, MinObjects=0, CPUs=2, Nodes=16
[ 0.000000] Hierarchical RCU implementation.
[ 0.000000] Verbose stalled-CPUs detection is disabled.
[ 0.000000] NR_IRQS:2304 nr_irqs:512
[ 0.000000] CPU 0 irqstacks, hard=c2400000 soft=c2401000
[ 0.000000] spurious 8259A interrupt: IRQ7.
[ 0.000000] Console: colour VGA+ 80x25
[ 0.000000] console [ttyS0] enabled, bootconsole disabled
[ 0.000000] console [ttyS0] enabled, bootconsole disabled
[ 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: 3823 kB
[ 0.000000] per task-struct memory footprint: 1920 bytes
[ 0.000000] ODEBUG: 7 of 7 active objects replaced
[ 0.020000] Calibrating delay loop... 2005.40 BogoMIPS (lpj=10027008)
[ 0.270000] pid_max: default: 32768 minimum: 301
[ 0.270000] Security Framework initialized
[ 0.280000] TOMOYO Linux initialized
[ 0.280000] Mount-cache hash table entries: 512
[ 0.290000] CPU: Physical Processor ID: 0
[ 0.290000] CPU: Processor Core ID: 0
[ 0.290000] Performance Events: AMD PMU driver.
[ 0.300000] ... version: 0
[ 0.300000] ... bit width: 48
[ 0.310000] ... generic registers: 4
[ 0.310000] ... value mask: 0000ffffffffffff
[ 0.320000] ... max period: 00007fffffffffff
[ 0.320000] ... fixed-purpose events: 0
[ 0.330000] ... event mask: 000000000000000f
[ 0.330000] ACPI: Core revision 20100428
[ 0.390000] ftrace: converting mcount calls to 0f 1f 44 00 00
[ 0.400000] ftrace: allocating 30279 entries in 60 pages
[ 0.410000] Enabling APIC mode: Flat. Using 1 I/O APICs
[ 0.420000] enabled ExtINT on CPU#0
[ 0.420000] Mapping cpu 0 to node 0
[ 0.420000] ENABLING IO-APIC IRQs
[ 0.430000] init IO_APIC IRQs
[ 0.430000] IOAPIC[0]: Set routing entry (2-0 -> 0x30 -> IRQ 0 Mode:0 Active:0)
[ 0.440000] IOAPIC[0]: Set routing entry (2-1 -> 0x31 -> IRQ 1 Mode:0 Active:0)
[ 0.440000] IOAPIC[0]: Set routing entry (2-3 -> 0x33 -> IRQ 3 Mode:0 Active:0)
[ 0.450000] IOAPIC[0]: Set routing entry (2-4 -> 0x34 -> IRQ 4 Mode:0 Active:0)
[ 0.460000] IOAPIC[0]: Set routing entry (2-5 -> 0x35 -> IRQ 5 Mode:0 Active:0)
[ 0.470000] IOAPIC[0]: Set routing entry (2-6 -> 0x36 -> IRQ 6 Mode:0 Active:0)
[ 0.470000] IOAPIC[0]: Set routing entry (2-7 -> 0x37 -> IRQ 7 Mode:0 Active:0)
[ 0.480000] IOAPIC[0]: Set routing entry (2-8 -> 0x38 -> IRQ 8 Mode:0 Active:0)
[ 0.490000] IOAPIC[0]: Set routing entry (2-9 -> 0x39 -> IRQ 9 Mode:1 Active:0)
[ 0.500000] IOAPIC[0]: Set routing entry (2-10 -> 0x3a -> IRQ 10 Mode:0 Active:0)
[ 0.500000] IOAPIC[0]: Set routing entry (2-11 -> 0x3b -> IRQ 11 Mode:0 Active:0)
[ 0.510000] IOAPIC[0]: Set routing entry (2-12 -> 0x3c -> IRQ 12 Mode:0 Active:0)
[ 0.520000] IOAPIC[0]: Set routing entry (2-13 -> 0x3d -> IRQ 13 Mode:0 Active:0)
[ 0.530000] IOAPIC[0]: Set routing entry (2-14 -> 0x3e -> IRQ 14 Mode:0 Active:0)
[ 0.530000] IOAPIC[0]: Set routing entry (2-15 -> 0x3f -> IRQ 15 Mode:0 Active:0)
[ 0.540000] 2-16 2-17 2-18 2-19 2-20 2-21 2-22 2-23 (apicid-pin) not connected
[ 0.550000] ..TIMER: vector=0x30 apic1=0 pin1=0 apic2=-1 pin2=-1
[ 0.650000] CPU0: AMD Athlon(tm) 64 X2 Dual Core Processor 3800+ stepping 02
[ 0.660000] Disabling APIC timer
[ 0.670000] calling migration_init+0x0/0x47 @ 1
[ 0.670000] initcall migration_init+0x0/0x47 returned 0 after 0 usecs
[ 0.680000] calling spawn_ksoftirqd+0x0/0x47 @ 1
[ 0.680000] initcall spawn_ksoftirqd+0x0/0x47 returned 0 after 0 usecs
[ 0.690000] calling init_call_single_data+0x0/0x81 @ 1
[ 0.690000] initcall init_call_single_data+0x0/0x81 returned 0 after 0 usecs
[ 0.700000] calling cpu_stop_init+0x0/0x9c @ 1
[ 0.700000] initcall cpu_stop_init+0x0/0x9c returned 0 after 0 usecs
[ 0.710000] calling spawn_softlockup_task+0x0/0x5f @ 1
[ 0.720000] initcall spawn_softlockup_task+0x0/0x5f returned 0 after 0 usecs
[ 0.720000] calling relay_init+0x0/0x11 @ 1
[ 0.730000] initcall relay_init+0x0/0x11 returned 0 after 0 usecs
[ 0.730000] calling tracer_alloc_buffers+0x0/0x190 @ 1
[ 0.740000] Testing tracer nop: PASSED
[ 0.740000] initcall tracer_alloc_buffers+0x0/0x190 returned 0 after 0 usecs
[ 0.750000] calling init_trace_printk+0x0/0xf @ 1
[ 0.750000] initcall init_trace_printk+0x0/0xf returned 0 after 0 usecs
[ 0.760000] calling trace_workqueue_early_init+0x0/0xf0 @ 1
[ 0.770000] initcall trace_workqueue_early_init+0x0/0xf0 returned 0 after 0 usecs
[ 0.770000] lockdep: fixing up alternatives.
[ 0.780000] CPU 1 irqstacks, hard=c2600000 soft=c2601000
[ 0.780000] Booting Node 0, Processors #1 Ok.
[ 0.020000] Initializing CPU#1
[ 0.020000] masked ExtINT on CPU#1
[ 0.020000] Mapping cpu 1 to node 0
[ 1.060000] Brought up 2 CPUs
[ 1.070000] Total of 2 processors activated (4010.80 BogoMIPS).
[ 1.080000] devtmpfs: initialized
[ 1.080000] device: 'platform': device_add
[ 1.080000] bus: 'platform': registered
[ 1.090000] Registering sysdev class 'cpu'
[ 1.090000] calling init_mmap_min_addr+0x0/0x11 @ 1
[ 1.100000] initcall init_mmap_min_addr+0x0/0x11 returned 0 after 0 usecs
[ 1.100000] calling init_cpufreq_transition_notifier_list+0x0/0x18 @ 1
[ 1.110000] initcall init_cpufreq_transition_notifier_list+0x0/0x18 returned 0 after 0 usecs
[ 1.120000] calling net_ns_init+0x0/0xdf @ 1
[ 1.120000] initcall net_ns_init+0x0/0xdf returned 0 after 0 usecs
[ 1.130000] calling cpufreq_tsc+0x0/0x25 @ 1
[ 1.130000] initcall cpufreq_tsc+0x0/0x25 returned 0 after 0 usecs
[ 1.140000] calling pci_reboot_init+0x0/0x11 @ 1
[ 1.140000] initcall pci_reboot_init+0x0/0x11 returned 0 after 0 usecs
[ 1.150000] calling reboot_init+0x0/0x11 @ 1
[ 1.160000] initcall reboot_init+0x0/0x11 returned 0 after 0 usecs
[ 1.160000] calling init_lapic_sysfs+0x0/0x28 @ 1
[ 1.170000] Registering sysdev class 'lapic'
[ 1.170000] Registering sys device of class 'lapic'
[ 1.180000] Registering sys device 'lapic0'
[ 1.180000] initcall init_lapic_sysfs+0x0/0x28 returned 0 after 9765 usecs
[ 1.190000] calling init_smp_flush+0x0/0x2f @ 1
[ 1.190000] initcall init_smp_flush+0x0/0x2f returned 0 after 0 usecs
[ 1.200000] calling sysctl_init+0x0/0x29 @ 1
[ 1.200000] initcall sysctl_init+0x0/0x29 returned 0 after 0 usecs
[ 1.210000] calling ksysfs_init+0x0/0x74 @ 1
[ 1.210000] initcall ksysfs_init+0x0/0x74 returned 0 after 0 usecs
[ 1.220000] calling async_init+0x0/0x50 @ 1
[ 1.220000] initcall async_init+0x0/0x50 returned 0 after 0 usecs
[ 1.230000] calling init_jiffies_clocksource+0x0/0xf @ 1
[ 1.230000] initcall init_jiffies_clocksource+0x0/0xf returned 0 after 0 usecs
[ 1.240000] calling pm_init+0x0/0x2d @ 1
[ 1.250000] initcall pm_init+0x0/0x2d returned 0 after 0 usecs
[ 1.250000] calling init_ftrace_syscalls+0x0/0x88 @ 1
[ 1.260000] initcall init_ftrace_syscalls+0x0/0x88 returned 0 after 0 usecs
[ 1.270000] calling init_hw_breakpoint+0x0/0xa5 @ 1
[ 1.270000] initcall init_hw_breakpoint+0x0/0xa5 returned 0 after 0 usecs
[ 1.280000] calling init_zero_pfn+0x0/0x57 @ 1
[ 1.280000] initcall init_zero_pfn+0x0/0x57 returned 0 after 0 usecs
[ 1.290000] calling filelock_init+0x0/0x27 @ 1
[ 1.290000] initcall filelock_init+0x0/0x27 returned 0 after 0 usecs
[ 1.300000] calling init_script_binfmt+0x0/0x11 @ 1
[ 1.300000] initcall init_script_binfmt+0x0/0x11 returned 0 after 0 usecs
[ 1.310000] calling init_elf_binfmt+0x0/0x11 @ 1
[ 1.320000] initcall init_elf_binfmt+0x0/0x11 returned 0 after 0 usecs
[ 1.320000] calling debugfs_init+0x0/0x4a @ 1
[ 1.330000] initcall debugfs_init+0x0/0x4a returned 0 after 0 usecs
[ 1.330000] calling securityfs_init+0x0/0x41 @ 1
[ 1.340000] initcall securityfs_init+0x0/0x41 returned 0 after 0 usecs
[ 1.340000] calling random32_init+0x0/0xa2 @ 1
[ 1.350000] initcall random32_init+0x0/0xa2 returned 0 after 0 usecs
[ 1.350000] calling sfi_sysfs_init+0x0/0xba @ 1
[ 1.360000] initcall sfi_sysfs_init+0x0/0xba returned 0 after 0 usecs
[ 1.370000] calling virtio_init+0x0/0x24 @ 1
[ 1.370000] bus: 'virtio': registered
[ 1.370000] initcall virtio_init+0x0/0x24 returned 0 after 0 usecs
[ 1.380000] calling regulator_init+0x0/0x23 @ 1
[ 1.380000] regulator: core version 0.5
[ 1.390000] device class 'regulator': registering
[ 1.390000] initcall regulator_init+0x0/0x23 returned 0 after 9765 usecs
[ 1.400000] calling cpufreq_core_init+0x0/0x75 @ 1
[ 1.400000] initcall cpufreq_core_init+0x0/0x75 returned 0 after 0 usecs
[ 1.410000] calling cpuidle_init+0x0/0x32 @ 1
[ 1.420000] initcall cpuidle_init+0x0/0x32 returned 0 after 0 usecs
[ 1.420000] calling sock_init+0x0/0x51 @ 1
[ 1.430000] initcall sock_init+0x0/0x51 returned 0 after 0 usecs
[ 1.430000] calling net_inuse_init+0x0/0x1f @ 1
[ 1.440000] initcall net_inuse_init+0x0/0x1f returned 0 after 0 usecs
[ 1.440000] calling netpoll_init+0x0/0x11 @ 1
[ 1.450000] initcall netpoll_init+0x0/0x11 returned 0 after 0 usecs
[ 1.450000] calling netlink_proto_init+0x0/0x10d @ 1
[ 1.460000] NET: Registered protocol family 16
[ 1.460000] initcall netlink_proto_init+0x0/0x10d returned 0 after 0 usecs
[ 1.470000] calling olpc_init+0x0/0x14d @ 1
[ 1.480000] initcall olpc_init+0x0/0x14d returned 0 after 0 usecs
[ 1.480000] calling bdi_class_init+0x0/0x40 @ 1
[ 1.490000] device class 'bdi': registering
[ 1.490000] initcall bdi_class_init+0x0/0x40 returned 0 after 0 usecs
[ 1.500000] calling kobject_uevent_init+0x0/0x1e @ 1
[ 1.500000] initcall kobject_uevent_init+0x0/0x1e returned 0 after 0 usecs
[ 1.510000] calling gpiolib_sysfs_init+0x0/0x70 @ 1
[ 1.510000] device class 'gpio': registering
[ 1.520000] initcall gpiolib_sysfs_init+0x0/0x70 returned 0 after 9765 usecs
[ 1.530000] calling pcibus_class_init+0x0/0x14 @ 1
[ 1.530000] device class 'pci_bus': registering
[ 1.530000] initcall pcibus_class_init+0x0/0x14 returned 0 after 0 usecs
[ 1.540000] calling pci_driver_init+0x0/0xf @ 1
[ 1.550000] bus: 'pci': registered
[ 1.550000] initcall pci_driver_init+0x0/0xf returned 0 after 0 usecs
[ 1.560000] calling backlight_class_init+0x0/0x4d @ 1
[ 1.560000] device class 'backlight': registering
[ 1.570000] initcall backlight_class_init+0x0/0x4d returned 0 after 9765 usecs
[ 1.570000] calling tty_class_init+0x0/0x2f @ 1
[ 1.580000] device class 'tty': registering
[ 1.580000] initcall tty_class_init+0x0/0x2f returned 0 after 0 usecs
[ 1.590000] calling vtconsole_class_init+0x0/0xa1 @ 1
[ 1.590000] device class 'vtconsole': registering
[ 1.600000] device: 'vtcon0': device_add
[ 1.600000] initcall vtconsole_class_init+0x0/0xa1 returned 0 after 9765 usecs
[ 1.610000] calling register_node_type+0x0/0xf @ 1
[ 1.610000] Registering sysdev class 'node'
[ 1.620000] initcall register_node_type+0x0/0xf returned 0 after 9765 usecs
[ 1.630000] calling i2c_init+0x0/0x35 @ 1
[ 1.630000] bus: 'i2c': registered
[ 1.630000] bus: 'i2c': add driver dummy
[ 1.640000] i2c-core: driver [dummy] registered
[ 1.640000] initcall i2c_init+0x0/0x35 returned 0 after 9765 usecs
[ 1.650000] calling eisa_init+0x0/0x26 @ 1
[ 1.650000] bus: 'eisa': registered
[ 1.660000] EISA bus registered
[ 1.660000] initcall eisa_init+0x0/0x26 returned 0 after 9765 usecs
[ 1.670000] calling lguest_devices_init+0x0/0xb7 @ 1
[ 1.670000] initcall lguest_devices_init+0x0/0xb7 returned 0 after 0 usecs
[ 1.680000] calling amd_postcore_init+0x0/0x6b @ 1
[ 1.680000] node 0 link 0: io port [1000, fffff]
[ 1.690000] TOM: 0000000040000000 aka 1024M
[ 1.690000] node 0 link 0: mmio [e0000000, efffffff]
[ 1.700000] node 0 link 0: mmio [feb00000, fec0ffff]
[ 1.700000] node 0 link 0: mmio [a0000, bffff]
[ 1.710000] node 0 link 0: mmio [40000000, fed3ffff]
[ 1.710000] bus: [00, ff] on node 0 link 0
[ 1.710000] bus: 00 index 0 [io 0x0000-0xffff]
[ 1.720000] bus: 00 index 1 [mem 0x40000000-0xfcffffffff]
[ 1.720000] bus: 00 index 2 [mem 0xfeb00000-0xfec0ffff]
[ 1.730000] bus: 00 index 3 [mem 0x000a0000-0x000bffff]
[ 1.730000] initcall amd_postcore_init+0x0/0x6b returned 0 after 48828 usecs
[ 1.740000] calling arch_kdebugfs_init+0x0/0x26 @ 1
[ 1.750000] initcall arch_kdebugfs_init+0x0/0x26 returned 0 after 0 usecs
[ 1.750000] calling init_pit_clocksource+0x0/0x9c @ 1
[ 1.760000] initcall init_pit_clocksource+0x0/0x9c returned 0 after 0 usecs
[ 1.770000] calling mtrr_if_init+0x0/0x44 @ 1
[ 1.770000] initcall mtrr_if_init+0x0/0x44 returned 0 after 0 usecs
[ 1.780000] calling ffh_cstate_init+0x0/0x27 @ 1
[ 1.780000] initcall ffh_cstate_init+0x0/0x27 returned -1 after 0 usecs
[ 1.790000] initcall ffh_cstate_init+0x0/0x27 returned with error code -1
[ 1.790000] calling kdump_buf_page_init+0x0/0x72 @ 1
[ 1.800000] initcall kdump_buf_page_init+0x0/0x72 returned 0 after 0 usecs
[ 1.810000] calling acpi_pci_init+0x0/0x4c @ 1
[ 1.810000] ACPI: bus type pci registered
[ 1.810000] initcall acpi_pci_init+0x0/0x4c returned 0 after 0 usecs
[ 1.820000] calling init_cyclone_clocksource+0x0/0x176 @ 1
[ 1.830000] initcall init_cyclone_clocksource+0x0/0x176 returned -19 after 0 usecs
[ 1.830000] calling dma_bus_init+0x0/0x32 @ 1
[ 1.840000] device class 'dma': registering
[ 1.840000] initcall dma_bus_init+0x0/0x32 returned 0 after 0 usecs
[ 1.850000] calling dma_channel_table_init+0x0/0x95 @ 1
[ 1.850000] initcall dma_channel_table_init+0x0/0x95 returned 0 after 0 usecs
[ 1.860000] calling dca_init+0x0/0x19 @ 1
[ 1.870000] dca service started, version 1.12.1
[ 1.870000] device class 'dca': registering
[ 1.870000] initcall dca_init+0x0/0x19 returned 0 after 0 usecs
[ 1.880000] calling pci_arch_init+0x0/0x50 @ 1
[ 1.890000] PCI: MMCONFIG for domain 0000 [bus 00-ff] at [mem 0xe0000000-0xefffffff] (base 0xe0000000)
[ 1.890000] PCI: not using MMCONFIG
[ 1.900000] PCI: PCI BIOS revision 3.00 entry at 0xf21d0, last bus=5
[ 1.910000] initcall pci_arch_init+0x0/0x50 returned 0 after 19531 usecs
[ 1.920000] calling topology_init+0x0/0x78 @ 1
[ 1.920000] Registering sys device of class 'node'
[ 1.920000] Registering sys device 'node0'
[ 1.930000] Registering sys device of class 'cpu'
[ 1.930000] Registering sys device 'cpu0'
[ 1.940000] Registering sys device of class 'cpu'
[ 1.940000] Registering sys device 'cpu1'
[ 1.950000] initcall topology_init+0x0/0x78 returned 0 after 29296 usecs
[ 1.950000] calling mtrr_init_finialize+0x0/0x35 @ 1
[ 1.960000] initcall mtrr_init_finialize+0x0/0x35 returned 0 after 0 usecs
[ 1.970000] calling mca_init+0x0/0x2ae @ 1
[ 1.970000] bus: 'MCA': registered
[ 1.970000] initcall mca_init+0x0/0x2ae returned -19 after 0 usecs
[ 1.980000] calling param_sysfs_init+0x0/0xb1 @ 1
[ 2.000000] initcall param_sysfs_init+0x0/0xb1 returned 0 after 19531 usecs
[ 2.010000] calling pm_sysrq_init+0x0/0x1b @ 1
[ 2.010000] initcall pm_sysrq_init+0x0/0x1b returned 0 after 0 usecs
[ 2.020000] calling init_slow_work+0x0/0x60 @ 1
[ 2.020000] initcall init_slow_work+0x0/0x60 returned 0 after 0 usecs
[ 2.030000] calling default_bdi_init+0x0/0xa4 @ 1
[ 2.030000] device: 'default': device_add
[ 2.040000] initcall default_bdi_init+0x0/0xa4 returned 0 after 9765 usecs
[ 2.040000] calling init_bio+0x0/0xad @ 1
[ 2.050000] bio: create slab <bio-0> at 0
[ 2.050000] initcall init_bio+0x0/0xad returned 0 after 0 usecs
[ 2.060000] calling fsnotify_init+0x0/0x19 @ 1
[ 2.060000] initcall fsnotify_init+0x0/0x19 returned 0 after 0 usecs
[ 2.070000] calling fsnotify_notification_init+0x0/0x5b @ 1
[ 2.070000] initcall fsnotify_notification_init+0x0/0x5b returned 0 after 0 usecs
[ 2.080000] calling cryptomgr_init+0x0/0xf @ 1
[ 2.090000] initcall cryptomgr_init+0x0/0xf returned 0 after 0 usecs
[ 2.090000] calling blk_settings_init+0x0/0x1d @ 1
[ 2.100000] initcall blk_settings_init+0x0/0x1d returned 0 after 0 usecs
[ 2.100000] calling blk_ioc_init+0x0/0x24 @ 1
[ 2.110000] initcall blk_ioc_init+0x0/0x24 returned 0 after 0 usecs
[ 2.110000] calling blk_softirq_init+0x0/0x54 @ 1
[ 2.120000] initcall blk_softirq_init+0x0/0x54 returned 0 after 0 usecs
[ 2.130000] calling blk_iopoll_setup+0x0/0x54 @ 1
[ 2.130000] initcall blk_iopoll_setup+0x0/0x54 returned 0 after 0 usecs
[ 2.140000] calling genhd_device_init+0x0/0x50 @ 1
[ 2.140000] device class 'block': registering
[ 2.150000] initcall genhd_device_init+0x0/0x50 returned 0 after 9765 usecs
[ 2.150000] calling blk_dev_integrity_init+0x0/0x24 @ 1
[ 2.160000] initcall blk_dev_integrity_init+0x0/0x24 returned 0 after 0 usecs
[ 2.170000] calling gpiolib_debugfs_init+0x0/0x1f @ 1
[ 2.170000] initcall gpiolib_debugfs_init+0x0/0x1f returned 0 after 0 usecs
[ 2.180000] calling max732x_init+0x0/0x11 @ 1
[ 2.180000] bus: 'i2c': add driver max732x
[ 2.190000] i2c-core: driver [max732x] registered
[ 2.190000] initcall max732x_init+0x0/0x11 returned 0 after 9765 usecs
[ 2.200000] calling pca953x_init+0x0/0x11 @ 1
[ 2.200000] bus: 'i2c': add driver pca953x
[ 2.210000] i2c-core: driver [pca953x] registered
[ 2.210000] initcall pca953x_init+0x0/0x11 returned 0 after 9765 usecs
[ 2.220000] calling pci_slot_init+0x0/0x40 @ 1
[ 2.220000] initcall pci_slot_init+0x0/0x40 returned 0 after 0 usecs
[ 2.230000] calling fbmem_init+0x0/0x80 @ 1
[ 2.230000] device class 'graphics': registering
[ 2.240000] initcall fbmem_init+0x0/0x80 returned 0 after 9765 usecs
[ 2.240000] calling acpi_init+0x0/0x118 @ 1
[ 2.260000] ACPI: EC: Look up EC in DSDT
[ 2.330000] ACPI: Interpreter enabled
[ 2.340000] ACPI: (supports S0 S5)
[ 2.340000] ACPI: Using IOAPIC for interrupt routing
[ 2.350000] PCI: MMCONFIG for domain 0000 [bus 00-ff] at [mem 0xe0000000-0xefffffff] (base 0xe0000000)
[ 2.360000] PCI: MMCONFIG at [mem 0xe0000000-0xefffffff] reserved in ACPI motherboard resources
[ 2.370000] PCI: Using MMCONFIG for extended config space
[ 2.380000] bus: 'acpi': registered
[ 2.380000] device: 'LNXSYSTM:00': device_add
[ 2.390000] bus: 'acpi': add device LNXSYSTM:00
[ 2.390000] device: 'LNXCPU:00': device_add
[ 2.390000] bus: 'acpi': add device LNXCPU:00
[ 2.400000] device: 'LNXCPU:01': device_add
[ 2.400000] bus: 'acpi': add device LNXCPU:01
[ 2.410000] device: 'LNXSYBUS:00': device_add
[ 2.410000] bus: 'acpi': add device LNXSYBUS:00
[ 2.420000] device: 'PNP0C0C:00': device_add
[ 2.420000] bus: 'acpi': add device PNP0C0C:00
[ 2.430000] device: 'PNP0A08:00': device_add
[ 2.430000] bus: 'acpi': add device PNP0A08:00
[ 2.440000] device: 'PNP0C02:00': device_add
[ 2.440000] bus: 'acpi': add device PNP0C02:00
[ 2.450000] device: 'device:00': device_add
[ 2.450000] bus: 'acpi': add device device:00
[ 2.450000] device: 'device:01': device_add
[ 2.460000] bus: 'acpi': add device device:01
[ 2.460000] device: 'device:02': device_add
[ 2.470000] bus: 'acpi': add device device:02
[ 2.470000] device: 'device:03': device_add
[ 2.480000] bus: 'acpi': add device device:03
[ 2.480000] device: 'device:04': device_add
[ 2.490000] bus: 'acpi': add device device:04
[ 2.490000] device: 'device:05': device_add
[ 2.490000] bus: 'acpi': add device device:05
[ 2.500000] device: 'device:06': device_add
[ 2.500000] bus: 'acpi': add device device:06
[ 2.510000] device: 'device:07': device_add
[ 2.510000] bus: 'acpi': add device device:07
[ 2.520000] device: 'device:08': device_add
[ 2.520000] bus: 'acpi': add device device:08
[ 2.530000] device: 'device:09': device_add
[ 2.530000] bus: 'acpi': add device device:09
[ 2.540000] device: 'device:0a': device_add
[ 2.540000] bus: 'acpi': add device device:0a
[ 2.540000] device: 'device:0b': device_add
[ 2.550000] bus: 'acpi': add device device:0b
[ 2.550000] device: 'device:0c': device_add
[ 2.560000] bus: 'acpi': add device device:0c
[ 2.560000] device: 'device:0d': device_add
[ 2.570000] bus: 'acpi': add device device:0d
[ 2.570000] device: 'device:0e': device_add
[ 2.570000] bus: 'acpi': add device device:0e
[ 2.580000] device: 'device:0f': device_add
[ 2.580000] bus: 'acpi': add device device:0f
[ 2.590000] device: 'device:10': device_add
[ 2.590000] bus: 'acpi': add device device:10
[ 2.600000] device: 'device:11': device_add
[ 2.600000] bus: 'acpi': add device device:11
[ 2.610000] device: 'device:12': device_add
[ 2.610000] bus: 'acpi': add device device:12
[ 2.620000] device: 'device:13': device_add
[ 2.620000] bus: 'acpi': add device device:13
[ 2.620000] device: 'device:14': device_add
[ 2.630000] bus: 'acpi': add device device:14
[ 2.630000] device: 'device:15': device_add
[ 2.640000] bus: 'acpi': add device device:15
[ 2.640000] device: 'device:16': device_add
[ 2.650000] bus: 'acpi': add device device:16
[ 2.650000] device: 'device:17': device_add
[ 2.660000] bus: 'acpi': add device device:17
[ 2.660000] device: 'device:18': device_add
[ 2.660000] bus: 'acpi': add device device:18
[ 2.670000] device: 'device:19': device_add
[ 2.680000] bus: 'acpi': add device device:19
[ 2.680000] device: 'device:1a': device_add
[ 2.690000] bus: 'acpi': add device device:1a
[ 2.690000] device: 'device:1b': device_add
[ 2.700000] bus: 'acpi': add device device:1b
[ 2.700000] device: 'device:1c': device_add
[ 2.710000] bus: 'acpi': add device device:1c
[ 2.710000] device: 'ATK0110:00': device_add
[ 2.720000] bus: 'acpi': add device ATK0110:00
[ 2.720000] device: 'PNP0C0F:00': device_add
[ 2.730000] bus: 'acpi': add device PNP0C0F:00
[ 2.730000] device: 'PNP0C0F:01': device_add
[ 2.740000] bus: 'acpi': add device PNP0C0F:01
[ 2.740000] device: 'PNP0C0F:02': device_add
[ 2.740000] bus: 'acpi': add device PNP0C0F:02
[ 2.750000] device: 'PNP0C0F:03': device_add
[ 2.750000] bus: 'acpi': add device PNP0C0F:03
[ 2.760000] device: 'PNP0C0F:04': device_add
[ 2.760000] bus: 'acpi': add device PNP0C0F:04
[ 2.770000] device: 'PNP0C0F:05': device_add
[ 2.770000] bus: 'acpi': add device PNP0C0F:05
[ 2.780000] device: 'PNP0C0F:06': device_add
[ 2.780000] bus: 'acpi': add device PNP0C0F:06
[ 2.790000] device: 'PNP0C0F:07': device_add
[ 2.790000] bus: 'acpi': add device PNP0C0F:07
[ 2.800000] device: 'PNP0C0F:08': device_add
[ 2.800000] bus: 'acpi': add device PNP0C0F:08
[ 2.810000] device: 'PNP0C0F:09': device_add
[ 2.810000] bus: 'acpi': add device PNP0C0F:09
[ 2.820000] device: 'PNP0C0F:0a': device_add
[ 2.820000] bus: 'acpi': add device PNP0C0F:0a
[ 2.830000] device: 'PNP0C0F:0b': device_add
[ 2.830000] bus: 'acpi': add device PNP0C0F:0b
[ 2.830000] device: 'PNP0C0F:0c': device_add
[ 2.840000] bus: 'acpi': add device PNP0C0F:0c
[ 2.840000] device: 'PNP0C0F:0d': device_add
[ 2.850000] bus: 'acpi': add device PNP0C0F:0d
[ 2.850000] device: 'PNP0C0F:0e': device_add
[ 2.860000] bus: 'acpi': add device PNP0C0F:0e
[ 2.860000] device: 'PNP0C0F:0f': device_add
[ 2.870000] bus: 'acpi': add device PNP0C0F:0f
[ 2.870000] device: 'PNP0C0F:10': device_add
[ 2.880000] bus: 'acpi': add device PNP0C0F:10
[ 2.880000] device: 'PNP0C0F:11': device_add
[ 2.890000] bus: 'acpi': add device PNP0C0F:11
[ 2.890000] device: 'PNP0C0F:12': device_add
[ 2.900000] bus: 'acpi': add device PNP0C0F:12
[ 2.900000] device: 'PNP0C0F:13': device_add
[ 2.910000] bus: 'acpi': add device PNP0C0F:13
[ 2.910000] device: 'PNP0C0F:14': device_add
[ 2.920000] bus: 'acpi': add device PNP0C0F:14
[ 2.920000] device: 'PNP0C0F:15': device_add
[ 2.930000] bus: 'acpi': add device PNP0C0F:15
[ 2.930000] device: 'PNP0C0F:16': device_add
[ 2.930000] bus: 'acpi': add device PNP0C0F:16
[ 2.940000] device: 'PNP0C0F:17': device_add
[ 2.940000] bus: 'acpi': add device PNP0C0F:17
[ 2.950000] device: 'PNP0C0F:18': device_add
[ 2.950000] bus: 'acpi': add device PNP0C0F:18
[ 2.960000] device: 'PNP0C0F:19': device_add
[ 2.960000] bus: 'acpi': add device PNP0C0F:19
[ 2.970000] device: 'PNP0C0F:1a': device_add
[ 2.970000] bus: 'acpi': add device PNP0C0F:1a
[ 2.980000] device: 'PNP0C0F:1b': device_add
[ 2.980000] bus: 'acpi': add device PNP0C0F:1b
[ 2.990000] device: 'PNP0C0F:1c': device_add
[ 2.990000] bus: 'acpi': add device PNP0C0F:1c
[ 3.000000] device: 'PNP0C0F:1d': device_add
[ 3.000000] bus: 'acpi': add device PNP0C0F:1d
[ 3.010000] device: 'PNP0C0F:1e': device_add
[ 3.010000] bus: 'acpi': add device PNP0C0F:1e
[ 3.020000] device: 'PNP0C0F:1f': device_add
[ 3.020000] bus: 'acpi': add device PNP0C0F:1f
[ 3.030000] device: 'PNP0C02:01': device_add
[ 3.030000] bus: 'acpi': add device PNP0C02:01
[ 3.030000] device: 'PNP0000:00': device_add
[ 3.040000] bus: 'acpi': add device PNP0000:00
[ 3.040000] device: 'PNP0200:00': device_add
[ 3.050000] bus: 'acpi': add device PNP0200:00
[ 3.050000] device: 'PNP0100:00': device_add
[ 3.060000] bus: 'acpi': add device PNP0100:00
[ 3.060000] device: 'PNP0B00:00': device_add
[ 3.070000] bus: 'acpi': add device PNP0B00:00
[ 3.070000] device: 'PNP0800:00': device_add
[ 3.070000] bus: 'acpi': add device PNP0800:00
[ 3.080000] device: 'PNP0C04:00': device_add
[ 3.080000] bus: 'acpi': add device PNP0C04:00
[ 3.090000] device: 'PNP0700:00': device_add
[ 3.090000] bus: 'acpi': add device PNP0700:00
[ 3.100000] device: 'PNP0501:00': device_add
[ 3.110000] bus: 'acpi': add device PNP0501:00
[ 3.110000] device: 'PNP0401:00': device_add
[ 3.120000] bus: 'acpi': add device PNP0401:00
[ 3.120000] device: 'PNP0F13:00': device_add
[ 3.130000] bus: 'acpi': add device PNP0F13:00
[ 3.130000] device: 'PNP0303:00': device_add
[ 3.140000] bus: 'acpi': add device PNP0303:00
[ 3.140000] device: 'PNPB006:00': device_add
[ 3.150000] bus: 'acpi': add device PNPB006:00
[ 3.150000] device: 'PNPB02F:00': device_add
[ 3.160000] bus: 'acpi': add device PNPB02F:00
[ 3.160000] device: 'PNP0C02:02': device_add
[ 3.170000] bus: 'acpi': add device PNP0C02:02
[ 3.170000] device: 'PNP0C01:00': device_add
[ 3.180000] bus: 'acpi': add device PNP0C01:00
[ 3.180000] device: 'LNXTHERM:00': device_add
[ 3.190000] bus: 'acpi': add device LNXTHERM:00
[ 3.190000] device: 'PNP0C0B:00': device_add
[ 3.190000] bus: 'acpi': add device PNP0C0B:00
[ 3.200000] device: 'LNXTHERM:01': device_add
[ 3.200000] bus: 'acpi': add device LNXTHERM:01
[ 3.210000] device: 'LNXPWRBN:00': device_add
[ 3.210000] bus: 'acpi': add device LNXPWRBN:00
[ 3.220000] bus: 'acpi': add driver ec
[ 3.220000] bus: 'acpi': add driver power
[ 3.230000] initcall acpi_init+0x0/0x118 returned 0 after 957031 usecs
[ 3.230000] calling dock_init+0x0/0x81 @ 1
[ 3.240000] ACPI: No dock devices found.
[ 3.240000] initcall dock_init+0x0/0x81 returned 0 after 0 usecs
[ 3.250000] calling acpi_pci_root_init+0x0/0x2a @ 1
[ 3.250000] PCI: Ignoring host bridge windows from ACPI; if necessary, use "pci=use_crs" and report a bug
[ 3.260000] bus: 'acpi': add driver pci_root
[ 3.270000] bus: 'acpi': driver_probe_device: matched device PNP0A08:00 with driver pci_root
[ 3.280000] bus: 'acpi': really_probe: probing driver pci_root with device PNP0A08:00
[ 3.280000] ACPI: PCI Root Bridge [PCI0] (0000:00)
[ 3.290000] device: 'pci0000:00': device_add
[ 3.290000] device: '0000:00': device_add
[ 3.300000] pci_root PNP0A08:00: host bridge window [io 0x0000-0x0cf7] (ignored)
[ 3.310000] pci_root PNP0A08:00: host bridge window [io 0x0d00-0xffff] (ignored)
[ 3.310000] pci_root PNP0A08:00: host bridge window [mem 0x000a0000-0x000bffff] (ignored)
[ 3.320000] pci_root PNP0A08:00: host bridge window [mem 0x000c0000-0x000dffff] (ignored)
[ 3.330000] pci_root PNP0A08:00: host bridge window [mem 0x40000000-0xfebfffff] (ignored)
[ 3.340000] HPET not enabled in BIOS. You might try hpet=force boot option
[ 3.350000] pci 0000:00:01.1: reg 10: [io 0xdc00-0xdc1f]
[ 3.350000] pci 0000:00:01.1: reg 20: [io 0x4c00-0x4c3f]
[ 3.360000] pci 0000:00:01.1: reg 24: [io 0x4c40-0x4c7f]
[ 3.360000] pci 0000:00:01.1: PME# supported from D3hot D3cold
[ 3.370000] pci 0000:00:01.1: PME# disabled
[ 3.370000] pci 0000:00:02.0: reg 10: [mem 0xda102000-0xda102fff]
[ 3.380000] pci 0000:00:02.0: supports D1 D2
[ 3.380000] pci 0000:00:02.0: PME# supported from D0 D1 D2 D3hot D3cold
[ 3.390000] pci 0000:00:02.0: PME# disabled
[ 3.390000] pci 0000:00:02.1: reg 10: [mem 0xfeb00000-0xfeb000ff]
[ 3.400000] pci 0000:00:02.1: supports D1 D2
[ 3.400000] pci 0000:00:02.1: PME# supported from D0 D1 D2 D3hot D3cold
[ 3.410000] pci 0000:00:02.1: PME# disabled
[ 3.420000] pci 0000:00:04.0: reg 10: [io 0xd400-0xd4ff]
[ 3.420000] pci 0000:00:04.0: reg 14: [io 0xd800-0xd8ff]
[ 3.430000] pci 0000:00:04.0: reg 18: [mem 0xda101000-0xda101fff]
[ 3.430000] pci 0000:00:04.0: supports D1 D2
[ 3.440000] pci 0000:00:06.0: reg 20: [io 0xf000-0xf00f]
[ 3.440000] pci 0000:00:0a.0: reg 10: [mem 0xda100000-0xda100fff]
[ 3.450000] pci 0000:00:0a.0: reg 14: [io 0xd000-0xd007]
[ 3.450000] pci 0000:00:0a.0: supports D1 D2
[ 3.460000] pci 0000:00:0a.0: PME# supported from D0 D1 D2 D3hot D3cold
[ 3.470000] pci 0000:00:0a.0: PME# disabled
[ 3.470000] pci 0000:00:0b.0: PME# supported from D0 D1 D2 D3hot D3cold
[ 3.480000] pci 0000:00:0b.0: PME# disabled
[ 3.480000] pci 0000:00:0c.0: PME# supported from D0 D1 D2 D3hot D3cold
[ 3.490000] pci 0000:00:0c.0: PME# disabled
[ 3.490000] pci 0000:00:0d.0: PME# supported from D0 D1 D2 D3hot D3cold
[ 3.500000] pci 0000:00:0d.0: PME# disabled
[ 3.500000] pci 0000:00:0e.0: PME# supported from D0 D1 D2 D3hot D3cold
[ 3.510000] pci 0000:00:0e.0: PME# disabled
[ 3.520000] PCI: peer root bus 00 res updated from pci conf
[ 3.520000] pci 0000:05:07.0: reg 10: [io 0xc000-0xc0ff]
[ 3.530000] pci 0000:05:07.0: reg 14: [mem 0xda000000-0xda0000ff]
[ 3.530000] pci 0000:05:07.0: supports D1 D2
[ 3.540000] pci 0000:05:07.0: PME# supported from D1 D2 D3hot
[ 3.540000] pci 0000:05:07.0: PME# disabled
[ 3.550000] pci 0000:00:09.0: PCI bridge to [bus 05-05] (subtractive decode)
[ 3.550000] pci 0000:00:09.0: bridge window [io 0xc000-0xcfff]
[ 3.560000] pci 0000:00:09.0: bridge window [mem 0xda000000-0xda0fffff]
[ 3.570000] pci 0000:00:09.0: bridge window [mem 0xfff00000-0x000fffff pref] (disabled)
[ 3.580000] pci 0000:00:09.0: bridge window [io 0x0000-0xffff] (subtractive decode)
[ 3.580000] pci 0000:00:09.0: bridge window [mem 0x40000000-0xfcffffffff] (subtractive decode)
[ 3.590000] pci 0000:00:09.0: bridge window [mem 0xfeb00000-0xfec0ffff] (subtractive decode)
[ 3.600000] pci 0000:00:09.0: bridge window [mem 0x000a0000-0x000bffff] (subtractive decode)
[ 3.610000] pci 0000:00:0b.0: PCI bridge to [bus 04-04]
[ 3.620000] pci 0000:00:0b.0: bridge window [io 0xf000-0x0000] (disabled)
[ 3.620000] pci 0000:00:0b.0: bridge window [mem 0xfff00000-0x000fffff] (disabled)
[ 3.630000] pci 0000:00:0b.0: bridge window [mem 0xfff00000-0x000fffff pref] (disabled)
[ 3.640000] pci 0000:00:0c.0: PCI bridge to [bus 03-03]
[ 3.640000] pci 0000:00:0c.0: bridge window [io 0xf000-0x0000] (disabled)
[ 3.650000] pci 0000:00:0c.0: bridge window [mem 0xfff00000-0x000fffff] (disabled)
[ 3.660000] pci 0000:00:0c.0: bridge window [mem 0xfff00000-0x000fffff pref] (disabled)
[ 3.670000] pci 0000:00:0d.0: PCI bridge to [bus 02-02]
[ 3.670000] pci 0000:00:0d.0: bridge window [io 0xf000-0x0000] (disabled)
[ 3.680000] pci 0000:00:0d.0: bridge window [mem 0xfff00000-0x000fffff] (disabled)
[ 3.690000] pci 0000:00:0d.0: bridge window [mem 0xfff00000-0x000fffff pref] (disabled)
[ 3.700000] pci 0000:01:00.0: reg 10: [mem 0xd0000000-0xd7ffffff pref]
[ 3.700000] pci 0000:01:00.0: reg 14: [io 0xb000-0xb0ff]
[ 3.710000] pci 0000:01:00.0: reg 18: [mem 0xd9000000-0xd900ffff]
[ 3.710000] pci 0000:01:00.0: reg 30: [mem 0x00000000-0x0001ffff pref]
[ 3.720000] pci 0000:01:00.0: supports D1 D2
[ 3.720000] pci 0000:01:00.1: reg 10: [mem 0xd9010000-0xd901ffff]
[ 3.730000] pci 0000:01:00.1: supports D1 D2
[ 3.740000] pci 0000:00:0e.0: PCI bridge to [bus 01-01]
[ 3.740000] pci 0000:00:0e.0: bridge window [io 0xb000-0xbfff]
[ 3.750000] pci 0000:00:0e.0: bridge window [mem 0xd8000000-0xd9ffffff]
[ 3.750000] pci 0000:00:0e.0: bridge window [mem 0xd0000000-0xd7ffffff 64bit pref]
[ 3.760000] ACPI: PCI Interrupt Routing Table [\_SB_.PCI0._PRT]
[ 3.770000] ACPI: PCI Interrupt Routing Table [\_SB_.PCI0.HUB0._PRT]
[ 3.780000] device: '0000:00:00.0': device_add
[ 3.810000] bus: 'pci': add device 0000:00:00.0
[ 3.810000] device: '0000:00:01.0': device_add
[ 3.840000] bus: 'pci': add device 0000:00:01.0
[ 3.840000] device: '0000:00:01.1': device_add
[ 3.870000] bus: 'pci': add device 0000:00:01.1
[ 3.880000] device: '0000:00:02.0': device_add
[ 3.900000] bus: 'pci': add device 0000:00:02.0
[ 3.910000] device: '0000:00:02.1': device_add
[ 3.940000] bus: 'pci': add device 0000:00:02.1
[ 3.940000] device: '0000:00:04.0': device_add
[ 3.970000] bus: 'pci': add device 0000:00:04.0
[ 3.970000] device: '0000:00:06.0': device_add
[ 4.000000] bus: 'pci': add device 0000:00:06.0
[ 4.010000] device: '0000:00:09.0': device_add
[ 4.040000] bus: 'pci': add device 0000:00:09.0
[ 4.040000] device: '0000:00:0a.0': device_add
[ 4.070000] bus: 'pci': add device 0000:00:0a.0
[ 4.080000] device: '0000:00:0b.0': device_add
[ 4.110000] bus: 'pci': add device 0000:00:0b.0
[ 4.110000] device: '0000:00:0c.0': device_add
[ 4.140000] bus: 'pci': add device 0000:00:0c.0
[ 4.150000] device: '0000:00:0d.0': device_add
[ 4.180000] bus: 'pci': add device 0000:00:0d.0
[ 4.180000] device: '0000:00:0e.0': device_add
[ 4.210000] bus: 'pci': add device 0000:00:0e.0
[ 4.220000] device: '0000:00:18.0': device_add
[ 4.250000] bus: 'pci': add device 0000:00:18.0
[ 4.250000] device: '0000:00:18.1': device_add
[ 4.280000] bus: 'pci': add device 0000:00:18.1
[ 4.290000] device: '0000:00:18.2': device_add
[ 4.320000] bus: 'pci': add device 0000:00:18.2
[ 4.320000] device: '0000:00:18.3': device_add
[ 4.360000] bus: 'pci': add device 0000:00:18.3
[ 4.360000] device: '0000:05:07.0': device_add
[ 4.360000] bus: 'pci': add device 0000:05:07.0
[ 4.370000] device: '0000:05': device_add
[ 4.370000] device: '0000:04': device_add
[ 4.380000] device: '0000:03': device_add
[ 4.380000] device: '0000:02': device_add
[ 4.390000] device: '0000:01:00.0': device_add
[ 4.390000] bus: 'pci': add device 0000:01:00.0
[ 4.390000] device: '0000:01:00.1': device_add
[ 4.400000] bus: 'pci': add device 0000:01:00.1
[ 4.400000] device: '0000:01': device_add
[ 4.410000] driver: 'PNP0A08:00': driver_bound: bound to device 'pci_root'
[ 4.410000] bus: 'acpi': really_probe: bound device PNP0A08:00 to driver pci_root
[ 4.420000] initcall acpi_pci_root_init+0x0/0x2a returned 0 after 1142578 usecs
[ 4.430000] calling acpi_pci_link_init+0x0/0x3f @ 1
[ 4.430000] bus: 'acpi': add driver pci_link
[ 4.440000] bus: 'acpi': driver_probe_device: matched device PNP0C0F:00 with driver pci_link
[ 4.450000] bus: 'acpi': really_probe: probing driver pci_link with device PNP0C0F:00
[ 4.460000] ACPI: PCI Interrupt Link [LNK1] (IRQs 3 4 5 7 9 10 11 12 14 15) *0, disabled.
[ 4.460000] driver: 'PNP0C0F:00': driver_bound: bound to device 'pci_link'
[ 4.470000] bus: 'acpi': really_probe: bound device PNP0C0F:00 to driver pci_link
[ 4.480000] bus: 'acpi': driver_probe_device: matched device PNP0C0F:01 with driver pci_link
[ 4.490000] bus: 'acpi': really_probe: probing driver pci_link with device PNP0C0F:01
[ 4.500000] ACPI: PCI Interrupt Link [LNK2] (IRQs 3 4 5 7 9 10 *11 12 14 15)
[ 4.500000] driver: 'PNP0C0F:01': driver_bound: bound to device 'pci_link'
[ 4.510000] bus: 'acpi': really_probe: bound device PNP0C0F:01 to driver pci_link
[ 4.520000] bus: 'acpi': driver_probe_device: matched device PNP0C0F:02 with driver pci_link
[ 4.530000] bus: 'acpi': really_probe: probing driver pci_link with device PNP0C0F:02
[ 4.530000] ACPI: PCI Interrupt Link [LNK3] (IRQs 3 4 *5 7 9 10 11 12 14 15)
[ 4.540000] driver: 'PNP0C0F:02': driver_bound: bound to device 'pci_link'
[ 4.550000] bus: 'acpi': really_probe: bound device PNP0C0F:02 to driver pci_link
[ 4.560000] bus: 'acpi': driver_probe_device: matched device PNP0C0F:03 with driver pci_link
[ 4.560000] bus: 'acpi': really_probe: probing driver pci_link with device PNP0C0F:03
[ 4.570000] ACPI: PCI Interrupt Link [LNK4] (IRQs 3 4 5 7 9 10 11 12 14 15) *0, disabled.
[ 4.580000] driver: 'PNP0C0F:03': driver_bound: bound to device 'pci_link'
[ 4.590000] bus: 'acpi': really_probe: bound device PNP0C0F:03 to driver pci_link
[ 4.600000] bus: 'acpi': driver_probe_device: matched device PNP0C0F:04 with driver pci_link
[ 4.600000] bus: 'acpi': really_probe: probing driver pci_link with device PNP0C0F:04
[ 4.610000] ACPI: PCI Interrupt Link [LNK5] (IRQs 3 4 5 7 9 10 11 12 14 15) *0, disabled.
[ 4.620000] driver: 'PNP0C0F:04': driver_bound: bound to device 'pci_link'
[ 4.630000] bus: 'acpi': really_probe: bound device PNP0C0F:04 to driver pci_link
[ 4.640000] bus: 'acpi': driver_probe_device: matched device PNP0C0F:05 with driver pci_link
[ 4.640000] bus: 'acpi': really_probe: probing driver pci_link with device PNP0C0F:05
[ 4.650000] ACPI: PCI Interrupt Link [LUBA] (IRQs 3 4 5 7 9 10 11 12 14 15) *0, disabled.
[ 4.660000] driver: 'PNP0C0F:05': driver_bound: bound to device 'pci_link'
[ 4.670000] bus: 'acpi': really_probe: bound device PNP0C0F:05 to driver pci_link
[ 4.670000] bus: 'acpi': driver_probe_device: matched device PNP0C0F:06 with driver pci_link
[ 4.680000] bus: 'acpi': really_probe: probing driver pci_link with device PNP0C0F:06
[ 4.690000] ACPI: PCI Interrupt Link [LUBB] (IRQs 3 4 5 7 9 10 11 12 14 15) *0, disabled.
[ 4.700000] driver: 'PNP0C0F:06': driver_bound: bound to device 'pci_link'
[ 4.710000] bus: 'acpi': really_probe: bound device PNP0C0F:06 to driver pci_link
[ 4.710000] bus: 'acpi': driver_probe_device: matched device PNP0C0F:07 with driver pci_link
[ 4.720000] bus: 'acpi': really_probe: probing driver pci_link with device PNP0C0F:07
[ 4.730000] ACPI: PCI Interrupt Link [LMAC] (IRQs 3 4 5 7 9 10 *11 12 14 15)
[ 4.740000] driver: 'PNP0C0F:07': driver_bound: bound to device 'pci_link'
[ 4.750000] bus: 'acpi': really_probe: bound device PNP0C0F:07 to driver pci_link
[ 4.750000] bus: 'acpi': driver_probe_device: matched device PNP0C0F:08 with driver pci_link
[ 4.760000] bus: 'acpi': really_probe: probing driver pci_link with device PNP0C0F:08
[ 4.770000] ACPI: PCI Interrupt Link [LACI] (IRQs *3 4 5 7 9 10 11 12 14 15)
[ 4.780000] driver: 'PNP0C0F:08': driver_bound: bound to device 'pci_link'
[ 4.780000] bus: 'acpi': really_probe: bound device PNP0C0F:08 to driver pci_link
[ 4.790000] bus: 'acpi': driver_probe_device: matched device PNP0C0F:09 with driver pci_link
[ 4.800000] bus: 'acpi': really_probe: probing driver pci_link with device PNP0C0F:09
[ 4.810000] ACPI: PCI Interrupt Link [LMCI] (IRQs 3 4 5 7 9 10 11 12 14 15) *0, disabled.
[ 4.820000] driver: 'PNP0C0F:09': driver_bound: bound to device 'pci_link'
[ 4.820000] bus: 'acpi': really_probe: bound device PNP0C0F:09 to driver pci_link
[ 4.830000] bus: 'acpi': driver_probe_device: matched device PNP0C0F:0a with driver pci_link
[ 4.840000] bus: 'acpi': really_probe: probing driver pci_link with device PNP0C0F:0a
[ 4.850000] ACPI: PCI Interrupt Link [LSMB] (IRQs 3 4 5 7 9 10 11 12 14 15) *0, disabled.
[ 4.860000] driver: 'PNP0C0F:0a': driver_bound: bound to device 'pci_link'
[ 4.860000] bus: 'acpi': really_probe: bound device PNP0C0F:0a to driver pci_link
[ 4.870000] bus: 'acpi': driver_probe_device: matched device PNP0C0F:0b with driver pci_link
[ 4.880000] bus: 'acpi': really_probe: probing driver pci_link with device PNP0C0F:0b
[ 4.890000] ACPI: PCI Interrupt Link [LUB2] (IRQs 3 4 5 7 9 10 11 12 14 15) *0, disabled.
[ 4.900000] driver: 'PNP0C0F:0b': driver_bound: bound to device 'pci_link'
[ 4.900000] bus: 'acpi': really_probe: bound device PNP0C0F:0b to driver pci_link
[ 4.910000] bus: 'acpi': driver_probe_device: matched device PNP0C0F:0c with driver pci_link
[ 4.920000] bus: 'acpi': really_probe: probing driver pci_link with device PNP0C0F:0c
[ 4.930000] ACPI: PCI Interrupt Link [LIDE] (IRQs 3 4 5 7 9 10 11 12 14 15) *0, disabled.
[ 4.940000] driver: 'PNP0C0F:0c': driver_bound: bound to device 'pci_link'
[ 4.940000] bus: 'acpi': really_probe: bound device PNP0C0F:0c to driver pci_link
[ 4.950000] bus: 'acpi': driver_probe_device: matched device PNP0C0F:0d with driver pci_link
[ 4.960000] bus: 'acpi': really_probe: probing driver pci_link with device PNP0C0F:0d
[ 4.970000] ACPI: PCI Interrupt Link [LSID] (IRQs 3 4 5 7 9 10 11 12 14 15) *0, disabled.
[ 4.980000] driver: 'PNP0C0F:0d': driver_bound: bound to device 'pci_link'
[ 4.980000] bus: 'acpi': really_probe: bound device PNP0C0F:0d to driver pci_link
[ 4.990000] bus: 'acpi': driver_probe_device: matched device PNP0C0F:0e with driver pci_link
[ 5.000000] bus: 'acpi': really_probe: probing driver pci_link with device PNP0C0F:0e
[ 5.010000] ACPI: PCI Interrupt Link [LFID] (IRQs 3 4 5 7 9 10 11 12 14 15) *0, disabled.
[ 5.020000] driver: 'PNP0C0F:0e': driver_bound: bound to device 'pci_link'
[ 5.020000] bus: 'acpi': really_probe: bound device PNP0C0F:0e to driver pci_link
[ 5.030000] bus: 'acpi': driver_probe_device: matched device PNP0C0F:0f with driver pci_link
[ 5.040000] bus: 'acpi': really_probe: probing driver pci_link with device PNP0C0F:0f
[ 5.050000] ACPI: PCI Interrupt Link [LPCA] (IRQs 3 4 5 7 9 10 11 12 14 15) *0, disabled.
[ 5.060000] driver: 'PNP0C0F:0f': driver_bound: bound to device 'pci_link'
[ 5.060000] bus: 'acpi': really_probe: bound device PNP0C0F:0f to driver pci_link
[ 5.070000] bus: 'acpi': driver_probe_device: matched device PNP0C0F:10 with driver pci_link
[ 5.080000] bus: 'acpi': really_probe: probing driver pci_link with device PNP0C0F:10
[ 5.090000] ACPI: PCI Interrupt Link [APC1] (IRQs 16) *0, disabled.
[ 5.090000] driver: 'PNP0C0F:10': driver_bound: bound to device 'pci_link'
[ 5.100000] bus: 'acpi': really_probe: bound device PNP0C0F:10 to driver pci_link
[ 5.110000] bus: 'acpi': driver_probe_device: matched device PNP0C0F:11 with driver pci_link
[ 5.120000] bus: 'acpi': really_probe: probing driver pci_link with device PNP0C0F:11
[ 5.120000] ACPI: PCI Interrupt Link [APC2] (IRQs 17) *0
[ 5.130000] driver: 'PNP0C0F:11': driver_bound: bound to device 'pci_link'
[ 5.140000] bus: 'acpi': really_probe: bound device PNP0C0F:11 to driver pci_link
[ 5.140000] bus: 'acpi': driver_probe_device: matched device PNP0C0F:12 with driver pci_link
[ 5.150000] bus: 'acpi': really_probe: probing driver pci_link with device PNP0C0F:12
[ 5.160000] ACPI: PCI Interrupt Link [APC3] (IRQs 18) *0
[ 5.170000] driver: 'PNP0C0F:12': driver_bound: bound to device 'pci_link'
[ 5.170000] bus: 'acpi': really_probe: bound device PNP0C0F:12 to driver pci_link
[ 5.180000] bus: 'acpi': driver_probe_device: matched device PNP0C0F:13 with driver pci_link
[ 5.190000] bus: 'acpi': really_probe: probing driver pci_link with device PNP0C0F:13
[ 5.200000] ACPI: PCI Interrupt Link [APC4] (IRQs 19) *0, disabled.
[ 5.200000] driver: 'PNP0C0F:13': driver_bound: bound to device 'pci_link'
[ 5.210000] bus: 'acpi': really_probe: bound device PNP0C0F:13 to driver pci_link
[ 5.220000] bus: 'acpi': driver_probe_device: matched device PNP0C0F:14 with driver pci_link
[ 5.230000] bus: 'acpi': really_probe: probing driver pci_link with device PNP0C0F:14
[ 5.240000] ACPI: PCI Interrupt Link [APC5] (IRQs *16), disabled.
[ 5.240000] driver: 'PNP0C0F:14': driver_bound: bound to device 'pci_link'
[ 5.250000] bus: 'acpi': really_probe: bound device PNP0C0F:14 to driver pci_link
[ 5.260000] bus: 'acpi': driver_probe_device: matched device PNP0C0F:15 with driver pci_link
[ 5.260000] bus: 'acpi': really_probe: probing driver pci_link with device PNP0C0F:15
[ 5.270000] ACPI: PCI Interrupt Link [APCF] (IRQs 20 21 22 23) *0, disabled.
[ 5.280000] driver: 'PNP0C0F:15': driver_bound: bound to device 'pci_link'
[ 5.290000] bus: 'acpi': really_probe: bound device PNP0C0F:15 to driver pci_link
[ 5.300000] bus: 'acpi': driver_probe_device: matched device PNP0C0F:16 with driver pci_link
[ 5.300000] bus: 'acpi': really_probe: probing driver pci_link with device PNP0C0F:16
[ 5.310000] ACPI: PCI Interrupt Link [APCG] (IRQs 20 21 22 23) *0, disabled.
[ 5.320000] driver: 'PNP0C0F:16': driver_bound: bound to device 'pci_link'
[ 5.330000] bus: 'acpi': really_probe: bound device PNP0C0F:16 to driver pci_link
[ 5.330000] bus: 'acpi': driver_probe_device: matched device PNP0C0F:17 with driver pci_link
[ 5.340000] bus: 'acpi': really_probe: probing driver pci_link with device PNP0C0F:17
[ 5.350000] ACPI: PCI Interrupt Link [APCH] (IRQs 20 21 22 23) *0
[ 5.360000] driver: 'PNP0C0F:17': driver_bound: bound to device 'pci_link'
[ 5.360000] bus: 'acpi': really_probe: bound device PNP0C0F:17 to driver pci_link
[ 5.370000] bus: 'acpi': driver_probe_device: matched device PNP0C0F:18 with driver pci_link
[ 5.380000] bus: 'acpi': really_probe: probing driver pci_link with device PNP0C0F:18
[ 5.390000] ACPI: PCI Interrupt Link [APCJ] (IRQs 20 21 22 23) *0
[ 5.400000] driver: 'PNP0C0F:18': driver_bound: bound to device 'pci_link'
[ 5.400000] bus: 'acpi': really_probe: bound device PNP0C0F:18 to driver pci_link
[ 5.410000] bus: 'acpi': driver_probe_device: matched device PNP0C0F:19 with driver pci_link
[ 5.420000] bus: 'acpi': really_probe: probing driver pci_link with device PNP0C0F:19
[ 5.430000] ACPI: PCI Interrupt Link [APCK] (IRQs 20 21 22 23) *0, disabled.
[ 5.430000] driver: 'PNP0C0F:19': driver_bound: bound to device 'pci_link'
[ 5.440000] bus: 'acpi': really_probe: bound device PNP0C0F:19 to driver pci_link
[ 5.450000] bus: 'acpi': driver_probe_device: matched device PNP0C0F:1a with driver pci_link
[ 5.460000] bus: 'acpi': really_probe: probing driver pci_link with device PNP0C0F:1a
[ 5.470000] ACPI: PCI Interrupt Link [APCS] (IRQs 20 21 22 23) *0, disabled.
[ 5.470000] driver: 'PNP0C0F:1a': driver_bound: bound to device 'pci_link'
[ 5.480000] bus: 'acpi': really_probe: bound device PNP0C0F:1a to driver pci_link
[ 5.490000] bus: 'acpi': driver_probe_device: matched device PNP0C0F:1b with driver pci_link
[ 5.500000] bus: 'acpi': really_probe: probing driver pci_link with device PNP0C0F:1b
[ 5.500000] ACPI: PCI Interrupt Link [APCL] (IRQs 20 21 22 23) *0, disabled.
[ 5.510000] driver: 'PNP0C0F:1b': driver_bound: bound to device 'pci_link'
[ 5.520000] bus: 'acpi': really_probe: bound device PNP0C0F:1b to driver pci_link
[ 5.530000] bus: 'acpi': driver_probe_device: matched device PNP0C0F:1c with driver pci_link
[ 5.530000] bus: 'acpi': really_probe: probing driver pci_link with device PNP0C0F:1c
[ 5.540000] ACPI: PCI Interrupt Link [APCZ] (IRQs 20 21 22 23) *0, disabled.
[ 5.550000] driver: 'PNP0C0F:1c': driver_bound: bound to device 'pci_link'
[ 5.560000] bus: 'acpi': really_probe: bound device PNP0C0F:1c to driver pci_link
[ 5.570000] bus: 'acpi': driver_probe_device: matched device PNP0C0F:1d with driver pci_link
[ 5.570000] bus: 'acpi': really_probe: probing driver pci_link with device PNP0C0F:1d
[ 5.580000] ACPI: PCI Interrupt Link [APSI] (IRQs 20 21 22 23) *0, disabled.
[ 5.590000] driver: 'PNP0C0F:1d': driver_bound: bound to device 'pci_link'
[ 5.600000] bus: 'acpi': really_probe: bound device PNP0C0F:1d to driver pci_link
[ 5.600000] bus: 'acpi': driver_probe_device: matched device PNP0C0F:1e with driver pci_link
[ 5.610000] bus: 'acpi': really_probe: probing driver pci_link with device PNP0C0F:1e
[ 5.620000] ACPI: PCI Interrupt Link [APSJ] (IRQs 20 21 22 23) *0, disabled.
[ 5.630000] driver: 'PNP0C0F:1e': driver_bound: bound to device 'pci_link'
[ 5.640000] bus: 'acpi': really_probe: bound device PNP0C0F:1e to driver pci_link
[ 5.640000] bus: 'acpi': driver_probe_device: matched device PNP0C0F:1f with driver pci_link
[ 5.650000] bus: 'acpi': really_probe: probing driver pci_link with device PNP0C0F:1f
[ 5.660000] ACPI: PCI Interrupt Link [APCP] (IRQs 20 21 22 23) *0, disabled.
[ 5.670000] driver: 'PNP0C0F:1f': driver_bound: bound to device 'pci_link'
[ 5.670000] bus: 'acpi': really_probe: bound device PNP0C0F:1f to driver pci_link
[ 5.680000] initcall acpi_pci_link_init+0x0/0x3f returned 0 after 1220703 usecs
[ 5.690000] calling pnp_init+0x0/0xf @ 1
[ 5.690000] bus: 'pnp': registered
[ 5.700000] initcall pnp_init+0x0/0xf returned 0 after 9765 usecs
[ 5.700000] calling max8649_init+0x0/0x11 @ 1
[ 5.710000] bus: 'i2c': add driver max8649
[ 5.710000] i2c-core: driver [max8649] registered
[ 5.720000] initcall max8649_init+0x0/0x11 returned 0 after 9765 usecs
[ 5.720000] calling max8660_init+0x0/0x11 @ 1
[ 5.730000] bus: 'i2c': add driver max8660
[ 5.730000] i2c-core: driver [max8660] registered
[ 5.740000] initcall max8660_init+0x0/0x11 returned 0 after 9765 usecs
[ 5.740000] calling max8925_regulator_init+0x0/0xf @ 1
[ 5.750000] bus: 'platform': add driver max8925-regulator
[ 5.750000] initcall max8925_regulator_init+0x0/0xf returned 0 after 0 usecs
[ 5.760000] calling pcf50633_regulator_init+0x0/0xf @ 1
[ 5.770000] bus: 'platform': add driver pcf50633-regltr
[ 5.770000] initcall pcf50633_regulator_init+0x0/0xf returned 0 after 0 usecs
[ 5.780000] calling tps_6507x_init+0x0/0x11 @ 1
[ 5.780000] bus: 'i2c': add driver tps6507x
[ 5.790000] i2c-core: driver [tps6507x] registered
[ 5.790000] initcall tps_6507x_init+0x0/0x11 returned 0 after 9765 usecs
[ 5.800000] calling misc_init+0x0/0x9b @ 1
[ 5.800000] device class 'misc': registering
[ 5.810000] initcall misc_init+0x0/0x9b returned 0 after 9765 usecs
[ 5.810000] calling vga_arb_device_init+0x0/0x68 @ 1
[ 5.820000] device: 'vga_arbiter': device_add
[ 5.820000] vgaarb: device added: PCI:0000:01:00.0,decodes=io+mem,owns=io+mem,locks=none
[ 5.830000] vgaarb: loaded
[ 5.830000] initcall vga_arb_device_init+0x0/0x68 returned 0 after 9765 usecs
[ 5.840000] calling wm8350_i2c_init+0x0/0x11 @ 1
[ 5.850000] bus: 'i2c': add driver wm8350
[ 5.850000] i2c-core: driver [wm8350] registered
[ 5.850000] initcall wm8350_i2c_init+0x0/0x11 returned 0 after 0 usecs
[ 5.860000] calling da903x_init+0x0/0x11 @ 1
[ 5.870000] bus: 'i2c': add driver da903x
[ 5.870000] i2c-core: driver [da903x] registered
[ 5.870000] initcall da903x_init+0x0/0x11 returned 0 after 0 usecs
[ 5.880000] calling max8925_i2c_init+0x0/0x2a @ 1
[ 5.880000] bus: 'i2c': add driver max8925
[ 5.890000] i2c-core: driver [max8925] registered
[ 5.890000] initcall max8925_i2c_init+0x0/0x2a returned 0 after 9765 usecs
[ 5.900000] calling pcf50633_init+0x0/0x11 @ 1
[ 5.910000] bus: 'i2c': add driver pcf50633
[ 5.910000] i2c-core: driver [pcf50633] registered
[ 5.910000] initcall pcf50633_init+0x0/0x11 returned 0 after 0 usecs
[ 5.920000] calling ab3100_i2c_init+0x0/0x11 @ 1
[ 5.930000] bus: 'i2c': add driver ab3100
[ 5.930000] i2c-core: driver [ab3100] registered
[ 5.930000] initcall ab3100_i2c_init+0x0/0x11 returned 0 after 0 usecs
[ 5.940000] calling init_scsi+0x0/0x89 @ 1
[ 5.950000] device class 'scsi_host': registering
[ 5.950000] bus: 'scsi': registered
[ 5.950000] device class 'scsi_device': registering
[ 5.960000] SCSI subsystem initialized
[ 5.960000] initcall init_scsi+0x0/0x89 returned 0 after 19531 usecs
[ 5.970000] calling ata_init+0x0/0x15a @ 1
[ 5.970000] libata version 3.00 loaded.
[ 5.980000] initcall ata_init+0x0/0x15a returned 0 after 9765 usecs
[ 5.980000] calling phy_init+0x0/0x2a @ 1
[ 5.990000] device class 'mdio_bus': registering
[ 5.990000] bus: 'mdio_bus': registered
[ 6.000000] bus: 'mdio_bus': add driver Generic PHY
[ 6.000000] initcall phy_init+0x0/0x2a returned 0 after 9765 usecs
[ 6.010000] calling usb_init+0x0/0x14a @ 1
[ 6.010000] bus: 'usb': registered
[ 6.010000] bus: 'usb': add driver usbfs
[ 6.020000] usbcore: registered new interface driver usbfs
[ 6.020000] bus: 'usb': add driver hub
[ 6.030000] usbcore: registered new interface driver hub
[ 6.030000] bus: 'usb': add driver usb
[ 6.040000] usbcore: registered new device driver usb
[ 6.040000] initcall usb_init+0x0/0x14a returned 0 after 29296 usecs
[ 6.050000] calling serio_init+0x0/0x73 @ 1
[ 6.050000] bus: 'serio': registered
[ 6.060000] initcall serio_init+0x0/0x73 returned 0 after 9765 usecs
[ 6.060000] calling gameport_init+0x0/0x73 @ 1
[ 6.070000] bus: 'gameport': registered
[ 6.070000] initcall gameport_init+0x0/0x73 returned 0 after 0 usecs
[ 6.080000] calling input_init+0x0/0xa3 @ 1
[ 6.080000] device class 'input': registering
[ 6.090000] initcall input_init+0x0/0xa3 returned 0 after 9765 usecs
[ 6.090000] calling i2c_gpio_init+0x0/0x28 @ 1
[ 6.100000] bus: 'platform': add driver i2c-gpio
[ 6.100000] initcall i2c_gpio_init+0x0/0x28 returned 0 after 0 usecs
[ 6.110000] calling pps_init+0x0/0x92 @ 1
[ 6.110000] device class 'pps': registering
[ 6.120000] LinuxPPS API ver. 1 registered
[ 6.120000] Software ver. 5.3.6 - Copyright 2005-2007 Rodolfo Giometti <giometti@linux.it>
[ 6.130000] initcall pps_init+0x0/0x92 returned 0 after 19531 usecs
[ 6.140000] calling power_supply_class_init+0x0/0x39 @ 1
[ 6.140000] device class 'power_supply': registering
[ 6.150000] initcall power_supply_class_init+0x0/0x39 returned 0 after 9765 usecs
[ 6.150000] calling hwmon_init+0x0/0x3c @ 1
[ 6.160000] device class 'hwmon': registering
[ 6.160000] initcall hwmon_init+0x0/0x3c returned 0 after 0 usecs
[ 6.170000] calling thermal_init+0x0/0x46 @ 1
[ 6.170000] device class 'thermal': registering
[ 6.180000] initcall thermal_init+0x0/0x46 returned 0 after 9765 usecs
[ 6.180000] calling mmc_init+0x0/0x6e @ 1
[ 6.190000] bus: 'mmc': registered
[ 6.190000] device class 'mmc_host': registering
[ 6.200000] bus: 'sdio': registered
[ 6.200000] initcall mmc_init+0x0/0x6e returned 0 after 9765 usecs
[ 6.210000] calling pci_subsys_init+0x0/0x26 @ 1
[ 6.210000] PCI: Using ACPI for IRQ routing
[ 6.210000] PCI: pci_cache_line_size set to 64 bytes
[ 6.220000] pci 0000:00:02.1: address space collision: [mem 0xfeb00000-0xfeb000ff] conflicts with PCI Bus #00 [mem 0xfeb00000-0xfec0ffff]
[ 6.230000] Expanded resource reserved due to conflict with PCI Bus #00
[ 6.240000] reserve RAM buffer: 000000000009f800 - 000000000009ffff
[ 6.250000] reserve RAM buffer: 000000003fff0000 - 000000003fffffff initcall pci_subsys_init+0x0/0x26 returned 0 after 39062 usecs
[ 6.260000] calling proto_init+0x0/0xf @ 1
[ 6.260000] initcall proto_init+0x0/0xf returned 0 after 0 usecs
[ 6.270000] calling net_dev_init+0x0/0x1c0 @ 1
[ 6.270000] device class 'net': registering
[ 6.280000] device: 'lo': device_add
[ 6.280000] initcall net_dev_init+0x0/0x1c0 returned 0 after 9765 usecs
[ 6.290000] calling neigh_init+0x0/0x66 @ 1
[ 6.290000] initcall neigh_init+0x0/0x66 returned 0 after 0 usecs
[ 6.300000] calling fib_rules_init+0x0/0x99 @ 1
[ 6.300000] initcall fib_rules_init+0x0/0x99 returned 0 after 0 usecs
[ 6.310000] calling pktsched_init+0x0/0xce @ 1
[ 6.310000] initcall pktsched_init+0x0/0xce returned 0 after 0 usecs
[ 6.320000] calling tc_filter_init+0x0/0x43 @ 1
[ 6.320000] initcall tc_filter_init+0x0/0x43 returned 0 after 0 usecs
[ 6.330000] calling genl_init+0x0/0x77 @ 1
[ 6.330000] initcall genl_init+0x0/0x77 returned 0 after 0 usecs
[ 6.340000] calling cipso_v4_init+0x0/0x6b @ 1
[ 6.350000] initcall cipso_v4_init+0x0/0x6b returned 0 after 0 usecs
[ 6.350000] calling bt_init+0x0/0x4f @ 1
[ 6.360000] Bluetooth: Core ver 2.15
[ 6.360000] device class 'bluetooth': registering
[ 6.360000] NET: Registered protocol family 31
[ 6.370000] Bluetooth: HCI device and connection manager initialized
[ 6.380000] Bluetooth: HCI socket layer initialized
[ 6.380000] initcall bt_init+0x0/0x4f returned 0 after 19531 usecs
[ 6.390000] calling atm_init+0x0/0xbc @ 1
[ 6.390000] NET: Registered protocol family 8
[ 6.390000] NET: Registered protocol family 20
[ 6.400000] device class 'atm': registering
[ 6.400000] initcall atm_init+0x0/0xbc returned 0 after 9765 usecs
[ 6.410000] calling netlbl_init+0x0/0x6d @ 1
[ 6.410000] NetLabel: Initializing
[ 6.420000] NetLabel: domain hash size = 128
[ 6.420000] NetLabel: protocols = UNLABELED CIPSOv4
[ 6.430000] NetLabel: unlabeled traffic allowed by default
[ 6.430000] initcall netlbl_init+0x0/0x6d returned 0 after 19531 usecs
[ 6.440000] calling sysctl_init+0x0/0x3b @ 1
[ 6.440000] initcall sysctl_init+0x0/0x3b returned 0 after 0 usecs
[ 6.450000] calling print_ICs+0x0/0x8a @ 1
[ 6.450000]
[ 6.450000] printing PIC contents
[ 6.460000] ... PIC IMR: ffff
[ 6.460000] ... PIC IRR: 0829
[ 6.460000] ... PIC ISR: 0000
[ 6.470000] ... PIC ELCR: 0828
[ 6.470000] printing local APIC contents on CPU#0/0:
[ 6.470000] ... APIC ID: 00000000 (0)
[ 6.470000] ... APIC VERSION: 00040010
[ 6.470000] ... APIC TASKPRI: 00000000 (00)
[ 6.470000] ... APIC ARBPRI: 000000e0 (e0)
[ 6.470000] ... APIC PROCPRI: 00000000
[ 6.470000] ... APIC LDR: 01000000
[ 6.470000] ... APIC DFR: ffffffff
[ 6.470000] ... APIC SPIV: 000001ff
[ 6.470000] ... APIC ISR field:
[ 6.470000] 0000000000000000000000000000000000000000000000000000000000000000
[ 6.470000] ... APIC TMR field:
[ 6.470000] 0000000000000000000000000000000000000000000000000000000000000000
[ 6.470000] ... APIC IRR field:
[ 6.470000] 0000000000000000000000000000000000000000000000000000000000008000
[ 6.470000] ... APIC ESR: 00000000
[ 6.470000] ... APIC ICR: 000008fb
[ 6.470000] ... APIC ICR2: 02000000
[ 6.470000] ... APIC LVTT: 000100ef
[ 6.470000] ... APIC LVTPC: 00000400
[ 6.470000] ... APIC LVT0: 00010700
[ 6.470000] ... APIC LVT1: 00000400
[ 6.470000] ... APIC LVTERR: 000000fe
[ 6.470000] ... APIC TMICT: 00000000
[ 6.470000] ... APIC TMCCT: 00000000
[ 6.470000] ... APIC TDCR: 00000000
[ 6.470000]
[ 6.480000] number of MP IRQ sources: 16.
[ 6.480000] number of IO-APIC #2 registers: 24.
[ 6.490000] testing the IO APIC.......................
[ 6.490000]
[ 6.490000] IO APIC #2......
[ 6.490000] .... register #00: 00000000
[ 6.500000] ....... : physical APIC id: 00
[ 6.500000] ....... : Delivery Type: 0
[ 6.510000] ....... : LTS : 0
[ 6.510000] .... register #01: 00170011
[ 6.510000] ....... : max redirection entries: 0017
[ 6.520000] ....... : PRQ implemented: 0
[ 6.520000] ....... : IO APIC version: 0011
[ 6.530000] .... register #02: 00000000
[ 6.530000] ....... : arbitration: 00
[ 6.540000] .... IRQ redirection table:
[ 6.540000] NR Dst Mask Trig IRR Pol Stat Dmod Deli Vect:
[ 6.550000] 00 003 0 0 0 0 0 1 1 30
[ 6.550000] 01 003 0 0 0 0 0 1 1 31
[ 6.560000] 02 003 1 0 0 0 0 0 0 32
[ 6.560000] 03 003 1 0 0 0 0 1 1 33
[ 6.570000] 04 003 0 0 0 0 0 1 1 34
[ 6.570000] 05 003 1 0 0 0 0 1 1 35
[ 6.580000] 06 003 0 0 0 0 0 1 1 36
[ 6.580000] 07 003 1 0 0 0 0 1 1 37
[ 6.590000] 08 003 0 0 0 0 0 1 1 38
[ 6.590000] 09 003 0 1 0 0 0 1 1 39
[ 6.600000] 0a 003 0 0 0 0 0 1 1 3A
[ 6.600000] 0b 003 1 0 0 0 0 1 1 3B
[ 6.610000] 0c 003 0 0 0 0 0 1 1 3C
[ 6.610000] 0d 003 0 0 0 0 0 1 1 3D
[ 6.620000] 0e 003 0 0 0 0 0 1 1 3E
[ 6.620000] 0f 003 0 0 0 0 0 1 1 3F
[ 6.630000] 10 000 1 0 0 0 0 0 0 00
[ 6.640000] 11 000 1 0 0 0 0 0 0 00
[ 6.640000] 12 000 1 0 0 0 0 0 0 00
[ 6.650000] 13 000 1 0 0 0 0 0 0 00
[ 6.650000] 14 000 1 0 0 0 0 0 0 00
[ 6.660000] 15 000 1 0 0 0 0 0 0 00
[ 6.660000] 16 000 1 0 0 0 0 0 0 00
[ 6.670000] 17 000 1 0 0 0 0 0 0 00
[ 6.670000] IRQ to pin mappings:
[ 6.680000] IRQ0 -> 0:0
[ 6.680000] IRQ1 -> 0:1
[ 6.680000] IRQ2 -> 0:2
[ 6.680000] IRQ3 -> 0:3
[ 6.690000] IRQ4 -> 0:4
[ 6.690000] IRQ5 -> 0:5
[ 6.690000] IRQ6 -> 0:6
[ 6.690000] IRQ7 -> 0:7
[ 6.700000] IRQ8 -> 0:8
[ 6.700000] IRQ9 -> 0:9
[ 6.700000] IRQ10 -> 0:10
[ 6.700000] IRQ11 -> 0:11
[ 6.710000] IRQ12 -> 0:12
[ 6.710000] IRQ13 -> 0:13
[ 6.710000] IRQ14 -> 0:14
[ 6.710000] IRQ15 -> 0:15
[ 6.720000] .................................... done.
[ 6.720000] initcall print_ICs+0x0/0x8a returned 0 after 263671 usecs
[ 6.730000] calling hpet_late_init+0x0/0xd5 @ 1
[ 6.730000] initcall hpet_late_init+0x0/0xd5 returned -19 after 0 usecs
[ 6.740000] calling init_k8_nbs+0x0/0x21 @ 1
[ 6.740000] initcall init_k8_nbs+0x0/0x21 returned 0 after 0 usecs
[ 6.750000] calling clocksource_done_booting+0x0/0x53 @ 1
[ 6.760000] initcall clocksource_done_booting+0x0/0x53 returned 0 after 0 usecs
[ 6.760000] calling ftrace_init_debugfs+0x0/0x9e @ 1
[ 6.770000] initcall ftrace_init_debugfs+0x0/0x9e returned 0 after 0 usecs
[ 6.770000] calling rb_init_debugfs+0x0/0x27 @ 1
[ 6.780000] initcall rb_init_debugfs+0x0/0x27 returned 0 after 0 usecs
[ 6.790000] calling tracer_init_debugfs+0x0/0x23c @ 1
[ 6.790000] initcall tracer_init_debugfs+0x0/0x23c returned 0 after 0 usecs
[ 6.800000] calling init_trace_printk_function_export+0x0/0x2a @ 1
[ 6.810000] initcall init_trace_printk_function_export+0x0/0x2a returned 0 after 9765 usecs
[ 6.810000] calling stat_workqueue_init+0x0/0x27 @ 1
[ 6.820000] initcall stat_workqueue_init+0x0/0x27 returned 0 after 0 usecs
[ 6.830000] calling event_trace_init+0x0/0x19c @ 1
[ 6.920000] initcall event_trace_init+0x0/0x19c returned 0 after 87890 usecs
[ 6.930000] calling init_pipe_fs+0x0/0x3d @ 1
[ 6.930000] initcall init_pipe_fs+0x0/0x3d returned 0 after 0 usecs
[ 6.940000] calling eventpoll_init+0x0/0xc0 @ 1
[ 6.940000] initcall eventpoll_init+0x0/0xc0 returned 0 after 0 usecs
[ 6.950000] calling anon_inode_init+0x0/0xf2 @ 1
[ 6.950000] initcall anon_inode_init+0x0/0xf2 returned 0 after 0 usecs
[ 6.960000] calling tomoyo_initerface_init+0x0/0xe1 @ 1
[ 6.970000] initcall tomoyo_initerface_init+0x0/0xe1 returned 0 after 0 usecs
[ 6.970000] calling blk_scsi_ioctl_init+0x0/0x288 @ 1
[ 6.980000] initcall blk_scsi_ioctl_init+0x0/0x288 returned 0 after 0 usecs
[ 6.990000] calling acpi_event_init+0x0/0x6f @ 1
[ 6.990000] initcall acpi_event_init+0x0/0x6f returned 0 after 0 usecs
[ 7.000000] calling pnpacpi_init+0x0/0x7b @ 1
[ 7.000000] pnp: PnP ACPI init
[ 7.000000] device: 'pnp0': device_add
[ 7.010000] ACPI: bus type pnp registered
[ 7.010000] device: '00:00': device_add
[ 7.020000] bus: 'pnp': add device 00:00
[ 7.020000] device: '00:01': device_add
[ 7.020000] bus: 'pnp': add device 00:01
[ 7.040000] device: '00:02': device_add
[ 7.040000] bus: 'pnp': add device 00:02
[ 7.040000] device: '00:03': device_add
[ 7.050000] bus: 'pnp': add device 00:03
[ 7.050000] IOAPIC[0]: Set routing entry (2-8 -> 0x38 -> IRQ 8 Mode:0 Active:0)
[ 7.060000] device: '00:04': device_add
[ 7.060000] bus: 'pnp': add device 00:04
[ 7.070000] device: '00:05': device_add
[ 7.070000] bus: 'pnp': add device 00:05
[ 7.080000] IOAPIC[0]: Set routing entry (2-13 -> 0x3d -> IRQ 13 Mode:0 Active:0)
[ 7.080000] device: '00:06': device_add
[ 7.090000] bus: 'pnp': add device 00:06
[ 7.090000] IOAPIC[0]: Set routing entry (2-6 -> 0x36 -> IRQ 6 Mode:0 Active:0)
[ 7.100000] device: '00:07': device_add
[ 7.110000] bus: 'pnp': add device 00:07
[ 7.110000] IOAPIC[0]: Set routing entry (2-4 -> 0x34 -> IRQ 4 Mode:0 Active:0)
[ 7.120000] device: '00:08': device_add
[ 7.120000] bus: 'pnp': add device 00:08
[ 7.130000] IOAPIC[0]: Set routing entry (2-7 -> 0x37 -> IRQ 7 Mode:0 Active:0)
[ 7.140000] device: '00:09': device_add
[ 7.140000] bus: 'pnp': add device 00:09
[ 7.150000] IOAPIC[0]: Set routing entry (2-12 -> 0x3c -> IRQ 12 Mode:0 Active:0)
[ 7.160000] device: '00:0a': device_add
[ 7.160000] bus: 'pnp': add device 00:0a
[ 7.160000] IOAPIC[0]: Set routing entry (2-1 -> 0x31 -> IRQ 1 Mode:0 Active:0)
[ 7.170000] device: '00:0b': device_add
[ 7.180000] bus: 'pnp': add device 00:0b
[ 7.180000] IOAPIC[0]: Set routing entry (2-10 -> 0x3a -> IRQ 10 Mode:0 Active:0)
[ 7.190000] device: '00:0c': device_add
[ 7.190000] bus: 'pnp': add device 00:0c
[ 7.200000] device: '00:0d': device_add
[ 7.200000] bus: 'pnp': add device 00:0d
[ 7.210000] device: '00:0e': device_add
[ 7.210000] bus: 'pnp': add device 00:0e
[ 7.220000] device: '00:0f': device_add
[ 7.220000] bus: 'pnp': add device 00:0f
[ 7.230000] pnp: PnP ACPI: found 16 devices
[ 7.230000] ACPI: ACPI bus type pnp unregistered
[ 7.230000] initcall pnpacpi_init+0x0/0x7b returned 0 after 224609 usecs
[ 7.240000] calling pnp_system_init+0x0/0xf @ 1
[ 7.250000] bus: 'pnp': add driver system
[ 7.250000] bus: 'pnp': driver_probe_device: matched device 00:01 with driver system
[ 7.260000] bus: 'pnp': really_probe: probing driver system with device 00:01
[ 7.260000] system 00:01: [io 0x4000-0x407f] has been reserved
[ 7.270000] system 00:01: [io 0x4080-0x40ff] has been reserved
[ 7.280000] system 00:01: [io 0x4400-0x447f] has been reserved
[ 7.280000] system 00:01: [io 0x4480-0x44ff] has been reserved
[ 7.290000] system 00:01: [io 0x4800-0x487f] has been reserved
[ 7.290000] system 00:01: [io 0x4880-0x48ff] has been reserved
[ 7.300000] driver: '00:01': driver_bound: bound to device 'system'
[ 7.310000] bus: 'pnp': really_probe: bound device 00:01 to driver system
[ 7.310000] bus: 'pnp': driver_probe_device: matched device 00:02 with driver system
[ 7.320000] bus: 'pnp': really_probe: probing driver system with device 00:02
[ 7.330000] system 00:02: [io 0x04d0-0x04d1] has been reserved
[ 7.330000] system 00:02: [io 0x0800-0x0805] has been reserved
[ 7.340000] system 00:02: [io 0x0290-0x0297] has been reserved
[ 7.350000] driver: '00:02': driver_bound: bound to device 'system'
[ 7.350000] bus: 'pnp': really_probe: bound device 00:02 to driver system
[ 7.360000] bus: 'pnp': driver_probe_device: matched device 00:0e with driver system
[ 7.370000] bus: 'pnp': really_probe: probing driver system with device 00:0e
[ 7.370000] system 00:0e: [mem 0xe0000000-0xefffffff] has been reserved
[ 7.380000] driver: '00:0e': driver_bound: bound to device 'system'
[ 7.390000] bus: 'pnp': really_probe: bound device 00:0e to driver system
[ 7.390000] bus: 'pnp': driver_probe_device: matched device 00:0f with driver system
[ 7.400000] bus: 'pnp': really_probe: probing driver system with device 00:0f
[ 7.410000] system 00:0f: [mem 0x000f0000-0x000f3fff] could not be reserved
[ 7.420000] system 00:0f: [mem 0x000f4000-0x000f7fff] could not be reserved
[ 7.420000] system 00:0f: [mem 0x000f8000-0x000fbfff] could not be reserved
[ 7.430000] system 00:0f: [mem 0x000fc000-0x000fffff] could not be reserved
[ 7.440000] system 00:0f: [mem 0x3fff0000-0x3fffffff] could not be reserved
[ 7.440000] system 00:0f: [mem 0xffff0000-0xffffffff] has been reserved
[ 7.450000] system 00:0f: [mem 0x00000000-0x0009ffff] could not be reserved
[ 7.460000] system 00:0f: [mem 0x00100000-0x3ffeffff] could not be reserved
[ 7.460000] system 00:0f: [mem 0xfec00000-0xfec00fff] could not be reserved
[ 7.470000] system 00:0f: [mem 0xfee00000-0xfeefffff] has been reserved
[ 7.480000] system 00:0f: [mem 0xfefff000-0xfeffffff] has been reserved
[ 7.480000] system 00:0f: [mem 0xfff80000-0xfff80fff] has been reserved
[ 7.490000] system 00:0f: [mem 0xfff90000-0xfffbffff] has been reserved
[ 7.500000] system 00:0f: [mem 0xfffed000-0xfffeffff] has been reserved
[ 7.500000] driver: '00:0f': driver_bound: bound to device 'system'
[ 7.510000] bus: 'pnp': really_probe: bound device 00:0f to driver system
[ 7.520000] initcall pnp_system_init+0x0/0xf returned 0 after 263671 usecs
[ 7.520000] calling chr_dev_init+0x0/0xaf @ 1
[ 7.530000] device class 'mem': registering
[ 7.530000] device: 'mem': device_add
[ 7.540000] device: 'kmem': device_add
[ 7.540000] device: 'null': device_add
[ 7.540000] device: 'port': device_add
[ 7.550000] device: 'zero': device_add
[ 7.550000] device: 'full': device_add
[ 7.560000] device: 'random': device_add
[ 7.560000] device: 'urandom': device_add
[ 7.560000] device: 'kmsg': device_add
[ 7.570000] device: 'oldmem': device_add
[ 7.570000] initcall chr_dev_init+0x0/0xaf returned 0 after 39062 usecs
[ 7.580000] calling firmware_class_init+0x0/0x14 @ 1
[ 7.580000] device class 'firmware': registering
[ 7.590000] initcall firmware_class_init+0x0/0x14 returned 0 after 9765 usecs
[ 7.600000] calling cpufreq_gov_userspace_init+0x0/0xf @ 1
[ 7.600000] initcall cpufreq_gov_userspace_init+0x0/0xf returned 0 after 0 usecs
[ 7.610000] calling init_acpi_pm_clocksource+0x0/0x137 @ 1
[ 7.650000] Switching to clocksource acpi_pm
[ 7.650000] initcall init_acpi_pm_clocksource+0x0/0x137 returned 0 after 39085 usecs
[ 7.657769] Clockevents: could not switch to one-shot mode:
[ 7.667774] Clockevents: could not switch to one-shot mode: lapic is not functional.
[ 7.667769] lapic is not functional.
[ 7.684778] calling pcibios_assign_resources+0x0/0x81 @ 1
[ 7.684778] pci 0000:00:02.1: BAR 0: assigned [mem 0x40000000-0x400000ff]
[ 7.697323] pci 0000:00:02.1: BAR 0: set to [mem 0x40000000-0x400000ff] (PCI address [0x40000000-0x400000ff]
[ 7.707159] pci 0000:00:09.0: PCI bridge to [bus 05-05]
[ 7.707159] pci 0000:00:09.0: bridge window [io 0xc000-0xcfff]
[ 7.718487] pci 0000:00:09.0: bridge window [mem 0xda000000-0xda0fffff]
[ 7.725289] pci 0000:00:09.0: bridge window [mem pref disabled]
[ 7.725289] pci 0000:00:0b.0: PCI bridge to [bus 04-04]
[ 7.726644] pci 0000:00:0b.0: bridge window [io disabled]
[ 7.736644] pci 0000:00:0b.0: bridge window [mem disabled]
[ 7.747979] pci 0000:00:0b.0: bridge window [mem pref disabled]
[ 7.754089] pci 0000:00:0c.0: PCI bridge to [bus 03-03]
[ 7.754089] pci 0000:00:0c.0: bridge window [io disabled]
[ 7.764992] pci 0000:00:0c.0: bridge window [mem disabled]
[ 7.764992] pci 0000:00:0c.0: bridge window [mem pref disabled]
[ 7.776770] pci 0000:00:0d.0: PCI bridge to [bus 02-02]
[ 7.776770] pci 0000:00:0d.0: bridge window [io disabled]
[ 7.787672] pci 0000:00:0d.0: bridge window [mem disabled]
[ 7.793350] pci 0000:00:0d.0: bridge window [mem pref disabled]
[ 7.793350] pci 0000:01:00.0: BAR 6: assigned [mem 0xd8000000-0xd801ffff pref]
[ 7.806705] pci 0000:00:0e.0: PCI bridge to [bus 01-01]
[ 7.806705] pci 0000:00:0e.0: bridge window [io 0xb000-0xbfff]
[ 7.818033] pci 0000:00:0e.0: bridge window [mem 0xd8000000-0xd9ffffff]
[ 7.824846] pci 0000:00:0e.0: bridge window [mem 0xd0000000-0xd7ffffff 64bit pref]
[ 7.832602] pci 0000:00:09.0: setting latency timer to 64
[ 7.832602] pci 0000:00:0b.0: setting latency timer to 64
[ 7.843497] pci 0000:00:0c.0: setting latency timer to 64
[ 7.843497] pci 0000:00:0d.0: setting latency timer to 64
[ 7.854391] pci 0000:00:0e.0: setting latency timer to 64
[ 7.854391] pci_bus 0000:00: resource 4 [io 0x0000-0xffff]
[ 7.865404] pci_bus 0000:00: resource 5 [mem 0x40000000-0xfcffffffff]
[ 7.865404] pci_bus 0000:00: resource 6 [mem 0xfeb00000-0xfec0ffff]
[ 7.878119] pci_bus 0000:00: resource 7 [mem 0x000a0000-0x000bffff]
[ 7.884395] pci_bus 0000:05: resource 0 [io 0xc000-0xcfff]
[ 7.884395] pci_bus 0000:05: resource 1 [mem 0xda000000-0xda0fffff]
[ 7.896233] pci_bus 0000:05: resource 4 [io 0x0000-0xffff]
[ 7.896233] pci_bus 0000:05: resource 5 [mem 0x40000000-0xfcffffffff]
[ 7.908253] pci_bus 0000:05: resource 6 [mem 0xfeb00000-0xfec0ffff]
[ 7.914529] pci_bus 0000:05: resource 7 [mem 0x000a0000-0x000bffff]
[ 7.914529] pci_bus 0000:01: resource 0 [io 0xb000-0xbfff]
[ 7.926375] pci_bus 0000:01: resource 1 [mem 0xd8000000-0xd9ffffff]
[ 7.932650] pci_bus 0000:01: resource 2 [mem 0xd0000000-0xd7ffffff 64bit pref]
[ 7.932650] initcall pcibios_assign_resources+0x0/0x81 returned 0 after 243764 usecs
[ 7.947618] calling sysctl_core_init+0x0/0x2d @ 1
[ 7.952434] initcall sysctl_core_init+0x0/0x2d returned 0 after 91 usecs
[ 7.952434] calling inet_init+0x0/0x1d1 @ 1
[ 7.963487] NET: Registered protocol family 2
[ 7.963487] IP route cache hash table entries: 32768 (order: 5, 131072 bytes)
[ 7.975441] TCP established hash table entries: 131072 (order: 8, 1048576 bytes)
[ 7.984298] TCP bind hash table entries: 65536 (order: 9, 2621440 bytes)
[ 7.992441] TCP: Hash tables configured (established 131072 bind 65536)
[ 8.005180] TCP reno registered
[ 8.005180] UDP hash table entries: 512 (order: 3, 49152 bytes)
[ 8.014300] UDP-Lite hash table entries: 512 (order: 3, 49152 bytes)
[ 8.014300] initcall inet_init+0x0/0x1d1 returned 0 after 56399 usecs
[ 8.027701] calling af_unix_init+0x0/0x47 @ 1
[ 8.027701] NET: Registered protocol family 1
[ 8.036537] initcall af_unix_init+0x0/0x47 returned 0 after 4320 usecs
[ 8.043105] calling pci_apply_final_quirks+0x0/0xe8 @ 1
[ 8.072440] pci 0000:00:00.0: Found enabled HT MSI Mapping
[ 8.072440] pci 0000:00:0b.0: Found disabled HT MSI Mapping
[ 8.084076] pci 0000:00:00.0: Found enabled HT MSI Mapping
[ 8.084076] pci 0000:00:0b.0: Linking AER extended capability
[ 8.095352] pci 0000:00:00.0: Found enabled HT MSI Mapping
[ 8.095352] pci 0000:00:0c.0: Found disabled HT MSI Mapping
[ 8.106836] pci 0000:00:00.0: Found enabled HT MSI Mapping
[ 8.106836] pci 0000:00:0c.0: Linking AER extended capability
[ 8.118118] pci 0000:00:00.0: Found enabled HT MSI Mapping
[ 8.124039] pci 0000:00:0d.0: Found disabled HT MSI Mapping
[ 8.124039] pci 0000:00:00.0: Found enabled HT MSI Mapping
[ 8.135184] pci 0000:00:0d.0: Linking AER extended capability
[ 8.135184] pci 0000:00:00.0: Found enabled HT MSI Mapping
[ 8.146910] pci 0000:00:0e.0: Found disabled HT MSI Mapping
[ 8.152534] pci 0000:00:00.0: Found enabled HT MSI Mapping
[ 8.152534] pci 0000:00:0e.0: Linking AER extended capability
[ 8.163810] pci 0000:01:00.0: Boot video device
[ 8.163810] PCI: CLS 32 bytes, default 64
[ 8.172477] initcall pci_apply_final_quirks+0x0/0xe8 returned 0 after 121100 usecs
[ 8.172477] calling populate_rootfs+0x0/0x8a @ 1
[ 8.184759] initcall populate_rootfs+0x0/0x8a returned 0 after 829 usecs
[ 8.184759] calling pci_iommu_init+0x0/0x21 @ 1
[ 8.232447] DMA-API: preallocated 32768 debug entries
[ 8.232447] DMA-API: debugging enabled by kernel config
[ 8.247406] initcall pci_iommu_init+0x0/0x21 returned 0 after 49288 usecs
[ 8.254206] calling i8259A_init_sysfs+0x0/0x1d @ 1
[ 8.254206] Registering sysdev class 'i8259'
[ 8.263367] Registering sys device of class 'i8259'
[ 8.263367] Registering sys device 'i82590'
[ 8.272518] initcall i8259A_init_sysfs+0x0/0x1d returned 0 after 13166 usecs
[ 8.272518] calling sbf_init+0x0/0xd4 @ 1
[ 8.283707] initcall sbf_init+0x0/0xd4 returned 0 after 2 usecs
[ 8.283707] calling i8237A_init_sysfs+0x0/0x1d @ 1
[ 8.294504] Registering sysdev class 'i8237'
[ 8.294504] Registering sys device of class 'i8237'
[ 8.303718] Registering sys device 'i82370'
[ 8.303718] initcall i8237A_init_sysfs+0x0/0x1d returned 0 after 13131 usecs
[ 8.315002] calling add_rtc_cmos+0x0/0x88 @ 1
[ 8.315002] initcall add_rtc_cmos+0x0/0x88 returned 0 after 4 usecs
[ 8.325723] calling cache_sysfs_init+0x0/0x54 @ 1
[ 8.325723] initcall cache_sysfs_init+0x0/0x54 returned 0 after 617 usecs
[ 8.337943] calling cpufreq_gx_init+0x0/0x13d @ 1
[ 8.342744] initcall cpufreq_gx_init+0x0/0x13d returned -19 after 1 usecs
[ 8.342744] calling speedstep_init+0x0/0xb0 @ 1
[ 8.354168] initcall speedstep_init+0x0/0xb0 returned -19 after 2 usecs
[ 8.354168] calling msr_init+0x0/0x106 @ 1
[ 8.364974] device class 'msr': registering
[ 8.364974] device: 'msr0': device_add
[ 8.372991] device: 'msr1': device_add
[ 8.372991] initcall msr_init+0x0/0x106 returned 0 after 12031 usecs
[ 8.383661] calling cpuid_init+0x0/0x106 @ 1
[ 8.383661] device class 'cpuid': registering
[ 8.392454] device: 'cpu0': device_add
[ 8.392454] device: 'cpu1': device_add
[ 8.392454] initcall cpuid_init+0x0/0x106 returned 0 after 11935 usecs
[ 8.406776] calling ioapic_init_sysfs+0x0/0x84 @ 1
[ 8.406776] Registering sysdev class 'ioapic'
[ 8.416022] Registering sys device of class 'ioapic'
[ 8.416022] Registering sys device 'ioapic0'
[ 8.425321] initcall ioapic_init_sysfs+0x0/0x84 returned 0 after 13393 usecs
[ 8.425321] calling init_vmi_clocksource+0x0/0xc4 @ 1
[ 8.437559] initcall init_vmi_clocksource+0x0/0xc4 returned 0 after 2 usecs
[ 8.444527] calling add_pcspkr+0x0/0x28 @ 1
[ 8.444527] Registering platform device 'pcspkr'. Parent at platform
[ 8.455162] device: 'pcspkr': device_add
[ 8.455162] bus: 'platform': add device pcspkr
[ 8.463551] initcall add_pcspkr+0x0/0x28 returned 0 after 14482 usecs
[ 8.463551] calling microcode_init+0x0/0xfe @ 1
[ 8.474697] Registering platform device 'microcode'. Parent at platform
[ 8.474697] device: 'microcode': device_add
[ 8.485513] bus: 'platform': add device microcode
[ 8.485518] microcode: microcode: CPU0: AMD CPU family 0xf not supported
[ 8.492449] microcode: microcode: CPU1: AMD CPU family 0xf not supported
[ 8.503825] device: 'microcode': device_add
[ 8.503825] microcode: Microcode Update Driver: v2.00 <tigran@aivazian.fsnet.co.uk>, Peter Oruba
[ 8.516974] initcall microcode_init+0x0/0xfe returned 0 after 41286 usecs
[ 8.523776] calling start_pageattr_test+0x0/0x3d @ 1
[ 8.523780] initcall start_pageattr_test+0x0/0x3d returned 0 after 91 usecs
[ 8.528916] calling pt_dump_init+0x0/0x69 @ 1
[ 8.528916] initcall pt_dump_init+0x0/0x69 returned 0 after 28 usecs
[ 8.536728] calling init+0x0/0xf @ 1
[ 8.540555] initcall init+0x0/0xf returned 0 after 216 usecs
[ 8.540585] cryptomgr_test used greatest stack depth: 3360 bytes left
[ 8.562717] calling init_sched_debug_procfs+0x0/0x27 @ 1
[ 8.562717] initcall init_sched_debug_procfs+0x0/0x27 returned 0 after 18 usecs
[ 8.575448] calling proc_schedstat_init+0x0/0x1c @ 1
[ 8.575448] initcall proc_schedstat_init+0x0/0x1c returned 0 after 10 usecs
[ 8.587486] calling proc_execdomains_init+0x0/0x1c @ 1
[ 8.592721] initcall proc_execdomains_init+0x0/0x1c returned 0 after 10 usecs
[ 8.592721] calling ioresources_init+0x0/0x31 @ 1
[ 8.604672] initcall ioresources_init+0x0/0x31 returned 0 after 18 usecs
[ 8.604672] calling uid_cache_init+0x0/0x78 @ 1
[ 8.616017] initcall uid_cache_init+0x0/0x78 returned 0 after 35 usecs
[ 8.622587] calling init_posix_timers+0x0/0x14b @ 1
[ 8.622587] initcall init_posix_timers+0x0/0x14b returned 0 after 15 usecs
[ 8.634451] calling init_posix_cpu_timers+0x0/0xb7 @ 1
[ 8.634451] initcall init_posix_cpu_timers+0x0/0xb7 returned 0 after 1 usecs
[ 8.646732] calling nsproxy_cache_init+0x0/0x27 @ 1
[ 8.646732] initcall nsproxy_cache_init+0x0/0x27 returned 0 after 13 usecs
[ 8.658589] calling create_proc_profile+0x0/0x63 @ 1
[ 8.663649] initcall create_proc_profile+0x0/0x63 returned 0 after 2 usecs
[ 8.663649] calling timekeeping_init_device+0x0/0x1d @ 1
[ 8.675930] Registering sysdev class 'timekeeping'
[ 8.675930] Registering sys device of class 'timekeeping'
[ 8.686182] Registering sys device 'timekeeping0'
[ 8.686182] initcall timekeeping_init_device+0x0/0x1d returned 0 after 14655 usecs
[ 8.698517] calling init_clocksource_sysfs+0x0/0x43 @ 1
[ 8.703837] Registering sysdev class 'clocksource'
[ 8.703837] Registering sys device of class 'clocksource'
[ 8.714089] Registering sys device 'clocksource0'
[ 8.714089] initcall init_clocksource_sysfs+0x0/0x43 returned 0 after 14660 usecs
[ 8.726337] calling init_timer_list_procfs+0x0/0x27 @ 1
[ 8.726337] initcall init_timer_list_procfs+0x0/0x27 returned 0 after 11 usecs
[ 8.738886] calling init_tstats_procfs+0x0/0x27 @ 1
[ 8.743861] initcall init_tstats_procfs+0x0/0x27 returned 0 after 10 usecs
[ 8.743861] calling lockdep_proc_init+0x0/0x67 @ 1
[ 8.755631] initcall lockdep_proc_init+0x0/0x67 returned 0 after 36 usecs
[ 8.762468] calling futex_init+0x0/0x70 @ 1
[ 8.762468] initcall futex_init+0x0/0x70 returned 0 after 29 usecs
[ 8.772955] calling proc_dma_init+0x0/0x1c @ 1
[ 8.772955] initcall proc_dma_init+0x0/0x1c returned 0 after 10 usecs
[ 8.783945] calling proc_modules_init+0x0/0x1c @ 1
[ 8.783945] initcall proc_modules_init+0x0/0x1c returned 0 after 10 usecs
[ 8.795626] calling kallsyms_init+0x0/0x1f @ 1
[ 8.795626] initcall kallsyms_init+0x0/0x1f returned 0 after 10 usecs
[ 8.806609] calling init_kprobes+0x0/0x127 @ 1
[ 8.832459] initcall init_kprobes+0x0/0x127 returned 0 after 21514 usecs
[ 8.832459] calling utsname_sysctl_init+0x0/0x11 @ 1
[ 8.844933] initcall utsname_sysctl_init+0x0/0x11 returned 0 after 82 usecs
[ 8.844933] calling init_tracepoints+0x0/0x14 @ 1
[ 8.856781] initcall init_tracepoints+0x0/0x14 returned 0 after 2 usecs
[ 8.863410] calling init_lstats_procfs+0x0/0x1f @ 1
[ 8.863410] initcall init_lstats_procfs+0x0/0x1f returned 0 after 18 usecs
[ 8.875274] calling ftrace_mod_cmd_init+0x0/0xf @ 1
[ 8.875274] initcall ftrace_mod_cmd_init+0x0/0xf returned 0 after 36 usecs
[ 8.887157] calling init_events+0x0/0x57 @ 1
[ 8.887157] initcall init_events+0x0/0x57 returned 0 after 9 usecs
[ 8.897714] calling init_sched_switch_trace+0x0/0xf @ 1
[ 8.932464] Testing tracer sched_switch: PASSED
[ 9.162470] initcall init_sched_switch_trace+0x0/0xf returned 0 after 254068 usecs
[ 9.162470] calling init_stack_trace+0x0/0xf @ 1
[ 9.202471] Testing tracer sysprof: .. no entries found ..FAILED!
[ 9.352480] initcall init_stack_trace+0x0/0xf returned -1 after 175593 usecs
[ 9.352480] initcall init_stack_trace+0x0/0xf returned with error code -1
[ 9.369212] calling init_function_trace+0x0/0x35 @ 1
[ 9.402477] Testing tracer function: PASSED
[ 9.572507] Testing dynamic ftrace: PASSED
[ 9.892495] initcall init_function_trace+0x0/0x35 returned 0 after 506795 usecs
[ 9.892495] calling init_wakeup_tracer+0x0/0x1d @ 1
[ 9.922496] Testing tracer wakeup: .. no entries found ..
[ 10.312506] ftrace-test used greatest stack depth: 3240 bytes left
[ 10.312506] FAILED!
[ 10.322940] initcall init_wakeup_tracer+0x0/0x1d returned -1 after 407637 usecs
[ 10.322940] initcall init_wakeup_tracer+0x0/0x1d returned with error code -1
[ 10.337396] calling stack_trace_init+0x0/0x5b @ 1
[ 10.337396] initcall stack_trace_init+0x0/0x5b returned 0 after 51 usecs
[ 10.348948] calling init_mmio_trace+0x0/0xf @ 1
[ 10.353574] initcall init_mmio_trace+0x0/0xf returned 0 after 3 usecs
[ 10.353574] calling init_kmem_tracer+0x0/0x4a @ 1
[ 10.364817] initcall init_kmem_tracer+0x0/0x4a returned 0 after 5 usecs
[ 10.364817] calling init_ksym_trace+0x0/0x4a @ 1
[ 10.402505] Testing tracer ksym_tracer: PASSED
[ 10.572510] initcall init_ksym_trace+0x0/0x4a returned 0 after 192461 usecs
[ 10.572510] calling perf_event_sysfs_init+0x0/0x14 @ 1
[ 10.585429] initcall perf_event_sysfs_init+0x0/0x14 returned 0 after 17 usecs
[ 10.592588] calling init_per_zone_wmark_min+0x0/0x65 @ 1
[ 10.592588] initcall init_per_zone_wmark_min+0x0/0x65 returned 0 after 70 usecs
[ 10.605371] calling kswapd_init+0x0/0x5a @ 1
[ 10.605376] initcall kswapd_init+0x0/0x5a returned 0 after 111 usecs
[ 10.609831] calling setup_vmstat+0x0/0xa2 @ 1
[ 10.609831] initcall setup_vmstat+0x0/0xa2 returned 0 after 58 usecs
[ 10.617084] calling mm_sysfs_init+0x0/0x22 @ 1
[ 10.617084] initcall mm_sysfs_init+0x0/0x22 returned 0 after 15 usecs
[ 10.628081] calling proc_vmalloc_init+0x0/0x1f @ 1
[ 10.638081] initcall proc_vmalloc_init+0x0/0x1f returned 0 after 10 usecs
[ 10.638081] calling init_emergency_pool+0x0/0x58 @ 1
[ 10.644817] highmem bounce pool size: 64 pages
[ 10.644817] initcall init_emergency_pool+0x0/0x58 returned 0 after 4376 usecs
[ 10.656440] calling hugetlb_init+0x0/0x23f @ 1
[ 10.656440] HugeTLB registered 2 MB page size, pre-allocated 0 pages
[ 10.667334] initcall hugetlb_init+0x0/0x23f returned 0 after 6263 usecs
[ 10.677334] calling slab_proc_init+0x0/0x1f @ 1
[ 10.677334] initcall slab_proc_init+0x0/0x1f returned 0 after 10 usecs
[ 10.685161] calling slab_sysfs_init+0x0/0xb7 @ 1
[ 10.702521] initcall slab_sysfs_init+0x0/0xb7 returned 0 after 14653 usecs
[ 10.702521] calling fasync_init+0x0/0x24 @ 1
[ 10.716101] initcall fasync_init+0x0/0x24 returned 0 after 167 usecs
[ 10.726101] calling proc_filesystems_init+0x0/0x1c @ 1
[ 10.726101] initcall proc_filesystems_init+0x0/0x1c returned 0 after 13 usecs
[ 10.735013] calling dnotify_init+0x0/0x6f @ 1
[ 10.735013] initcall dnotify_init+0x0/0x6f returned 0 after 363 usecs
[ 10.746279] calling inotify_setup+0x0/0x11 @ 1
[ 10.746279] initcall inotify_setup+0x0/0x11 returned 0 after 1 usecs
[ 10.757174] calling inotify_user_setup+0x0/0x65 @ 1
[ 10.757174] initcall inotify_user_setup+0x0/0x65 returned 0 after 323 usecs
[ 10.769438] calling aio_setup+0x0/0xbb @ 1
[ 10.779438] initcall aio_setup+0x0/0xbb returned 0 after 555 usecs
[ 10.779438] calling proc_locks_init+0x0/0x1c @ 1
[ 10.785091] initcall proc_locks_init+0x0/0x1c returned 0 after 12 usecs
[ 10.785091] calling init_mbcache+0x0/0x11 @ 1
[ 10.796175] initcall init_mbcache+0x0/0x11 returned 0 after 3 usecs
[ 10.796175] calling dquot_init+0x0/0xee @ 1
[ 10.806713] VFS: Disk quotas dquot_6.5.2
[ 10.806713] Dquot-cache hash table entries: 1024 (order 0, 4096 bytes)
[ 10.817478] initcall dquot_init+0x0/0xee returned 0 after 10513 usecs
[ 10.827478] calling init_v2_quota_format+0x0/0x1d @ 1
[ 10.827478] initcall init_v2_quota_format+0x0/0x1d returned 0 after 28 usecs
[ 10.836137] calling proc_cmdline_init+0x0/0x1c @ 1
[ 10.836137] initcall proc_cmdline_init+0x0/0x1c returned 0 after 11 usecs
[ 10.847818] calling proc_cpuinfo_init+0x0/0x1c @ 1
[ 10.857818] initcall proc_cpuinfo_init+0x0/0x1c returned 0 after 10 usecs
[ 10.857818] calling proc_devices_init+0x0/0x1c @ 1
[ 10.864382] initcall proc_devices_init+0x0/0x1c returned 0 after 10 usecs
[ 10.864382] calling proc_interrupts_init+0x0/0x1c @ 1
[ 10.876325] initcall proc_interrupts_init+0x0/0x1c returned 0 after 10 usecs
[ 10.886325] calling proc_loadavg_init+0x0/0x1c @ 1
[ 10.886325] initcall proc_loadavg_init+0x0/0x1c returned 0 after 10 usecs
[ 10.895071] calling proc_meminfo_init+0x0/0x1c @ 1
[ 10.895071] initcall proc_meminfo_init+0x0/0x1c returned 0 after 10 usecs
[ 10.906754] calling proc_stat_init+0x0/0x1c @ 1
[ 10.906754] initcall proc_stat_init+0x0/0x1c returned 0 after 10 usecs
[ 10.917915] calling proc_uptime_init+0x0/0x1c @ 1
[ 10.927915] initcall proc_uptime_init+0x0/0x1c returned 0 after 10 usecs
[ 10.927915] calling proc_version_init+0x0/0x1c @ 1
[ 10.934305] initcall proc_version_init+0x0/0x1c returned 0 after 10 usecs
[ 10.934305] calling proc_softirqs_init+0x0/0x1c @ 1
[ 10.946075] initcall proc_softirqs_init+0x0/0x1c returned 0 after 18 usecs
[ 10.956075] calling proc_kcore_init+0x0/0xa2 @ 1
[ 10.956075] initcall proc_kcore_init+0x0/0xa2 returned 0 after 33 usecs
[ 10.964336] calling vmcore_init+0x0/0x74 @ 1
[ 10.964336] initcall vmcore_init+0x0/0x74 returned 0 after 1 usecs
[ 10.974884] calling proc_kmsg_init+0x0/0x1f @ 1
[ 10.974884] initcall proc_kmsg_init+0x0/0x1f returned 0 after 11 usecs
[ 10.986046] calling proc_page_init+0x0/0x37 @ 1
[ 10.986046] initcall proc_page_init+0x0/0x37 returned 0 after 19 usecs
[ 10.997216] calling configfs_init+0x0/0xbb @ 1
[ 10.997216] initcall configfs_init+0x0/0xbb returned 0 after 183 usecs
[ 11.008467] calling init_devpts_fs+0x0/0x3d @ 1
[ 11.018467] initcall init_devpts_fs+0x0/0x3d returned 0 after 233 usecs
[ 11.018467] calling init_dlm+0x0/0x8f @ 1
[ 11.024057] device: 'dlm-control': device_add
[ 11.024057] device: 'dlm-monitor': device_add
[ 11.034057] device: 'dlm_plock': device_add
[ 11.034057] DLM (built May 27 2010 20:56:44) installed
[ 11.043366] initcall init_dlm+0x0/0x8f returned 0 after 18485 usecs
[ 11.043366] calling init_ext3_fs+0x0/0x64 @ 1
[ 11.053706] initcall init_ext3_fs+0x0/0x64 returned 0 after 432 usecs
[ 11.053706] calling journal_init+0x0/0x4c @ 1
[ 11.065043] initcall journal_init+0x0/0x4c returned 0 after 704 usecs
[ 11.065043] calling init_cramfs_fs+0x0/0x2a @ 1
[ 11.076830] initcall init_cramfs_fs+0x0/0x2a returned 0 after 24 usecs
[ 11.086830] calling init_squashfs_fs+0x0/0x5d @ 1
[ 11.086830] squashfs: version 4.0 (2009/01/31) Phillip Lougher
[ 11.094173] initcall init_squashfs_fs+0x0/0x5d returned 0 after 5848 usecs
[ 11.094173] calling init_ramfs_fs+0x0/0xf @ 1
[ 11.105499] initcall init_ramfs_fs+0x0/0xf returned 0 after 2 usecs
[ 11.105499] calling init_hugetlbfs_fs+0x0/0x82 @ 1
[ 11.116654] initcall init_hugetlbfs_fs+0x0/0x82 returned 0 after 332 usecs
[ 11.126654] calling init_coda+0x0/0x93 @ 1
[ 11.126654] device class 'coda': registering
[ 11.133882] device: 'cfs0': device_add
[ 11.133882] device: 'cfs1': device_add
[ 11.133882] device: 'cfs2': device_add
[ 11.144102] device: 'cfs3': device_add
[ 11.144102] device: 'cfs4': device_add
[ 11.144102] initcall init_coda+0x0/0x93 returned 0 after 23352 usecs
[ 11.158341] calling init_fat_fs+0x0/0x46 @ 1
[ 11.168341] initcall init_fat_fs+0x0/0x46 returned 0 after 318 usecs
[ 11.168341] calling init_msdos_fs+0x0/0xf @ 1
[ 11.173837] initcall init_msdos_fs+0x0/0xf returned 0 after 3 usecs
[ 11.173837] calling init_hfs_fs+0x0/0x50 @ 1
[ 11.184470] initcall init_hfs_fs+0x0/0x50 returned 0 after 152 usecs
[ 11.184470] calling init_nls_cp437+0x0/0xf @ 1
[ 11.195521] initcall init_nls_cp437+0x0/0xf returned 0 after 22 usecs
[ 11.195521] calling init_nls_cp737+0x0/0xf @ 1
[ 11.206527] initcall init_nls_cp737+0x0/0xf returned 0 after 2 usecs
[ 11.216527] calling init_nls_cp852+0x0/0xf @ 1
[ 11.216527] initcall init_nls_cp852+0x0/0xf returned 0 after 2 usecs
[ 11.223775] calling init_nls_cp857+0x0/0xf @ 1
[ 11.223775] initcall init_nls_cp857+0x0/0xf returned 0 after 2 usecs
[ 11.234668] calling init_nls_cp864+0x0/0xf @ 1
[ 11.234668] initcall init_nls_cp864+0x0/0xf returned 0 after 2 usecs
[ 11.245554] calling init_nls_cp932+0x0/0xf @ 1
[ 11.245554] initcall init_nls_cp932+0x0/0xf returned 0 after 2 usecs
[ 11.256439] calling init_nls_euc_jp+0x0/0x39 @ 1
[ 11.256439] initcall init_nls_euc_jp+0x0/0x39 returned 0 after 3 usecs
[ 11.267671] calling init_nls_cp950+0x0/0xf @ 1
[ 11.267671] initcall init_nls_cp950+0x0/0xf returned 0 after 2 usecs
[ 11.278556] calling init_nls_cp1250+0x0/0xf @ 1
[ 11.288556] initcall init_nls_cp1250+0x0/0xf returned 0 after 1 usecs
[ 11.288556] calling init_nls_ascii+0x0/0xf @ 1
[ 11.294158] initcall init_nls_ascii+0x0/0xf returned 0 after 2 usecs
[ 11.294158] calling init_nls_iso8859_4+0x0/0xf @ 1
[ 11.305398] initcall init_nls_iso8859_4+0x0/0xf returned 0 after 1 usecs
[ 11.305398] calling init_nls_iso8859_5+0x0/0xf @ 1
[ 11.316986] initcall init_nls_iso8859_5+0x0/0xf returned 0 after 2 usecs
[ 11.326986] calling init_nls_cp1255+0x0/0xf @ 1
[ 11.326986] initcall init_nls_cp1255+0x0/0xf returned 0 after 2 usecs
[ 11.334753] calling init_nls_koi8_r+0x0/0xf @ 1
[ 11.334753] initcall init_nls_koi8_r+0x0/0xf returned 0 after 2 usecs
[ 11.345811] calling init_sysv_fs+0x0/0x43 @ 1
[ 11.345811] initcall init_sysv_fs+0x0/0x43 returned 0 after 165 usecs
[ 11.356862] calling init_efs_fs+0x0/0x5f @ 1
[ 11.356862] EFS: 1.0a - http://aeschi.ch.eu.org/efs/
[ 11.366862] initcall init_efs_fs+0x0/0x5f returned 0 after 5017 usecs
[ 11.376196] calling logfs_init+0x0/0x58 @ 1
[ 11.376196] initcall logfs_init+0x0/0x58 returned 0 after 217 usecs
[ 11.383582] calling init_autofs_fs+0x0/0xf @ 1
[ 11.383582] initcall init_autofs_fs+0x0/0xf returned 0 after 3 usecs
[ 11.394475] calling init_adfs_fs+0x0/0x54 @ 1
[ 11.394475] initcall init_adfs_fs+0x0/0x54 returned 0 after 159 usecs
[ 11.405525] calling init_omfs_fs+0x0/0xf @ 1
[ 11.405525] initcall init_omfs_fs+0x0/0xf returned 0 after 3 usecs
[ 11.416073] calling init_befs_fs+0x0/0x6d @ 1
[ 11.416073] BeFS version: 0.9.3
[ 11.426073] initcall init_befs_fs+0x0/0x6d returned 0 after 3231 usecs
[ 11.426073] calling ipc_init+0x0/0x20 @ 1
[ 11.434456] msgmni has been set to 1707
[ 11.434456] initcall ipc_init+0x0/0x20 returned 0 after 3793 usecs
[ 11.444525] calling ipc_sysctl_init+0x0/0x11 @ 1
[ 11.444525] initcall ipc_sysctl_init+0x0/0x11 returned 0 after 140 usecs
[ 11.456069] calling init_mqueue_fs+0x0/0xa3 @ 1
[ 11.456069] initcall init_mqueue_fs+0x0/0xa3 returned 0 after 385 usecs
[ 11.467693] calling key_proc_init+0x0/0x2c @ 1
[ 11.467693] initcall key_proc_init+0x0/0x2c returned 0 after 12 usecs
[ 11.478682] calling crypto_wq_init+0x0/0x2f @ 1
[ 11.488682] initcall crypto_wq_init+0x0/0x2f returned 0 after 236 usecs
[ 11.488682] calling crypto_algapi_init+0x0/0xc @ 1
[ 11.505045] initcall crypto_algapi_init+0x0/0xc returned 0 after 44 usecs
[ 11.505045] calling skcipher_module_init+0x0/0x28 @ 1
[ 11.517030] initcall skcipher_module_init+0x0/0x28 returned 0 after 2 usecs
[ 11.524007] calling chainiv_module_init+0x0/0xf @ 1
[ 11.524007] initcall chainiv_module_init+0x0/0xf returned 0 after 10 usecs
[ 11.535863] calling eseqiv_module_init+0x0/0xf @ 1
[ 11.535863] initcall eseqiv_module_init+0x0/0xf returned 0 after 3 usecs
[ 11.547449] calling seqiv_module_init+0x0/0xf @ 1
[ 11.547449] initcall seqiv_module_init+0x0/0xf returned 0 after 3 usecs
[ 11.558856] calling hmac_module_init+0x0/0xf @ 1
[ 11.563571] initcall hmac_module_init+0x0/0xf returned 0 after 3 usecs
[ 11.563571] calling vmac_module_init+0x0/0xf @ 1
[ 11.574820] initcall vmac_module_init+0x0/0xf returned 0 after 3 usecs
[ 11.574820] calling crypto_xcbc_module_init+0x0/0xf @ 1
[ 11.586668] initcall crypto_xcbc_module_init+0x0/0xf returned 0 after 3 usecs
[ 11.593818] calling md5_mod_init+0x0/0xf @ 1
[ 11.593822] cryptomgr_test used greatest stack depth: 2872 bytes left
[ 11.593822] initcall md5_mod_init+0x0/0xf returned 0 after 193 usecs
[ 11.593822] calling rmd128_mod_init+0x0/0xf @ 1
[ 11.605787] cryptomgr_test used greatest stack depth: 2808 bytes left
[ 11.615780] initcall rmd128_mod_init+0x0/0xf returned 0 after 17037 usecs
[ 11.615780] calling rmd160_mod_init+0x0/0xf @ 1
[ 11.632537] cryptomgr_test used greatest stack depth: 2800 bytes left
[ 11.632537] initcall rmd160_mod_init+0x0/0xf returned 0 after 17410 usecs
[ 11.632537] calling rmd256_mod_init+0x0/0xf @ 1
[ 11.632537] initcall rmd256_mod_init+0x0/0xf returned 0 after 193 usecs
[ 11.632537] calling sha1_generic_mod_init+0x0/0xf @ 1
[ 11.653203] cryptomgr_test used greatest stack depth: 2772 bytes left
[ 11.663195] initcall sha1_generic_mod_init+0x0/0xf returned 0 after 28657 usecs
[ 11.663195] calling wp512_mod_init+0x0/0x52 @ 1
[ 11.672538] cryptomgr_test used greatest stack depth: 2740 bytes left
[ 11.688014] initcall wp512_mod_init+0x0/0x52 returned 0 after 24482 usecs
[ 11.688308] calling crypto_cbc_module_init+0x0/0xf @ 1
[ 11.688308] initcall crypto_cbc_module_init+0x0/0xf returned 0 after 3 usecs
[ 11.697406] calling crypto_pcbc_module_init+0x0/0xf @ 1
[ 11.707406] initcall crypto_pcbc_module_init+0x0/0xf returned 0 after 3 usecs
[ 11.707406] calling crypto_module_init+0x0/0xf @ 1
[ 11.714747] initcall crypto_module_init+0x0/0xf returned 0 after 2 usecs
[ 11.714747] calling crypto_module_init+0x0/0xf @ 1
[ 11.726335] initcall crypto_module_init+0x0/0xf returned 0 after 3 usecs
[ 11.736335] calling cryptd_init+0x0/0xb8 @ 1
[ 11.736335] initcall cryptd_init+0x0/0xb8 returned 0 after 8 usecs
[ 11.743600] calling des_generic_mod_init+0x0/0x33 @ 1
[ 11.749069] initcall des_generic_mod_init+0x0/0x33 returned 0 after 327 usecs
[ 11.766219] calling blowfish_mod_init+0x0/0xf @ 1
[ 11.766224] initcall blowfish_mod_init+0x0/0xf returned 0 after 794 usecs
[ 11.771819] calling serpent_mod_init+0x0/0x33 @ 1
[ 11.778621] initcall serpent_mod_init+0x0/0x33 returned 0 after 383 usecs
[ 11.778621] calling aes_init+0x0/0xf @ 1
[ 11.794677] initcall aes_init+0x0/0xf returned 0 after 183 usecs
[ 11.794677] calling camellia_init+0x0/0xf @ 1
[ 11.795563] initcall camellia_init+0x0/0xf returned 0 after 185 usecs
[ 11.795563] calling tea_mod_init+0x0/0x52 @ 1
[ 11.816464] initcall tea_mod_init+0x0/0x52 returned 0 after 485 usecs
[ 11.816969] calling anubis_mod_init+0x0/0xf @ 1
[ 11.818258] initcall anubis_mod_init+0x0/0xf returned 0 after 220 usecs
[ 11.834884] calling salsa20_generic_mod_init+0x0/0xf @ 1
[ 11.834889] initcall salsa20_generic_mod_init+0x0/0xf returned 0 after 118 usecs
[ 11.840399] calling deflate_mod_init+0x0/0xf @ 1
[ 11.852547] initcall deflate_mod_init+0x0/0xf returned 0 after 660 usecs
[ 11.852547] calling zlib_mod_init+0x0/0xf @ 1
[ 11.864374] cryptomgr_test used greatest stack depth: 2504 bytes left
[ 11.864374] initcall zlib_mod_init+0x0/0xf returned 0 after 940 usecs
[ 11.864374] calling michael_mic_init+0x0/0xf @ 1
[ 11.864374] initcall michael_mic_init+0x0/0xf returned 0 after 206 usecs
[ 11.864374] calling crc32c_mod_init+0x0/0xf @ 1
[ 11.864374] initcall crc32c_mod_init+0x0/0xf returned 0 after 231 usecs
[ 11.864374] calling crypto_authenc_module_init+0x0/0xf @ 1
[ 11.864374] initcall crypto_authenc_module_init+0x0/0xf returned 0 after 4 usecs
[ 11.864374] calling lzo_mod_init+0x0/0xf @ 1
[ 11.864374] initcall lzo_mod_init+0x0/0xf returned 0 after 163 usecs
[ 11.864374] calling krng_mod_init+0x0/0xf @ 1
[ 11.864374] alg: No test for stdrng (krng)
[ 11.864374] initcall krng_mod_init+0x0/0xf returned 0 after 125 usecs
[ 11.864374] calling proc_genhd_init+0x0/0x31 @ 1
[ 11.864374] initcall proc_genhd_init+0x0/0x31 returned 0 after 29 usecs
[ 11.864374] calling noop_init+0x0/0x11 @ 1
[ 11.864374] io scheduler noop registered (default)
[ 11.864374] initcall noop_init+0x0/0x11 returned 0 after 41 usecs
[ 11.864374] calling btree_module_init+0x0/0x24 @ 1
[ 11.864374] initcall btree_module_init+0x0/0x24 returned 0 after 209 usecs
[ 11.864374] calling debug_objects_init_debugfs+0x0/0x57 @ 1
[ 11.864374] initcall debug_objects_init_debugfs+0x0/0x57 returned 0 after 56 usecs
[ 11.864374] calling libcrc32c_mod_init+0x0/0x29 @ 1
[ 11.864374] initcall libcrc32c_mod_init+0x0/0x29 returned 0 after 5 usecs
[ 11.864374] calling init_kmp+0x0/0xf @ 1
[ 11.864374] initcall init_kmp+0x0/0xf returned 0 after 25 usecs
[ 11.864374] calling init_bm+0x0/0xf @ 1
[ 11.864374] initcall init_bm+0x0/0xf returned 0 after 2 usecs
[ 11.864374] calling init_fsm+0x0/0xf @ 1
[ 11.864374] initcall init_fsm+0x0/0xf returned 0 after 2 usecs
[ 11.864374] calling percpu_counter_startup+0x0/0x16 @ 1
[ 11.864374] initcall percpu_counter_startup+0x0/0x16 returned 0 after 4 usecs
[ 11.864374] calling err_inject_init+0x0/0x19 @ 1
[ 11.864374] initcall err_inject_init+0x0/0x19 returned 0 after 2 usecs
[ 11.864374] calling dynamic_debug_init+0x0/0xfb @ 1
[ 11.864374] initcall dynamic_debug_init+0x0/0xfb returned 0 after 503 usecs
[ 11.864374] calling adp5588_gpio_init+0x0/0x11 @ 1
[ 11.864374] bus: 'i2c': add driver adp5588-gpio
[ 11.864374] i2c-core: driver [adp5588-gpio] registered
[ 11.864374] initcall adp5588_gpio_init+0x0/0x11 returned 0 after 80 usecs
[ 11.864374] calling lnw_gpio_init+0x0/0x16 @ 1
[ 11.864374] bus: 'pci': add driver langwell_gpio
[ 11.864374] initcall lnw_gpio_init+0x0/0x16 returned 0 after 138 usecs
[ 11.864374] calling sch_gpio_init+0x0/0xf @ 1
[ 11.864374] bus: 'platform': add driver sch_gpio
[ 11.864374] initcall sch_gpio_init+0x0/0xf returned 0 after 72 usecs
[ 11.864374] calling pci_proc_init+0x0/0x5b @ 1
[ 11.864374] initcall pci_proc_init+0x0/0x5b returned 0 after 339 usecs
[ 11.864374] calling ioapic_init+0x0/0x16 @ 1
[ 11.864374] bus: 'pci': add driver ioapic
[ 11.864374] initcall ioapic_init+0x0/0x16 returned 0 after 112 usecs
[ 11.864374] calling pci_hotplug_init+0x0/0x41 @ 1
[ 11.864374] pci_hotplug: PCI Hot Plug PCI Core version: 0.5
[ 11.864374] initcall pci_hotplug_init+0x0/0x41 returned 0 after 4 usecs
[ 11.864374] calling cpcihp_generic_init+0x0/0x1f3 @ 1
[ 11.864374] cpcihp_generic: Generic port I/O CompactPCI Hot Plug Driver version: 0.1
[ 11.864374] cpcihp_generic: not configured, disabling.
[ 11.864374] initcall cpcihp_generic_init+0x0/0x1f3 returned -22 after 6 usecs
[ 11.864374] initcall cpcihp_generic_init+0x0/0x1f3 returned with error code -22
[ 11.864374] calling init_legacy+0x0/0x36 @ 1
[ 11.864374] initcall init_legacy+0x0/0x36 returned 0 after 321 usecs
[ 11.864374] calling pci_stub_init+0x0/0xf2 @ 1
[ 11.864374] bus: 'pci': add driver pci-stub
[ 11.864374] pci-stub: invalid id string ""
[ 11.864374] initcall pci_stub_init+0x0/0xf2 returned 0 after 105 usecs
[ 11.864374] calling progearbl_init+0x0/0x49 @ 1
[ 11.864374] bus: 'platform': add driver progear-bl
[ 11.864374] Registering platform device 'progear-bl'. Parent at platform
[ 11.864374] device: 'progear-bl': device_add
[ 11.864374] bus: 'platform': add device progear-bl
[ 11.864374] bus: 'platform': driver_probe_device: matched device progear-bl with driver progear-bl
[ 11.864374] bus: 'platform': really_probe: probing driver progear-bl with device progear-bl
[ 11.864374] ALI M7101 PMU not found.
[ 11.864374] initcall progearbl_init+0x0/0x49 returned 0 after 284 usecs
[ 11.864374] calling pm2fb_init+0x0/0x40 @ 1
[ 11.864374] bus: 'pci': add driver pm2fb
[ 11.864374] initcall pm2fb_init+0x0/0x40 returned 0 after 106 usecs
[ 11.864374] calling pm3fb_init+0x0/0x40 @ 1
[ 11.864374] bus: 'pci': add driver pm3fb
[ 11.864374] initcall pm3fb_init+0x0/0x40 returned 0 after 130 usecs
[ 11.864374] calling matroxfb_init+0x0/0x61 @ 1
[ 11.864374] bus: 'pci': add driver matroxfb
[ 11.864374] initcall matroxfb_init+0x0/0x61 returned 0 after 105 usecs
[ 11.864374] calling rivafb_init+0x0/0x45 @ 1
[ 11.864374] rivafb_setup START
[ 11.864374] bus: 'pci': add driver rivafb
[ 11.864374] initcall rivafb_init+0x0/0x45 returned 0 after 110 usecs
[ 11.864374] calling atyfb_init+0x0/0x62 @ 1
[ 11.864374] bus: 'pci': add driver atyfb
[ 11.864374] initcall atyfb_init+0x0/0x62 returned 0 after 108 usecs
[ 11.864374] calling savagefb_init+0x0/0x60 @ 1
[ 11.864374] bus: 'pci': add driver savagefb
[ 11.864374] initcall savagefb_init+0x0/0x60 returned 0 after 105 usecs
[ 11.864374] calling gxfb_init+0x0/0x6c @ 1
[ 11.864374] bus: 'pci': add driver gxfb
[ 11.864374] initcall gxfb_init+0x0/0x6c returned 0 after 103 usecs
[ 11.864374] calling lxfb_init+0x0/0x40 @ 1
[ 11.864374] bus: 'pci': add driver lxfb
[ 11.864374] initcall lxfb_init+0x0/0x40 returned 0 after 111 usecs
[ 11.864374] calling neofb_init+0x0/0x40 @ 1
[ 11.864374] bus: 'pci': add driver neofb
[ 11.864374] initcall neofb_init+0x0/0x40 returned 0 after 103 usecs
[ 11.864374] calling tdfxfb_init+0x0/0x40 @ 1
[ 11.864374] bus: 'pci': add driver tdfxfb
[ 11.864374] initcall tdfxfb_init+0x0/0x40 returned 0 after 132 usecs
[ 11.864374] calling tridentfb_init+0x0/0x40 @ 1
[ 11.864374] bus: 'pci': add driver tridentfb
[ 11.864374] initcall tridentfb_init+0x0/0x40 returned 0 after 105 usecs
[ 11.864374] calling s3fb_init+0x0/0x6c @ 1
[ 11.864374] bus: 'pci': add driver s3fb
[ 11.864374] initcall s3fb_init+0x0/0x6c returned 0 after 123 usecs
[ 11.864374] calling metronomefb_init+0x0/0xf @ 1
[ 11.864374] bus: 'platform': add driver metronomefb
[ 11.864374] initcall metronomefb_init+0x0/0xf returned 0 after 80 usecs
[ 11.864374] calling s1d13xxxfb_init+0x0/0x26 @ 1
[ 11.864374] bus: 'platform': add driver s1d13xxxfb
[ 11.864374] initcall s1d13xxxfb_init+0x0/0x26 returned 0 after 80 usecs
[ 11.864374] calling efifb_init+0x0/0x7b @ 1
[ 11.864374] initcall efifb_init+0x0/0x7b returned -19 after 10 usecs
[ 11.864374] calling acpi_reserve_resources+0x0/0xc8 @ 1
[ 11.864374] initcall acpi_reserve_resources+0x0/0xc8 returned 0 after 15 usecs
[ 11.864374] calling irqrouter_init_sysfs+0x0/0x33 @ 1
[ 11.864374] Registering sysdev class 'irqrouter'
[ 11.864374] Registering sys device of class 'irqrouter'
[ 11.864374] Registering sys device 'irqrouter0'
[ 11.864374] initcall irqrouter_init_sysfs+0x0/0x33 returned 0 after 115 usecs
[ 11.864374] calling acpi_fan_init+0x0/0x4a @ 1
[ 11.864374] bus: 'acpi': add driver fan
[ 11.864374] bus: 'acpi': driver_probe_device: matched device PNP0C0B:00 with driver fan
[ 11.864374] bus: 'acpi': really_probe: probing driver fan with device PNP0C0B:00
[ 11.864374] device: 'cooling_device0': device_add
[ 11.864374] ACPI: Fan [FAN] (on)
[ 11.864374] driver: 'PNP0C0B:00': driver_bound: bound to device 'fan'
[ 11.864374] bus: 'acpi': really_probe: bound device PNP0C0B:00 to driver fan
[ 11.864374] initcall acpi_fan_init+0x0/0x4a returned 0 after 528 usecs
[ 11.864374] calling acpi_battery_init+0x0/0x13 @ 1
[ 11.864374] initcall acpi_battery_init+0x0/0x13 returned 0 after 33 usecs
[ 11.864374] calling isapnp_init+0x0/0x296 @ 1
[ 11.864374] device: 'pnp1': device_add
[ 11.864374] isapnp: Scanning for PnP cards...
[ 12.212556] isapnp: No Plug & Play device found
[ 12.212556] initcall isapnp_init+0x0/0x296 returned 0 after 347479 usecs
[ 12.212556] calling rand_initialize+0x0/0x2a @ 1
[ 12.212556] initcall rand_initialize+0x0/0x2a returned 0 after 90 usecs
[ 12.212556] calling tty_init+0x0/0xd5 @ 1
[ 12.212556] device: 'tty': device_add
[ 12.212556] device: 'console': device_add
[ 12.212556] device: 'tty0': device_add
[ 12.212556] device class 'vc': registering
[ 12.212556] device: 'vcs': device_add
[ 12.212556] device: 'vcsa': device_add
[ 12.212556] device: 'vcs1': device_add
[ 12.212556] device: 'vcsa1': device_add
[ 12.212556] device: 'tty1': device_add
[ 12.212556] device: 'tty2': device_add
[ 12.212556] device: 'tty3': device_add
[ 12.212556] device: 'tty4': device_add
[ 12.212556] device: 'tty5': device_add
[ 12.212556] device: 'tty6': device_add
[ 12.212556] device: 'tty7': device_add
[ 12.212556] device: 'tty8': device_add
[ 12.212556] device: 'tty9': device_add
[ 12.212556] device: 'tty10': device_add
[ 12.212556] device: 'tty11': device_add
[ 12.212556] device: 'tty12': device_add
[ 12.212556] device: 'tty13': device_add
[ 12.212556] device: 'tty14': device_add
[ 12.212556] device: 'tty15': device_add
[ 12.212556] device: 'tty16': device_add
[ 12.212556] device: 'tty17': device_add
[ 12.212556] device: 'tty18': device_add
[ 12.212556] device: 'tty19': device_add
[ 12.212556] device: 'tty20': device_add
[ 12.212556] device: 'tty21': device_add
[ 12.212556] device: 'tty22': device_add
[ 12.212556] device: 'tty23': device_add
[ 12.212556] device: 'tty24': device_add
[ 12.212556] device: 'tty25': device_add
[ 12.212556] device: 'tty26': device_add
[ 12.212556] device: 'tty27': device_add
[ 12.212556] device: 'tty28': device_add
[ 12.212556] device: 'tty29': device_add
[ 12.212556] device: 'tty30': device_add
[ 12.212556] device: 'tty31': device_add
[ 12.212556] device: 'tty32': device_add
[ 12.212556] device: 'tty33': device_add
[ 12.212556] device: 'tty34': device_add
[ 12.212556] device: 'tty35': device_add
[ 12.212556] device: 'tty36': device_add
[ 12.222558] device: 'tty37': device_add
[ 12.222558] device: 'tty38': device_add
[ 12.222558] device: 'tty39': device_add
[ 12.222558] device: 'tty40': device_add
[ 12.222558] device: 'tty41': device_add
[ 12.222558] device: 'tty42': device_add
[ 12.222558] device: 'tty43': device_add
[ 12.222558] device: 'tty44': device_add
[ 12.222558] device: 'tty45': device_add
[ 12.222558] device: 'tty46': device_add
[ 12.222558] device: 'tty47': device_add
[ 12.222558] device: 'tty48': device_add
[ 12.222558] device: 'tty49': device_add
[ 12.222558] device: 'tty50': device_add
[ 12.222558] device: 'tty51': device_add
[ 12.222558] device: 'tty52': device_add
[ 12.222558] device: 'tty53': device_add
[ 12.222558] device: 'tty54': device_add
[ 12.222558] device: 'tty55': device_add
[ 12.222558] device: 'tty56': device_add
[ 12.222558] device: 'tty57': device_add
[ 12.222558] device: 'tty58': device_add
[ 12.222558] device: 'tty59': device_add
[ 12.222558] device: 'tty60': device_add
[ 12.222558] device: 'tty61': device_add
[ 12.222558] device: 'tty62': device_add
[ 12.222558] device: 'tty63': device_add
[ 12.222558] initcall tty_init+0x0/0xd5 returned 0 after 8853 usecs
[ 12.222558] calling pty_init+0x0/0x11 @ 1
[ 12.222558] device: 'ptyp0': device_add
[ 12.222558] device: 'ptyp1': device_add
[ 12.222558] device: 'ptyp2': device_add
[ 12.222558] device: 'ptyp3': device_add
[ 12.222558] device: 'ptyp4': device_add
[ 12.222558] device: 'ptyp5': device_add
[ 12.222558] device: 'ptyp6': device_add
[ 12.222558] device: 'ptyp7': device_add
[ 12.222558] device: 'ptyp8': device_add
[ 12.222558] device: 'ptyp9': device_add
[ 12.222558] device: 'ptypa': device_add
[ 12.222558] device: 'ptypb': device_add
[ 12.222558] device: 'ptypc': device_add
[ 12.222558] device: 'ptypd': device_add
[ 12.222558] device: 'ptype': device_add
[ 12.222558] device: 'ptypf': device_add
[ 12.222558] device: 'ptyq0': device_add
[ 12.222558] device: 'ptyq1': device_add
[ 12.222558] device: 'ptyq2': device_add
[ 12.222558] device: 'ptyq3': device_add
[ 12.222558] device: 'ptyq4': device_add
[ 12.222558] device: 'ptyq5': device_add
[ 12.222558] device: 'ptyq6': device_add
[ 12.222558] device: 'ptyq7': device_add
[ 12.222558] device: 'ptyq8': device_add
[ 12.222558] device: 'ptyq9': device_add
[ 12.222558] device: 'ptyqa': device_add
[ 12.222558] device: 'ptyqb': device_add
[ 12.222558] device: 'ptyqc': device_add
[ 12.222558] device: 'ptyqd': device_add
[ 12.222558] device: 'ptyqe': device_add
[ 12.222558] device: 'ptyqf': device_add
[ 12.222558] device: 'ptyr0': device_add
[ 12.222558] device: 'ptyr1': device_add
[ 12.222558] device: 'ptyr2': device_add
[ 12.222558] device: 'ptyr3': device_add
[ 12.222558] device: 'ptyr4': device_add
[ 12.222558] device: 'ptyr5': device_add
[ 12.222558] device: 'ptyr6': device_add
[ 12.222558] device: 'ptyr7': device_add
[ 12.222558] device: 'ptyr8': device_add
[ 12.222558] device: 'ptyr9': device_add
[ 12.222558] device: 'ptyra': device_add
[ 12.222558] device: 'ptyrb': device_add
[ 12.222558] device: 'ptyrc': device_add
[ 12.222558] device: 'ptyrd': device_add
[ 12.222558] device: 'ptyre': device_add
[ 12.222558] device: 'ptyrf': device_add
[ 12.222558] device: 'ptys0': device_add
[ 12.222558] device: 'ptys1': device_add
[ 12.222558] device: 'ptys2': device_add
[ 12.222558] device: 'ptys3': device_add
[ 12.232561] device: 'ptys4': device_add
[ 12.232561] device: 'ptys5': device_add
[ 12.232561] device: 'ptys6': device_add
[ 12.232561] device: 'ptys7': device_add
[ 12.232561] device: 'ptys8': device_add
[ 12.232561] device: 'ptys9': device_add
[ 12.232561] device: 'ptysa': device_add
[ 12.232561] device: 'ptysb': device_add
[ 12.232561] device: 'ptysc': device_add
[ 12.232561] device: 'ptysd': device_add
[ 12.232561] device: 'ptyse': device_add
[ 12.232561] device: 'ptysf': device_add
[ 12.232561] device: 'ptyt0': device_add
[ 12.232561] device: 'ptyt1': device_add
[ 12.232561] device: 'ptyt2': device_add
[ 12.232561] device: 'ptyt3': device_add
[ 12.232561] device: 'ptyt4': device_add
[ 12.232561] device: 'ptyt5': device_add
[ 12.232561] device: 'ptyt6': device_add
[ 12.232561] device: 'ptyt7': device_add
[ 12.232561] device: 'ptyt8': device_add
[ 12.232561] device: 'ptyt9': device_add
[ 12.232561] device: 'ptyta': device_add
[ 12.232561] device: 'ptytb': device_add
[ 12.232561] device: 'ptytc': device_add
[ 12.232561] device: 'ptytd': device_add
[ 12.232561] device: 'ptyte': device_add
[ 12.232561] device: 'ptytf': device_add
[ 12.232561] device: 'ptyu0': device_add
[ 12.232561] device: 'ptyu1': device_add
[ 12.232561] device: 'ptyu2': device_add
[ 12.232561] device: 'ptyu3': device_add
[ 12.232561] device: 'ptyu4': device_add
[ 12.232561] device: 'ptyu5': device_add
[ 12.232561] device: 'ptyu6': device_add
[ 12.232561] device: 'ptyu7': device_add
[ 12.232561] device: 'ptyu8': device_add
[ 12.232561] device: 'ptyu9': device_add
[ 12.232561] device: 'ptyua': device_add
[ 12.232561] device: 'ptyub': device_add
[ 12.232561] device: 'ptyuc': device_add
[ 12.232561] device: 'ptyud': device_add
[ 12.232561] device: 'ptyue': device_add
[ 12.232561] device: 'ptyuf': device_add
[ 12.232561] device: 'ptyv0': device_add
[ 12.232561] device: 'ptyv1': device_add
[ 12.232561] device: 'ptyv2': device_add
[ 12.232561] device: 'ptyv3': device_add
[ 12.232561] device: 'ptyv4': device_add
[ 12.232561] device: 'ptyv5': device_add
[ 12.232561] device: 'ptyv6': device_add
[ 12.232561] device: 'ptyv7': device_add
[ 12.232561] device: 'ptyv8': device_add
[ 12.232561] device: 'ptyv9': device_add
[ 12.232561] device: 'ptyva': device_add
[ 12.232561] device: 'ptyvb': device_add
[ 12.232561] device: 'ptyvc': device_add
[ 12.232561] device: 'ptyvd': device_add
[ 12.232561] device: 'ptyve': device_add
[ 12.232561] device: 'ptyvf': device_add
[ 12.232561] device: 'ptyw0': device_add
[ 12.232561] device: 'ptyw1': device_add
[ 12.232561] device: 'ptyw2': device_add
[ 12.232561] device: 'ptyw3': device_add
[ 12.232561] device: 'ptyw4': device_add
[ 12.232561] device: 'ptyw5': device_add
[ 12.232561] device: 'ptyw6': device_add
[ 12.232561] device: 'ptyw7': device_add
[ 12.232561] device: 'ptyw8': device_add
[ 12.232561] device: 'ptyw9': device_add
[ 12.232561] device: 'ptywa': device_add
[ 12.232561] device: 'ptywb': device_add
[ 12.232561] device: 'ptywc': device_add
[ 12.232561] device: 'ptywd': device_add
[ 12.232561] device: 'ptywe': device_add
[ 12.232561] device: 'ptywf': device_add
[ 12.232561] device: 'ptyx0': device_add
[ 12.232561] device: 'ptyx1': device_add
[ 12.242563] device: 'ptyx2': device_add
[ 12.242563] device: 'ptyx3': device_add
[ 12.242563] device: 'ptyx4': device_add
[ 12.242563] device: 'ptyx5': device_add
[ 12.242563] device: 'ptyx6': device_add
[ 12.242563] device: 'ptyx7': device_add
[ 12.242563] device: 'ptyx8': device_add
[ 12.242563] device: 'ptyx9': device_add
[ 12.242563] device: 'ptyxa': device_add
[ 12.242563] device: 'ptyxb': device_add
[ 12.242563] device: 'ptyxc': device_add
[ 12.242563] device: 'ptyxd': device_add
[ 12.242563] device: 'ptyxe': device_add
[ 12.242563] device: 'ptyxf': device_add
[ 12.242563] device: 'ptyy0': device_add
[ 12.242563] device: 'ptyy1': device_add
[ 12.242563] device: 'ptyy2': device_add
[ 12.242563] device: 'ptyy3': device_add
[ 12.242563] device: 'ptyy4': device_add
[ 12.242563] device: 'ptyy5': device_add
[ 12.242563] device: 'ptyy6': device_add
[ 12.242563] device: 'ptyy7': device_add
[ 12.242563] device: 'ptyy8': device_add
[ 12.242563] device: 'ptyy9': device_add
[ 12.242563] device: 'ptyya': device_add
[ 12.242563] device: 'ptyyb': device_add
[ 12.242563] device: 'ptyyc': device_add
[ 12.242563] device: 'ptyyd': device_add
[ 12.242563] device: 'ptyye': device_add
[ 12.242563] device: 'ptyyf': device_add
[ 12.242563] device: 'ptyz0': device_add
[ 12.242563] device: 'ptyz1': device_add
[ 12.242563] device: 'ptyz2': device_add
[ 12.242563] device: 'ptyz3': device_add
[ 12.242563] device: 'ptyz4': device_add
[ 12.242563] device: 'ptyz5': device_add
[ 12.242563] device: 'ptyz6': device_add
[ 12.242563] device: 'ptyz7': device_add
[ 12.242563] device: 'ptyz8': device_add
[ 12.242563] device: 'ptyz9': device_add
[ 12.242563] device: 'ptyza': device_add
[ 12.242563] device: 'ptyzb': device_add
[ 12.242563] device: 'ptyzc': device_add
[ 12.242563] device: 'ptyzd': device_add
[ 12.242563] device: 'ptyze': device_add
[ 12.242563] device: 'ptyzf': device_add
[ 12.242563] device: 'ptya0': device_add
[ 12.242563] device: 'ptya1': device_add
[ 12.242563] device: 'ptya2': device_add
[ 12.242563] device: 'ptya3': device_add
[ 12.242563] device: 'ptya4': device_add
[ 12.242563] device: 'ptya5': device_add
[ 12.242563] device: 'ptya6': device_add
[ 12.242563] device: 'ptya7': device_add
[ 12.242563] device: 'ptya8': device_add
[ 12.242563] device: 'ptya9': device_add
[ 12.242563] device: 'ptyaa': device_add
[ 12.242563] device: 'ptyab': device_add
[ 12.242563] device: 'ptyac': device_add
[ 12.242563] device: 'ptyad': device_add
[ 12.242563] device: 'ptyae': device_add
[ 12.242563] device: 'ptyaf': device_add
[ 12.242563] device: 'ptyb0': device_add
[ 12.242563] device: 'ptyb1': device_add
[ 12.242563] device: 'ptyb2': device_add
[ 12.242563] device: 'ptyb3': device_add
[ 12.242563] device: 'ptyb4': device_add
[ 12.242563] device: 'ptyb5': device_add
[ 12.242563] device: 'ptyb6': device_add
[ 12.242563] device: 'ptyb7': device_add
[ 12.242563] device: 'ptyb8': device_add
[ 12.242563] device: 'ptyb9': device_add
[ 12.242563] device: 'ptyba': device_add
[ 12.242563] device: 'ptybb': device_add
[ 12.242563] device: 'ptybc': device_add
[ 12.242563] device: 'ptybd': device_add
[ 12.252563] device: 'ptybe': device_add
[ 12.252563] device: 'ptybf': device_add
[ 12.252563] device: 'ptyc0': device_add
[ 12.252563] device: 'ptyc1': device_add
[ 12.252563] device: 'ptyc2': device_add
[ 12.252563] device: 'ptyc3': device_add
[ 12.252563] device: 'ptyc4': device_add
[ 12.252563] device: 'ptyc5': device_add
[ 12.252563] device: 'ptyc6': device_add
[ 12.252563] device: 'ptyc7': device_add
[ 12.252563] device: 'ptyc8': device_add
[ 12.252563] device: 'ptyc9': device_add
[ 12.252563] device: 'ptyca': device_add
[ 12.252563] device: 'ptycb': device_add
[ 12.252563] device: 'ptycc': device_add
[ 12.252563] device: 'ptycd': device_add
[ 12.252563] device: 'ptyce': device_add
[ 12.252563] device: 'ptycf': device_add
[ 12.252563] device: 'ptyd0': device_add
[ 12.252563] device: 'ptyd1': device_add
[ 12.252563] device: 'ptyd2': device_add
[ 12.252563] device: 'ptyd3': device_add
[ 12.252563] device: 'ptyd4': device_add
[ 12.252563] device: 'ptyd5': device_add
[ 12.252563] device: 'ptyd6': device_add
[ 12.252563] device: 'ptyd7': device_add
[ 12.252563] device: 'ptyd8': device_add
[ 12.252563] device: 'ptyd9': device_add
[ 12.252563] device: 'ptyda': device_add
[ 12.252563] device: 'ptydb': device_add
[ 12.252563] device: 'ptydc': device_add
[ 12.252563] device: 'ptydd': device_add
[ 12.252563] device: 'ptyde': device_add
[ 12.252563] device: 'ptydf': device_add
[ 12.252563] device: 'ptye0': device_add
[ 12.252563] device: 'ptye1': device_add
[ 12.252563] device: 'ptye2': device_add
[ 12.252563] device: 'ptye3': device_add
[ 12.252563] device: 'ptye4': device_add
[ 12.252563] device: 'ptye5': device_add
[ 12.252563] device: 'ptye6': device_add
[ 12.252563] device: 'ptye7': device_add
[ 12.252563] device: 'ptye8': device_add
[ 12.252563] device: 'ptye9': device_add
[ 12.252563] device: 'ptyea': device_add
[ 12.252563] device: 'ptyeb': device_add
[ 12.252563] device: 'ptyec': device_add
[ 12.252563] device: 'ptyed': device_add
[ 12.252563] device: 'ptyee': device_add
[ 12.252563] device: 'ptyef': device_add
[ 12.252563] device: 'ttyp0': device_add
[ 12.252563] device: 'ttyp1': device_add
[ 12.252563] device: 'ttyp2': device_add
[ 12.252563] device: 'ttyp3': device_add
[ 12.252563] device: 'ttyp4': device_add
[ 12.252563] device: 'ttyp5': device_add
[ 12.252563] device: 'ttyp6': device_add
[ 12.252563] device: 'ttyp7': device_add
[ 12.252563] device: 'ttyp8': device_add
[ 12.252563] device: 'ttyp9': device_add
[ 12.252563] device: 'ttypa': device_add
[ 12.252563] device: 'ttypb': device_add
[ 12.252563] device: 'ttypc': device_add
[ 12.252563] device: 'ttypd': device_add
[ 12.252563] device: 'ttype': device_add
[ 12.252563] device: 'ttypf': device_add
[ 12.252563] device: 'ttyq0': device_add
[ 12.252563] device: 'ttyq1': device_add
[ 12.252563] device: 'ttyq2': device_add
[ 12.252563] device: 'ttyq3': device_add
[ 12.252563] device: 'ttyq4': device_add
[ 12.252563] device: 'ttyq5': device_add
[ 12.252563] device: 'ttyq6': device_add
[ 12.252563] device: 'ttyq7': device_add
[ 12.262562] device: 'ttyq8': device_add
[ 12.262562] device: 'ttyq9': device_add
[ 12.262562] device: 'ttyqa': device_add
[ 12.262562] device: 'ttyqb': device_add
[ 12.262562] device: 'ttyqc': device_add
[ 12.262562] device: 'ttyqd': device_add
[ 12.262562] device: 'ttyqe': device_add
[ 12.262562] device: 'ttyqf': device_add
[ 12.262562] device: 'ttyr0': device_add
[ 12.262562] device: 'ttyr1': device_add
[ 12.262562] device: 'ttyr2': device_add
[ 12.262562] device: 'ttyr3': device_add
[ 12.262562] device: 'ttyr4': device_add
[ 12.262562] device: 'ttyr5': device_add
[ 12.262562] device: 'ttyr6': device_add
[ 12.262562] device: 'ttyr7': device_add
[ 12.262562] device: 'ttyr8': device_add
[ 12.262562] device: 'ttyr9': device_add
[ 12.262562] device: 'ttyra': device_add
[ 12.262562] device: 'ttyrb': device_add
[ 12.262562] device: 'ttyrc': device_add
[ 12.262562] device: 'ttyrd': device_add
[ 12.262562] device: 'ttyre': device_add
[ 12.262562] device: 'ttyrf': device_add
[ 12.262562] device: 'ttys0': device_add
[ 12.262562] device: 'ttys1': device_add
[ 12.262562] device: 'ttys2': device_add
[ 12.262562] device: 'ttys3': device_add
[ 12.262562] device: 'ttys4': device_add
[ 12.262562] device: 'ttys5': device_add
[ 12.262562] device: 'ttys6': device_add
[ 12.262562] device: 'ttys7': device_add
[ 12.262562] device: 'ttys8': device_add
[ 12.262562] device: 'ttys9': device_add
[ 12.262562] device: 'ttysa': device_add
[ 12.262562] device: 'ttysb': device_add
[ 12.262562] device: 'ttysc': device_add
[ 12.262562] device: 'ttysd': device_add
[ 12.262562] device: 'ttyse': device_add
[ 12.262562] device: 'ttysf': device_add
[ 12.262562] device: 'ttyt0': device_add
[ 12.262562] device: 'ttyt1': device_add
[ 12.262562] device: 'ttyt2': device_add
[ 12.262562] device: 'ttyt3': device_add
[ 12.262562] device: 'ttyt4': device_add
[ 12.262562] device: 'ttyt5': device_add
[ 12.262562] device: 'ttyt6': device_add
[ 12.262562] device: 'ttyt7': device_add
[ 12.262562] device: 'ttyt8': device_add
[ 12.262562] device: 'ttyt9': device_add
[ 12.262562] device: 'ttyta': device_add
[ 12.262562] device: 'ttytb': device_add
[ 12.262562] device: 'ttytc': device_add
[ 12.262562] device: 'ttytd': device_add
[ 12.262562] device: 'ttyte': device_add
[ 12.262562] device: 'ttytf': device_add
[ 12.262562] device: 'ttyu0': device_add
[ 12.262562] device: 'ttyu1': device_add
[ 12.262562] device: 'ttyu2': device_add
[ 12.262562] device: 'ttyu3': device_add
[ 12.262562] device: 'ttyu4': device_add
[ 12.262562] device: 'ttyu5': device_add
[ 12.262562] device: 'ttyu6': device_add
[ 12.262562] device: 'ttyu7': device_add
[ 12.262562] device: 'ttyu8': device_add
[ 12.262562] device: 'ttyu9': device_add
[ 12.262562] device: 'ttyua': device_add
[ 12.262562] device: 'ttyub': device_add
[ 12.262562] device: 'ttyuc': device_add
[ 12.262562] device: 'ttyud': device_add
[ 12.262562] device: 'ttyue': device_add
[ 12.262562] device: 'ttyuf': device_add
[ 12.262562] device: 'ttyv0': device_add
[ 12.272563] device: 'ttyv1': device_add
[ 12.272563] device: 'ttyv2': device_add
[ 12.272563] device: 'ttyv3': device_add
[ 12.272563] device: 'ttyv4': device_add
[ 12.272563] device: 'ttyv5': device_add
[ 12.272563] device: 'ttyv6': device_add
[ 12.272563] device: 'ttyv7': device_add
[ 12.272563] device: 'ttyv8': device_add
[ 12.272563] device: 'ttyv9': device_add
[ 12.272563] device: 'ttyva': device_add
[ 12.272563] device: 'ttyvb': device_add
[ 12.272563] device: 'ttyvc': device_add
[ 12.272563] device: 'ttyvd': device_add
[ 12.272563] device: 'ttyve': device_add
[ 12.272563] device: 'ttyvf': device_add
[ 12.272563] device: 'ttyw0': device_add
[ 12.272563] device: 'ttyw1': device_add
[ 12.272563] device: 'ttyw2': device_add
[ 12.272563] device: 'ttyw3': device_add
[ 12.272563] device: 'ttyw4': device_add
[ 12.272563] device: 'ttyw5': device_add
[ 12.272563] device: 'ttyw6': device_add
[ 12.272563] device: 'ttyw7': device_add
[ 12.272563] device: 'ttyw8': device_add
[ 12.272563] device: 'ttyw9': device_add
[ 12.272563] device: 'ttywa': device_add
[ 12.272563] device: 'ttywb': device_add
[ 12.272563] device: 'ttywc': device_add
[ 12.272563] device: 'ttywd': device_add
[ 12.272563] device: 'ttywe': device_add
[ 12.272563] device: 'ttywf': device_add
[ 12.272563] device: 'ttyx0': device_add
[ 12.272563] device: 'ttyx1': device_add
[ 12.272563] device: 'ttyx2': device_add
[ 12.272563] device: 'ttyx3': device_add
[ 12.272563] device: 'ttyx4': device_add
[ 12.272563] device: 'ttyx5': device_add
[ 12.272563] device: 'ttyx6': device_add
[ 12.272563] device: 'ttyx7': device_add
[ 12.272563] device: 'ttyx8': device_add
[ 12.272563] device: 'ttyx9': device_add
[ 12.272563] device: 'ttyxa': device_add
[ 12.272563] device: 'ttyxb': device_add
[ 12.272563] device: 'ttyxc': device_add
[ 12.272563] device: 'ttyxd': device_add
[ 12.272563] device: 'ttyxe': device_add
[ 12.272563] device: 'ttyxf': device_add
[ 12.272563] device: 'ttyy0': device_add
[ 12.272563] device: 'ttyy1': device_add
[ 12.272563] device: 'ttyy2': device_add
[ 12.272563] device: 'ttyy3': device_add
[ 12.272563] device: 'ttyy4': device_add
[ 12.272563] device: 'ttyy5': device_add
[ 12.272563] device: 'ttyy6': device_add
[ 12.272563] device: 'ttyy7': device_add
[ 12.272563] device: 'ttyy8': device_add
[ 12.272563] device: 'ttyy9': device_add
[ 12.272563] device: 'ttyya': device_add
[ 12.272563] device: 'ttyyb': device_add
[ 12.272563] device: 'ttyyc': device_add
[ 12.272563] device: 'ttyyd': device_add
[ 12.272563] device: 'ttyye': device_add
[ 12.272563] device: 'ttyyf': device_add
[ 12.272563] device: 'ttyz0': device_add
[ 12.272563] device: 'ttyz1': device_add
[ 12.272563] device: 'ttyz2': device_add
[ 12.272563] device: 'ttyz3': device_add
[ 12.272563] device: 'ttyz4': device_add
[ 12.272563] device: 'ttyz5': device_add
[ 12.282563] device: 'ttyz6': device_add
[ 12.282563] device: 'ttyz7': device_add
[ 12.282563] device: 'ttyz8': device_add
[ 12.282563] device: 'ttyz9': device_add
[ 12.282563] device: 'ttyza': device_add
[ 12.282563] device: 'ttyzb': device_add
[ 12.282563] device: 'ttyzc': device_add
[ 12.282563] device: 'ttyzd': device_add
[ 12.282563] device: 'ttyze': device_add
[ 12.282563] device: 'ttyzf': device_add
[ 12.282563] device: 'ttya0': device_add
[ 12.282563] device: 'ttya1': device_add
[ 12.282563] device: 'ttya2': device_add
[ 12.282563] device: 'ttya3': device_add
[ 12.282563] device: 'ttya4': device_add
[ 12.282563] device: 'ttya5': device_add
[ 12.282563] device: 'ttya6': device_add
[ 12.282563] device: 'ttya7': device_add
[ 12.282563] device: 'ttya8': device_add
[ 12.282563] device: 'ttya9': device_add
[ 12.282563] device: 'ttyaa': device_add
[ 12.282563] device: 'ttyab': device_add
[ 12.282563] device: 'ttyac': device_add
[ 12.282563] device: 'ttyad': device_add
[ 12.282563] device: 'ttyae': device_add
[ 12.282563] device: 'ttyaf': device_add
[ 12.282563] device: 'ttyb0': device_add
[ 12.282563] device: 'ttyb1': device_add
[ 12.282563] device: 'ttyb2': device_add
[ 12.282563] device: 'ttyb3': device_add
[ 12.282563] device: 'ttyb4': device_add
[ 12.282563] device: 'ttyb5': device_add
[ 12.282563] device: 'ttyb6': device_add
[ 12.282563] device: 'ttyb7': device_add
[ 12.282563] device: 'ttyb8': device_add
[ 12.282563] device: 'ttyb9': device_add
[ 12.282563] device: 'ttyba': device_add
[ 12.282563] device: 'ttybb': device_add
[ 12.282563] device: 'ttybc': device_add
[ 12.282563] device: 'ttybd': device_add
[ 12.282563] device: 'ttybe': device_add
[ 12.282563] device: 'ttybf': device_add
[ 12.282563] device: 'ttyc0': device_add
[ 12.282563] device: 'ttyc1': device_add
[ 12.282563] device: 'ttyc2': device_add
[ 12.282563] device: 'ttyc3': device_add
[ 12.282563] device: 'ttyc4': device_add
[ 12.282563] device: 'ttyc5': device_add
[ 12.282563] device: 'ttyc6': device_add
[ 12.282563] device: 'ttyc7': device_add
[ 12.282563] device: 'ttyc8': device_add
[ 12.282563] device: 'ttyc9': device_add
[ 12.282563] device: 'ttyca': device_add
[ 12.282563] device: 'ttycb': device_add
[ 12.282563] device: 'ttycc': device_add
[ 12.282563] device: 'ttycd': device_add
[ 12.282563] device: 'ttyce': device_add
[ 12.282563] device: 'ttycf': device_add
[ 12.282563] device: 'ttyd0': device_add
[ 12.282563] device: 'ttyd1': device_add
[ 12.282563] device: 'ttyd2': device_add
[ 12.282563] device: 'ttyd3': device_add
[ 12.282563] device: 'ttyd4': device_add
[ 12.282563] device: 'ttyd5': device_add
[ 12.282563] device: 'ttyd6': device_add
[ 12.282563] device: 'ttyd7': device_add
[ 12.282563] device: 'ttyd8': device_add
[ 12.292563] device: 'ttyd9': device_add
[ 12.292563] device: 'ttyda': device_add
[ 12.292563] device: 'ttydb': device_add
[ 12.292563] device: 'ttydc': device_add
[ 12.292563] device: 'ttydd': device_add
[ 12.292563] device: 'ttyde': device_add
[ 12.292563] device: 'ttydf': device_add
[ 12.292563] device: 'ttye0': device_add
[ 12.292563] device: 'ttye1': device_add
[ 12.292563] device: 'ttye2': device_add
[ 12.292563] device: 'ttye3': device_add
[ 12.292563] device: 'ttye4': device_add
[ 12.292563] device: 'ttye5': device_add
[ 12.292563] device: 'ttye6': device_add
[ 12.292563] device: 'ttye7': device_add
[ 12.292563] device: 'ttye8': device_add
[ 12.292563] device: 'ttye9': device_add
[ 12.292563] device: 'ttyea': device_add
[ 12.292563] device: 'ttyeb': device_add
[ 12.292563] device: 'ttyec': device_add
[ 12.292563] device: 'ttyed': device_add
[ 12.292563] device: 'ttyee': device_add
[ 12.292563] device: 'ttyef': device_add
[ 12.292563] device: 'ptmx': device_add
[ 12.292563] initcall pty_init+0x0/0x11 returned 0 after 68471 usecs
[ 12.292563] calling sysrq_init+0x0/0x4e @ 1
[ 12.292563] initcall sysrq_init+0x0/0x4e returned 0 after 28 usecs
[ 12.292563] calling isicom_init+0x0/0x1af @ 1
[ 12.292563] bus: 'pci': add driver isicom
[ 12.292563] initcall isicom_init+0x0/0x1af returned 0 after 222 usecs
[ 12.292563] calling init+0x0/0x7c @ 1
[ 12.292563] device class 'virtio-ports': registering
[ 12.292563] bus: 'virtio': add driver virtio_console
[ 12.292563] initcall init+0x0/0x7c returned 0 after 156 usecs
[ 12.292563] calling r3964_init+0x0/0x38 @ 1
[ 12.292563] r3964: Philips r3964 Driver $Revision: 1.10 $
[ 12.292563] initcall r3964_init+0x0/0x38 returned 0 after 4 usecs
[ 12.292563] calling applicom_init+0x0/0x426 @ 1
[ 12.292563] Applicom driver: $Id: ac.c,v 1.30 2000/03/22 16:03:57 dwmw2 Exp $
[ 12.292563] ac.o: No PCI boards found.
[ 12.292563] ac.o: For an ISA board you must supply memory and irq parameters.
[ 12.292563] initcall applicom_init+0x0/0x426 returned -6 after 28 usecs
[ 12.292563] initcall applicom_init+0x0/0x426 returned with error code -6
[ 12.292563] calling hpet_init+0x0/0x57 @ 1
[ 12.292563] device: 'hpet': device_add
[ 12.292563] bus: 'acpi': add driver hpet
[ 12.292563] initcall hpet_init+0x0/0x57 returned 0 after 341 usecs
[ 12.292563] calling nvram_init+0x0/0x70 @ 1
[ 12.292563] device: 'nvram': device_add
[ 12.292563] Non-volatile memory driver v1.3
[ 12.292563] initcall nvram_init+0x0/0x70 returned 0 after 191 usecs
[ 12.292563] calling nsc_gpio_init+0x0/0x11 @ 1
[ 12.292563] nsc_gpio initializing
[ 12.292563] initcall nsc_gpio_init+0x0/0x11 returned 0 after 3 usecs
[ 12.292563] calling tlclk_init+0x0/0x1dd @ 1
[ 12.292563] telclk_interrup = 0xf non-mcpbl0010 hw.
[ 12.292563] initcall tlclk_init+0x0/0x1dd returned -6 after 84 usecs
[ 12.292563] initcall tlclk_init+0x0/0x1dd returned with error code -6
[ 12.292563] calling agp_init+0x0/0x21 @ 1
[ 12.292563] Linux agpgart interface v0.103
[ 12.292563] initcall agp_init+0x0/0x21 returned 0 after 4 usecs
[ 12.292563] calling agp_intel_init+0x0/0x24 @ 1
[ 12.292563] bus: 'pci': add driver agpgart-intel
[ 12.292563] initcall agp_intel_init+0x0/0x24 returned 0 after 114 usecs
[ 12.292563] calling agp_sis_init+0x0/0x24 @ 1
[ 12.292563] bus: 'pci': add driver agpgart-sis
[ 12.292563] initcall agp_sis_init+0x0/0x24 returned 0 after 105 usecs
[ 12.292563] calling hangcheck_init+0x0/0x78 @ 1
[ 12.292563] Hangcheck: starting hangcheck timer 0.9.1 (tick is 180 seconds, margin is 60 seconds).
[ 12.292563] Hangcheck: Using getrawmonotonic().
[ 12.292563] initcall hangcheck_init+0x0/0x78 returned 0 after 13 usecs
[ 12.292563] calling init_tis+0x0/0x87 @ 1
[ 12.292563] bus: 'pnp': add driver tpm_tis
[ 12.292563] initcall init_tis+0x0/0x87 returned 0 after 93 usecs
[ 12.292563] calling init_nsc+0x0/0x637 @ 1
[ 12.292563] initcall init_nsc+0x0/0x637 returned -19 after 16 usecs
[ 12.292563] calling init_atmel+0x0/0x164 @ 1
[ 12.292563] bus: 'platform': add driver tpm_atmel
[ 12.292563] bus: 'platform': remove driver tpm_atmel
[ 12.292563] driver: 'tpm_atmel': driver_release
[ 12.292563] initcall init_atmel+0x0/0x164 returned -19 after 275 usecs
[ 12.292563] calling init_inf+0x0/0xf @ 1
[ 12.292563] bus: 'pnp': add driver tpm_inf_pnp
[ 12.292563] initcall init_inf+0x0/0xf returned 0 after 82 usecs
[ 12.292563] calling drm_core_init+0x0/0xfb @ 1
[ 12.292563] device class 'drm': registering
[ 12.292563] [drm] Initialized drm 1.1.0 20060810
[ 12.292563] initcall drm_core_init+0x0/0xfb returned 0 after 106 usecs
[ 12.292563] calling tdfx_init+0x0/0xf @ 1
[ 12.292563] initcall tdfx_init+0x0/0xf returned 0 after 123 usecs
[ 12.292563] calling mga_init+0x0/0x19 @ 1
[ 12.292563] initcall mga_init+0x0/0x19 returned 0 after 81 usecs
[ 12.292563] calling savage_init+0x0/0x19 @ 1
[ 12.292563] initcall savage_init+0x0/0x19 returned 0 after 461 usecs
[ 12.292563] calling serial8250_init+0x0/0x14d @ 1
[ 12.292563] Serial: 8250/16550 driver, 4 ports, IRQ sharing enabled
[ 12.292563] Registering platform device 'serial8250'. Parent at platform
[ 12.292563] device: 'serial8250': device_add
[ 12.292563] bus: 'platform': add device serial8250
[ 12.292563] async_waiting @ 1
[ 12.292563] calling 1_acpi_battery_init_async+0x0/0x34 @ 64
[ 12.292563] bus: 'acpi': add driver battery
[ 12.292563] initcall 1_acpi_battery_init_async+0x0/0x34 returned 0 after 208 usecs
[ 12.292563] async_continuing @ 1 after 496 usec
[ 12.442559] async_waiting @ 1
[ 12.442559] async_continuing @ 1 after 2 usec
[ 12.582563] serial8250: ttyS0 at I/O 0x3f8 (irq = 4) is a 16550A
[ 12.582563] device: 'ttyS0': device_add
[ 12.582563] device: 'ttyS1': device_add
[ 12.582563] device: 'ttyS2': device_add
[ 12.582563] device: 'ttyS3': device_add
[ 12.582563] bus: 'platform': add driver serial8250
[ 12.582563] bus: 'platform': driver_probe_device: matched device serial8250 with driver serial8250
[ 12.582563] bus: 'platform': really_probe: probing driver serial8250 with device serial8250
[ 12.582563] driver: 'serial8250': driver_bound: bound to device 'serial8250'
[ 12.582563] bus: 'platform': really_probe: bound device serial8250 to driver serial8250
[ 12.582563] initcall serial8250_init+0x0/0x14d returned 0 after 268934 usecs
[ 12.582563] calling serial8250_pnp_init+0x0/0xf @ 1
[ 12.582563] bus: 'pnp': add driver serial
[ 12.582563] bus: 'pnp': driver_probe_device: matched device 00:08 with driver serial
[ 12.582563] bus: 'pnp': really_probe: probing driver serial with device 00:08
[ 12.582563] device: 'ttyS0': device_unregister
[ 12.582563] device: 'ttyS0': device_create_release
[ 12.582563] 00:08: ttyS0 at I/O 0x3f8 (irq = 4) is a 16550A
[ 12.584809] device: 'ttyS0': device_add
[ 12.584809] driver: '00:08': driver_bound: bound to device 'serial'
[ 12.584809] bus: 'pnp': really_probe: bound device 00:08 to driver serial
[ 12.584809] initcall serial8250_pnp_init+0x0/0xf returned 0 after 10494 usecs
[ 12.584809] calling serial8250_pci_init+0x0/0x16 @ 1
[ 12.584809] bus: 'pci': add driver serial
[ 12.584809] initcall serial8250_pci_init+0x0/0x16 returned 0 after 139 usecs
[ 12.584809] calling mca_init+0x0/0x1d @ 1
[ 12.584809] initcall mca_init+0x0/0x1d returned -19 after 2 usecs
[ 12.584809] calling isa_bus_init+0x0/0x33 @ 1
[ 12.584809] bus: 'isa': registered
[ 12.584809] device: 'isa': device_add
[ 12.584809] initcall isa_bus_init+0x0/0x33 returned 0 after 169 usecs
[ 12.584809] calling topology_sysfs_init+0x0/0x49 @ 1
[ 12.584809] initcall topology_sysfs_init+0x0/0x49 returned 0 after 77 usecs
[ 12.584809] calling cpqarray_init+0x0/0x5a @ 1
[ 12.584809] Compaq SMART2 Driver (v 2.6.0)
[ 12.584809] bus: 'pci': add driver cpqarray
[ 12.584809] bus: 'pci': remove driver cpqarray
[ 12.584809] driver: 'cpqarray': driver_release
[ 12.584809] initcall cpqarray_init+0x0/0x5a returned -19 after 260 usecs
[ 12.584809] calling DAC960_init_module+0x0/0x41 @ 1
[ 12.584809] bus: 'pci': add driver DAC960
[ 12.584809] device: 'dac960_gam': device_add
[ 12.584809] initcall DAC960_init_module+0x0/0x41 returned 0 after 252 usecs
[ 12.584809] calling ibmasm_init+0x0/0x56 @ 1
[ 12.584809] bus: 'pci': add driver ibmasm
[ 12.584809] ibmasm: IBM ASM Service Processor Driver version 1.0 loaded
[ 12.584809] initcall ibmasm_init+0x0/0x56 returned 0 after 131 usecs
[ 12.584809] calling ics932s401_init+0x0/0x11 @ 1
[ 12.584809] bus: 'i2c': add driver ics932s401
[ 12.584809] i2c-core: driver [ics932s401] registered
[ 12.584809] initcall ics932s401_init+0x0/0x11 returned 0 after 76 usecs
[ 12.584809] calling phantom_init+0x0/0xe1 @ 1
[ 12.584809] device class 'phantom': registering
[ 12.584809] bus: 'pci': add driver phantom
[ 12.584809] Phantom Linux Driver, version n0.9.8, init OK
[ 12.584809] initcall phantom_init+0x0/0xe1 returned 0 after 194 usecs
[ 12.584809] calling cs5535_mfgpt_init+0x0/0x53 @ 1
[ 12.584809] initcall cs5535_mfgpt_init+0x0/0x53 returned -19 after 62 usecs
[ 12.584809] calling ds1682_init+0x0/0x11 @ 1
[ 12.584809] bus: 'i2c': add driver ds1682
[ 12.584809] i2c-core: driver [ds1682] registered
[ 12.584809] initcall ds1682_init+0x0/0x11 returned 0 after 72 usecs
[ 12.584809] calling cb710_init_module+0x0/0x16 @ 1
[ 12.584809] bus: 'pci': add driver cb710
[ 12.584809] initcall cb710_init_module+0x0/0x16 returned 0 after 105 usecs
[ 12.584809] calling pasic3_base_init+0x0/0x14 @ 1
[ 12.584809] bus: 'platform': add driver pasic3
[ 12.584809] bus: 'platform': remove driver pasic3
[ 12.584809] driver: 'pasic3': driver_release
[ 12.584809] initcall pasic3_base_init+0x0/0x14 returned -19 after 148 usecs
[ 12.584809] calling htcpld_core_init+0x0/0x24 @ 1
[ 12.584809] bus: 'i2c': add driver htcpld-chip
[ 12.584809] i2c-core: driver [htcpld-chip] registered
[ 12.584809] bus: 'platform': add driver i2c-htcpld
[ 12.584809] bus: 'platform': remove driver i2c-htcpld
[ 12.584809] driver: 'i2c-htcpld': driver_release
[ 12.584809] initcall htcpld_core_init+0x0/0x24 returned -19 after 214 usecs
[ 12.584809] calling adp5520_init+0x0/0x11 @ 1
[ 12.584809] bus: 'i2c': add driver adp5520
[ 12.584809] i2c-core: driver [adp5520] registered
[ 12.584809] initcall adp5520_init+0x0/0x11 returned 0 after 72 usecs
[ 12.584809] calling lpc_sch_init+0x0/0x16 @ 1
[ 12.584809] bus: 'pci': add driver lpc_sch
[ 12.584809] initcall lpc_sch_init+0x0/0x16 returned 0 after 105 usecs
[ 12.584809] calling spi_transport_init+0x0/0x65 @ 1
[ 12.584809] device class 'spi_transport': registering
[ 12.584809] device class 'spi_host': registering
[ 12.584809] initcall spi_transport_init+0x0/0x65 returned 0 after 150 usecs
[ 12.584809] calling iscsi_transport_init+0x0/0x125 @ 1
[ 12.584809] Loading iSCSI transport class v2.0-870.
[ 12.584809] device class 'iscsi_transport': registering
[ 12.584809] device class 'iscsi_endpoint': registering
[ 12.584809] device class 'iscsi_host': registering
[ 12.584809] device class 'iscsi_connection': registering
[ 12.584809] device class 'iscsi_session': registering
[ 12.584809] initcall iscsi_transport_init+0x0/0x125 returned 0 after 471 usecs
[ 12.584809] calling sas_transport_init+0x0/0x9f @ 1
[ 12.584809] device class 'sas_host': registering
[ 12.584809] device class 'sas_phy': registering
[ 12.584809] device class 'sas_port': registering
[ 12.584809] device class 'sas_device': registering
[ 12.584809] device class 'sas_end_device': registering
[ 12.584809] device class 'sas_expander': registering
[ 12.584809] initcall sas_transport_init+0x0/0x9f returned 0 after 361 usecs
[ 12.584809] calling sas_class_init+0x0/0x2c @ 1
[ 12.584809] initcall sas_class_init+0x0/0x2c returned 0 after 167 usecs
[ 12.584809] calling scsi_dh_init+0x0/0x34 @ 1
[ 12.584809] initcall scsi_dh_init+0x0/0x34 returned 0 after 3 usecs
[ 12.584809] calling ahc_linux_init+0x0/0x61 @ 1
[ 12.584809] bus: 'pci': add driver aic7xxx
[ 12.584809] bus: 'eisa': add driver aic7xxx
[ 12.584809] initcall ahc_linux_init+0x0/0x61 returned 0 after 216 usecs
[ 12.584809] calling init_osst+0x0/0x124 @ 1
[ 12.584809] osst :I: Tape driver with OnStream support version 0.99.4
[ 12.584809] osst :I: $Id: osst.c,v 1.73 2005/01/01 21:13:34 wriede Exp $
[ 12.584809] device class 'onstream_tape': registering
[ 12.584809] bus: 'scsi': add driver osst
[ 12.584809] initcall init_osst+0x0/0x124 returned 0 after 142 usecs
[ 12.584809] calling init_sd+0x0/0x12e @ 1
[ 12.584809] device class 'scsi_disk': registering
[ 12.584809] bus: 'scsi': add driver sd
[ 12.584809] initcall init_sd+0x0/0x12e returned 0 after 326 usecs
[ 12.584809] calling init_sr+0x0/0x3d @ 1
[ 12.584809] bus: 'scsi': add driver sr
[ 12.584809] initcall init_sr+0x0/0x3d returned 0 after 69 usecs
[ 12.584809] calling ahci_init+0x0/0x16 @ 1
[ 12.584809] bus: 'pci': add driver ahci
[ 12.584809] initcall ahci_init+0x0/0x16 returned 0 after 136 usecs
[ 12.584809] calling piix_init+0x0/0x24 @ 1
[ 12.584809] bus: 'pci': add driver ata_piix
[ 12.584809] initcall piix_init+0x0/0x24 returned 0 after 111 usecs
[ 12.584809] calling qs_ata_init+0x0/0x16 @ 1
[ 12.584809] bus: 'pci': add driver sata_qstor
[ 12.584809] initcall qs_ata_init+0x0/0x16 returned 0 after 112 usecs
[ 12.584809] calling sil_init+0x0/0x16 @ 1
[ 12.584809] bus: 'pci': add driver sata_sil
[ 12.584809] initcall sil_init+0x0/0x16 returned 0 after 121 usecs
[ 12.584809] calling sil24_init+0x0/0x16 @ 1
[ 12.584809] bus: 'pci': add driver sata_sil24
[ 12.584809] initcall sil24_init+0x0/0x16 returned 0 after 120 usecs
[ 12.584809] calling nv_init+0x0/0x16 @ 1
[ 12.584809] bus: 'pci': add driver sata_nv
[ 12.584809] initcall nv_init+0x0/0x16 returned 0 after 121 usecs
[ 12.584809] calling mv_init+0x0/0x3a @ 1
[ 12.584809] bus: 'pci': add driver sata_mv
[ 12.584809] bus: 'platform': add driver sata_mv
[ 12.584809] initcall mv_init+0x0/0x3a returned 0 after 211 usecs
[ 12.584809] calling ali_init+0x0/0x40 @ 1
[ 12.584809] bus: 'pci': add driver pata_ali
[ 12.584809] initcall ali_init+0x0/0x40 returned 0 after 140 usecs
[ 12.584809] calling amd_init+0x0/0x16 @ 1
[ 12.584809] bus: 'pci': add driver pata_amd
[ 12.584809] bus: 'pci': driver_probe_device: matched device 0000:00:06.0 with driver pata_amd
[ 12.584809] bus: 'pci': really_probe: probing driver pata_amd with device 0000:00:06.0
[ 12.584809] pata_amd 0000:00:06.0: version 0.4.1
[ 12.584809] pata_amd 0000:00:06.0: setting latency timer to 64
[ 12.584809] scsi0 : pata_amd
[ 12.584809] device: 'host0': device_add
[ 12.584809] device: 'host0': device_add
[ 12.584809] scsi1 : pata_amd
[ 12.584809] device: 'host1': device_add
[ 12.584809] device: 'host1': device_add
[ 12.594809] ata1: PATA max UDMA/133 cmd 0x1f0 ctl 0x3f6 bmdma 0xf000 irq 14
[ 12.594809] ata2: PATA max UDMA/133 cmd 0x170 ctl 0x376 bmdma 0xf008 irq 15
[ 16.138975] work_for_cpu used greatest stack depth: 2492 bytes left
[ 16.138975] driver: '0000:00:06.0': driver_bound: bound to device 'pata_amd'
[ 16.138975] bus: 'pci': really_probe: bound device 0000:00:06.0 to driver pata_amd
[ 16.138975] initcall amd_init+0x0/0x16 returned 0 after 3465375 usecs
[ 16.138975] calling atp867x_init+0x0/0x16 @ 1
[ 16.138975] bus: 'pci': add driver pata_atp867x
[ 16.138975] initcall atp867x_init+0x0/0x16 returned 0 after 117 usecs
[ 16.138975] calling cmd640_init+0x0/0x16 @ 1
[ 16.138975] bus: 'pci': add driver pata_cmd640
[ 16.138975] initcall cmd640_init+0x0/0x16 returned 0 after 107 usecs
[ 16.138975] calling cs5530_init+0x0/0x16 @ 1
[ 16.138975] bus: 'pci': add driver pata_cs5530
[ 16.138975] initcall cs5530_init+0x0/0x16 returned 0 after 116 usecs
[ 16.138975] calling cs5535_init+0x0/0x16 @ 1
[ 16.138975] bus: 'pci': add driver cs5535
[ 16.138975] initcall cs5535_init+0x0/0x16 returned 0 after 107 usecs
[ 16.138975] calling cs5536_init+0x0/0x16 @ 1
[ 16.138975] bus: 'pci': add driver pata_cs5536
[ 16.138975] initcall cs5536_init+0x0/0x16 returned 0 after 126 usecs
[ 16.138975] calling cy82c693_init+0x0/0x16 @ 1
[ 16.138975] bus: 'pci': add driver pata_cypress
[ 16.138975] initcall cy82c693_init+0x0/0x16 returned 0 after 114 usecs
[ 16.138975] calling efar_init+0x0/0x16 @ 1
[ 16.138975] bus: 'pci': add driver pata_efar
[ 16.138975] initcall efar_init+0x0/0x16 returned 0 after 106 usecs
[ 16.138975] calling hpt3x2n_init+0x0/0x16 @ 1
[ 16.138975] bus: 'pci': add driver pata_hpt3x2n
[ 16.138975] initcall hpt3x2n_init+0x0/0x16 returned 0 after 115 usecs
[ 16.138975] calling netcell_init+0x0/0x16 @ 1
[ 16.138975] bus: 'pci': add driver pata_netcell
[ 16.138975] initcall netcell_init+0x0/0x16 returned 0 after 108 usecs
[ 16.138975] calling mpiix_init+0x0/0x16 @ 1
[ 16.138975] bus: 'pci': add driver pata_mpiix
[ 16.138975] initcall mpiix_init+0x0/0x16 returned 0 after 106 usecs
[ 16.138975] calling oldpiix_init+0x0/0x16 @ 1
[ 16.138975] bus: 'pci': add driver pata_oldpiix
[ 16.138975] initcall oldpiix_init+0x0/0x16 returned 0 after 106 usecs
[ 16.138975] calling pdc2027x_init+0x0/0x16 @ 1
[ 16.138975] bus: 'pci': add driver pata_pdc2027x
[ 16.138975] initcall pdc2027x_init+0x0/0x16 returned 0 after 107 usecs
[ 16.138975] calling pdc202xx_init+0x0/0x16 @ 1
[ 16.138975] bus: 'pci': add driver pata_pdc202xx_old
[ 16.138975] initcall pdc202xx_init+0x0/0x16 returned 0 after 108 usecs
[ 16.138975] calling radisys_init+0x0/0x16 @ 1
[ 16.138975] bus: 'pci': add driver pata_radisys
[ 16.138975] initcall radisys_init+0x0/0x16 returned 0 after 115 usecs
[ 16.138975] calling rdc_init+0x0/0x16 @ 1
[ 16.138975] bus: 'pci': add driver pata_rdc
[ 16.138975] initcall rdc_init+0x0/0x16 returned 0 after 108 usecs
[ 16.138975] calling sc1200_init+0x0/0x16 @ 1
[ 16.138975] bus: 'pci': add driver sc1200
[ 16.138975] initcall sc1200_init+0x0/0x16 returned 0 after 106 usecs
[ 16.138975] calling serverworks_init+0x0/0x16 @ 1
[ 16.138975] bus: 'pci': add driver pata_serverworks
[ 16.138975] initcall serverworks_init+0x0/0x16 returned 0 after 107 usecs
[ 16.138975] calling sil680_init+0x0/0x16 @ 1
[ 16.138975] bus: 'pci': add driver pata_sil680
[ 16.138975] initcall sil680_init+0x0/0x16 returned 0 after 107 usecs
[ 16.138975] calling via_init+0x0/0x16 @ 1
[ 16.138975] bus: 'pci': add driver pata_via
[ 16.138975] initcall via_init+0x0/0x16 returned 0 after 107 usecs
[ 16.138975] calling sl82c105_init+0x0/0x16 @ 1
[ 16.138975] bus: 'pci': add driver pata_sl82c105
[ 16.138975] initcall sl82c105_init+0x0/0x16 returned 0 after 116 usecs
[ 16.138975] calling winbond_init+0x0/0x80 @ 1
[ 16.138975] initcall winbond_init+0x0/0x80 returned -19 after 2 usecs
[ 16.138975] calling triflex_init+0x0/0x16 @ 1
[ 16.138975] bus: 'pci': add driver pata_triflex
[ 16.138975] initcall triflex_init+0x0/0x16 returned 0 after 108 usecs
[ 16.138975] calling pacpi_init+0x0/0x16 @ 1
[ 16.138975] bus: 'pci': add driver pata_acpi
[ 16.138975] initcall pacpi_init+0x0/0x16 returned 0 after 110 usecs
[ 16.138975] calling cicada_init+0x0/0x33 @ 1
[ 16.138975] bus: 'mdio_bus': add driver Cicada Cis8204
[ 16.138975] bus: 'mdio_bus': add driver Cicada Cis8201
[ 16.138975] initcall cicada_init+0x0/0x33 returned 0 after 135 usecs
[ 16.138975] calling lxt_init+0x0/0x33 @ 1
[ 16.138975] bus: 'mdio_bus': add driver LXT970
[ 16.138975] bus: 'mdio_bus': add driver LXT971
[ 16.138975] initcall lxt_init+0x0/0x33 returned 0 after 134 usecs
[ 16.138975] calling smsc_init+0x0/0x81 @ 1
[ 16.138975] bus: 'mdio_bus': add driver SMSC LAN83C185
[ 16.138975] bus: 'mdio_bus': add driver SMSC LAN8187
[ 16.138975] bus: 'mdio_bus': add driver SMSC LAN8700
[ 16.138975] bus: 'mdio_bus': add driver SMSC LAN911x Internal PHY
[ 16.138975] bus: 'mdio_bus': add driver SMSC LAN8710/LAN8720
[ 16.142667] initcall smsc_init+0x0/0x81 returned 0 after 380 usecs
[ 16.142667] calling vsc82xx_init+0x0/0x33 @ 1
[ 16.142667] bus: 'mdio_bus': add driver Vitesse VSC8244
[ 16.142667] bus: 'mdio_bus': add driver Vitesse VSC8221
[ 16.142667] initcall vsc82xx_init+0x0/0x33 returned 0 after 135 usecs
[ 16.142667] calling broadcom_init+0x0/0x117 @ 1
[ 16.142667] bus: 'mdio_bus': add driver Broadcom BCM5411
[ 16.142667] bus: 'mdio_bus': add driver Broadcom BCM5421
[ 16.142667] bus: 'mdio_bus': add driver Broadcom BCM5461
[ 16.142667] bus: 'mdio_bus': add driver Broadcom BCM5464
[ 16.142667] bus: 'mdio_bus': add driver Broadcom BCM5481
[ 16.142667] bus: 'mdio_bus': add driver Broadcom BCM5482
[ 16.142667] bus: 'mdio_bus': add driver Broadcom BCM50610
[ 16.142667] bus: 'mdio_bus': add driver Broadcom BCM50610M
[ 16.142667] bus: 'mdio_bus': add driver Broadcom BCM57780
[ 16.142667] bus: 'mdio_bus': add driver Broadcom BCMAC131
[ 16.142667] initcall broadcom_init+0x0/0x117 returned 0 after 680 usecs
[ 16.142667] calling ste10Xp_init+0x0/0x1d @ 1
[ 16.142667] bus: 'mdio_bus': add driver STe100p
[ 16.142667] bus: 'mdio_bus': add driver STe101p
[ 16.142667] initcall ste10Xp_init+0x0/0x1d returned 0 after 133 usecs
[ 16.142667] calling ksphy_init+0x0/0x4d @ 1
[ 16.142667] bus: 'mdio_bus': add driver Micrel KS8001
[ 16.142667] bus: 'mdio_bus': add driver Micrel VSC8201
[ 16.142667] bus: 'mdio_bus': add driver Micrel KSZ9021 Gigabit PHY
[ 16.142667] initcall ksphy_init+0x0/0x4d returned 0 after 220 usecs
[ 16.142667] calling e1000_init_module+0x0/0x2f @ 1
[ 16.142667] e1000e: Intel(R) PRO/1000 Network Driver - 1.0.2-k4
[ 16.142667] e1000e: Copyright (c) 1999 - 2009 Intel Corporation.
[ 16.142667] bus: 'pci': add driver e1000e
[ 16.142667] initcall e1000_init_module+0x0/0x2f returned 0 after 135 usecs
[ 16.142667] calling ixgbevf_init_module+0x0/0x39 @ 1
[ 16.142667] ixgbevf: Intel(R) 82599 Virtual Function - version 1.0.0-k0
[ 16.142667] Copyright (c) 2009 Intel Corporation.
[ 16.142667] bus: 'pci': add driver ixgbevf
[ 16.142667] initcall ixgbevf_init_module+0x0/0x39 returned 0 after 111 usecs
[ 16.142667] calling ixgb_init_module+0x0/0x39 @ 1
[ 16.142667] ixgb: Intel(R) PRO/10GbE Network Driver - version 1.0.135-k2-NAPI
[ 16.142667] ixgb: Copyright (c) 1999-2008 Intel Corporation.
[ 16.142667] bus: 'pci': add driver ixgb
[ 16.142667] initcall ixgb_init_module+0x0/0x39 returned 0 after 129 usecs
[ 16.142667] calling can_dev_init+0x0/0x26 @ 1
[ 16.142667] CAN device driver interface
[ 16.142667] initcall can_dev_init+0x0/0x26 returned 0 after 6 usecs
[ 16.142667] calling sja1000_init+0x0/0x16 @ 1
[ 16.142667] sja1000 CAN netdevice driver
[ 16.142667] initcall sja1000_init+0x0/0x16 returned 0 after 3 usecs
[ 16.142667] calling kvaser_pci_init+0x0/0x16 @ 1
[ 16.142667] bus: 'pci': add driver kvaser_pci
[ 16.142667] initcall kvaser_pci_init+0x0/0x16 returned 0 after 122 usecs
[ 16.142667] calling plx_pci_init+0x0/0x16 @ 1
[ 16.142667] bus: 'pci': add driver sja1000_plx_pci
[ 16.142667] initcall plx_pci_init+0x0/0x16 returned 0 after 107 usecs
[ 16.142667] calling atl2_init_module+0x0/0x39 @ 1
[ 16.142667] Atheros(R) L2 Ethernet Driver - version 2.2.3
[ 16.142667] Copyright (c) 2007 Atheros Corporation.
[ 16.142667] bus: 'pci': add driver atl2
[ 16.142667] initcall atl2_init_module+0x0/0x39 returned 0 after 109 usecs
[ 16.142667] calling enic_init_module+0x0/0x2a @ 1
[ 16.142667] enic: Cisco VIC Ethernet NIC Driver, ver 1.3.1.1-pp
[ 16.142667] bus: 'pci': add driver enic
[ 16.142667] initcall enic_init_module+0x0/0x2a returned 0 after 107 usecs
[ 16.142667] calling jme_init_module+0x0/0x25 @ 1
[ 16.142667] jme: JMicron JMC2XX ethernet driver version 1.0.6
[ 16.142667] bus: 'pci': add driver jme
[ 16.142667] initcall jme_init_module+0x0/0x25 returned 0 after 108 usecs
[ 16.142667] calling gem_init+0x0/0x16 @ 1
[ 16.142667] bus: 'pci': add driver gem
[ 16.142667] initcall gem_init+0x0/0x16 returned 0 after 106 usecs
[ 16.142667] calling vortex_init+0x0/0xbc @ 1
[ 16.142667] bus: 'pci': add driver 3c59x
[ 16.142667] bus: 'eisa': add driver 3c59x
[ 16.142667] initcall vortex_init+0x0/0xbc returned 0 after 184 usecs
[ 16.142667] calling pcnet32_init_module+0x0/0x107 @ 1
[ 16.142667] pcnet32: pcnet32.c:v1.35 21.Apr.2008 tsbogend@alpha.franken.de
[ 16.142667] bus: 'pci': add driver pcnet32
[ 16.142667] initcall pcnet32_init_module+0x0/0x107 returned 0 after 109 usecs
[ 16.142667] calling e100_init_module+0x0/0x4d @ 1
[ 16.142667] e100: Intel(R) PRO/100 Network Driver, 3.5.24-k2-NAPI
[ 16.142667] e100: Copyright(c) 1999-2006 Intel Corporation
[ 16.142667] bus: 'pci': add driver e100
[ 16.142667] initcall e100_init_module+0x0/0x4d returned 0 after 114 usecs
[ 16.142667] calling tlan_probe+0x0/0xb9 @ 1
[ 16.142667] ThunderLAN driver v1.15a
[ 16.142667] bus: 'pci': add driver tlan
[ 16.142667] TLAN: 0 devices installed, PCI: 0 EISA: 0
[ 16.142667] bus: 'pci': remove driver tlan
[ 16.142667] driver: 'tlan': driver_release
[ 16.142667] initcall tlan_probe+0x0/0xb9 returned -19 after 210 usecs
[ 16.142667] calling sis190_init_module+0x0/0x16 @ 1
[ 16.142667] bus: 'pci': add driver sis190
[ 16.142667] initcall sis190_init_module+0x0/0x16 returned 0 after 106 usecs
[ 16.142667] calling yellowfin_init+0x0/0x16 @ 1
[ 16.142667] bus: 'pci': add driver yellowfin
[ 16.142667] initcall yellowfin_init+0x0/0x16 returned 0 after 106 usecs
[ 16.142667] calling ns83820_init+0x0/0x20 @ 1
[ 16.142667] ns83820.c: National Semiconductor DP83820 10/100/1000 driver.
[ 16.142667] bus: 'pci': add driver ns83820
[ 16.142667] initcall ns83820_init+0x0/0x20 returned 0 after 116 usecs
[ 16.142667] calling tg3_init+0x0/0x16 @ 1
[ 16.142667] bus: 'pci': add driver tg3
[ 16.142667] initcall tg3_init+0x0/0x16 returned 0 after 114 usecs
[ 16.142667] calling bnx2_init+0x0/0x16 @ 1
[ 16.142667] bus: 'pci': add driver bnx2
[ 16.142667] initcall bnx2_init+0x0/0x16 returned 0 after 107 usecs
[ 16.142667] calling cnic_init+0x0/0x32 @ 1
[ 16.142667] cnic: Broadcom NetXtreme II CNIC Driver cnic v2.1.1 (Feb 22, 2010)
[ 16.142667] initcall cnic_init+0x0/0x32 returned 0 after 39 usecs
[ 16.142667] calling skge_init_module+0x0/0x16 @ 1
[ 16.142667] bus: 'pci': add driver skge
[ 16.142667] initcall skge_init_module+0x0/0x16 returned 0 after 110 usecs
[ 16.142667] calling sky2_init_module+0x0/0x47 @ 1
[ 16.142667] sky2: driver version 1.28
[ 16.142667] bus: 'pci': add driver sky2
[ 16.142667] initcall sky2_init_module+0x0/0x47 returned 0 after 156 usecs
[ 16.142667] calling ks8851_init+0x0/0xf @ 1
[ 16.142667] bus: 'platform': add driver ks8851_mll
[ 16.142667] initcall ks8851_init+0x0/0xf returned 0 after 74 usecs
[ 16.142667] calling ksz884x_init_module+0x0/0x16 @ 1
[ 16.142667] bus: 'pci': add driver ksz884xp
[ 16.142667] initcall ksz884x_init_module+0x0/0x16 returned 0 after 115 usecs
[ 16.142667] calling rhine_init+0x0/0x54 @ 1
[ 16.142667] bus: 'pci': add driver via-rhine
[ 16.142667] initcall rhine_init+0x0/0x54 returned 0 after 109 usecs
[ 16.142667] calling net_olddevs_init+0x0/0x27 @ 1
[ 16.142667] cs89x0:cs89x0_probe(0x0)
[ 16.142667] PP_addr at 300[a]: 0xffff
[ 16.142667] eth0: incorrect signature at 300[c]: 0xffff!=0x630E
[ 16.142667] PP_addr at 320[a]: 0xffff
[ 16.142667] eth0: incorrect signature at 320[c]: 0xffff!=0x630E
[ 16.142667] PP_addr at 340[a]: 0xffff
[ 16.142667] eth0: incorrect signature at 340[c]: 0xffff!=0x630E
[ 16.142667] PP_addr at 360[a]: 0xffff
[ 16.142667] eth0: incorrect signature at 360[c]: 0xffff!=0x630E
[ 16.142667] PP_addr at 200[a]: 0xffff
[ 16.142667] eth0: incorrect signature at 200[c]: 0xffff!=0x630E
[ 16.142667] PP_addr at 220[a]: 0xffff
[ 16.142667] eth0: incorrect signature at 220[c]: 0xffff!=0x630E
[ 16.142667] PP_addr at 240[a]: 0xffff
[ 16.142667] eth0: incorrect signature at 240[c]: 0xffff!=0x630E
[ 16.142667] PP_addr at 260[a]: 0xffff
[ 16.142667] eth0: incorrect signature at 260[c]: 0xffff!=0x630E
[ 16.142667] PP_addr at 280[a]: 0xffff
[ 16.142667] eth0: incorrect signature at 280[c]: 0xffff!=0x630E
[ 16.142667] PP_addr at 2a0[a]: 0xffff
[ 16.142667] eth0: incorrect signature at 2a0[c]: 0xffff!=0x630E
[ 16.142667] PP_addr at 2c0[a]: 0xffff
[ 16.142667] eth0: incorrect signature at 2c0[c]: 0xffff!=0x630E
[ 16.142667] PP_addr at 2e0[a]: 0xffff
[ 16.142667] eth0: incorrect signature at 2e0[c]: 0xffff!=0x630E
[ 16.142667] cs89x0: no cs8900 or cs8920 detected. Be sure to disable PnP with SETUP
[ 16.142667] initcall net_olddevs_init+0x0/0x27 returned 0 after 1099 usecs
[ 16.142667] calling init_nic+0x0/0x16 @ 1
[ 16.142667] bus: 'pci': add driver forcedeth
[ 16.142667] bus: 'pci': driver_probe_device: matched device 0000:00:0a.0 with driver forcedeth
[ 16.142667] bus: 'pci': really_probe: probing driver forcedeth with device 0000:00:0a.0
[ 16.142667] calling 2_async_port_probe+0x0/0xa4 @ 64
[ 16.142667] calling 3_async_port_probe+0x0/0xa4 @ 70
[ 16.142667] async_waiting @ 70
[ 17.412686] forcedeth: Reverse Engineered nForce ethernet driver. Version 0.64.
[ 17.412686] ACPI: PCI Interrupt Link [APCH] enabled at IRQ 23
[ 17.417775] alloc irq_desc for 23 on node 0
[ 17.417775] alloc kstat_irqs on node 0
[ 17.427775] IOAPIC[0]: Set routing entry (2-23 -> 0x29 -> IRQ 23 Mode:1 Active:1)
[ 17.436218] forcedeth 0000:00:0a.0: PCI INT A -> Link[APCH] -> GSI 23 (level, low) -> IRQ 23
[ 17.436218] forcedeth 0000:00:0a.0: setting latency timer to 64
[ 17.448088] nv_probe: set workaround bit for reversed mac addr
[ 17.622711] ata1.00: ATA-6: HDS722525VLAT80, V36OA60A, max UDMA/100
[ 17.622711] ata1.00: 488397168 sectors, multi 1: LBA48
[ 17.634751] ata1: nv_mode_filter: 0x3f39f&0x3f39f->0x3f39f, BIOS=0x3f000 (0xc60000c0) ACPI=0x3f01f (20:600:0x13)
[ 17.722713] ata1.00: configured for UDMA/100
[ 17.722713] async_waiting @ 64
[ 17.722713] async_continuing @ 64 after 3 usec
[ 17.727474] scsi 0:0:0:0: Direct-Access ATA HDS722525VLAT80 V36O PQ: 0 ANSI: 5
[ 17.735650] device: 'target0:0:0': device_add
[ 17.735650] device: '0:0:0:0': device_add
[ 17.735650] bus: 'scsi': add device 0:0:0:0
[ 17.746504] bus: 'scsi': driver_probe_device: matched device 0:0:0:0 with driver osst
[ 17.756504] bus: 'scsi': really_probe: probing driver osst with device 0:0:0:0
[ 17.756504] bus: 'scsi': driver_probe_device: matched device 0:0:0:0 with driver sd
[ 17.769478] bus: 'scsi': really_probe: probing driver sd with device 0:0:0:0
[ 17.779478] device: '0:0:0:0': device_add
[ 17.780933] driver: '0:0:0:0': driver_bound: bound to device 'sd'
[ 17.780933] calling 4_sd_probe_async+0x0/0x1bf @ 71
[ 17.780933] sd 0:0:0:0: [sda] 488397168 512-byte logical blocks: (250 GB/232 GiB)
[ 17.780933] sd 0:0:0:0: [sda] Write Protect is off
[ 17.780933] sd 0:0:0:0: [sda] Mode Sense: 00 3a 00 00
[ 17.780933] sd 0:0:0:0: [sda] Write cache: enabled, read cache: enabled, doesn't support DPO or FUA
[ 17.780933] device: 'sda': device_add
[ 17.780933] sda: sda1 sda2 sda3 < sda5 sda6
[ 17.826083] bus: 'scsi': really_probe: bound device 0:0:0:0 to driver sd
[ 17.830311] sda7
[ 17.836083] device: '0:0:0:0': device_add
[ 17.836083] initcall 2_async_port_probe+0x0/0xa4 returned 0 after 1651065 usecs
[ 17.839785] sda8async_continuing @ 70 after 1659607 usec
[ 17.862713] sda9 sda10 >
[ 17.882714] device: 'sda1': device_add
[ 17.896194] device: 'sda2': device_add
[ 17.896194] device: 'sda3': device_add
[ 17.904002] device: 'sda5': device_add
[ 17.904002] device: 'sda6': device_add
[ 17.904002] device: 'sda7': device_add
[ 17.915573] device: 'sda8': device_add
[ 17.915573] device: 'sda9': device_add
[ 17.923278] device: 'sda10': device_add
[ 17.923278] device: '8:0': device_add
[ 17.923283] sd 0:0:0:0: [sda] Attached SCSI disk
[ 17.932598] initcall 4_sd_probe_async+0x0/0x1bf returned 0 after 142801 usecs
[ 18.013906] ata2.01: ATAPI: DVDRW IDE 16X, VER A079, max UDMA/66
[ 18.013906] ata2: nv_mode_filter: 0x1f39f&0x739f->0x739f, BIOS=0x7000 (0xc60000c0) ACPI=0x701f (600:60:0x1c)
[ 18.039790] device: 'eth0': device_add
[ 18.039795] forcedeth 0000:00:0a.0: ifname eth0, PHY OUI 0x5043 @ 1, addr 00:13:d4:dc:41:12
[ 18.043755] forcedeth 0000:00:0a.0: highdma csum gbit lnktim desc-v3
[ 18.049975] driver: '0000:00:0a.0': driver_bound: bound to device 'forcedeth'
[ 18.043755] work_for_cpu used greatest stack depth: 2296 bytes left
[ 18.073379] bus: 'pci': really_probe: bound device 0000:00:0a.0 to driver forcedeth
[ 18.073379] initcall init_nic+0x0/0x16 returned 0 after 1877839 usecs
[ 18.087591] calling qlcnic_init_module+0x0/0x39 @ 1
[ 18.087591] QLogic Converged Ethernet Driver v5.0.2
[ 18.097445] bus: 'pci': add driver qlcnic
[ 18.097445] initcall qlcnic_init_module+0x0/0x39 returned 0 after 8826 usecs
[ 18.108652] calling qlge_init_module+0x0/0x16 @ 1
[ 18.113452] bus: 'pci': add driver qlge
[ 18.113452] initcall qlge_init_module+0x0/0x16 returned 0 after 3854 usecs
[ 18.124287] calling rtl8139_init_module+0x0/0x16 @ 1
[ 18.124287] bus: 'pci': add driver 8139too
[ 18.133445] bus: 'pci': driver_probe_device: matched device 0000:05:07.0 with driver 8139too
[ 18.133445] bus: 'pci': really_probe: probing driver 8139too with device 0000:05:07.0
[ 18.149764] ata2.01: configured for UDMA/33
[ 18.150092] 8139too: 8139too Fast Ethernet driver 0.9.28
[ 18.149764] async_waiting @ 70
[ 18.149764] async_continuing @ 70 after 3 usec
[ 18.149764] scsi 1:0:1:0: CD-ROM DVDRW IDE 16X A079 PQ: 0 ANSI: 5
[ 18.149764] device: 'target1:0:1': device_add
[ 18.149764] device: '1:0:1:0': device_add
[ 18.149764] bus: 'scsi': add device 1:0:1:0
[ 18.149764] bus: 'scsi': driver_probe_device: matched device 1:0:1:0 with driver osst
[ 18.149764] bus: 'scsi': really_probe: probing driver osst with device 1:0:1:0
[ 18.149764] bus: 'scsi': driver_probe_device: matched device 1:0:1:0 with driver sd
[ 18.149764] bus: 'scsi': really_probe: probing driver sd with device 1:0:1:0
[ 18.149764] bus: 'scsi': driver_probe_device: matched device 1:0:1:0 with driver sr
[ 18.149764] bus: 'scsi': really_probe: probing driver sr with device 1:0:1:0
[ 18.150414] sr0: scsi3-mmc drive: 1x/48x writer cd/rw xa/form2 cdda tray
[ 18.150414] Uniform CD-ROM driver Revision: 3.20
[ 18.150414] device: 'sr0': device_add
[ 18.150414] device: '11:0': device_add
[ 18.150414] sr 1:0:1:0: Attached scsi CD-ROM sr0
[ 18.150414] driver: '1:0:1:0': driver_bound: bound to device 'sr'
[ 18.150414] bus: 'scsi': really_probe: bound device 1:0:1:0 to driver sr
[ 18.150414] device: '1:0:1:0': device_add
[ 18.150414] initcall 3_async_port_probe+0x0/0xa4 returned 0 after 1955681 usecs
[ 18.269605] ACPI: PCI Interrupt Link [APC2] enabled at IRQ 17
[ 18.279605] alloc irq_desc for 17 on node 0
[ 18.279605] alloc kstat_irqs on node 0
[ 18.286330] IOAPIC[0]: Set routing entry (2-17 -> 0x41 -> IRQ 17 Mode:1 Active:1)
[ 18.286330] 8139too 0000:05:07.0: PCI INT A -> Link[APC2] -> GSI 17 (level, low) -> IRQ 17
[ 18.300388] device: 'eth1': device_add
[ 18.310388] 8139too 0000:05:07.0: eth1: RealTek RTL8139 at 0xc000, 00:c0:df:03:68:5d, IRQ 17
[ 18.314471] driver: '0000:05:07.0': driver_bound: bound to device '8139too'
[ 18.314471] bus: 'pci': really_probe: bound device 0000:05:07.0 to driver 8139too
[ 18.338737] initcall rtl8139_init_module+0x0/0x16 returned 0 after 204571 usecs
[ 18.346138] calling znet_probe+0x0/0x27a @ 1
[ 18.352724] initcall znet_probe+0x0/0x27a returned -19 after 4615 usecs
[ 18.352724] calling sc92031_init+0x0/0x16 @ 1
[ 18.366287] bus: 'pci': add driver sc92031
[ 18.366287] initcall sc92031_init+0x0/0x16 returned 0 after 4119 usecs
[ 18.377044] calling tun_init+0x0/0x79 @ 1
[ 18.377044] tun: Universal TUN/TAP device driver, 1.6
[ 18.377044] tun: (C) 1999-2004 Max Krasnyansky <maxk@qualcomm.com>
[ 18.386204] device: 'tun': device_add
[ 18.396068] initcall tun_init+0x0/0x79 returned 0 after 14885 usecs
[ 18.396068] calling rio_init+0x0/0x16 @ 1
[ 18.406754] bus: 'pci': add driver dl2k
[ 18.406754] initcall rio_init+0x0/0x16 returned 0 after 3867 usecs
[ 18.416902] calling rtl8169_init_module+0x0/0x16 @ 1
[ 18.416902] bus: 'pci': add driver r8169
[ 18.425889] initcall rtl8169_init_module+0x0/0x16 returned 0 after 3943 usecs
[ 18.433135] calling dnet_init+0x0/0xf @ 1
[ 18.433135] bus: 'platform': add driver dnet
[ 18.433135] initcall dnet_init+0x0/0xf returned 0 after 4249 usecs
[ 18.447772] calling arcnet_init+0x0/0x50 @ 1
[ 18.447772] arcnet loaded.
[ 18.454855] initcall arcnet_init+0x0/0x50 returned 0 after 2660 usecs
[ 18.454855] calling com90io_init+0x0/0x58 @ 1
[ 18.465747] arcnet: COM90xx IO-mapped mode support (by David Woodhouse et el.)
[ 18.465747] E-mail me if you actually test this driver, please!
[ 18.473002] arc%d: No autoprobe for IO mapped cards; you must specify the base address!
[ 18.487016] initcall com90io_init+0x0/0x58 returned -19 after 20781 usecs
[ 18.493828] calling arc_rimi_init+0x0/0x71 @ 1
[ 18.493828] arcnet: RIM I (entirely mem-mapped) support
[ 18.493828] E-mail me if you actually test the RIM I driver, please!
[ 18.503622] arc%d: Given: node 00h, shmem 0h, irq 0
[ 18.504948] arc%d: No autoprobe for RIM I; you must specify the shmem and irq!
[ 18.514948] initcall arc_rimi_init+0x0/0x71 returned -5 after 23341 usecs
[ 18.529066] initcall arc_rimi_init+0x0/0x71 returned with error code -5
[ 18.535775] calling catc_init+0x0/0x2d @ 1
[ 18.535775] bus: 'usb': add driver catc
[ 18.543809] usbcore: registered new interface driver catc
[ 18.543809] catc: v2.8:CATC EL1210A NetMate USB Ethernet driver
[ 18.555206] initcall catc_init+0x0/0x2d returned 0 after 14890 usecs
[ 18.555206] calling ipheth_init+0x0/0x2f @ 1
[ 18.565927] bus: 'usb': add driver ipheth
[ 18.565927] usbcore: registered new interface driver ipheth
[ 18.575592] initcall ipheth_init+0x0/0x2f returned 0 after 9438 usecs
[ 18.575592] calling init_netconsole+0x0/0xd8 @ 1
[ 18.586744] console [netcon0] enabled
[ 18.586744] netconsole: network logging started
[ 18.594953] initcall init_netconsole+0x0/0xd8 returned 0 after 8016 usecs
[ 18.594953] calling init+0x0/0xf @ 1
[ 18.605403] bus: 'virtio': add driver virtio_net
[ 18.605403] initcall init+0x0/0xf returned 0 after 4574 usecs
[ 18.615849] calling amb_module_init+0x0/0x48 @ 1
[ 18.615849] Madge ATM Ambassador driver version 1.2.4
[ 18.615849] amb: debug bitmap is 0
[ 18.625614] bus: 'pci': add driver amb
[ 18.632773] initcall amb_module_init+0x0/0x48 returned 0 after 12057 usecs
[ 18.632773] calling fore200e_module_init+0x0/0x20 @ 1
[ 18.644926] fore200e: FORE Systems 200E-series ATM driver - version 0.3e
[ 18.644926] bus: 'pci': add driver fore_200e
[ 18.655906] initcall fore200e_module_init+0x0/0x20 returned 0 after 10821 usecs
[ 18.663325] calling idt77252_init+0x0/0x2a @ 1
[ 18.663325] idt77252_init: at c191b0db
[ 18.663325] bus: 'pci': add driver idt77252
[ 18.675804] initcall idt77252_init+0x0/0x2a returned 0 after 7876 usecs
[ 18.675804] calling firestream_init_module+0x0/0x16 @ 1
[ 18.687861] bus: 'pci': add driver firestream
[ 18.687861] initcall firestream_init_module+0x0/0x16 returned 0 after 4363 usecs
[ 18.699735] calling lanai_module_init+0x0/0x2d @ 1
[ 18.699735] bus: 'pci': add driver lanai
[ 18.699735] initcall lanai_module_init+0x0/0x2d returned 0 after 3937 usecs
[ 18.705621] calling i2o_iop_init+0x0/0x44 @ 1
[ 18.715621] I2O subsystem v1.325
[ 18.723307] i2o: max drivers = 8
[ 18.723307] bus: 'i2o': registered
[ 18.723312] bus: 'i2o': add driver exec-osm
[ 18.734462] bus: 'pci': add driver PCI_I2O
[ 18.734462] initcall i2o_iop_init+0x0/0x44 returned 0 after 18259 usecs
[ 18.745383] calling i2o_bus_init+0x0/0x37 @ 1
[ 18.745383] I2O Bus Adapter OSM v1.317
[ 18.753588] bus: 'i2o': add driver bus-osm
[ 18.753588] initcall i2o_bus_init+0x0/0x37 returned 0 after 7742 usecs
[ 18.764293] calling fusion_init+0x0/0x109 @ 1
[ 18.764298] Fusion MPT base driver 3.04.15
[ 18.764298] Copyright (c) 1999-2008 LSI Corporation
[ 18.772847] initcall fusion_init+0x0/0x109 returned 0 after 8812 usecs
[ 18.784296] calling mptspi_init+0x0/0xb9 @ 1
[ 18.784296] Fusion MPT SPI Host driver 3.04.15
[ 18.793109] bus: 'pci': add driver mptspi
[ 18.793109] initcall mptspi_init+0x0/0xb9 returned 0 after 8379 usecs
[ 18.803684] calling uio_init+0x0/0x7 @ 1
[ 18.803684] initcall uio_init+0x0/0x7 returned 0 after 1 usecs
[ 18.813538] calling hilscher_init_module+0x0/0x16 @ 1
[ 18.813538] bus: 'pci': add driver hilscher
[ 18.822872] initcall hilscher_init_module+0x0/0x16 returned 0 after 4198 usecs
[ 18.822872] calling uio_pdrv_init+0x0/0xf @ 1
[ 18.834649] bus: 'platform': add driver uio_pdrv
[ 18.834649] initcall uio_pdrv_init+0x0/0xf returned 0 after 4575 usecs
[ 18.845872] calling netx_init_module+0x0/0x16 @ 1
[ 18.845872] bus: 'pci': add driver netx
[ 18.854513] initcall netx_init_module+0x0/0x16 returned 0 after 3859 usecs
[ 18.854513] calling cdrom_init+0x0/0xc @ 1
[ 18.865686] initcall cdrom_init+0x0/0xc returned 0 after 2 usecs
[ 18.865686] calling uwb_subsys_init+0x0/0x46 @ 1
[ 18.876415] device class 'uwb_rc': registering
[ 18.876415] initcall uwb_subsys_init+0x0/0x46 returned 0 after 4458 usecs
[ 18.887778] calling umc_bus_init+0x0/0xf @ 1
[ 18.887778] bus: 'umc': registered
[ 18.895629] initcall umc_bus_init+0x0/0xf returned 0 after 3415 usecs
[ 18.895629] calling whci_init+0x0/0x16 @ 1
[ 18.906262] bus: 'pci': add driver whci
[ 18.906262] initcall whci_init+0x0/0x16 returned 0 after 3859 usecs
[ 18.916490] calling whcrc_driver_init+0x0/0x16 @ 1
[ 18.916490] bus: 'umc': add driver whc-rc
[ 18.925391] initcall whcrc_driver_init+0x0/0x16 returned 0 after 3991 usecs
[ 18.925391] calling hwarc_driver_init+0x0/0x16 @ 1
[ 18.937307] bus: 'usb': add driver hwa-rc
[ 18.937307] usbcore: registered new interface driver hwa-rc
[ 18.946972] initcall hwarc_driver_init+0x0/0x16 returned 0 after 9438 usecs
[ 18.953939] calling ehci_hcd_init+0x0/0xbf @ 1
[ 18.953939] ehci_hcd: USB 2.0 'Enhanced' Host Controller (EHCI) Driver
[ 18.965005] ehci_hcd: block sizes: qh 64 qtd 96 itd 160 sitd 96
[ 18.965005] bus: 'pci': add driver ehci_hcd
[ 18.975138] bus: 'pci': driver_probe_device: matched device 0000:00:02.1 with driver ehci_hcd
[ 18.975138] bus: 'pci': really_probe: probing driver ehci_hcd with device 0000:00:02.1
[ 18.991699] ACPI: PCI Interrupt Link [APCL] enabled at IRQ 22
[ 18.991699] alloc irq_desc for 22 on node 0
[ 18.991699] alloc kstat_irqs on node 0
[ 18.997506] IOAPIC[0]: Set routing entry (2-22 -> 0x49 -> IRQ 22 Mode:1 Active:1)
[ 19.007506] ehci_hcd 0000:00:02.1: PCI INT B -> Link[APCL] -> GSI 22 (level, low) -> IRQ 22
[ 19.014998] ehci_hcd 0000:00:02.1: setting latency timer to 64
[ 19.014998] ehci_hcd 0000:00:02.1: EHCI Host Controller
[ 19.024472] drivers/usb/core/inode.c: creating file 'devices'
[ 19.024472] drivers/usb/core/inode.c: creating file '001'
[ 19.036077] ehci_hcd 0000:00:02.1: new USB bus registered, assigned bus number 1
[ 19.046077] ehci_hcd 0000:00:02.1: reset hcs_params 0x10148a dbg=1 cc=1 pcc=4 !ppc ports=10
[ 19.046077] ehci_hcd 0000:00:02.1: reset portroute 0 0 0 0 0 0 0 0 0 0
[ 19.058497] ehci_hcd 0000:00:02.1: reset hcc_params a086 caching frame 256/512/1024 park
[ 19.068497] ehci_hcd 0000:00:02.1: park 0
[ 19.068497] ehci_hcd 0000:00:02.1: debug port 1
[ 19.076602] ehci_hcd 0000:00:02.1: reset command 080b02 park=3 ithresh=8 period=1024 Reset HALT
[ 19.085286] ehci_hcd 0000:00:02.1: bogus port configuration: cc=1 x pcc=4 < ports=10
[ 19.085286] ehci_hcd 0000:00:02.1: cache line size of 32 is not supported
[ 19.098538] ehci_hcd 0000:00:02.1: supports USB remote wakeup
[ 19.108538] ehci_hcd 0000:00:02.1: irq 22, io mem 0x40000000
[ 19.108538] ehci_hcd 0000:00:02.1: reset command 080b02 park=3 ithresh=8 period=1024 Reset HALT
[ 19.118731] ehci_hcd 0000:00:02.1: init command 010009 (park)=0 ithresh=1 period=256 RUN
[ 19.152754] ehci_hcd 0000:00:02.1: USB 2.0 started, EHCI 1.00
[ 19.152754] usb usb1: default language 0x0409
[ 19.153165] usb usb1: udev 1, busnum 1, minor = 0
[ 19.153165] usb usb1: New USB device found, idVendor=1d6b, idProduct=0002
[ 19.164770] usb usb1: New USB device strings: Mfr=3, Product=2, SerialNumber=1
[ 19.164770] usb usb1: Product: EHCI Host Controller
[ 19.176869] usb usb1: Manufacturer: Linux 2.6.34-08129-gcc106eb-dirty ehci_hcd
[ 19.186869] usb usb1: SerialNumber: 0000:00:02.1
[ 19.186869] device: 'usb1': device_add
[ 19.194097] bus: 'usb': add device usb1
[ 19.194097] bus: 'usb': driver_probe_device: matched device usb1 with driver usb
[ 19.204335] bus: 'usb': really_probe: probing driver usb with device usb1
[ 19.204335] usb usb1: usb_probe_device
[ 19.214899] usb usb1: configuration #1 chosen from 1 choice
[ 19.214899] usb usb1: adding 1-0:1.0 (config #1, interface 0)
[ 19.226408] device: '1-0:1.0': device_add
[ 19.226408] bus: 'usb': add device 1-0:1.0
[ 19.236408] bus: 'usb': driver_probe_device: matched device 1-0:1.0 with driver hub
[ 19.236408] bus: 'usb': really_probe: probing driver hub with device 1-0:1.0
[ 19.249427] hub 1-0:1.0: usb_probe_interface
[ 19.259427] hub 1-0:1.0: usb_probe_interface - got id
[ 19.259427] hub 1-0:1.0: USB hub found
[ 19.259427] hub 1-0:1.0: 10 ports detected
[ 19.262753] async/1 used greatest stack depth: 1920 bytes left
[ 19.272558] hub 1-0:1.0: standalone hub
[ 19.282558] hub 1-0:1.0: no power switching (usb 1.0)
[ 19.282558] hub 1-0:1.0: individual port over-current protection
[ 19.287483] hub 1-0:1.0: power on to power good time: 20ms
[ 19.297483] hub 1-0:1.0: local power source is good
[ 19.297483] hub 1-0:1.0: trying to enable port power on non-switchable hub
[ 19.304869] driver: '1-0:1.0': driver_bound: bound to device 'hub'
[ 19.304869] bus: 'usb': really_probe: bound device 1-0:1.0 to driver hub
[ 19.317928] device: 'ep_81': device_add
[ 19.317928] drivers/usb/core/inode.c: creating file '001'
[ 19.327928] driver: 'usb1': driver_bound: bound to device 'usb'
[ 19.337246] bus: 'usb': really_probe: bound device usb1 to driver usb
[ 19.337246] device: 'ep_00': device_add
[ 19.343589] driver: '0000:00:02.1': driver_bound: bound to device 'ehci_hcd'
[ 19.343589] bus: 'pci': really_probe: bound device 0000:00:02.1 to driver ehci_hcd
[ 19.368210] initcall ehci_hcd_init+0x0/0xbf returned 0 after 400250 usecs
[ 19.375119] calling isp116x_init+0x0/0x36 @ 1
[ 19.375119] 116x: driver isp116x-hcd, 03 Nov 2005
[ 19.384305] bus: 'platform': add driver isp116x-hcd
[ 19.384305] initcall isp116x_init+0x0/0x36 returned 0 after 9453 usecs
[ 19.395806] calling ohci_hcd_mod_init+0x0/0x94 @ 1
[ 19.395806] ohci_hcd: USB 1.1 'Open' Host Controller (OHCI) Driver
[ 19.396874] ohci_hcd: block sizes: ed 64 td 64
[ 19.406874] bus: 'pci': add driver ohci_hcd
[ 19.415531] bus: 'pci': driver_probe_device: matched device 0000:00:02.0 with driver ohci_hcd
[ 19.415536] hub 1-0:1.0: state 7 ports 10 chg 0000 evt 0000
[ 19.419632] bus: 'pci': really_probe: probing driver ohci_hcd with device 0000:00:02.0
[ 19.437559] ACPI: PCI Interrupt Link [APCF] enabled at IRQ 21
[ 19.437656] alloc irq_desc for 21 on node 0
[ 19.437656] alloc kstat_irqs on node 0
[ 19.445244] IOAPIC[0]: Set routing entry (2-21 -> 0x51 -> IRQ 21 Mode:1 Active:1)
[ 19.445244] ohci_hcd 0000:00:02.0: PCI INT A -> Link[APCF] -> GSI 21 (level, low) -> IRQ 21
[ 19.459431] ohci_hcd 0000:00:02.0: setting latency timer to 64
[ 19.469431] ohci_hcd 0000:00:02.0: OHCI Host Controller
[ 19.469431] drivers/usb/core/inode.c: creating file '002'
[ 19.475984] ohci_hcd 0000:00:02.0: new USB bus registered, assigned bus number 2
[ 19.485984] ohci_hcd 0000:00:02.0: created debug files
[ 19.485984] ohci_hcd 0000:00:02.0: supports USB remote wakeup
[ 19.494401] ohci_hcd 0000:00:02.0: irq 21, io mem 0xda102000
[ 19.562765] ohci_hcd 0000:00:02.0: OHCI controller state
[ 19.562765] ohci_hcd 0000:00:02.0: OHCI 1.0, NO legacy support registers
[ 19.566838] ohci_hcd 0000:00:02.0: control 0x683 RWE RWC HCFS=operational CBSR=3
[ 19.576838] ohci_hcd 0000:00:02.0: cmdstatus 0x00000 SOC=0
[ 19.576838] ohci_hcd 0000:00:02.0: intrstatus 0x00000004 SF
[ 19.585307] ohci_hcd 0000:00:02.0: intrenable 0x8000004a MIE RHSC RD WDH
[ 19.585307] ohci_hcd 0000:00:02.0: hcca frame #0028
[ 19.596895] ohci_hcd 0000:00:02.0: roothub.a 0100020a POTPGT=1 NPS NDP=10(10)
[ 19.606895] ohci_hcd 0000:00:02.0: roothub.b 00000000 PPCM=0000 DR=0000
[ 19.606895] ohci_hcd 0000:00:02.0: roothub.status 00008000 DRWE
[ 19.616578] ohci_hcd 0000:00:02.0: roothub.portstatus [0] 0x00000100 PPS
[ 19.626578] ohci_hcd 0000:00:02.0: roothub.portstatus [1] 0x00000100 PPS
[ 19.626578] ohci_hcd 0000:00:02.0: roothub.portstatus [2] 0x00000100 PPS
[ 19.636693] ohci_hcd 0000:00:02.0: roothub.portstatus [3] 0x00000100 PPS
[ 19.646693] ohci_hcd 0000:00:02.0: roothub.portstatus [4] 0x00000100 PPS
[ 19.646693] ohci_hcd 0000:00:02.0: roothub.portstatus [5] 0x00000100 PPS
[ 19.656808] ohci_hcd 0000:00:02.0: roothub.portstatus [6] 0x00000100 PPS
[ 19.666808] ohci_hcd 0000:00:02.0: roothub.portstatus [7] 0x00000100 PPS
[ 19.666808] ohci_hcd 0000:00:02.0: roothub.portstatus [8] 0x00000100 PPS
[ 19.676923] ohci_hcd 0000:00:02.0: roothub.portstatus [9] 0x00000100 PPS
[ 19.686923] usb usb2: default language 0x0409
[ 19.686923] usb usb2: udev 1, busnum 2, minor = 128
[ 19.693631] usb usb2: New USB device found, idVendor=1d6b, idProduct=0001
[ 19.693631] usb usb2: New USB device strings: Mfr=3, Product=2, SerialNumber=1
[ 19.707076] usb usb2: Product: OHCI Host Controller
[ 19.707076] usb usb2: Manufacturer: Linux 2.6.34-08129-gcc106eb-dirty ohci_hcd
[ 19.719183] usb usb2: SerialNumber: 0000:00:02.0
[ 19.729183] device: 'usb2': device_add
[ 19.729183] bus: 'usb': add device usb2
[ 19.729183] bus: 'usb': driver_probe_device: matched device usb2 with driver usb
[ 19.739222] bus: 'usb': really_probe: probing driver usb with device usb2
[ 19.749222] usb usb2: usb_probe_device
[ 19.749222] usb usb2: configuration #1 chosen from 1 choice
[ 19.756016] usb usb2: adding 2-0:1.0 (config #1, interface 0)
[ 19.756016] device: '2-0:1.0': device_add
[ 19.765359] bus: 'usb': add device 2-0:1.0
[ 19.765359] bus: 'usb': driver_probe_device: matched device 2-0:1.0 with driver hub
[ 19.777043] bus: 'usb': really_probe: probing driver hub with device 2-0:1.0
[ 19.787043] hub 2-0:1.0: usb_probe_interface
[ 19.787043] hub 2-0:1.0: usb_probe_interface - got id
[ 19.794098] hub 2-0:1.0: USB hub found
[ 19.794098] hub 2-0:1.0: 10 ports detected
[ 19.794098] hub 2-0:1.0: standalone hub
[ 19.805166] hub 2-0:1.0: no power switching (usb 1.0)
[ 19.805166] hub 2-0:1.0: global over-current protection
[ 19.815445] hub 2-0:1.0: power on to power good time: 2ms
[ 19.815445] hub 2-0:1.0: local power source is good
[ 19.825767] hub 2-0:1.0: no over-current condition exists
[ 19.825767] hub 2-0:1.0: trying to enable port power on non-switchable hub
[ 19.838049] driver: '2-0:1.0': driver_bound: bound to device 'hub'
[ 19.848049] bus: 'usb': really_probe: bound device 2-0:1.0 to driver hub
[ 19.848049] device: 'ep_81': device_add
[ 19.854949] drivers/usb/core/inode.c: creating file '001'
[ 19.854949] driver: 'usb2': driver_bound: bound to device 'usb'
[ 19.866346] bus: 'usb': really_probe: bound device usb2 to driver usb
[ 19.876346] device: 'ep_00': device_add
[ 19.876713] driver: '0000:00:02.0': driver_bound: bound to device 'ohci_hcd'
[ 19.893766] bus: 'pci': really_probe: bound device 0000:00:02.0 to driver ohci_hcd
[ 19.893766] initcall ohci_hcd_mod_init+0x0/0x94 returned 0 after 489005 usecs
[ 19.908568] calling uhci_hcd_init+0x0/0xf5 @ 1
[ 19.913108] uhci_hcd: USB Universal Host Controller Interface driver
[ 19.913108] bus: 'pci': add driver uhci_hcd
[ 19.923882] initcall uhci_hcd_init+0x0/0xf5 returned 0 after 10638 usecs
[ 19.923882] calling xhci_hcd_init+0x0/0x25 @ 1
[ 19.935244] bus: 'pci': add driver xhci_hcd
[ 19.935244] initcall xhci_hcd_init+0x0/0x25 returned 0 after 4212 usecs
[ 19.946181] calling r8a66597_init+0x0/0x36 @ 1
[ 19.946185] hub 2-0:1.0: state 7 ports 10 chg 0000 evt 0000
[ 19.956286] r8a66597_hcd: driver r8a66597_hcd, 2009-05-26
[ 19.956286] bus: 'platform': add driver r8a66597_hcd
[ 19.966661] initcall r8a66597_init+0x0/0x36 returned 0 after 10195 usecs
[ 19.973439] calling isp1760_init+0x0/0x44 @ 1
[ 19.973439] bus: 'platform': add driver isp1760
[ 19.982770] bus: 'pci': add driver isp1760
[ 19.982770] initcall isp1760_init+0x0/0x44 returned 0 after 8937 usecs
[ 19.993571] calling wusbcore_init+0x0/0x6c @ 1
[ 19.993576] initcall wusbcore_init+0x0/0x6c returned 0 after 105 usecs
[ 19.998198] calling acm_init+0x0/0xcb @ 1
[ 19.998198] bus: 'usb': add driver cdc_acm
[ 20.004753] usbcore: registered new interface driver cdc_acm
[ 20.004753] cdc_acm: v0.26:USB Abstract Control Model driver for USB modems and ISDN adapters
[ 20.017355] initcall acm_init+0x0/0xcb returned 0 after 18039 usecs
[ 20.027355] calling wdm_init+0x0/0x16 @ 1
[ 20.027355] bus: 'usb': add driver cdc_wdm
[ 20.027355] usbcore: registered new interface driver cdc_wdm
[ 20.037575] initcall wdm_init+0x0/0x16 returned 0 after 9621 usecs
[ 20.047575] calling usb_usual_init+0x0/0x32 @ 1
[ 20.047575] bus: 'usb': add driver libusual
[ 20.053771] usbcore: registered new interface driver libusual
[ 20.053771] initcall usb_usual_init+0x0/0x32 returned 0 after 9927 usecs
[ 20.065265] calling usb_mdc800_init+0x0/0x28c @ 1
[ 20.065265] bus: 'usb': add driver mdc800
[ 20.075265] usbcore: registered new interface driver mdc800
[ 20.075265] mdc800: v0.7.5 (30/10/2000):USB Driver for Mustek MDC800 Digital Camera
[ 20.087408] initcall usb_mdc800_init+0x0/0x28c returned 0 after 16947 usecs
[ 20.097408] calling adu_init+0x0/0x86 @ 1
[ 20.097408] drivers/usb/misc/adutux.c: adu_init : enter
[ 20.104377] bus: 'usb': add driver adutux
[ 20.104377] usbcore: registered new interface driver adutux
[ 20.113798] adutux adutux (see www.ontrak.net) v0.0.13
[ 20.113798] adutux is an experimental driver. Use at your own risk
[ 20.124805] drivers/usb/misc/adutux.c: adu_init : leave, return value 0
[ 20.124805] initcall adu_init+0x0/0x86 returned 0 after 32254 usecs
[ 20.137780] calling appledisplay_init+0x0/0x51 @ 1
[ 20.142751] bus: 'usb': add driver appledisplay
[ 20.157303] usbcore: registered new interface driver appledisplay
[ 20.163492] initcall appledisplay_init+0x0/0x51 returned 0 after 10581 usecs
[ 20.163492] calling ld_usb_init+0x0/0x35 @ 1
[ 20.174906] bus: 'usb': add driver ldusb
[ 20.174906] usbcore: registered new interface driver ldusb
[ 20.184422] initcall ld_usb_init+0x0/0x35 returned 0 after 9292 usecs
[ 20.184422] calling usb_led_init+0x0/0x2f @ 1
[ 20.195315] bus: 'usb': add driver usbled
[ 20.195315] usbcore: registered new interface driver usbled
[ 20.204998] initcall usb_led_init+0x0/0x2f returned 0 after 9455 usecs
[ 20.204998] calling usbatm_usb_init+0x0/0x5c @ 1
[ 20.216238] drivers/usb/atm/usbatm.c: usbatm_usb_init: driver version 1.10
[ 20.223119] initcall usbatm_usb_init+0x0/0x5c returned 0 after 6719 usecs
[ 20.223119] calling i8042_init+0x0/0x61 @ 1
[ 20.234177] bus: 'pnp': add driver i8042 kbd
[ 20.234177] bus: 'pnp': driver_probe_device: matched device 00:0b with driver i8042 kbd
[ 20.246493] bus: 'pnp': really_probe: probing driver i8042 kbd with device 00:0b
[ 20.253894] driver: '00:0b': driver_bound: bound to device 'i8042 kbd'
[ 20.253894] bus: 'pnp': really_probe: bound device 00:0b to driver i8042 kbd
[ 20.267484] bus: 'pnp': add driver i8042 aux
[ 20.267484] bus: 'pnp': driver_probe_device: matched device 00:0a with driver i8042 aux
[ 20.279861] bus: 'pnp': really_probe: probing driver i8042 aux with device 00:0a
[ 20.279861] driver: '00:0a': driver_bound: bound to device 'i8042 aux'
[ 20.293805] bus: 'pnp': really_probe: bound device 00:0a to driver i8042 aux
[ 20.293805] PNP: PS/2 Controller [PNP0303:PS2K,PNP0f13:PS2M] at 0x60,0x64 irq 1,12
[ 20.308495] Registering platform device 'i8042'. Parent at platform
[ 20.314831] device: 'i8042': device_add
[ 20.314831] bus: 'platform': add device i8042
[ 20.323047] bus: 'platform': add driver i8042
[ 20.323047] bus: 'platform': driver_probe_device: matched device i8042 with driver i8042
[ 20.335597] bus: 'platform': really_probe: probing driver i8042 with device i8042
[ 20.343085] serio: i8042 KBD port at 0x60,0x64 irq 1
[ 20.343090] serio: i8042 AUX port at 0x60,0x64 irq 12
[ 20.343090] device: 'serio0': device_add
[ 20.343090] bus: 'serio': add device serio0
[ 20.364671] driver: 'i8042': driver_bound: bound to device 'i8042'
[ 20.364671] device: 'serio1': device_add
[ 20.364671] bus: 'serio': add device serio1
[ 20.378957] bus: 'platform': really_probe: bound device i8042 to driver i8042
[ 20.386097] initcall i8042_init+0x0/0x61 returned 0 after 148414 usecs
[ 20.386097] calling pcips2_init+0x0/0x16 @ 1
[ 20.397043] bus: 'pci': add driver pcips2
[ 20.397043] initcall pcips2_init+0x0/0x16 returned 0 after 4031 usecs
[ 20.407617] calling serio_raw_init+0x0/0x16 @ 1
[ 20.407617] bus: 'serio': add driver serio_raw
[ 20.416690] initcall serio_raw_init+0x0/0x16 returned 0 after 4433 usecs
[ 20.423487] calling altera_ps2_init+0x0/0xf @ 1
[ 20.423487] bus: 'platform': add driver altera_ps2
[ 20.432907] initcall altera_ps2_init+0x0/0xf returned 0 after 4756 usecs
[ 20.432907] calling emu_init+0x0/0x16 @ 1
[ 20.443785] bus: 'pci': add driver Emu10k1_gameport
[ 20.443785] initcall emu_init+0x0/0x16 returned 0 after 4872 usecs
[ 20.454963] calling mousedev_init+0x0/0x51 @ 1
[ 20.454963] device: 'mice': device_add
[ 20.463284] mice: PS/2 mouse device common for all mice
[ 20.463284] initcall mousedev_init+0x0/0x51 returned 0 after 9072 usecs
[ 20.475411] calling atkbd_init+0x0/0x20 @ 1
[ 20.475411] bus: 'serio': add driver atkbd
[ 20.483804] initcall atkbd_init+0x0/0x20 returned 0 after 4108 usecs
[ 20.483804] bus: 'serio': driver_probe_device: matched device serio0 with driver atkbd
[ 20.483804] bus: 'serio': really_probe: probing driver atkbd with device serio0
[ 20.502786] calling max7359_init+0x0/0x11 @ 1
[ 20.502786] bus: 'i2c': add driver max7359
[ 20.512785] i2c-core: driver [max7359] registered
[ 20.512785] initcall max7359_init+0x0/0x11 returned 0 after 8693 usecs
[ 20.522785] calling pc110pad_init+0x0/0x159 @ 1
[ 20.522785] initcall pc110pad_init+0x0/0x159 returned -19 after 3 usecs
[ 20.536692] calling sermouse_init+0x0/0x16 @ 1
[ 20.536698] bus: 'serio': add driver sermouse
[ 20.536698] device: 'input0': device_add
[ 20.536698] input: AT Translated Set 2 keyboard as /class/input/input0
[ 20.536698] driver: 'serio0': driver_bound: bound to device 'atkbd'
[ 20.536698] bus: 'serio': really_probe: bound device serio0 to driver atkbd
[ 20.536698] bus: 'serio': driver_probe_device: matched device serio1 with driver atkbd
[ 20.536698] bus: 'serio': really_probe: probing driver atkbd with device serio1
[ 20.584451] initcall sermouse_init+0x0/0x16 returned 0 after 42298 usecs
[ 20.584451] calling synaptics_i2c_init+0x0/0x11 @ 1
[ 20.596225] bus: 'i2c': add driver synaptics_i2c
[ 20.596225] i2c-core: driver [synaptics_i2c] registered
[ 20.606140] initcall synaptics_i2c_init+0x0/0x11 returned 0 after 9681 usecs
[ 20.606140] calling adi_init+0x0/0x16 @ 1
[ 20.606140] bus: 'gameport': add driver adi
[ 20.612788] initcall adi_init+0x0/0x16 returned 0 after 4178 usecs
[ 20.627747] calling analog_init+0x0/0xcd @ 1
[ 20.627747] bus: 'gameport': add driver analog
[ 20.636564] initcall analog_init+0x0/0xcd returned 0 after 4426 usecs
[ 20.643085] calling gf2k_init+0x0/0x16 @ 1
[ 20.643085] bus: 'gameport': add driver gf2k
[ 20.643090] initcall gf2k_init+0x0/0x16 returned 0 after 4258 usecs
[ 20.657906] calling grip_init+0x0/0x16 @ 1
[ 20.657906] bus: 'gameport': add driver grip
[ 20.666378] initcall grip_init+0x0/0x16 returned 0 after 4254 usecs
[ 20.666378] calling grip_init+0x0/0x16 @ 1
[ 20.676912] bus: 'gameport': add driver grip_mp
[ 20.676917] initcall grip_init+0x0/0x16 returned 0 after 4498 usecs
[ 20.687797] calling interact_init+0x0/0x16 @ 1
[ 20.687797] bus: 'gameport': add driver interact
[ 20.696963] initcall interact_init+0x0/0x16 returned 0 after 4602 usecs
[ 20.703667] calling joydump_init+0x0/0x16 @ 1
[ 20.703667] bus: 'gameport': add driver joydump
[ 20.703672] initcall joydump_init+0x0/0x16 returned 0 after 4501 usecs
[ 20.719258] calling magellan_init+0x0/0x16 @ 1
[ 20.723799] bus: 'serio': add driver magellan
[ 20.723804] initcall magellan_init+0x0/0x16 returned 0 after 4335 usecs
[ 20.734859] calling spaceball_init+0x0/0x16 @ 1
[ 20.734859] bus: 'serio': add driver spaceball
[ 20.743937] initcall spaceball_init+0x0/0x16 returned 0 after 4430 usecs
[ 20.743937] calling warrior_init+0x0/0x16 @ 1
[ 20.755164] bus: 'serio': add driver warrior
[ 20.755169] initcall warrior_init+0x0/0x16 returned 0 after 4248 usecs
[ 20.766049] calling i2c_smbus_init+0x0/0x11 @ 1
[ 20.766049] bus: 'i2c': add driver smbus_alert
[ 20.775122] i2c-core: driver [smbus_alert] registered
[ 20.775122] initcall i2c_smbus_init+0x0/0x11 returned 0 after 9344 usecs
[ 20.786946] calling i2c_dev_init+0x0/0x9c @ 1
[ 20.786946] i2c /dev entries driver
[ 20.794892] device class 'i2c-dev': registering
[ 20.794892] bus: 'i2c': add driver dev_driver
[ 20.803862] i2c-core: driver [dev_driver] registered
[ 20.803862] initcall i2c_dev_init+0x0/0x9c returned 0 after 17088 usecs
[ 20.815510] calling acpi_smbus_cmi_init+0x0/0xf @ 1
[ 20.815510] bus: 'acpi': add driver cmi
[ 20.824324] initcall acpi_smbus_cmi_init+0x0/0xf returned 0 after 3916 usecs
[ 20.824324] calling ali1563_init+0x0/0x16 @ 1
[ 20.835991] bus: 'pci': add driver ali1563_smbus
[ 20.835991] initcall ali1563_init+0x0/0x16 returned 0 after 4621 usecs
[ 20.847257] calling i2c_ali15x3_init+0x0/0x16 @ 1
[ 20.847257] bus: 'pci': add driver ali15x3_smbus
[ 20.856678] initcall i2c_ali15x3_init+0x0/0x16 returned 0 after 4620 usecs
[ 20.863664] calling i2c_amd8111_init+0x0/0x16 @ 1
[ 20.863664] bus: 'pci': add driver amd8111_smbus2
[ 20.873170] initcall i2c_amd8111_init+0x0/0x16 returned 0 after 4704 usecs
[ 20.873170] calling i2c_sis630_init+0x0/0x16 @ 1
[ 20.884863] bus: 'pci': add driver sis630_smbus
[ 20.884863] initcall i2c_sis630_init+0x0/0x16 returned 0 after 4532 usecs
[ 20.896302] calling i2c_adap_simtec_init+0x0/0xf @ 1
[ 20.896302] bus: 'platform': add driver simtec-i2c
[ 20.906157] initcall i2c_adap_simtec_init+0x0/0xf returned 0 after 4757 usecs
[ 20.913368] calling i2c_parport_init+0x0/0x145 @ 1
[ 20.913368] i2c-parport-light: adapter type unspecified
[ 20.923482] initcall i2c_parport_init+0x0/0x145 returned -19 after 5115 usecs
[ 20.923482] calling pps_tty_init+0x0/0x8c @ 1
[ 20.935069] PPS line discipline registered
[ 20.935069] initcall pps_tty_init+0x0/0x8c returned 0 after 4000 usecs
[ 20.945703] calling pda_power_init+0x0/0xf @ 1
[ 20.945703] bus: 'platform': add driver pda-power
[ 20.954950] initcall pda_power_init+0x0/0xf returned 0 after 4710 usecs
[ 20.954950] calling max8925_power_init+0x0/0xf @ 1
[ 20.966555] bus: 'platform': add driver max8925-power
[ 20.966555] initcall max8925_power_init+0x0/0xf returned 0 after 5017 usecs
[ 20.978663] calling max17040_init+0x0/0x11 @ 1
[ 20.983203] bus: 'i2c': add driver max17040
[ 20.983203] i2c-core: driver [max17040] registered
[ 20.983203] initcall max17040_init+0x0/0x11 returned 0 after 8843 usecs
[ 20.998883] calling atk0110_init+0x0/0x28 @ 1
[ 21.003337] bus: 'acpi': add driver ATK0110
[ 21.003337] bus: 'acpi': driver_probe_device: matched device ATK0110:00 with driver ATK0110
[ 21.015922] bus: 'acpi': really_probe: probing driver ATK0110 with device ATK0110:00
[ 21.023669] ATK0110 ATK0110:00: adding...
[ 21.023669] ATK0110 ATK0110:00: board ID = A8N-E
[ 21.023669] ATK0110 ATK0110:00: method GGRP not found: AE_NOT_FOUND
[ 21.038767] ATK0110 ATK0110:00: method GITM not found: AE_NOT_FOUND
[ 21.045051] ATK0110 ATK0110:00: method SITM not found: AE_NOT_FOUND
[ 21.045051] ATK0110 ATK0110:00: Using old hwmon interface
[ 21.056738] ATK0110 ATK0110:00: voltage: 0x6020000 Vcore Voltage [1450-1750] enabled
[ 21.057031] ohci_hcd 0000:00:02.0: auto-stop root hub
[ 21.057031] ATK0110 ATK0110:00: voltage: 0x6020001 +3.3 Voltage [3000-3600] enabled
[ 21.068038] ATK0110 ATK0110:00: voltage: 0x6020002 +5.0 Voltage [4500-5500] enabled
[ 21.078038] ATK0110 ATK0110:00: voltage: 0x6020003 +12.0 Voltage [11200-13200] enabled
[ 21.085794] ATK0110 ATK0110:00: temperature: 0x6030000 CPU Temperature [900-1250] enabled
[ 21.085794] ATK0110 ATK0110:00: temperature: 0x6030001 MB Temperature [700-1250] enabled
[ 21.100435] ATK0110 ATK0110:00: fan: 0x6040000 CPU FAN Speed [0-1800] enabled
[ 21.110435] ATK0110 ATK0110:00: fan: 0x6040001 CHASSIS FAN Speed [0-1800] enabled
[ 21.118348] ATK0110 ATK0110:00: fan: 0x6040002 POWER FAN Speed [0-1800] disabled
[ 21.125844] ATK0110 ATK0110:00: fan: 0x6040005 CHIPSET FAN Speed [0-1800] enabled
[ 21.125844] ATK0110 ATK0110:00: fan: 0x6040006 CHASSIS2 FAN Speed [0-1800] disabled
[ 21.138396] ATK0110 ATK0110:00: registering hwmon device
[ 21.148396] device: 'hwmon0': device_add
[ 21.148396] ATK0110 ATK0110:00: populating sysfs directory
[ 21.153724] driver: 'ATK0110:00': driver_bound: bound to device 'ATK0110'
[ 21.153724] bus: 'acpi': really_probe: bound device ATK0110:00 to driver ATK0110
[ 21.167880] initcall atk0110_init+0x0/0x28 returned 0 after 170570 usecs
[ 21.177880] calling abituguru3_init+0x0/0x156 @ 1
[ 21.177880] initcall abituguru3_init+0x0/0x156 returned -19 after 1 usecs
[ 21.186305] calling sm_adm1026_init+0x0/0x11 @ 1
[ 21.186305] bus: 'i2c': add driver adm1026
[ 21.196305] i2c-core: driver [adm1026] registered
[ 21.196305] initcall sm_adm1026_init+0x0/0x11 returned 0 after 8677 usecs
[ 21.206688] calling sensors_adm1029_init+0x0/0x11 @ 1
[ 21.206688] bus: 'i2c': add driver adm1029
[ 21.216688] i2c-core: driver [adm1029] registered
[ 21.216688] initcall sensors_adm1029_init+0x0/0x11 returned 0 after 8677 usecs
[ 21.227940] calling sensors_adm1031_init+0x0/0x11 @ 1
[ 21.237940] bus: 'i2c': add driver adm1031
[ 21.237940] i2c-core: driver [adm1031] registered
[ 21.237940] initcall sensors_adm1031_init+0x0/0x11 returned 0 after 8665 usecs
[ 21.249190] calling sensors_adt7475_init+0x0/0x11 @ 1
[ 21.259190] bus: 'i2c': add driver adt7475
[ 21.259190] i2c-core: driver [adt7475] registered
[ 21.264337] initcall sensors_adt7475_init+0x0/0x11 returned 0 after 8680 usecs
[ 21.264337] calling coretemp_init+0x0/0x141 @ 1
[ 21.275078] initcall coretemp_init+0x0/0x141 returned -19 after 1 usecs
[ 21.275078] calling f71882fg_init+0x0/0x72 @ 1
[ 21.286233] f71882fg: Not a Fintek device
[ 21.286233] f71882fg: Not a Fintek device
[ 21.296233] initcall f71882fg_init+0x0/0x72 returned -19 after 7864 usecs
[ 21.296233] calling sensors_f75375_init+0x0/0x11 @ 1
[ 21.306130] bus: 'i2c': add driver f75375
[ 21.306130] i2c-core: driver [f75375] registered
[ 21.316130] initcall sensors_f75375_init+0x0/0x11 returned 0 after 8500 usecs
[ 21.316130] calling fschmd_init+0x0/0x11 @ 1
[ 21.326341] bus: 'i2c': add driver fschmd
[ 21.326341] i2c-core: driver [fschmd] registered
[ 21.336341] initcall fschmd_init+0x0/0x11 returned 0 after 8500 usecs
[ 21.336341] calling sensors_gl520sm_init+0x0/0x11 @ 1
[ 21.346640] bus: 'i2c': add driver gl520sm
[ 21.346640] i2c-core: driver [gl520sm] registered
[ 21.356640] initcall sensors_gl520sm_init+0x0/0x11 returned 0 after 8668 usecs
[ 21.356640] calling k10temp_init+0x0/0x16 @ 1
[ 21.367197] bus: 'pci': add driver k10temp
[ 21.367197] initcall k10temp_init+0x0/0x16 returned 0 after 4158 usecs
[ 21.377997] calling sensors_lm63_init+0x0/0x11 @ 1
[ 21.387997] bus: 'i2c': add driver lm63
[ 21.387997] i2c-core: driver [lm63] registered
[ 21.387997] initcall sensors_lm63_init+0x0/0x11 returned 0 after 8149 usecs
[ 21.398199] calling sensors_lm77_init+0x0/0x11 @ 1
[ 21.408199] bus: 'i2c': add driver lm77
[ 21.408199] i2c-core: driver [lm77] registered
[ 21.408199] initcall sensors_lm77_init+0x0/0x11 returned 0 after 8148 usecs
[ 21.418401] calling ltc4215_init+0x0/0x11 @ 1
[ 21.428401] bus: 'i2c': add driver ltc4215
[ 21.428401] i2c-core: driver [ltc4215] registered
[ 21.428401] initcall ltc4215_init+0x0/0x11 returned 0 after 8666 usecs
[ 21.438265] calling sensors_max6650_init+0x0/0x11 @ 1
[ 21.448265] bus: 'i2c': add driver max6650
[ 21.448265] i2c-core: driver [max6650] registered
[ 21.448265] initcall sensors_max6650_init+0x0/0x11 returned 0 after 8656 usecs
[ 21.459507] calling sht15_init+0x0/0x4a @ 1
[ 21.469507] bus: 'platform': add driver sht10
[ 21.469507] bus: 'platform': add driver sht11
[ 21.469507] bus: 'platform': add driver sht15
[ 21.477014] bus: 'platform': add driver sht71
[ 21.477014] bus: 'platform': add driver sht75
[ 21.487014] initcall sht15_init+0x0/0x4a returned 0 after 21644 usecs
[ 21.487014] calling amc6821_init+0x0/0x11 @ 1
[ 21.496853] bus: 'i2c': add driver amc6821
[ 21.496853] i2c-core: driver [amc6821] registered
[ 21.506853] initcall amc6821_init+0x0/0x11 returned 0 after 8679 usecs
[ 21.506853] calling sm_vt8231_init+0x0/0x16 @ 1
[ 21.516899] bus: 'pci': add driver vt8231
[ 21.516899] initcall sm_vt8231_init+0x0/0x16 returned 0 after 4028 usecs
[ 21.527733] calling acq_init+0x0/0x50 @ 1
[ 21.527733] WDT driver for Acquire single board computer initialising.
[ 21.538366] bus: 'platform': add driver acquirewdt
[ 21.548366] Registering platform device 'acquirewdt'. Parent at platform
[ 21.548366] device: 'acquirewdt': device_add
[ 21.554236] bus: 'platform': add device acquirewdt
[ 21.554236] bus: 'platform': driver_probe_device: matched device acquirewdt with driver acquirewdt
[ 21.568111] bus: 'platform': really_probe: probing driver acquirewdt with device acquirewdt
[ 21.578111] acquirewdt: I/O address 0x0043 already in use
[ 21.578111] acquirewdt: probe of acquirewdt failed with error -5
[ 21.587915] initcall acq_init+0x0/0x50 returned 0 after 54778 usecs
[ 21.597915] calling sc520_wdt_init+0x0/0xd2 @ 1
[ 21.597915] device: 'watchdog': device_add
[ 21.604198] sc520_wdt: WDT driver for SC520 initialised. timeout=30 sec (nowayout=1)
[ 21.604198] initcall sc520_wdt_init+0x0/0xd2 returned 0 after 11781 usecs
[ 21.617677] calling wafwdt_init+0x0/0x147 @ 1
[ 21.617677] WDT driver for Wafer 5823 single board computer initialising.
[ 21.628918] Wafer 5823 WDT: cannot register miscdev on minor=130 (err=-16)
[ 21.638918] initcall wafwdt_init+0x0/0x147 returned -16 after 13385 usecs
[ 21.638918] initcall wafwdt_init+0x0/0x147 returned with error code -16
[ 21.649319] calling iTCO_wdt_init_module+0x0/0x56 @ 1
[ 21.659319] iTCO_wdt: Intel TCO WatchDog Timer Driver v1.06
[ 21.659319] bus: 'platform': add driver iTCO_wdt
[ 21.664667] Registering platform device 'iTCO_wdt'. Parent at platform
[ 21.664667] device: 'iTCO_wdt': device_add
[ 21.675381] bus: 'platform': add device iTCO_wdt
[ 21.675381] bus: 'platform': driver_probe_device: matched device iTCO_wdt with driver iTCO_wdt
[ 21.688718] bus: 'platform': really_probe: probing driver iTCO_wdt with device iTCO_wdt
[ 21.698718] iTCO_wdt: No card detected
[ 21.698718] initcall iTCO_wdt_init_module+0x0/0x56 returned 0 after 45118 usecs
[ 21.707984] calling iTCO_vendor_init_module+0x0/0x17 @ 1
[ 21.717984] iTCO_vendor_support: vendor-support=0
[ 21.717984] initcall iTCO_vendor_init_module+0x0/0x17 returned 0 after 4591 usecs
[ 21.725587] calling sc1200wdt_init+0x0/0x161 @ 1
[ 21.725587] sc1200wdt: build 20020303
[ 21.735587] bus: 'pnp': add driver scl200wdt
[ 21.735587] sc1200wdt: io parameter must be specified
[ 21.743966] bus: 'pnp': remove driver scl200wdt
[ 21.743966] driver: 'scl200wdt': driver_release
[ 21.743966] initcall sc1200wdt_init+0x0/0x161 returned -22 after 21703 usecs
[ 21.759570] initcall sc1200wdt_init+0x0/0x161 returned with error code -22
[ 21.769570] calling sbc8360_init+0x0/0x185 @ 1
[ 21.769570] sbc8360: failed to register misc device
[ 21.776536] initcall sbc8360_init+0x0/0x185 returned -16 after 4784 usecs
[ 21.776536] initcall sbc8360_init+0x0/0x185 returned with error code -16
[ 21.789547] calling sbc7240_wdt_init+0x0/0xf9 @ 1
[ 21.799547] sbc7240_wdt: timeout set to 30 seconds
[ 21.799547] sbc7240_wdt: cannot register miscdev on minor=130 (err=-16)
[ 21.805771] initcall sbc7240_wdt_init+0x0/0xf9 returned -16 after 11159 usecs
[ 21.815771] initcall sbc7240_wdt_init+0x0/0xf9 returned with error code -16
[ 21.815771] calling cpu5wdt_init_module+0x0/0xf @ 1
[ 21.824943] cpu5wdt: sorry, was my fault
[ 21.824943] cpu5wdt: misc_register failed
[ 21.834943] initcall cpu5wdt_init_module+0x0/0xf returned -16 after 7773 usecs
[ 21.834943] initcall cpu5wdt_init_module+0x0/0xf returned with error code -16
[ 21.847354] calling sch311x_wdt_init+0x0/0x137 @ 1
[ 21.847354] initcall sch311x_wdt_init+0x0/0x137 returned -19 after 18 usecs
[ 21.859219] calling watchdog_init+0x0/0xa5 @ 1
[ 21.869219] epx_c3: cannot register miscdev on minor=130 (err=-16)
[ 21.869219] initcall watchdog_init+0x0/0xa5 returned -16 after 6042 usecs
[ 21.876744] initcall watchdog_init+0x0/0xa5 returned with error code -16
[ 21.886744] calling watchdog_init+0x0/0xa0 @ 1
[ 21.886744] SoftDog: cannot register miscdev on minor=130 (err=-16)
[ 21.894346] initcall watchdog_init+0x0/0xa0 returned -16 after 6131 usecs
[ 21.894346] initcall watchdog_init+0x0/0xa0 returned with error code -16
[ 21.907927] calling telephony_init+0x0/0x48 @ 1
[ 21.907927] Linux telephony interface: v1.00
[ 21.917927] initcall telephony_init+0x0/0x48 returned 0 after 4193 usecs
[ 21.926827] calling btmrvl_sdio_init_module+0x0/0x34 @ 1
[ 21.926827] bus: 'sdio': add driver btmrvl_sdio
[ 21.933543] initcall btmrvl_sdio_init_module+0x0/0x34 returned 0 after 4504 usecs
[ 21.933543] calling pci_eisa_init_module+0x0/0x16 @ 1
[ 21.946182] bus: 'pci': add driver pci_eisa
[ 21.946182] initcall pci_eisa_init_module+0x0/0x16 returned 0 after 4214 usecs
[ 21.957726] calling cpufreq_gov_dbs_init+0x0/0xa5 @ 1
[ 21.967726] initcall cpufreq_gov_dbs_init+0x0/0xa5 returned 0 after 234 usecs
[ 21.967726] calling init_ladder+0x0/0xf @ 1
[ 21.974532] cpuidle: using governor ladder
[ 21.974532] initcall init_ladder+0x0/0xf returned 0 after 4040 usecs
[ 21.985036] calling init_menu+0x0/0xf @ 1
[ 21.985036] cpuidle: using governor menu
[ 21.995036] initcall init_menu+0x0/0xf returned 0 after 3848 usecs
[ 21.995036] calling cb710_mmc_init_module+0x0/0xf @ 1
[ 22.004405] bus: 'platform': add driver cb710-mmc
[ 22.004405] initcall cb710_mmc_init_module+0x0/0xf returned 0 after 4666 usecs
[ 22.016429] calling ioat_init_module+0x0/0x69 @ 1
[ 22.016429] ioatdma: Intel(R) QuickData Technology Driver 4.00
[ 22.027068] bus: 'pci': add driver ioatdma
[ 22.027068] initcall ioat_init_module+0x0/0x69 returned 0 after 10028 usecs
[ 22.038465] calling flow_cache_init_global+0x0/0x27 @ 1
[ 22.048465] initcall flow_cache_init_global+0x0/0x27 returned 0 after 178 usecs
[ 22.048465] calling llc_init+0x0/0x1b @ 1
[ 22.055390] initcall llc_init+0x0/0x1b returned 0 after 4 usecs
[ 22.055390] calling llc2_init+0x0/0xb5 @ 1
[ 22.065505] NET: Registered protocol family 26
[ 22.065505] initcall llc2_init+0x0/0xb5 returned 0 after 4517 usecs
[ 22.076408] calling snap_init+0x0/0x31 @ 1
[ 22.076408] initcall snap_init+0x0/0x31 returned 0 after 33 usecs
[ 22.086730] calling blackhole_module_init+0x0/0xf @ 1
[ 22.086730] initcall blackhole_module_init+0x0/0xf returned 0 after 3 usecs
[ 22.098837] calling htb_module_init+0x0/0xf @ 1
[ 22.108837] initcall htb_module_init+0x0/0xf returned 0 after 2 usecs
[ 22.108837] calling hfsc_init+0x0/0xf @ 1
[ 22.114013] initcall hfsc_init+0x0/0xf returned 0 after 2 usecs
[ 22.114013] calling gred_module_init+0x0/0xf @ 1
[ 22.124648] initcall gred_module_init+0x0/0xf returned 0 after 2 usecs
[ 22.124648] calling tbf_module_init+0x0/0xf @ 1
[ 22.135809] initcall tbf_module_init+0x0/0xf returned 0 after 2 usecs
[ 22.135809] calling multiq_module_init+0x0/0xf @ 1
[ 22.147138] initcall multiq_module_init+0x0/0xf returned 0 after 2 usecs
[ 22.157138] calling netem_module_init+0x0/0x19 @ 1
[ 22.157138] netem: version 1.2
[ 22.157138] initcall netem_module_init+0x0/0x19 returned 0 after 2981 usecs
[ 22.168744] calling init_u32+0x0/0x2d @ 1
[ 22.178744] u32 classifier
[ 22.178744] Performance counters on
[ 22.178744] input device check on
[ 22.183061] initcall init_u32+0x0/0x2d returned 0 after 9992 usecs
[ 22.183061] calling init_tcindex+0x0/0xf @ 1
[ 22.193635] initcall init_tcindex+0x0/0xf returned 0 after 2 usecs
[ 22.193635] calling init_rsvp+0x0/0xf @ 1
[ 22.203922] initcall init_rsvp+0x0/0xf returned 0 after 2 usecs
[ 22.203922] calling cls_flow_init+0x0/0xf @ 1
[ 22.214296] initcall cls_flow_init+0x0/0xf returned 0 after 2 usecs
[ 22.214296] calling init_em_meta+0x0/0xf @ 1
[ 22.224922] initcall init_em_meta+0x0/0xf returned 0 after 22 usecs
[ 22.224922] calling init_em_text+0x0/0xf @ 1
[ 22.235582] initcall init_em_text+0x0/0xf returned 0 after 2 usecs
[ 22.235582] calling xt_init+0x0/0xe3 @ 1
[ 22.245783] initcall xt_init+0x0/0xe3 returned 0 after 15 usecs
[ 22.245783] calling tcpudp_mt_init+0x0/0x14 @ 1
[ 22.256348] initcall tcpudp_mt_init+0x0/0x14 returned 0 after 33 usecs
[ 22.266348] calling secmark_tg_init+0x0/0xf @ 1
[ 22.266348] initcall secmark_tg_init+0x0/0xf returned 0 after 2 usecs
[ 22.273984] calling tcpmss_tg_init+0x0/0x14 @ 1
[ 22.273984] initcall tcpmss_tg_init+0x0/0x14 returned 0 after 2 usecs
[ 22.285052] calling tee_tg_init+0x0/0x14 @ 1
[ 22.285052] initcall tee_tg_init+0x0/0x14 returned 0 after 2 usecs
[ 22.295600] calling hl_mt_init+0x0/0x14 @ 1
[ 22.295600] initcall hl_mt_init+0x0/0x14 returned 0 after 3 usecs
[ 22.305975] calling iprange_mt_init+0x0/0x14 @ 1
[ 22.305975] initcall iprange_mt_init+0x0/0x14 returned 0 after 3 usecs
[ 22.317215] calling limit_mt_init+0x0/0xf @ 1
[ 22.317215] initcall limit_mt_init+0x0/0xf returned 0 after 2 usecs
[ 22.327936] calling policy_mt_init+0x0/0x14 @ 1
[ 22.327936] initcall policy_mt_init+0x0/0x14 returned 0 after 3 usecs
[ 22.339002] calling quota_mt_init+0x0/0xf @ 1
[ 22.349002] initcall quota_mt_init+0x0/0xf returned 0 after 2 usecs
[ 22.349002] calling realm_mt_init+0x0/0xf @ 1
[ 22.354169] initcall realm_mt_init+0x0/0xf returned 0 after 2 usecs
[ 22.354169] calling recent_mt_init+0x0/0x70 @ 1
[ 22.365064] initcall recent_mt_init+0x0/0x70 returned 0 after 75 usecs
[ 22.365064] calling sctp_mt_init+0x0/0x14 @ 1
[ 22.376123] initcall sctp_mt_init+0x0/0x14 returned 0 after 3 usecs
[ 22.376123] calling statistic_mt_init+0x0/0xf @ 1
[ 22.387189] initcall statistic_mt_init+0x0/0xf returned 0 after 2 usecs
[ 22.397189] calling sysctl_ipv4_init+0x0/0x71 @ 1
[ 22.397189] initcall sysctl_ipv4_init+0x0/0x71 returned 0 after 1907 usecs
[ 22.407436] calling ipip_init+0x0/0x50 @ 1
[ 22.407436] IPv4 over IPv4 tunneling driver
[ 22.417436] device: 'tunl0': device_add
[ 22.417436] initcall ipip_init+0x0/0x50 returned 0 after 9514 usecs
[ 22.427638] calling init_syncookies+0x0/0x16 @ 1
[ 22.427638] initcall init_syncookies+0x0/0x16 returned 0 after 61 usecs
[ 22.439025] calling ipcomp4_init+0x0/0x5a @ 1
[ 22.449025] initcall ipcomp4_init+0x0/0x5a returned 0 after 4 usecs
[ 22.449025] calling ipip_init+0x0/0x5a @ 1
[ 22.453950] initcall ipip_init+0x0/0x5a returned 0 after 3 usecs
[ 22.453950] calling tunnel4_init+0x0/0x2c @ 1
[ 22.464419] initcall tunnel4_init+0x0/0x2c returned 0 after 2 usecs
[ 22.464419] calling xfrm4_mode_tunnel_init+0x0/0x14 @ 1
[ 22.476006] initcall xfrm4_mode_tunnel_init+0x0/0x14 returned 0 after 2 usecs
[ 22.486006] calling ipv4_netfilter_init+0x0/0x14 @ 1
[ 22.486006] initcall ipv4_netfilter_init+0x0/0x14 returned 0 after 25 usecs
[ 22.495195] calling tcpprobe_init+0x0/0xe3 @ 1
[ 22.505195] TCP probe registered (port=0) bufsize=4096
[ 22.513850] initcall tcpprobe_init+0x0/0xe3 returned 0 after 13796 usecs
[ 22.513850] calling hstcp_register+0x0/0xf @ 1
[ 22.525095] TCP highspeed registered
[ 22.525095] initcall hstcp_register+0x0/0xf returned 0 after 3493 usecs
[ 22.535296] calling htcp_register+0x0/0xf @ 1
[ 22.535296] TCP htcp registered
[ 22.545296] initcall htcp_register+0x0/0xf returned 0 after 3089 usecs
[ 22.545296] calling tcp_vegas_register+0x0/0x11 @ 1
[ 22.554406] TCP vegas registered
[ 22.554406] initcall tcp_vegas_register+0x0/0x11 returned 0 after 3154 usecs
[ 22.564694] calling tcp_scalable_register+0x0/0xf @ 1
[ 22.564694] TCP scalable registered
[ 22.574694] initcall tcp_scalable_register+0x0/0xf returned 0 after 3422 usecs
[ 22.574694] calling packet_init+0x0/0x39 @ 1
[ 22.584923] NET: Registered protocol family 17
[ 22.584923] initcall packet_init+0x0/0x39 returned 0 after 4365 usecs
[ 22.595843] calling dsa_init_module+0x0/0x11 @ 1
[ 22.595843] initcall dsa_init_module+0x0/0x11 returned 0 after 3 usecs
[ 22.607082] calling edsa_init_module+0x0/0x11 @ 1
[ 22.607082] initcall edsa_init_module+0x0/0x11 returned 0 after 2 usecs
[ 22.618497] calling mv88e6123_61_65_init+0x0/0x11 @ 1
[ 22.628497] initcall mv88e6123_61_65_init+0x0/0x11 returned 0 after 36 usecs
[ 22.628497] calling mv88e6131_init+0x0/0x11 @ 1
[ 22.635354] initcall mv88e6131_init+0x0/0x11 returned 0 after 2 usecs
[ 22.635354] calling dsa_init_module+0x0/0xf @ 1
[ 22.646430] bus: 'platform': add driver dsa
[ 22.646430] initcall dsa_init_module+0x0/0xf returned 0 after 4179 usecs
[ 22.657421] calling can_init+0x0/0xc4 @ 1
[ 22.657421] can: controller area network core (rev 20090105 abi 8)
[ 22.667708] NET: Registered protocol family 29
[ 22.667708] initcall can_init+0x0/0xc4 returned 0 after 10674 usecs
[ 22.678724] calling bcm_module_init+0x0/0x4a @ 1
[ 22.688724] can: broadcast manager protocol (rev 20090105 t)
[ 22.688724] initcall bcm_module_init+0x0/0x4a returned 0 after 5566 usecs
[ 22.695935] calling sco_init+0x0/0xd8 @ 1
[ 22.695935] Bluetooth: SCO (Voice Link) ver 0.6
[ 22.705935] Bluetooth: SCO socket layer initialized
[ 22.705935] initcall sco_init+0x0/0xd8 returned 0 after 9265 usecs
[ 22.715713] calling sctp_init+0x0/0x600 @ 1
[ 22.725713] SCTP: Hash tables configured (established 26214 bind 26214)
[ 22.733519] sctp_init_sock(sk: f4c20000)
[ 22.733519] initcall sctp_init+0x0/0x600 returned 0 after 18079 usecs
[ 22.744955] calling tipc_init+0x0/0x9e @ 1
[ 22.744955] TIPC: Activated (version 2.0.0 compiled May 27 2010 20:56:28)
[ 22.755997] NET: Registered protocol family 30
[ 22.755997] TIPC: Started in single node mode
[ 22.766080] initcall tipc_init+0x0/0x9e returned 0 after 16553 usecs
[ 22.766080] calling cpufreq_p4_init+0x0/0x4f @ 1
[ 22.777161] initcall cpufreq_p4_init+0x0/0x4f returned -19 after 1 usecs
[ 22.787161] calling hpet_insert_resource+0x0/0x1e @ 1
[ 22.787161] initcall hpet_insert_resource+0x0/0x1e returned 1 after 1 usecs
[ 22.795985] initcall hpet_insert_resource+0x0/0x1e returned with error code 1
[ 22.805985] calling update_mp_table+0x0/0x1a4 @ 1
[ 22.805985] initcall update_mp_table+0x0/0x1a4 returned 0 after 1 usecs
[ 22.814634] calling lapic_insert_resource+0x0/0x45 @ 1
[ 22.814634] initcall lapic_insert_resource+0x0/0x45 returned 0 after 5 usecs
[ 22.826916] calling print_ipi_mode+0x0/0x25 @ 1
[ 22.826916] Using IPI No-Shortcut mode
[ 22.836916] initcall print_ipi_mode+0x0/0x25 returned 0 after 3675 usecs
[ 22.836916] calling init_lapic_nmi_sysfs+0x0/0x33 @ 1
[ 22.847135] initcall init_lapic_nmi_sysfs+0x0/0x33 returned 0 after 1 usecs
[ 22.857135] calling io_apic_bug_finalize+0x0/0x1a @ 1
[ 22.857135] initcall io_apic_bug_finalize+0x0/0x1a returned 0 after 1 usecs
[ 22.866210] calling check_early_ioremap_leak+0x0/0x5c @ 1
[ 22.866210] initcall check_early_ioremap_leak+0x0/0x5c returned 0 after 1 usecs
[ 22.879012] calling pat_memtype_list_init+0x0/0x2e @ 1
[ 22.889012] initcall pat_memtype_list_init+0x0/0x2e returned 0 after 1 usecs
[ 22.889012] calling sched_init_debug+0x0/0x1f @ 1
[ 22.896102] initcall sched_init_debug+0x0/0x1f returned 0 after 79 usecs
[ 22.906102] calling init_oops_id+0x0/0x3f @ 1
[ 22.906102] initcall init_oops_id+0x0/0x3f returned 0 after 10 usecs
[ 22.913714] calling disable_boot_consoles+0x0/0x3a @ 1
[ 22.913714] initcall disable_boot_consoles+0x0/0x3a returned 0 after 1 usecs
[ 22.925994] calling pm_qos_power_init+0x0/0x54 @ 1
[ 22.925994] device: 'cpu_dma_latency': device_add
[ 22.935994] device: 'network_latency': device_add
[ 22.935994] device: 'network_throughput': device_add
[ 22.945643] initcall pm_qos_power_init+0x0/0x54 returned 0 after 14567 usecs
[ 22.945643] calling debugfs_kprobe_init+0x0/0x7d @ 1
[ 22.957897] initcall debugfs_kprobe_init+0x0/0x7d returned 0 after 54 usecs
[ 22.967897] calling clear_boot_tracer+0x0/0x27 @ 1
[ 22.967897] initcall clear_boot_tracer+0x0/0x27 returned 0 after 1 usecs
[ 22.976513] calling event_trace_self_tests_init+0x0/0x39 @ 1
[ 22.976513] Running tests on trace events:
[ 22.986513] Testing event kfree_skb: OK
[ 23.042862] Testing event skb_copy_datagram_iovec: OK
[ 23.092864] Testing event sys_enter_socket: OK
[ 23.142865] Testing event sys_exit_socket: OK
[ 23.192867] Testing event sys_enter_socketpair: OK
[ 23.242868] Testing event sys_exit_socketpair: OK
[ 23.292870] Testing event sys_enter_bind: OK
[ 23.342871] Testing event sys_exit_bind: OK
[ 23.392872] Testing event sys_enter_listen: OK
[ 23.442874] Testing event sys_exit_listen: OK
[ 23.492875] Testing event sys_enter_accept4: OK
[ 23.542876] Testing event sys_exit_accept4: OK
[ 23.592878] Testing event sys_enter_accept: OK
[ 23.642879] Testing event sys_exit_accept: OK
[ 23.692880] Testing event sys_enter_connect: OK
[ 23.742882] Testing event sys_exit_connect: OK
[ 23.792883] Testing event sys_enter_getsockname: OK
[ 23.842885] Testing event sys_exit_getsockname: OK
[ 23.892886] Testing event sys_enter_getpeername: OK
[ 23.942887] Testing event sys_exit_getpeername: OK
[ 23.992889] Testing event sys_enter_sendto: OK
[ 24.042891] Testing event sys_exit_sendto: OK
[ 24.092891] Testing event sys_enter_send: OK
[ 24.142893] Testing event sys_exit_send: OK
[ 24.192894] Testing event sys_enter_recvfrom: OK
[ 24.242896] Testing event sys_exit_recvfrom: OK
[ 24.292898] Testing event sys_enter_setsockopt: OK
[ 24.342898] Testing event sys_exit_setsockopt: OK
[ 24.392900] Testing event sys_enter_getsockopt: OK
[ 24.442901] Testing event sys_exit_getsockopt: OK
[ 24.492903] Testing event sys_enter_shutdown: OK
[ 24.542904] Testing event sys_exit_shutdown: OK
[ 24.592905] Testing event sys_enter_sendmsg: OK
[ 24.642908] Testing event sys_exit_sendmsg: OK
[ 24.692908] Testing event sys_enter_recvmsg: OK
[ 24.742910] Testing event sys_exit_recvmsg: OK
[ 24.792912] Testing event sys_enter_recvmmsg: OK
[ 24.842913] Testing event sys_exit_recvmmsg: OK
[ 24.892914] Testing event sys_enter_socketcall: OK
[ 24.942915] Testing event sys_exit_socketcall: OK
[ 24.992917] Testing event scsi_dispatch_cmd_start: OK
[ 25.042918] Testing event scsi_dispatch_cmd_error: OK
[ 25.092920] Testing event scsi_dispatch_cmd_done: OK
[ 25.142922] Testing event scsi_dispatch_cmd_timeout: OK
[ 25.192923] Testing event scsi_eh_wakeup: OK
[ 25.242924] Testing event lock_kernel: OK
[ 25.292925] Testing event unlock_kernel: OK
[ 25.342927] Testing event block_rq_abort: OK
[ 25.392928] Testing event block_rq_requeue: OK
[ 25.442930] Testing event block_rq_complete: OK
[ 25.492931] Testing event block_rq_insert: OK
[ 25.542933] Testing event block_rq_issue: OK
[ 25.592934] Testing event block_bio_bounce: OK
[ 25.642935] Testing event block_bio_complete: OK
[ 25.692937] Testing event block_bio_backmerge: OK
[ 25.742938] Testing event block_bio_frontmerge: OK
[ 25.792939] Testing event block_bio_queue: OK
[ 25.842941] Testing event block_getrq: OK
[ 25.892942] Testing event block_sleeprq: OK
[ 25.942944] Testing event block_plug: OK
[ 25.992945] Testing event block_unplug_timer: OK
[ 26.042947] Testing event block_unplug_io: OK
[ 26.092948] Testing event block_split: OK
[ 26.142949] Testing event block_remap: OK
[ 26.192951] Testing event block_rq_remap: OK
[ 26.242952] Testing event sys_enter_add_key: OK
[ 26.292953] Testing event sys_exit_add_key: OK
[ 26.342955] Testing event sys_enter_request_key: OK
[ 26.392956] Testing event sys_exit_request_key: OK
[ 26.442958] Testing event sys_enter_keyctl: OK
[ 26.492959] Testing event sys_exit_keyctl: OK
[ 26.542960] Testing event sys_enter_mq_open: OK
[ 26.592962] Testing event sys_exit_mq_open: OK
[ 26.642963] Testing event sys_enter_mq_unlink: OK
[ 26.692965] Testing event sys_exit_mq_unlink: OK
[ 26.742966] Testing event sys_enter_mq_timedsend: OK
[ 26.792967] Testing event sys_exit_mq_timedsend: OK
[ 26.842969] Testing event sys_enter_mq_timedreceive: OK
[ 26.892970] Testing event sys_exit_mq_timedreceive: OK
[ 26.942971] Testing event sys_enter_mq_notify: OK
[ 26.992973] Testing event sys_exit_mq_notify: OK
[ 27.042974] Testing event sys_enter_mq_getsetattr: OK
[ 27.092976] Testing event sys_exit_mq_getsetattr: OK
[ 27.142977] Testing event sys_enter_ipc: OK
[ 27.192978] Testing event sys_exit_ipc: OK
[ 27.242980] Testing event sys_enter_shmget: OK
[ 27.292981] Testing event sys_exit_shmget: OK
[ 27.342983] Testing event sys_enter_shmctl: OK
[ 27.392984] Testing event sys_exit_shmctl: OK
[ 27.442985] Testing event sys_enter_shmat: OK
[ 27.492987] Testing event sys_exit_shmat: OK
[ 27.542988] Testing event sys_enter_shmdt: OK
[ 27.592989] Testing event sys_exit_shmdt: OK
[ 27.642991] Testing event sys_enter_semget: OK
[ 27.692992] Testing event sys_exit_semget: OK
[ 27.742994] Testing event sys_enter_semtimedop: OK
[ 27.792995] Testing event sys_exit_semtimedop: OK
[ 27.842996] Testing event sys_enter_semop: OK
[ 27.892998] Testing event sys_exit_semop: OK
[ 27.942999] Testing event sys_enter_msgget: OK
[ 27.993001] Testing event sys_exit_msgget: OK
[ 28.043002] Testing event sys_enter_msgctl: OK
[ 28.093003] Testing event sys_exit_msgctl: OK
[ 28.143005] Testing event sys_enter_msgsnd: OK
[ 28.193006] Testing event sys_exit_msgsnd: OK
[ 28.243008] Testing event sys_enter_msgrcv: OK
[ 28.293009] Testing event sys_exit_msgrcv: OK
[ 28.343010] Testing event sys_enter_quotactl: OK
[ 28.393012] Testing event sys_exit_quotactl: OK
[ 28.443013] Testing event sys_enter_flock: OK
[ 28.493014] Testing event sys_exit_flock: OK
[ 28.543016] Testing event sys_enter_io_setup: OK
[ 28.593017] Testing event sys_exit_io_setup: OK
[ 28.643019] Testing event sys_enter_io_destroy: OK
[ 28.693020] Testing event sys_exit_io_destroy: OK
[ 28.743021] Testing event sys_enter_io_submit: OK
[ 28.793023] Testing event sys_exit_io_submit: OK
[ 28.843024] Testing event sys_enter_io_cancel: OK
[ 28.893026] Testing event sys_exit_io_cancel: OK
[ 28.943027] Testing event sys_enter_io_getevents: OK
[ 28.993028] Testing event sys_exit_io_getevents: OK
[ 29.043030] Testing event sys_enter_eventfd2: OK
[ 29.093031] Testing event sys_exit_eventfd2: OK
[ 29.143032] Testing event sys_enter_eventfd: OK
[ 29.193034] Testing event sys_exit_eventfd: OK
[ 29.243036] Testing event sys_enter_timerfd_create: OK
[ 29.293037] Testing event sys_exit_timerfd_create: OK
[ 29.343038] Testing event sys_enter_timerfd_settime: OK
[ 29.393040] Testing event sys_exit_timerfd_settime: OK
[ 29.443041] Testing event sys_enter_timerfd_gettime: OK
[ 29.493043] Testing event sys_exit_timerfd_gettime: OK
[ 29.543044] Testing event sys_enter_signalfd4: OK
[ 29.593045] Testing event sys_exit_signalfd4: OK
[ 29.643047] Testing event sys_enter_signalfd: OK
[ 29.693048] Testing event sys_exit_signalfd: OK
[ 29.743050] Testing event sys_enter_epoll_create1: OK
[ 29.793051] Testing event sys_exit_epoll_create1: OK
[ 29.843053] Testing event sys_enter_epoll_create: OK
[ 29.893054] Testing event sys_exit_epoll_create: OK
[ 29.943055] Testing event sys_enter_epoll_ctl: OK
[ 29.993057] Testing event sys_exit_epoll_ctl: OK
[ 30.043058] Testing event sys_enter_epoll_wait: OK
[ 30.093060] Testing event sys_exit_epoll_wait: OK
[ 30.143060] Testing event sys_enter_epoll_pwait: OK
[ 30.193063] Testing event sys_exit_epoll_pwait: OK
[ 30.243063] Testing event sys_enter_inotify_init1: OK
[ 30.293065] Testing event sys_exit_inotify_init1: OK
[ 30.343067] Testing event sys_enter_inotify_init: OK
[ 30.393068] Testing event sys_exit_inotify_init: OK
[ 30.443069] Testing event sys_enter_inotify_add_watch: OK
[ 30.493071] Testing event sys_exit_inotify_add_watch: OK
[ 30.543072] Testing event sys_enter_inotify_rm_watch: OK
[ 30.593074] Testing event sys_exit_inotify_rm_watch: OK
[ 30.643075] Testing event sys_enter_ioprio_set: OK
[ 30.693076] Testing event sys_exit_ioprio_set: OK
[ 30.743077] Testing event sys_enter_ioprio_get: OK
[ 30.793079] Testing event sys_exit_ioprio_get: OK
[ 30.843081] Testing event sys_enter_bdflush: OK
[ 30.893082] Testing event sys_exit_bdflush: OK
[ 30.943083] Testing event sys_enter_statfs: OK
[ 30.993085] Testing event sys_exit_statfs: OK
[ 31.043086] Testing event sys_enter_statfs64: OK
[ 31.093088] Testing event sys_exit_statfs64: OK
[ 31.143089] Testing event sys_enter_fstatfs: OK
[ 31.193090] Testing event sys_exit_fstatfs: OK
[ 31.243092] Testing event sys_enter_fstatfs64: OK
[ 31.293093] Testing event sys_exit_fstatfs64: OK
[ 31.343094] Testing event sys_enter_ustat: OK
[ 31.393096] Testing event sys_exit_ustat: OK
[ 31.443097] Testing event sys_enter_utime: OK
[ 31.493099] Testing event sys_exit_utime: OK
[ 31.543100] Testing event sys_enter_utimensat: OK
[ 31.593101] Testing event sys_exit_utimensat: OK
[ 31.643103] Testing event sys_enter_futimesat: OK
[ 31.693104] Testing event sys_exit_futimesat: OK
[ 31.743106] Testing event sys_enter_utimes: OK
[ 31.793107] Testing event sys_exit_utimes: OK
[ 31.843108] Testing event sys_enter_sync: OK
[ 31.893110] Testing event sys_exit_sync: OK
[ 31.943111] Testing event sys_enter_fsync: OK
[ 31.993112] Testing event sys_exit_fsync: OK
[ 32.043114] Testing event sys_enter_fdatasync: OK
[ 32.093115] Testing event sys_exit_fdatasync: OK
[ 32.143117] Testing event sys_enter_vmsplice: OK
[ 32.193118] Testing event sys_exit_vmsplice: OK
[ 32.243119] Testing event sys_enter_splice: OK
[ 32.293121] Testing event sys_exit_splice: OK
[ 32.343122] Testing event sys_enter_tee: OK
[ 32.393124] Testing event sys_exit_tee: OK
[ 32.443125] Testing event sys_enter_setxattr: OK
[ 32.493126] Testing event sys_exit_setxattr: OK
[ 32.543128] Testing event sys_enter_lsetxattr: OK
[ 32.593129] Testing event sys_exit_lsetxattr: OK
[ 32.643131] Testing event sys_enter_fsetxattr: OK
[ 32.693132] Testing event sys_exit_fsetxattr: OK
[ 32.743133] Testing event sys_enter_getxattr: OK
[ 32.793135] Testing event sys_exit_getxattr: OK
[ 32.843136] Testing event sys_enter_lgetxattr: OK
[ 32.893137] Testing event sys_exit_lgetxattr: OK
[ 32.943139] Testing event sys_enter_fgetxattr: OK
[ 32.993140] Testing event sys_exit_fgetxattr: OK
[ 33.043142] Testing event sys_enter_listxattr: OK
[ 33.093143] Testing event sys_exit_listxattr: OK
[ 33.143144] Testing event sys_enter_llistxattr: OK
[ 33.193146] Testing event sys_exit_llistxattr: OK
[ 33.243147] Testing event sys_enter_flistxattr: OK
[ 33.293149] Testing event sys_exit_flistxattr: OK
[ 33.343150] Testing event sys_enter_removexattr: OK
[ 33.393151] Testing event sys_exit_removexattr: OK
[ 33.443153] Testing event sys_enter_lremovexattr: OK
[ 33.493154] Testing event sys_exit_lremovexattr: OK
[ 33.543155] Testing event sys_enter_fremovexattr: OK
[ 33.593157] Testing event sys_exit_fremovexattr: OK
[ 33.643158] Testing event sys_enter_umount: OK
[ 33.693160] Testing event sys_exit_umount: OK
[ 33.743161] Testing event sys_enter_oldumount: OK
[ 33.793162] Testing event sys_exit_oldumount: OK
[ 33.843164] Testing event sys_enter_mount: OK
[ 33.893165] Testing event sys_exit_mount: OK
[ 33.943167] Testing event sys_enter_pivot_root: OK
[ 33.993169] Testing event sys_exit_pivot_root: OK
[ 34.043170] Testing event sys_enter_sysfs: OK
[ 34.093171] Testing event sys_exit_sysfs: OK
[ 34.143172] Testing event sys_enter_getcwd: OK
[ 34.193174] Testing event sys_exit_getcwd: OK
[ 34.243176] Testing event sys_enter_select: OK
[ 34.293177] Testing event sys_exit_select: OK
[ 34.343178] Testing event sys_enter_pselect6: OK
[ 34.393180] Testing event sys_exit_pselect6: OK
[ 34.443181] Testing event sys_enter_old_select: OK
[ 34.493183] Testing event sys_exit_old_select: OK
[ 34.543184] Testing event sys_enter_poll: OK
[ 34.593185] Testing event sys_exit_poll: OK
[ 34.643186] Testing event sys_enter_ppoll: OK
[ 34.693188] Testing event sys_exit_ppoll: OK
[ 34.743189] Testing event sys_enter_old_readdir: OK
[ 34.793191] Testing event sys_exit_old_readdir: OK
[ 34.843192] Testing event sys_enter_getdents: OK
[ 34.893194] Testing event sys_exit_getdents: OK
[ 34.943195] Testing event sys_enter_getdents64: OK
[ 34.993196] Testing event sys_exit_getdents64: OK
[ 35.043198] Testing event sys_enter_ioctl: OK
[ 35.093199] Testing event sys_exit_ioctl: OK
[ 35.143200] Testing event sys_enter_dup3: OK
[ 35.193201] Testing event sys_exit_dup3: OK
[ 35.243203] Testing event sys_enter_dup2: OK
[ 35.293205] Testing event sys_exit_dup2: OK
[ 35.343206] Testing event sys_enter_dup: OK
[ 35.393208] Testing event sys_exit_dup: OK
[ 35.443209] Testing event sys_enter_fcntl: OK
[ 35.493210] Testing event sys_exit_fcntl: OK
[ 35.543212] Testing event sys_enter_fcntl64: OK
[ 35.593213] Testing event sys_exit_fcntl64: OK
[ 35.643215] Testing event sys_enter_mknodat: OK
[ 35.693216] Testing event sys_exit_mknodat: OK
[ 35.743217] Testing event sys_enter_mknod: OK
[ 35.793219] Testing event sys_exit_mknod: OK
[ 35.843220] Testing event sys_enter_mkdirat: OK
[ 35.893222] Testing event sys_exit_mkdirat: OK
[ 35.943223] Testing event sys_enter_mkdir: OK
[ 35.993224] Testing event sys_exit_mkdir: OK
[ 36.043226] Testing event sys_enter_rmdir: OK
[ 36.093227] Testing event sys_exit_rmdir: OK
[ 36.143229] Testing event sys_enter_unlinkat: OK
[ 36.193230] Testing event sys_exit_unlinkat: OK
[ 36.243231] Testing event sys_enter_unlink: OK
[ 36.293233] Testing event sys_exit_unlink: OK
[ 36.343234] Testing event sys_enter_symlinkat: OK
[ 36.393235] Testing event sys_exit_symlinkat: OK
[ 36.443237] Testing event sys_enter_symlink: OK
[ 36.493238] Testing event sys_exit_symlink: OK
[ 36.543240] Testing event sys_enter_linkat: OK
[ 36.593241] Testing event sys_exit_linkat: OK
[ 36.643242] Testing event sys_enter_link: OK
[ 36.693244] Testing event sys_exit_link: OK
[ 36.743245] Testing event sys_enter_renameat: OK
[ 36.793247] Testing event sys_exit_renameat: OK
[ 36.843248] Testing event sys_enter_rename: OK
[ 36.893249] Testing event sys_exit_rename: OK
[ 36.943251] Testing event sys_enter_pipe2: OK
[ 36.993252] Testing event sys_exit_pipe2: OK
[ 37.043253] Testing event sys_enter_pipe: OK
[ 37.093255] Testing event sys_exit_pipe: OK
[ 37.143256] Testing event sys_enter_uselib: OK
[ 37.193258] Testing event sys_exit_uselib: OK
[ 37.243259] Testing event sys_enter_stat: OK
[ 37.293260] Testing event sys_exit_stat: OK
[ 37.343262] Testing event sys_enter_lstat: OK
[ 37.393263] Testing event sys_exit_lstat: OK
[ 37.443265] Testing event sys_enter_fstat: OK
[ 37.493266] Testing event sys_exit_fstat: OK
[ 37.543267] Testing event sys_enter_newstat: OK
[ 37.593269] Testing event sys_exit_newstat: OK
[ 37.643270] Testing event sys_enter_newlstat: OK
[ 37.693271] Testing event sys_exit_newlstat: OK
[ 37.743273] Testing event sys_enter_newfstat: OK
[ 37.793274] Testing event sys_exit_newfstat: OK
[ 37.843276] Testing event sys_enter_readlinkat: OK
[ 37.893277] Testing event sys_exit_readlinkat: OK
[ 37.943278] Testing event sys_enter_readlink: OK
[ 37.993280] Testing event sys_exit_readlink: OK
[ 38.043281] Testing event sys_enter_stat64: OK
[ 38.093283] Testing event sys_exit_stat64: OK
[ 38.143284] Testing event sys_enter_lstat64: OK
[ 38.193285] Testing event sys_exit_lstat64: OK
[ 38.243287] Testing event sys_enter_fstat64: OK
[ 38.293288] Testing event sys_exit_fstat64: OK
[ 38.343290] Testing event sys_enter_fstatat64: OK
[ 38.393291] Testing event sys_exit_fstatat64: OK
[ 38.443292] Testing event sys_enter_lseek: OK
[ 38.493294] Testing event sys_exit_lseek: OK
[ 38.543295] Testing event sys_enter_llseek: OK
[ 38.593296] Testing event sys_exit_llseek: OK
[ 38.643298] Testing event sys_enter_read: OK
[ 38.693299] Testing event sys_exit_read: OK
[ 38.743302] Testing event sys_enter_write: OK
[ 38.793302] Testing event sys_exit_write: OK
[ 38.843303] Testing event sys_enter_readv: OK
[ 38.893305] Testing event sys_exit_readv: OK
[ 38.943307] Testing event sys_enter_writev: OK
[ 38.993308] Testing event sys_exit_writev: OK
[ 39.043309] Testing event sys_enter_preadv: OK
[ 39.093311] Testing event sys_exit_preadv: OK
[ 39.143312] Testing event sys_enter_pwritev: OK
[ 39.193314] Testing event sys_exit_pwritev: OK
[ 39.243315] Testing event sys_enter_sendfile: OK
[ 39.293317] Testing event sys_exit_sendfile: OK
[ 39.343317] Testing event sys_enter_sendfile64: OK
[ 39.393319] Testing event sys_exit_sendfile64: OK
[ 39.443321] Testing event sys_enter_truncate: OK
[ 39.493322] Testing event sys_exit_truncate: OK
[ 39.543323] Testing event sys_enter_ftruncate: OK
[ 39.593325] Testing event sys_exit_ftruncate: OK
[ 39.633326] Testing event sys_enter_faccessat: OK
[ 39.683327] Testing event sys_exit_faccessat: OK
[ 39.733329] Testing event sys_enter_access: OK
[ 39.783330] Testing event sys_exit_access: OK
[ 39.833332] Testing event sys_enter_chdir: OK
[ 39.883333] Testing event sys_exit_chdir: OK
[ 39.933334] Testing event sys_enter_fchdir: OK
[ 39.983336] Testing event sys_exit_fchdir: OK
[ 40.033337] Testing event sys_enter_chroot:
[ 40.043334] CPA self-test:
[ 40.043334] 4k 1022 large 441 gb 0 x 525[c0000000-c1a00000] miss 0
[ 40.073333] 4k 134142 large 181 gb 0 x 3591[c0000000-c1bff000] miss 0
[ 40.103333] 4k 134142 large 181 gb 0 x 3591[c0000000-c1bff000] miss 0
[ 40.103333] ok.
[ 40.133340] OK
[ 40.133340] Testing event sys_exit_chroot: OK
[ 40.183341] Testing event sys_enter_fchmod: OK
[ 40.233343] Testing event sys_exit_fchmod: OK
[ 40.283344] Testing event sys_enter_fchmodat: OK
[ 40.333345] Testing event sys_exit_fchmodat: OK
[ 40.383347] Testing event sys_enter_chmod: OK
[ 40.433348] Testing event sys_exit_chmod: OK
[ 40.483350] Testing event sys_enter_chown: OK
[ 40.533351] Testing event sys_exit_chown: OK
[ 40.583352] Testing event sys_enter_fchownat: OK
[ 40.633354] Testing event sys_exit_fchownat: OK
[ 40.683355] Testing event sys_enter_lchown: OK
[ 40.733357] Testing event sys_exit_lchown: OK
[ 40.783358] Testing event sys_enter_fchown: OK
[ 40.833359] Testing event sys_exit_fchown: OK
[ 40.883361] Testing event sys_enter_open: OK
[ 40.933362] Testing event sys_exit_open: OK
[ 40.983364] Testing event sys_enter_openat: OK
[ 41.033365] Testing event sys_exit_openat: OK
[ 41.083366] Testing event sys_enter_creat: OK
[ 41.133368] Testing event sys_exit_creat: OK
[ 41.183369] Testing event sys_enter_close: OK
[ 41.233371] Testing event sys_exit_close: OK
[ 41.283372] Testing event sys_enter_vhangup: OK
[ 41.333373] Testing event sys_exit_vhangup: OK
[ 41.383375] Testing event sys_enter_move_pages: OK
[ 41.433376] Testing event sys_exit_move_pages: OK
[ 41.483378] Testing event sys_enter_mbind: OK
[ 41.533379] Testing event sys_exit_mbind: OK
[ 41.583380] Testing event sys_enter_set_mempolicy: OK
[ 41.633382] Testing event sys_exit_set_mempolicy: OK
[ 41.683383] Testing event sys_enter_migrate_pages: OK
[ 41.733384] Testing event sys_exit_migrate_pages: OK
[ 41.783386] Testing event sys_enter_get_mempolicy: OK
[ 41.833387] Testing event sys_exit_get_mempolicy: OK
[ 41.883388] Testing event sys_enter_msync: OK
[ 41.933390] Testing event sys_exit_msync: OK
[ 41.983391] Testing event sys_enter_mremap: OK
[ 42.033393] Testing event sys_exit_mremap: OK
[ 42.083395] Testing event sys_enter_mprotect: OK
[ 42.133396] Testing event sys_exit_mprotect: OK
[ 42.183397] Testing event sys_enter_brk: OK
[ 42.233398] Testing event sys_exit_brk: OK
[ 42.283400] Testing event sys_enter_mmap_pgoff: OK
[ 42.333402] Testing event sys_exit_mmap_pgoff: OK
[ 42.383403] Testing event sys_enter_old_mmap: OK
[ 42.433405] Testing event sys_exit_old_mmap: OK
[ 42.483405] Testing event sys_enter_munmap: OK
[ 42.533407] Testing event sys_exit_munmap: OK
[ 42.583409] Testing event sys_enter_mlock: OK
[ 42.633410] Testing event sys_exit_mlock: OK
[ 42.683411] Testing event sys_enter_munlock: OK
[ 42.733412] Testing event sys_exit_munlock: OK
[ 42.783414] Testing event sys_enter_mlockall: OK
[ 42.833415] Testing event sys_exit_mlockall: OK
[ 42.883417] Testing event sys_enter_munlockall: OK
[ 42.933418] Testing event sys_exit_munlockall: OK
[ 42.983420] Testing event sys_enter_mincore: OK
[ 43.033421] Testing event sys_exit_mincore: OK
[ 43.083422] Testing event sys_enter_madvise: OK
[ 43.133424] Testing event sys_exit_madvise: OK
[ 43.183426] Testing event sys_enter_remap_file_pages: OK
[ 43.233427] Testing event sys_exit_remap_file_pages: OK
[ 43.283428] Testing event kmalloc: OK
[ 43.333429] Testing event kmem_cache_alloc: OK
[ 43.383431] Testing event kmalloc_node: OK
[ 43.433432] Testing event kmem_cache_alloc_node: OK
[ 43.483434] Testing event kfree: OK
[ 43.533435] Testing event kmem_cache_free: OK
[ 43.583437] Testing event mm_page_free_direct: OK
[ 43.633438] Testing event mm_pagevec_free: OK
[ 43.683439] Testing event mm_page_alloc: OK
[ 43.733441] Testing event mm_page_alloc_zone_locked: OK
[ 43.783442] Testing event mm_page_pcpu_drain: OK
[ 43.833444] Testing event mm_page_alloc_extfrag: OK
[ 43.883445] Testing event sys_enter_perf_event_open: OK
[ 43.933446] Testing event sys_exit_perf_event_open: OK
[ 43.983448] Testing event power_start: OK
[ 44.033449] Testing event power_frequency: OK
[ 44.083450] Testing event power_end: OK
[ 44.133452] Testing event sys_enter_acct: OK
[ 44.183453] Testing event sys_exit_acct: OK
[ 44.233455] Testing event module_load: OK
[ 44.283456] Testing event module_free: OK
[ 44.333457] Testing event module_request: OK
[ 44.383459] Testing event sys_enter_init_module: OK
[ 44.433460] Testing event sys_exit_init_module: OK
[ 44.483462] Testing event sys_enter_chown16: OK
[ 44.533463] Testing event sys_exit_chown16: OK
[ 44.583464] Testing event sys_enter_lchown16: OK
[ 44.633466] Testing event sys_exit_lchown16: OK
[ 44.683467] Testing event sys_enter_fchown16: OK
[ 44.733468] Testing event sys_exit_fchown16: OK
[ 44.783470] Testing event sys_enter_setregid16: OK
[ 44.833471] Testing event sys_exit_setregid16: OK
[ 44.883473] Testing event sys_enter_setgid16: OK
[ 44.933474] Testing event sys_exit_setgid16: OK
[ 44.983475] Testing event sys_enter_setreuid16: OK
[ 45.033477] Testing event sys_exit_setreuid16: OK
[ 45.083478] Testing event sys_enter_setuid16: OK
[ 45.133480] Testing event sys_exit_setuid16: OK
[ 45.183481] Testing event sys_enter_setresuid16: OK
[ 45.233482] Testing event sys_exit_setresuid16: OK
[ 45.283484] Testing event sys_enter_getresuid16: OK
[ 45.333485] Testing event sys_exit_getresuid16: OK
[ 45.383487] Testing event sys_enter_setresgid16: OK
[ 45.433488] Testing event sys_exit_setresgid16: OK
[ 45.483489] Testing event sys_enter_getresgid16: OK
[ 45.533491] Testing event sys_exit_getresgid16: OK
[ 45.583492] Testing event sys_enter_setfsuid16: OK
[ 45.633493] Testing event sys_exit_setfsuid16: OK
[ 45.683495] Testing event sys_enter_setfsgid16: OK
[ 45.733496] Testing event sys_exit_setfsgid16: OK
[ 45.783498] Testing event sys_enter_getgroups16: OK
[ 45.833499] Testing event sys_exit_getgroups16: OK
[ 45.883500] Testing event sys_enter_setgroups16: OK
[ 45.933502] Testing event sys_exit_setgroups16: OK
[ 45.983503] Testing event sys_enter_getuid16: OK
[ 46.033505] Testing event sys_exit_getuid16: OK
[ 46.083506] Testing event sys_enter_geteuid16: OK
[ 46.133507] Testing event sys_exit_geteuid16: OK
[ 46.183509] Testing event sys_enter_getgid16: OK
[ 46.233510] Testing event sys_exit_getgid16: OK
[ 46.283512] Testing event sys_enter_getegid16: OK
[ 46.333513] Testing event sys_exit_getegid16: OK
[ 46.383514] Testing event sys_enter_set_robust_list: OK
[ 46.433516] Testing event sys_exit_set_robust_list: OK
[ 46.483517] Testing event sys_enter_get_robust_list: OK
[ 46.533519] Testing event sys_exit_get_robust_list: OK
[ 46.583520] Testing event sys_enter_futex: OK
[ 46.633522] Testing event sys_exit_futex: OK
[ 46.683523] Testing event lock_acquire: OK
[ 46.733526] Testing event lock_release: OK
[ 46.783526] Testing event lock_contended: OK
[ 46.833527] Testing event lock_acquired: OK
[ 46.883530] Testing event sys_enter_getgroups: OK
[ 46.933530] Testing event sys_exit_getgroups: OK
[ 46.983531] Testing event sys_enter_setgroups: OK
[ 47.033533] Testing event sys_exit_setgroups: OK
[ 47.083535] Testing event sys_enter_nanosleep: OK
[ 47.133536] Testing event sys_exit_nanosleep: OK
[ 47.183537] Testing event sys_enter_timer_create: OK
[ 47.233538] Testing event sys_exit_timer_create: OK
[ 47.283540] Testing event sys_enter_timer_gettime: OK
[ 47.333541] Testing event sys_exit_timer_gettime: OK
[ 47.383542] Testing event sys_enter_timer_getoverrun: OK
[ 47.433544] Testing event sys_exit_timer_getoverrun: OK
[ 47.483546] Testing event sys_enter_timer_settime: OK
[ 47.533547] Testing event sys_exit_timer_settime: OK
[ 47.583548] Testing event sys_enter_timer_delete: OK
[ 47.633550] Testing event sys_exit_timer_delete: OK
[ 47.683551] Testing event sys_enter_clock_settime: OK
[ 47.733552] Testing event sys_exit_clock_settime: OK
[ 47.783554] Testing event sys_enter_clock_gettime: OK
[ 47.833555] Testing event sys_exit_clock_gettime: OK
[ 47.883557] Testing event sys_enter_clock_getres: OK
[ 47.933558] Testing event sys_exit_clock_getres: OK
[ 47.983560] Testing event sys_enter_clock_nanosleep: OK
[ 48.033561] Testing event sys_exit_clock_nanosleep: OK
[ 48.083562] Testing event workqueue_insertion: OK
[ 48.133564] Testing event workqueue_execution: OK
[ 48.183565] Testing event workqueue_creation: OK
[ 48.233567] Testing event workqueue_destruction: OK
[ 48.283568] Testing event sys_enter_setpriority: OK
[ 48.333569] Testing event sys_exit_setpriority: OK
[ 48.383571] Testing event sys_enter_getpriority: OK
[ 48.433572] Testing event sys_exit_getpriority: OK
[ 48.483573] Testing event sys_enter_reboot: OK
[ 48.533575] Testing event sys_exit_reboot: OK
[ 48.583576] Testing event sys_enter_setregid: OK
[ 48.633578] Testing event sys_exit_setregid: OK
[ 48.683579] Testing event sys_enter_setgid: OK
[ 48.733580] Testing event sys_exit_setgid: OK
[ 48.783582] Testing event sys_enter_setreuid: OK
[ 48.833583] Testing event sys_exit_setreuid: OK
[ 48.883585] Testing event sys_enter_setuid: OK
[ 48.933586] Testing event sys_exit_setuid: OK
[ 48.983587] Testing event sys_enter_setresuid: OK
[ 49.033589] Testing event sys_exit_setresuid: OK
[ 49.083590] Testing event sys_enter_getresuid: OK
[ 49.133591] Testing event sys_exit_getresuid: OK
[ 49.183593] Testing event sys_enter_setresgid: OK
[ 49.233594] Testing event sys_exit_setresgid: OK
[ 49.283596] Testing event sys_enter_getresgid: OK
[ 49.333597] Testing event sys_exit_getresgid: OK
[ 49.383598] Testing event sys_enter_setfsuid: OK
[ 49.433600] Testing event sys_exit_setfsuid: OK
[ 49.483601] Testing event sys_enter_setfsgid: OK
[ 49.533603] Testing event sys_exit_setfsgid: OK
[ 49.583604] Testing event sys_enter_times: OK
[ 49.633605] Testing event sys_exit_times: OK
[ 49.683607] Testing event sys_enter_setpgid: OK
[ 49.733608] Testing event sys_exit_setpgid: OK
[ 49.783609] Testing event sys_enter_getpgid: OK
[ 49.833611] Testing event sys_exit_getpgid: OK
[ 49.883612] Testing event sys_enter_getpgrp: OK
[ 49.933614] Testing event sys_exit_getpgrp: OK
[ 49.983615] Testing event sys_enter_getsid: OK
[ 50.033616] Testing event sys_exit_getsid: OK
[ 50.083618] Testing event sys_enter_setsid: OK
[ 50.133619] Testing event sys_exit_setsid: OK
[ 50.183621] Testing event sys_enter_newuname: OK
[ 50.233622] Testing event sys_exit_newuname: OK
[ 50.283623] Testing event sys_enter_uname: OK
[ 50.333625] Testing event sys_exit_uname: OK
[ 50.383626] Testing event sys_enter_olduname: OK
[ 50.433627] Testing event sys_exit_olduname: OK
[ 50.483629] Testing event sys_enter_sethostname: OK
[ 50.533630] Testing event sys_exit_sethostname: OK
[ 50.583632] Testing event sys_enter_gethostname: OK
[ 50.633633] Testing event sys_exit_gethostname: OK
[ 50.683634] Testing event sys_enter_setdomainname: OK
[ 50.733636] Testing event sys_exit_setdomainname: OK
[ 50.783637] Testing event sys_enter_getrlimit: OK
[ 50.833639] Testing event sys_exit_getrlimit: OK
[ 50.883640] Testing event sys_enter_old_getrlimit: OK
[ 50.933642] Testing event sys_exit_old_getrlimit: OK
[ 50.983643] Testing event sys_enter_setrlimit: OK
[ 51.033644] Testing event sys_exit_setrlimit: OK
[ 51.083646] Testing event sys_enter_getrusage: OK
[ 51.133647] Testing event sys_exit_getrusage: OK
[ 51.183648] Testing event sys_enter_umask: OK
[ 51.233650] Testing event sys_exit_umask: OK
[ 51.283652] Testing event sys_enter_prctl: OK
[ 51.333652] Testing event sys_exit_prctl: OK
[ 51.383654] Testing event sys_enter_getcpu: OK
[ 51.433655] Testing event sys_exit_getcpu: OK
[ 51.483657] Testing event signal_generate: OK
[ 51.533658] Testing event signal_deliver: OK
[ 51.583660] Testing event signal_overflow_fail: OK
[ 51.633662] Testing event signal_lose_info: OK
[ 51.683662] Testing event sys_enter_restart_syscall: OK
[ 51.733664] Testing event sys_exit_restart_syscall: OK
[ 51.783666] Testing event sys_enter_rt_sigprocmask: OK
[ 51.833667] Testing event sys_exit_rt_sigprocmask: OK
[ 51.883669] Testing event sys_enter_rt_sigpending: OK
[ 51.933669] Testing event sys_exit_rt_sigpending: OK
[ 51.983671] Testing event sys_enter_rt_sigtimedwait: OK
[ 52.033673] Testing event sys_exit_rt_sigtimedwait: OK
[ 52.083674] Testing event sys_enter_kill: OK
[ 52.133676] Testing event sys_exit_kill: OK
[ 52.183677] Testing event sys_enter_tgkill: OK
[ 52.233678] Testing event sys_exit_tgkill: OK
[ 52.283679] Testing event sys_enter_tkill: OK
[ 52.333681] Testing event sys_exit_tkill: OK
[ 52.383682] Testing event sys_enter_rt_sigqueueinfo: OK
[ 52.433684] Testing event sys_exit_rt_sigqueueinfo: OK
[ 52.483685] Testing event sys_enter_rt_tgsigqueueinfo: OK
[ 52.533686] Testing event sys_exit_rt_tgsigqueueinfo: OK
[ 52.583688] Testing event sys_enter_sigpending: OK
[ 52.633690] Testing event sys_exit_sigpending: OK
[ 52.683691] Testing event sys_enter_sigprocmask: OK
[ 52.733692] Testing event sys_exit_sigprocmask: OK
[ 52.783693] Testing event sys_enter_rt_sigaction: OK
[ 52.833695] Testing event sys_exit_rt_sigaction: OK
[ 52.883696] Testing event sys_enter_sgetmask: OK
[ 52.933698] Testing event sys_exit_sgetmask: OK
[ 52.983699] Testing event sys_enter_ssetmask: OK
[ 53.033701] Testing event sys_exit_ssetmask: OK
[ 53.083702] Testing event sys_enter_signal: OK
[ 53.133703] Testing event sys_exit_signal: OK
[ 53.183705] Testing event sys_enter_pause: OK
[ 53.233706] Testing event sys_exit_pause: OK
[ 53.283708] Testing event sys_enter_rt_sigsuspend: OK
[ 53.333709] Testing event sys_exit_rt_sigsuspend: OK
[ 53.383710] Testing event timer_init: OK
[ 53.433712] Testing event timer_start: OK
[ 53.483713] Testing event timer_expire_entry: OK
[ 53.533714] Testing event timer_expire_exit: OK
[ 53.583716] Testing event timer_cancel: OK
[ 53.633717] Testing event hrtimer_init: OK
[ 53.683719] Testing event hrtimer_start: OK
[ 53.733720] Testing event hrtimer_expire_entry: OK
[ 53.783721] Testing event hrtimer_expire_exit: OK
[ 53.833723] Testing event hrtimer_cancel: OK
[ 53.883724] Testing event itimer_state: OK
[ 53.933726] Testing event itimer_expire: OK
[ 53.983727] Testing event sys_enter_alarm: OK
[ 54.033728] Testing event sys_exit_alarm: OK
[ 54.083730] Testing event sys_enter_getpid: OK
[ 54.133731] Testing event sys_exit_getpid: OK
[ 54.183732] Testing event sys_enter_getppid: OK
[ 54.233734] Testing event sys_exit_getppid: OK
[ 54.283735] Testing event sys_enter_getuid: OK
[ 54.333737] Testing event sys_exit_getuid: OK
[ 54.383738] Testing event sys_enter_geteuid: OK
[ 54.433739] Testing event sys_exit_geteuid: OK
[ 54.483741] Testing event sys_enter_getgid: OK
[ 54.533742] Testing event sys_exit_getgid: OK
[ 54.583744] Testing event sys_enter_getegid: OK
[ 54.633745] Testing event sys_exit_getegid: OK
[ 54.683746] Testing event sys_enter_gettid: OK
[ 54.733748] Testing event sys_exit_gettid: OK
[ 54.783749] Testing event sys_enter_sysinfo: OK
[ 54.833750] Testing event sys_exit_sysinfo: OK
[ 54.883752] Testing event sys_enter_ptrace: OK
[ 54.933753] Testing event sys_exit_ptrace: OK
[ 54.983755] Testing event sys_enter_capget: OK
[ 55.033756] Testing event sys_exit_capget: OK
[ 55.083757] Testing event sys_enter_capset: OK
[ 55.133759] Testing event sys_exit_capset: OK
[ 55.183761] Testing event sys_enter_sysctl: OK
[ 55.233762] Testing event sys_exit_sysctl: OK
[ 55.283763] Testing event irq_handler_entry: OK
[ 55.333765] Testing event irq_handler_exit: OK
[ 55.383766] Testing event softirq_entry: OK
[ 55.433767] Testing event softirq_exit: OK
[ 55.483769] Testing event sys_enter_time: OK
[ 55.533770] Testing event sys_exit_time: OK
[ 55.583771] Testing event sys_enter_stime: OK
[ 55.633773] Testing event sys_exit_stime: OK
[ 55.683774] Testing event sys_enter_gettimeofday: OK
[ 55.733775] Testing event sys_exit_gettimeofday: OK
[ 55.783777] Testing event sys_enter_settimeofday: OK
[ 55.833779] Testing event sys_exit_settimeofday: OK
[ 55.883780] Testing event sys_enter_adjtimex: OK
[ 55.933781] Testing event sys_exit_adjtimex: OK
[ 55.983782] Testing event sys_enter_getitimer: OK
[ 56.033785] Testing event sys_exit_getitimer: OK
[ 56.083785] Testing event sys_enter_setitimer: OK
[ 56.133787] Testing event sys_exit_setitimer: OK
[ 56.183788] Testing event sys_enter_exit: OK
[ 56.233790] Testing event sys_exit_exit: OK
[ 56.283791] Testing event sys_enter_exit_group: OK
[ 56.333793] Testing event sys_exit_exit_group: OK
[ 56.383794] Testing event sys_enter_waitid: OK
[ 56.433795] Testing event sys_exit_waitid: OK
[ 56.483797] Testing event sys_enter_wait4: OK
[ 56.533799] Testing event sys_exit_wait4: OK
[ 56.583799] Testing event sys_enter_waitpid: OK
[ 56.633801] Testing event sys_exit_waitpid: OK
[ 56.683802] Testing event sys_enter_syslog: OK
[ 56.733804] Testing event sys_exit_syslog: OK
[ 56.783805] Testing event sys_enter_personality: OK
[ 56.833807] Testing event sys_exit_personality: OK
[ 56.883808] Testing event sys_enter_set_tid_address: OK
[ 56.933810] Testing event sys_exit_set_tid_address: OK
[ 56.983811] Testing event sys_enter_unshare: OK
[ 57.033812] Testing event sys_exit_unshare: OK
[ 57.083814] Testing event sched_kthread_stop: OK
[ 57.133815] Testing event sched_kthread_stop_ret: OK
[ 57.183816] Testing event sched_wait_task: OK
[ 57.233818] Testing event sched_wakeup: OK
[ 57.283819] Testing event sched_wakeup_new: OK
[ 57.333821] Testing event sched_switch: OK
[ 57.383822] Testing event sched_migrate_task: OK
[ 57.433824] Testing event sched_process_free: OK
[ 57.483825] Testing event sched_process_exit: OK
[ 57.533826] Testing event sched_process_wait: OK
[ 57.583828] Testing event sched_process_fork: OK
[ 57.633829] Testing event sched_stat_wait: OK
[ 57.683830] Testing event sched_stat_sleep: OK
[ 57.733832] Testing event sched_stat_iowait: OK
[ 57.783833] Testing event sched_stat_runtime: OK
[ 57.833835] Testing event sys_enter_nice: OK
[ 57.883836] Testing event sys_exit_nice: OK
[ 57.933837] Testing event sys_enter_sched_setscheduler: OK
[ 57.983839] Testing event sys_exit_sched_setscheduler: OK
[ 58.033840] Testing event sys_enter_sched_setparam: OK
[ 58.083842] Testing event sys_exit_sched_setparam: OK
[ 58.133843] Testing event sys_enter_sched_getscheduler: OK
[ 58.183844] Testing event sys_exit_sched_getscheduler: OK
[ 58.233846] Testing event sys_enter_sched_getparam: OK
[ 58.283847] Testing event sys_exit_sched_getparam: OK
[ 58.333849] Testing event sys_enter_sched_setaffinity: OK
[ 58.383850] Testing event sys_exit_sched_setaffinity: OK
[ 58.433851] Testing event sys_enter_sched_getaffinity: OK
[ 58.483853] Testing event sys_exit_sched_getaffinity: OK
[ 58.533854] Testing event sys_enter_sched_yield: OK
[ 58.583855] Testing event sys_exit_sched_yield: OK
[ 58.633857] Testing event sys_enter_sched_get_priority_max: OK
[ 58.683858] Testing event sys_exit_sched_get_priority_max: OK
[ 58.733860] Testing event sys_enter_sched_get_priority_min: OK
[ 58.783861] Testing event sys_exit_sched_get_priority_min: OK
[ 58.833862] Testing event sys_enter_sched_rr_get_interval: OK
[ 58.883864] Testing event sys_exit_sched_rr_get_interval: OK
[ 58.933865] Testing event sys_enter: OK
[ 58.983867] Testing event sys_exit: OK
[ 59.033868] Running tests on trace event systems:
[ 59.033868] Testing event system skb: OK
[ 59.083869] Testing event system scsi: OK
[ 59.133871] Testing event system bkl: OK
[ 59.183872] Testing event system block: OK
[ 59.233873] Testing event system kmem: OK
[ 59.283875] Testing event system power: OK
[ 59.333876] Testing event system module: OK
[ 59.383878] Testing event system lock: OK
[ 59.433882] Testing event system workqueue: OK
[ 59.483880] Testing event system signal: OK
[ 59.533882] Testing event system timer: OK
[ 59.583883] Testing event system irq: OK
[ 59.633885] Testing event system sched: OK
[ 59.683886] Testing event system syscalls: OK
[ 59.733887] Testing event system raw_syscalls: OK
[ 59.783889] Running tests on all trace events:
[ 59.783889] Testing all events: OK
[ 59.858724] Running tests again, along with the function tracer
[ 59.858742] Running tests on trace events:
[ 59.858742] Testing event kfree_skb: OK
[ 59.913911] Testing event skb_copy_datagram_iovec: OK
[ 59.963912] Testing event sys_enter_socket: OK
[ 60.013914] Testing event sys_exit_socket: OK
[ 60.063914] Testing event sys_enter_socketpair: OK
[ 60.113915] Testing event sys_exit_socketpair: OK
[ 60.163916] Testing event sys_enter_bind: OK
[ 60.213918] Testing event sys_exit_bind: OK
[ 60.263919] Testing event sys_enter_listen: OK
[ 60.313920] Testing event sys_exit_listen: OK
[ 60.363922] Testing event sys_enter_accept4: OK
[ 60.413923] Testing event sys_exit_accept4: OK
[ 60.463925] Testing event sys_enter_accept: OK
[ 60.513926] Testing event sys_exit_accept: OK
[ 60.563928] Testing event sys_enter_connect: OK
[ 60.613928] Testing event sys_exit_connect: OK
[ 60.663930] Testing event sys_enter_getsockname: OK
[ 60.713931] Testing event sys_exit_getsockname: OK
[ 60.763933] Testing event sys_enter_getpeername: OK
[ 60.813935] Testing event sys_exit_getpeername: OK
[ 60.863936] Testing event sys_enter_sendto: OK
[ 60.913937] Testing event sys_exit_sendto: OK
[ 60.963938] Testing event sys_enter_send: OK
[ 61.013940] Testing event sys_exit_send: OK
[ 61.063941] Testing event sys_enter_recvfrom: OK
[ 61.113943] Testing event sys_exit_recvfrom: OK
[ 61.163945] Testing event sys_enter_setsockopt: OK
[ 61.213946] Testing event sys_exit_setsockopt: OK
[ 61.263947] Testing event sys_enter_getsockopt: OK
[ 61.313949] Testing event sys_exit_getsockopt: OK
[ 61.363949] Testing event sys_enter_shutdown: OK
[ 61.413952] Testing event sys_exit_shutdown: OK
[ 61.463953] Testing event sys_enter_sendmsg: OK
[ 61.513954] Testing event sys_exit_sendmsg: OK
[ 61.563956] Testing event sys_enter_recvmsg: OK
[ 61.613957] Testing event sys_exit_recvmsg: OK
[ 61.663958] Testing event sys_enter_recvmmsg: OK
[ 61.713959] Testing event sys_exit_recvmmsg: OK
[ 61.763961] Testing event sys_enter_socketcall: OK
[ 61.813963] Testing event sys_exit_socketcall: OK
[ 61.863964] Testing event scsi_dispatch_cmd_start: OK
[ 61.913965] Testing event scsi_dispatch_cmd_error: OK
[ 61.963967] Testing event scsi_dispatch_cmd_done: OK
[ 62.013968] Testing event scsi_dispatch_cmd_timeout: OK
[ 62.063969] Testing event scsi_eh_wakeup: OK
[ 62.113971] Testing event lock_kernel: OK
[ 62.163972] Testing event unlock_kernel: OK
[ 62.213974] Testing event block_rq_abort: OK
[ 62.263975] Testing event block_rq_requeue: OK
[ 62.313976] Testing event block_rq_complete: OK
[ 62.363978] Testing event block_rq_insert: OK
[ 62.413979] Testing event block_rq_issue: OK
[ 62.463981] Testing event block_bio_bounce: OK
[ 62.513982] Testing event block_bio_complete: OK
[ 62.563983] Testing event block_bio_backmerge: OK
[ 62.613985] Testing event block_bio_frontmerge: OK
[ 62.663986] Testing event block_bio_queue: OK
[ 62.713988] Testing event block_getrq: OK
[ 62.763989] Testing event block_sleeprq: OK
[ 62.813990] Testing event block_plug: OK
[ 62.863992] Testing event block_unplug_timer: OK
[ 62.913993] Testing event block_unplug_io: OK
[ 62.963994] Testing event block_split: OK
[ 63.013996] Testing event block_remap: OK
[ 63.063997] Testing event block_rq_remap: OK
[ 63.113999] Testing event sys_enter_add_key: OK
[ 63.164000] Testing event sys_exit_add_key: OK
[ 63.214001] Testing event sys_enter_request_key: OK
[ 63.264003] Testing event sys_exit_request_key: OK
[ 63.314004] Testing event sys_enter_keyctl: OK
[ 63.364006] Testing event sys_exit_keyctl: OK
[ 63.414007] Testing event sys_enter_mq_open: OK
[ 63.464008] Testing event sys_exit_mq_open: OK
[ 63.514010] Testing event sys_enter_mq_unlink: OK
[ 63.564012] Testing event sys_exit_mq_unlink: OK
[ 63.614013] Testing event sys_enter_mq_timedsend: OK
[ 63.664014] Testing event sys_exit_mq_timedsend: OK
[ 63.714015] Testing event sys_enter_mq_timedreceive: OK
[ 63.764017] Testing event sys_exit_mq_timedreceive: OK
[ 63.814018] Testing event sys_enter_mq_notify: OK
[ 63.864019] Testing event sys_exit_mq_notify: OK
[ 63.914021] Testing event sys_enter_mq_getsetattr: OK
[ 63.964022] Testing event sys_exit_mq_getsetattr: OK
[ 64.014024] Testing event sys_enter_ipc: OK
[ 64.064025] Testing event sys_exit_ipc: OK
[ 64.114026] Testing event sys_enter_shmget: OK
[ 64.164028] Testing event sys_exit_shmget: OK
[ 64.214029] Testing event sys_enter_shmctl: OK
[ 64.264031] Testing event sys_exit_shmctl: OK
[ 64.314032] Testing event sys_enter_shmat: OK
[ 64.364033] Testing event sys_exit_shmat: OK
[ 64.414035] Testing event sys_enter_shmdt: OK
[ 64.464036] Testing event sys_exit_shmdt: OK
[ 64.514037] Testing event sys_enter_semget: OK
[ 64.564040] Testing event sys_exit_semget: OK
[ 64.614040] Testing event sys_enter_semtimedop: OK
[ 64.664042] Testing event sys_exit_semtimedop: OK
[ 64.714043] Testing event sys_enter_semop: OK
[ 64.764045] Testing event sys_exit_semop: OK
[ 64.814046] Testing event sys_enter_msgget: OK
[ 64.864047] Testing event sys_exit_msgget: OK
[ 64.914049] Testing event sys_enter_msgctl: OK
[ 64.964050] Testing event sys_exit_msgctl: OK
[ 65.014051] Testing event sys_enter_msgsnd: OK
[ 65.064053] Testing event sys_exit_msgsnd: OK
[ 65.114055] Testing event sys_enter_msgrcv: OK
[ 65.164056] Testing event sys_exit_msgrcv: OK
[ 65.214057] Testing event sys_enter_quotactl: OK
[ 65.264058] Testing event sys_exit_quotactl: OK
[ 65.314060] Testing event sys_enter_flock: OK
[ 65.364062] Testing event sys_exit_flock: OK
[ 65.414063] Testing event sys_enter_io_setup: OK
[ 65.464064] Testing event sys_exit_io_setup: OK
[ 65.514066] Testing event sys_enter_io_destroy: OK
[ 65.564068] Testing event sys_exit_io_destroy: OK
[ 65.614068] Testing event sys_enter_io_submit: OK
[ 65.664070] Testing event sys_exit_io_submit: OK
[ 65.714072] Testing event sys_enter_io_cancel: OK
[ 65.764073] Testing event sys_exit_io_cancel: OK
[ 65.814074] Testing event sys_enter_io_getevents: OK
[ 65.864075] Testing event sys_exit_io_getevents: OK
[ 65.914076] Testing event sys_enter_eventfd2: OK
[ 65.964078] Testing event sys_exit_eventfd2: OK
[ 66.014080] Testing event sys_enter_eventfd: OK
[ 66.064081] Testing event sys_exit_eventfd: OK
[ 66.114083] Testing event sys_enter_timerfd_create: OK
[ 66.164083] Testing event sys_exit_timerfd_create: OK
[ 66.214085] Testing event sys_enter_timerfd_settime: OK
[ 66.264087] Testing event sys_exit_timerfd_settime: OK
[ 66.314088] Testing event sys_enter_timerfd_gettime: OK
[ 66.364090] Testing event sys_exit_timerfd_gettime: OK
[ 66.414090] Testing event sys_enter_signalfd4: OK
[ 66.464092] Testing event sys_exit_signalfd4: OK
[ 66.514094] Testing event sys_enter_signalfd: OK
[ 66.564096] Testing event sys_exit_signalfd: OK
[ 66.614097] Testing event sys_enter_epoll_create1: OK
[ 66.664098] Testing event sys_exit_epoll_create1: OK
[ 66.714099] Testing event sys_enter_epoll_create: OK
[ 66.764101] Testing event sys_exit_epoll_create: OK
[ 66.814102] Testing event sys_enter_epoll_ctl: OK
[ 66.864104] Testing event sys_exit_epoll_ctl: OK
[ 66.914105] Testing event sys_enter_epoll_wait: OK
[ 66.964106] Testing event sys_exit_epoll_wait: OK
[ 67.014108] Testing event sys_enter_epoll_pwait: OK
[ 67.064109] Testing event sys_exit_epoll_pwait: OK
[ 67.114111] Testing event sys_enter_inotify_init1: OK
[ 67.164112] Testing event sys_exit_inotify_init1: OK
[ 67.214113] Testing event sys_enter_inotify_init: OK
[ 67.264114] Testing event sys_exit_inotify_init: OK
[ 67.314116] Testing event sys_enter_inotify_add_watch: OK
[ 67.364117] Testing event sys_exit_inotify_add_watch: OK
[ 67.414119] Testing event sys_enter_inotify_rm_watch: OK
[ 67.464120] Testing event sys_exit_inotify_rm_watch: OK
[ 67.514122] Testing event sys_enter_ioprio_set: OK
[ 67.564123] Testing event sys_exit_ioprio_set: OK
[ 67.614124] Testing event sys_enter_ioprio_get: OK
[ 67.664126] Testing event sys_exit_ioprio_get: OK
[ 67.714127] Testing event sys_enter_bdflush: OK
[ 67.764129] Testing event sys_exit_bdflush: OK
[ 67.814130] Testing event sys_enter_statfs: OK
[ 67.864131] Testing event sys_exit_statfs: OK
[ 67.914133] Testing event sys_enter_statfs64: OK
[ 67.964134] Testing event sys_exit_statfs64: OK
[ 68.014135] Testing event sys_enter_fstatfs: OK
[ 68.064137] Testing event sys_exit_fstatfs: OK
[ 68.114138] Testing event sys_enter_fstatfs64: OK
[ 68.164140] Testing event sys_exit_fstatfs64: OK
[ 68.214141] Testing event sys_enter_ustat: OK
[ 68.264142] Testing event sys_exit_ustat: OK
[ 68.314144] Testing event sys_enter_utime: OK
[ 68.364145] Testing event sys_exit_utime: OK
[ 68.414147] Testing event sys_enter_utimensat: OK
[ 68.464148] Testing event sys_exit_utimensat: OK
[ 68.514150] Testing event sys_enter_futimesat: OK
[ 68.564151] Testing event sys_exit_futimesat: OK
[ 68.614152] Testing event sys_enter_utimes: OK
[ 68.664154] Testing event sys_exit_utimes: OK
[ 68.714155] Testing event sys_enter_sync: OK
[ 68.764156] Testing event sys_exit_sync: OK
[ 68.814158] Testing event sys_enter_fsync: OK
[ 68.864159] Testing event sys_exit_fsync: OK
[ 68.914160] Testing event sys_enter_fdatasync: OK
[ 68.964162] Testing event sys_exit_fdatasync: OK
[ 69.014163] Testing event sys_enter_vmsplice: OK
[ 69.064165] Testing event sys_exit_vmsplice: OK
[ 69.114166] Testing event sys_enter_splice: OK
[ 69.164167] Testing event sys_exit_splice: OK
[ 69.214169] Testing event sys_enter_tee: OK
[ 69.264171] Testing event sys_exit_tee: OK
[ 69.314172] Testing event sys_enter_setxattr: OK
[ 69.364173] Testing event sys_exit_setxattr: OK
[ 69.414174] Testing event sys_enter_lsetxattr: OK
[ 69.464176] Testing event sys_exit_lsetxattr: OK
[ 69.514177] Testing event sys_enter_fsetxattr: OK
[ 69.564179] Testing event sys_exit_fsetxattr: OK
[ 69.614180] Testing event sys_enter_getxattr: OK
[ 69.664181] Testing event sys_exit_getxattr: OK
[ 69.714183] Testing event sys_enter_lgetxattr: OK
[ 69.764185] Testing event sys_exit_lgetxattr: OK
[ 69.814186] Testing event sys_enter_fgetxattr: OK
[ 69.864187] Testing event sys_exit_fgetxattr: OK
[ 69.914188] Testing event sys_enter_listxattr: OK
[ 69.964190] Testing event sys_exit_listxattr: OK
[ 70.014191] Testing event sys_enter_llistxattr: OK
[ 70.064193] Testing event sys_exit_llistxattr: OK
[ 70.114195] Testing event sys_enter_flistxattr: OK
[ 70.394202] Testing event sys_exit_flistxattr: OK
[ 70.444203] Testing event sys_enter_removexattr: OK
[ 70.494205] Testing event sys_exit_removexattr: OK
[ 70.544206] Testing event sys_enter_lremovexattr: OK
[ 70.594208] Testing event sys_exit_lremovexattr: OK
[ 70.644209] Testing event sys_enter_fremovexattr: OK
[ 70.694211] Testing event sys_exit_fremovexattr: OK
[ 70.744212] Testing event sys_enter_umount: OK
[ 70.794213] Testing event sys_exit_umount: OK
[ 70.844215] Testing event sys_enter_oldumount: OK
[ 70.894216] Testing event sys_exit_oldumount: OK
[ 70.944217] Testing event sys_enter_mount: OK
[ 70.994219] Testing event sys_exit_mount: OK
[ 71.044220] Testing event sys_enter_pivot_root: OK
[ 71.094221] Testing event sys_exit_pivot_root: OK
[ 71.144223] Testing event sys_enter_sysfs: OK
[ 71.194225] Testing event sys_exit_sysfs: OK
[ 71.244226] Testing event sys_enter_getcwd: OK
[ 71.294227] Testing event sys_exit_getcwd: OK
[ 71.344228] Testing event sys_enter_select: OK
[ 71.394230] Testing event sys_exit_select: OK
[ 71.444232] Testing event sys_enter_pselect6: OK
[ 71.494233] Testing event sys_exit_pselect6: OK
[ 71.544235] Testing event sys_enter_old_select: OK
[ 71.594235] Testing event sys_exit_old_select: OK
[ 71.644237] Testing event sys_enter_poll: OK
[ 71.694238] Testing event sys_exit_poll: OK
[ 71.744240] Testing event sys_enter_ppoll: OK
[ 71.794242] Testing event sys_exit_ppoll: OK
[ 71.844243] Testing event sys_enter_old_readdir: OK
[ 71.894244] Testing event sys_exit_old_readdir: OK
[ 71.944246] Testing event sys_enter_getdents: OK
[ 71.994247] Testing event sys_exit_getdents: OK
[ 72.044249] Testing event sys_enter_getdents64: OK
[ 72.094250] Testing event sys_exit_getdents64: OK
[ 72.144252] Testing event sys_enter_ioctl: OK
[ 72.194253] Testing event sys_exit_ioctl: OK
[ 72.244254] Testing event sys_enter_dup3: OK
[ 72.294255] Testing event sys_exit_dup3: OK
[ 72.344257] Testing event sys_enter_dup2: OK
[ 72.394258] Testing event sys_exit_dup2: OK
[ 72.444260] Testing event sys_enter_dup: OK
[ 72.494261] Testing event sys_exit_dup: OK
[ 72.544263] Testing event sys_enter_fcntl: OK
[ 72.594263] Testing event sys_exit_fcntl: OK
[ 72.644265] Testing event sys_enter_fcntl64: OK
[ 72.694266] Testing event sys_exit_fcntl64: OK
[ 72.744268] Testing event sys_enter_mknodat: OK
[ 72.794270] Testing event sys_exit_mknodat: OK
[ 72.844271] Testing event sys_enter_mknod: OK
[ 72.894272] Testing event sys_exit_mknod: OK
[ 72.944274] Testing event sys_enter_mkdirat: OK
[ 72.994275] Testing event sys_exit_mkdirat: OK
[ 73.044277] Testing event sys_enter_mkdir: OK
[ 73.094278] Testing event sys_exit_mkdir: OK
[ 73.144279] Testing event sys_enter_rmdir: OK
[ 73.194281] Testing event sys_exit_rmdir: OK
[ 73.244282] Testing event sys_enter_unlinkat: OK
[ 73.294283] Testing event sys_exit_unlinkat: OK
[ 73.344285] Testing event sys_enter_unlink: OK
[ 73.394286] Testing event sys_exit_unlink: OK
[ 73.444287] Testing event sys_enter_symlinkat: OK
[ 73.494289] Testing event sys_exit_symlinkat: OK
[ 73.544290] Testing event sys_enter_symlink: OK
[ 73.594292] Testing event sys_exit_symlink: OK
[ 73.644293] Testing event sys_enter_linkat: OK
[ 73.694295] Testing event sys_exit_linkat: OK
[ 73.744296] Testing event sys_enter_link: OK
[ 73.794297] Testing event sys_exit_link: OK
[ 73.844299] Testing event sys_enter_renameat: OK
[ 73.894300] Testing event sys_exit_renameat: OK
[ 73.944301] Testing event sys_enter_rename: OK
[ 73.994303] Testing event sys_exit_rename: OK
[ 74.044304] Testing event sys_enter_pipe2: OK
[ 74.094306] Testing event sys_exit_pipe2: OK
[ 74.144307] Testing event sys_enter_pipe: OK
[ 74.194308] Testing event sys_exit_pipe: OK
[ 74.244310] Testing event sys_enter_uselib: OK
[ 74.294311] Testing event sys_exit_uselib: OK
[ 74.344313] Testing event sys_enter_stat: OK
[ 74.394314] Testing event sys_exit_stat: OK
[ 74.444315] Testing event sys_enter_lstat: OK
[ 74.494317] Testing event sys_exit_lstat: OK
[ 74.544318] Testing event sys_enter_fstat: OK
[ 74.594320] Testing event sys_exit_fstat: OK
[ 74.644321] Testing event sys_enter_newstat: OK
[ 74.694322] Testing event sys_exit_newstat: OK
[ 74.744324] Testing event sys_enter_newlstat: OK
[ 74.794325] Testing event sys_exit_newlstat: OK
[ 74.844326] Testing event sys_enter_newfstat: OK
[ 74.894328] Testing event sys_exit_newfstat: OK
[ 74.944329] Testing event sys_enter_readlinkat: OK
[ 74.994331] Testing event sys_exit_readlinkat: OK
[ 75.044332] Testing event sys_enter_readlink: OK
[ 75.094334] Testing event sys_exit_readlink: OK
[ 75.144335] Testing event sys_enter_stat64: OK
[ 75.194336] Testing event sys_exit_stat64: OK
[ 75.244338] Testing event sys_enter_lstat64: OK
[ 75.294339] Testing event sys_exit_lstat64: OK
[ 75.344340] Testing event sys_enter_fstat64: OK
[ 75.394342] Testing event sys_exit_fstat64: OK
[ 75.444343] Testing event sys_enter_fstatat64: OK
[ 75.494344] Testing event sys_exit_fstatat64: OK
[ 75.544346] Testing event sys_enter_lseek: OK
[ 75.594347] Testing event sys_exit_lseek: OK
[ 75.644349] Testing event sys_enter_llseek: OK
[ 75.694351] Testing event sys_exit_llseek: OK
[ 75.744351] Testing event sys_enter_read: OK
[ 75.794353] Testing event sys_exit_read: OK
[ 75.844354] Testing event sys_enter_write: OK
[ 75.894356] Testing event sys_exit_write: OK
[ 75.944357] Testing event sys_enter_readv: OK
[ 75.994358] Testing event sys_exit_readv: OK
[ 76.044361] Testing event sys_enter_writev: OK
[ 76.094362] Testing event sys_exit_writev: OK
[ 76.144363] Testing event sys_enter_preadv: OK
[ 76.194364] Testing event sys_exit_preadv: OK
[ 76.244366] Testing event sys_enter_pwritev: OK
[ 76.294367] Testing event sys_exit_pwritev: OK
[ 76.344368] Testing event sys_enter_sendfile: OK
[ 76.394370] Testing event sys_exit_sendfile: OK
[ 76.444371] Testing event sys_enter_sendfile64: OK
[ 76.494372] Testing event sys_exit_sendfile64: OK
[ 76.544374] Testing event sys_enter_truncate: OK
[ 76.594375] Testing event sys_exit_truncate: OK
[ 76.644376] Testing event sys_enter_ftruncate: OK
[ 76.694379] Testing event sys_exit_ftruncate: OK
[ 76.744380] Testing event sys_enter_faccessat: OK
[ 76.794380] Testing event sys_exit_faccessat: OK
[ 76.844382] Testing event sys_enter_access: OK
[ 76.894384] Testing event sys_exit_access: OK
[ 76.944385] Testing event sys_enter_chdir: OK
[ 76.994387] Testing event sys_exit_chdir: OK
[ 77.044388] Testing event sys_enter_fchdir: OK
[ 77.094390] Testing event sys_exit_fchdir: OK
[ 77.144391] Testing event sys_enter_chroot: OK
[ 77.194392] Testing event sys_exit_chroot: OK
[ 77.244394] Testing event sys_enter_fchmod: OK
[ 77.294395] Testing event sys_exit_fchmod: OK
[ 77.344397] Testing event sys_enter_fchmodat: OK
[ 77.394398] Testing event sys_exit_fchmodat: OK
[ 77.444399] Testing event sys_enter_chmod: OK
[ 77.494401] Testing event sys_exit_chmod: OK
[ 77.544402] Testing event sys_enter_chown: OK
[ 77.594404] Testing event sys_exit_chown: OK
[ 77.644405] Testing event sys_enter_fchownat: OK
[ 77.694406] Testing event sys_exit_fchownat: OK
[ 77.744408] Testing event sys_enter_lchown: OK
[ 77.794409] Testing event sys_exit_lchown: OK
[ 77.844410] Testing event sys_enter_fchown: OK
[ 77.894412] Testing event sys_exit_fchown: OK
[ 77.944413] Testing event sys_enter_open: OK
[ 77.994415] Testing event sys_exit_open: OK
[ 78.044416] Testing event sys_enter_openat: OK
[ 78.094418] Testing event sys_exit_openat: OK
[ 78.144419] Testing event sys_enter_creat: OK
[ 78.194420] Testing event sys_exit_creat: OK
[ 78.244422] Testing event sys_enter_close: OK
[ 78.294423] Testing event sys_exit_close: OK
[ 78.344424] Testing event sys_enter_vhangup: OK
[ 78.394426] Testing event sys_exit_vhangup: OK
[ 78.444427] Testing event sys_enter_move_pages: OK
[ 78.494429] Testing event sys_exit_move_pages: OK
[ 78.544430] Testing event sys_enter_mbind: OK
[ 78.594431] Testing event sys_exit_mbind: OK
[ 78.644433] Testing event sys_enter_set_mempolicy: OK
[ 78.694434] Testing event sys_exit_set_mempolicy: OK
[ 78.744436] Testing event sys_enter_migrate_pages: OK
[ 78.794437] Testing event sys_exit_migrate_pages: OK
[ 78.844438] Testing event sys_enter_get_mempolicy: OK
[ 78.894440] Testing event sys_exit_get_mempolicy: OK
[ 78.944441] Testing event sys_enter_msync: OK
[ 78.994443] Testing event sys_exit_msync: OK
[ 79.044444] Testing event sys_enter_mremap: OK
[ 79.094445] Testing event sys_exit_mremap: OK
[ 79.144447] Testing event sys_enter_mprotect: OK
[ 79.194448] Testing event sys_exit_mprotect: OK
[ 79.244449] Testing event sys_enter_brk: OK
[ 79.294451] Testing event sys_exit_brk: OK
[ 79.344452] Testing event sys_enter_mmap_pgoff: OK
[ 79.394454] Testing event sys_exit_mmap_pgoff: OK
[ 79.444455] Testing event sys_enter_old_mmap: OK
[ 79.494456] Testing event sys_exit_old_mmap: OK
[ 79.544458] Testing event sys_enter_munmap: OK
[ 79.594459] Testing event sys_exit_munmap: OK
[ 79.644461] Testing event sys_enter_mlock: OK
[ 79.694462] Testing event sys_exit_mlock: OK
[ 79.744463] Testing event sys_enter_munlock: OK
[ 79.794465] Testing event sys_exit_munlock: OK
[ 79.844466] Testing event sys_enter_mlockall: OK
[ 79.894467] Testing event sys_exit_mlockall: OK
[ 79.944469] Testing event sys_enter_munlockall: OK
[ 79.994470] Testing event sys_exit_munlockall: OK
[ 80.044472] Testing event sys_enter_mincore: OK
[ 80.094473] Testing event sys_exit_mincore: OK
[ 80.144474] Testing event sys_enter_madvise: OK
[ 80.194476] Testing event sys_exit_madvise: OK
[ 80.244477] Testing event sys_enter_remap_file_pages: OK
[ 80.294479] Testing event sys_exit_remap_file_pages: OK
[ 80.344480] Testing event kmalloc: OK
[ 80.394481] Testing event kmem_cache_alloc: OK
[ 80.444483] Testing event kmalloc_node: OK
[ 80.494485] Testing event kmem_cache_alloc_node: OK
[ 80.544485] Testing event kfree: OK
[ 80.594487] Testing event kmem_cache_free: OK
[ 80.644489] Testing event mm_page_free_direct: OK
[ 80.694490] Testing event mm_pagevec_free: OK
[ 80.744491] Testing event mm_page_alloc: OK
[ 80.794492] Testing event mm_page_alloc_zone_locked: OK
[ 80.844494] Testing event mm_page_pcpu_drain: OK
[ 80.894496] Testing event mm_page_alloc_extfrag: OK
[ 80.944497] Testing event sys_enter_perf_event_open: OK
[ 80.994498] Testing event sys_exit_perf_event_open: OK
[ 81.044500] Testing event power_start: OK
[ 81.094501] Testing event power_frequency: OK
[ 81.144503] Testing event power_end: OK
[ 81.194504] Testing event sys_enter_acct: OK
[ 81.244506] Testing event sys_exit_acct: OK
[ 81.294506] Testing event module_load: OK
[ 81.344508] Testing event module_free: OK
[ 81.394510] Testing event module_request: OK
[ 81.444511] Testing event sys_enter_init_module: OK
[ 81.494513] Testing event sys_exit_init_module: OK
[ 81.544514] Testing event sys_enter_chown16: OK
[ 81.594516] Testing event sys_exit_chown16: OK
[ 81.644516] Testing event sys_enter_lchown16: OK
[ 81.694518] Testing event sys_exit_lchown16: OK
[ 81.744520] Testing event sys_enter_fchown16: OK
[ 81.794521] Testing event sys_exit_fchown16: OK
[ 81.844522] Testing event sys_enter_setregid16: OK
[ 81.894523] Testing event sys_exit_setregid16: OK
[ 81.944525] Testing event sys_enter_setgid16: OK
[ 81.994527] Testing event sys_exit_setgid16: OK
[ 82.044528] Testing event sys_enter_setreuid16: OK
[ 82.094529] Testing event sys_exit_setreuid16: OK
[ 82.144531] Testing event sys_enter_setuid16: OK
[ 82.194532] Testing event sys_exit_setuid16: OK
[ 82.244534] Testing event sys_enter_setresuid16: OK
[ 82.294535] Testing event sys_exit_setresuid16: OK
[ 82.344536] Testing event sys_enter_getresuid16: OK
[ 82.394538] Testing event sys_exit_getresuid16: OK
[ 82.444539] Testing event sys_enter_setresgid16: OK
[ 82.494541] Testing event sys_exit_setresgid16: OK
[ 82.544542] Testing event sys_enter_getresgid16: OK
[ 82.594543] Testing event sys_exit_getresgid16: OK
[ 82.644545] Testing event sys_enter_setfsuid16: OK
[ 82.694546] Testing event sys_exit_setfsuid16: OK
[ 82.744547] Testing event sys_enter_setfsgid16: OK
[ 82.794549] Testing event sys_exit_setfsgid16: OK
[ 82.844550] Testing event sys_enter_getgroups16: OK
[ 82.894551] Testing event sys_exit_getgroups16: OK
[ 82.944553] Testing event sys_enter_setgroups16: OK
[ 82.994554] Testing event sys_exit_setgroups16: OK
[ 83.044556] Testing event sys_enter_getuid16: OK
[ 83.094557] Testing event sys_exit_getuid16: OK
[ 83.144559] Testing event sys_enter_geteuid16: OK
[ 83.194560] Testing event sys_exit_geteuid16: OK
[ 83.244561] Testing event sys_enter_getgid16: OK
[ 83.294563] Testing event sys_exit_getgid16: OK
[ 83.344564] Testing event sys_enter_getegid16: OK
[ 83.394565] Testing event sys_exit_getegid16: OK
[ 83.444567] Testing event sys_enter_set_robust_list: OK
[ 83.494568] Testing event sys_exit_set_robust_list: OK
[ 83.544570] Testing event sys_enter_get_robust_list: OK
[ 83.594571] Testing event sys_exit_get_robust_list: OK
[ 83.644572] Testing event sys_enter_futex: OK
[ 83.694574] Testing event sys_exit_futex: OK
[ 83.744575] Testing event lock_acquire: OK
[ 83.794579] Testing event lock_release: OK
[ 83.844579] Testing event lock_contended: OK
[ 83.894579] Testing event lock_acquired: OK
[ 83.944583] Testing event sys_enter_getgroups: OK
[ 83.994582] Testing event sys_exit_getgroups: OK
[ 84.044584] Testing event sys_enter_setgroups: OK
[ 84.094585] Testing event sys_exit_setgroups: OK
[ 84.144586] Testing event sys_enter_nanosleep: OK
[ 84.194588] Testing event sys_exit_nanosleep: OK
[ 84.244589] Testing event sys_enter_timer_create: OK
[ 84.294590] Testing event sys_exit_timer_create: OK
[ 84.344592] Testing event sys_enter_timer_gettime: OK
[ 84.394593] Testing event sys_exit_timer_gettime: OK
[ 84.444595] Testing event sys_enter_timer_getoverrun: OK
[ 84.494596] Testing event sys_exit_timer_getoverrun: OK
[ 84.544597] Testing event sys_enter_timer_settime: OK
[ 84.594599] Testing event sys_exit_timer_settime: OK
[ 84.644600] Testing event sys_enter_timer_delete: OK
[ 84.694603] Testing event sys_exit_timer_delete: OK
[ 84.744603] Testing event sys_enter_clock_settime: OK
[ 84.794604] Testing event sys_exit_clock_settime: OK
[ 84.844606] Testing event sys_enter_clock_gettime: OK
[ 84.894607] Testing event sys_exit_clock_gettime: OK
[ 84.944608] Testing event sys_enter_clock_getres: OK
[ 84.994610] Testing event sys_exit_clock_getres: OK
[ 85.044611] Testing event sys_enter_clock_nanosleep: OK
[ 85.094613] Testing event sys_exit_clock_nanosleep: OK
[ 85.144614] Testing event workqueue_insertion: OK
[ 85.194615] Testing event workqueue_execution: OK
[ 85.244617] Testing event workqueue_creation: OK
[ 85.294618] Testing event workqueue_destruction: OK
[ 85.344620] Testing event sys_enter_setpriority: OK
[ 85.394622] Testing event sys_exit_setpriority: OK
[ 85.444622] Testing event sys_enter_getpriority: OK
[ 85.494625] Testing event sys_exit_getpriority: OK
[ 85.544625] Testing event sys_enter_reboot: OK
[ 85.594627] Testing event sys_exit_reboot: OK
[ 85.644629] Testing event sys_enter_setregid: OK
[ 85.694630] Testing event sys_exit_setregid: OK
[ 85.744632] Testing event sys_enter_setgid: OK
[ 85.794632] Testing event sys_exit_setgid: OK
[ 85.844634] Testing event sys_enter_setreuid: OK
[ 85.894636] Testing event sys_exit_setreuid: OK
[ 85.944637] Testing event sys_enter_setuid: OK
[ 85.994638] Testing event sys_exit_setuid: OK
[ 86.044640] Testing event sys_enter_setresuid: OK
[ 86.094641] Testing event sys_exit_setresuid: OK
[ 86.144642] Testing event sys_enter_getresuid: OK
[ 86.194644] Testing event sys_exit_getresuid: OK
[ 86.244644] Testing event sys_enter_setresgid: OK
[ 86.294646] Testing event sys_exit_setresgid: OK
[ 86.344648] Testing event sys_enter_getresgid: OK
[ 86.394649] Testing event sys_exit_getresgid: OK
[ 86.444651] Testing event sys_enter_setfsuid: OK
[ 86.494652] Testing event sys_exit_setfsuid: OK
[ 86.544654] Testing event sys_enter_setfsgid: OK
[ 86.594654] Testing event sys_exit_setfsgid: OK
[ 86.644657] Testing event sys_enter_times: OK
[ 86.694658] Testing event sys_exit_times: OK
[ 86.744659] Testing event sys_enter_setpgid: OK
[ 86.794661] Testing event sys_exit_setpgid: OK
[ 86.844662] Testing event sys_enter_getpgid: OK
[ 86.894664] Testing event sys_exit_getpgid: OK
[ 86.944665] Testing event sys_enter_getpgrp: OK
[ 86.994666] Testing event sys_exit_getpgrp: OK
[ 87.044668] Testing event sys_enter_getsid: OK
[ 87.094669] Testing event sys_exit_getsid: OK
[ 87.144670] Testing event sys_enter_setsid: OK
[ 87.194672] Testing event sys_exit_setsid: OK
[ 87.244673] Testing event sys_enter_newuname: OK
[ 87.294675] Testing event sys_exit_newuname: OK
[ 87.344676] Testing event sys_enter_uname: OK
[ 87.394677] Testing event sys_exit_uname: OK
[ 87.444679] Testing event sys_enter_olduname: OK
[ 87.494680] Testing event sys_exit_olduname: OK
[ 87.544682] Testing event sys_enter_sethostname: OK
[ 87.594683] Testing event sys_exit_sethostname: OK
[ 87.644684] Testing event sys_enter_gethostname: OK
[ 87.694686] Testing event sys_exit_gethostname: OK
[ 87.744687] Testing event sys_enter_setdomainname: OK
[ 87.794688] Testing event sys_exit_setdomainname: OK
[ 87.844690] Testing event sys_enter_getrlimit: OK
[ 87.894691] Testing event sys_exit_getrlimit: OK
[ 87.944693] Testing event sys_enter_old_getrlimit: OK
[ 87.994694] Testing event sys_exit_old_getrlimit: OK
[ 88.044695] Testing event sys_enter_setrlimit: OK
[ 88.094697] Testing event sys_exit_setrlimit: OK
[ 88.144698] Testing event sys_enter_getrusage: OK
[ 88.194700] Testing event sys_exit_getrusage: OK
[ 88.244701] Testing event sys_enter_umask: OK
[ 88.294702] Testing event sys_exit_umask: OK
[ 88.344704] Testing event sys_enter_prctl: OK
[ 88.394705] Testing event sys_exit_prctl: OK
[ 88.444707] Testing event sys_enter_getcpu: OK
[ 88.494708] Testing event sys_exit_getcpu: OK
[ 88.544709] Testing event signal_generate: OK
[ 88.594711] Testing event signal_deliver: OK
[ 88.644712] Testing event signal_overflow_fail: OK
[ 88.694713] Testing event signal_lose_info: OK
[ 88.744715] Testing event sys_enter_restart_syscall: OK
[ 88.794716] Testing event sys_exit_restart_syscall: OK
[ 88.844718] Testing event sys_enter_rt_sigprocmask: OK
[ 88.894719] Testing event sys_exit_rt_sigprocmask: OK
[ 88.944720] Testing event sys_enter_rt_sigpending: OK
[ 88.994722] Testing event sys_exit_rt_sigpending: OK
[ 89.044723] Testing event sys_enter_rt_sigtimedwait: OK
[ 89.094725] Testing event sys_exit_rt_sigtimedwait: OK
[ 89.144726] Testing event sys_enter_kill: OK
[ 89.194727] Testing event sys_exit_kill: OK
[ 89.244729] Testing event sys_enter_tgkill: OK
[ 89.294730] Testing event sys_exit_tgkill: OK
[ 89.344732] Testing event sys_enter_tkill: OK
[ 89.394733] Testing event sys_exit_tkill: OK
[ 89.444734] Testing event sys_enter_rt_sigqueueinfo: OK
[ 89.494736] Testing event sys_exit_rt_sigqueueinfo: OK
[ 89.544737] Testing event sys_enter_rt_tgsigqueueinfo: OK
[ 89.594738] Testing event sys_exit_rt_tgsigqueueinfo: OK
[ 89.644740] Testing event sys_enter_sigpending: OK
[ 89.694741] Testing event sys_exit_sigpending: OK
[ 89.744743] Testing event sys_enter_sigprocmask: OK
[ 89.794744] Testing event sys_exit_sigprocmask: OK
[ 89.844746] Testing event sys_enter_rt_sigaction: OK
[ 89.894748] Testing event sys_exit_rt_sigaction: OK
[ 89.944748] Testing event sys_enter_sgetmask: OK
[ 89.994749] Testing event sys_exit_sgetmask: OK
[ 90.044751] Testing event sys_enter_ssetmask: OK
[ 90.094753] Testing event sys_exit_ssetmask: OK
[ 90.144754] Testing event sys_enter_signal: OK
[ 90.194755] Testing event sys_exit_signal: OK
[ 90.244756] Testing event sys_enter_pause: OK
[ 90.294759] Testing event sys_exit_pause: OK
[ 90.344760] Testing event sys_enter_rt_sigsuspend: OK
[ 90.394761] Testing event sys_exit_rt_sigsuspend: OK
[ 90.444762] Testing event timer_init: OK
[ 90.494763] Testing event timer_start: OK
[ 90.544765] Testing event timer_expire_entry: OK
[ 90.594767] Testing event timer_expire_exit: OK
[ 90.644768] Testing event timer_cancel: OK
[ 90.694770] Testing event hrtimer_init: OK
[ 90.744771] Testing event hrtimer_start: OK
[ 90.794773] Testing event hrtimer_expire_entry: OK
[ 90.844774] Testing event hrtimer_expire_exit: OK
[ 90.894775] Testing event hrtimer_cancel: OK
[ 90.944777] Testing event itimer_state: OK
[ 90.994778] Testing event itimer_expire: OK
[ 91.044780] Testing event sys_enter_alarm: OK
[ 91.094781] Testing event sys_exit_alarm: OK
[ 91.144782] Testing event sys_enter_getpid: OK
[ 91.194784] Testing event sys_exit_getpid: OK
[ 91.244785] Testing event sys_enter_getppid: OK
[ 91.294786] Testing event sys_exit_getppid: OK
[ 91.344787] Testing event sys_enter_getuid: OK
[ 91.394789] Testing event sys_exit_getuid: OK
[ 91.444791] Testing event sys_enter_geteuid: OK
[ 91.494792] Testing event sys_exit_geteuid: OK
[ 91.544793] Testing event sys_enter_getgid: OK
[ 91.594795] Testing event sys_exit_getgid: OK
[ 91.644796] Testing event sys_enter_getegid: OK
[ 91.694798] Testing event sys_exit_getegid: OK
[ 91.744799] Testing event sys_enter_gettid: OK
[ 91.794800] Testing event sys_exit_gettid: OK
[ 91.844802] Testing event sys_enter_sysinfo: OK
[ 91.894803] Testing event sys_exit_sysinfo: OK
[ 91.944805] Testing event sys_enter_ptrace: OK
[ 91.994806] Testing event sys_exit_ptrace: OK
[ 92.044807] Testing event sys_enter_capget: OK
[ 92.094809] Testing event sys_exit_capget: OK
[ 92.144810] Testing event sys_enter_capset: OK
[ 92.194811] Testing event sys_exit_capset: OK
[ 92.244813] Testing event sys_enter_sysctl: OK
[ 92.294814] Testing event sys_exit_sysctl: OK
[ 92.344816] Testing event irq_handler_entry: OK
[ 92.394818] Testing event irq_handler_exit: OK
[ 92.444818] Testing event softirq_entry: OK
[ 92.494820] Testing event softirq_exit: OK
[ 92.544821] Testing event sys_enter_time: OK
[ 92.594823] Testing event sys_exit_time: OK
[ 92.644824] Testing event sys_enter_stime: OK
[ 92.694825] Testing event sys_exit_stime: OK
[ 92.744827] Testing event sys_enter_gettimeofday: OK
[ 92.794828] Testing event sys_exit_gettimeofday: OK
[ 92.844829] Testing event sys_enter_settimeofday: OK
[ 92.894831] Testing event sys_exit_settimeofday: OK
[ 92.944832] Testing event sys_enter_adjtimex: OK
[ 92.994834] Testing event sys_exit_adjtimex: OK
[ 93.044835] Testing event sys_enter_getitimer: OK
[ 93.094836] Testing event sys_exit_getitimer: OK
[ 93.144838] Testing event sys_enter_setitimer: OK
[ 93.194839] Testing event sys_exit_setitimer: OK
[ 93.244841] Testing event sys_enter_exit: OK
[ 93.294842] Testing event sys_exit_exit: OK
[ 93.344843] Testing event sys_enter_exit_group: OK
[ 93.394845] Testing event sys_exit_exit_group: OK
[ 93.444846] Testing event sys_enter_waitid: OK
[ 93.494847] Testing event sys_exit_waitid: OK
[ 93.544849] Testing event sys_enter_wait4: OK
[ 93.594851] Testing event sys_exit_wait4: OK
[ 93.644852] Testing event sys_enter_waitpid: OK
[ 93.694853] Testing event sys_exit_waitpid: OK
[ 93.744854] Testing event sys_enter_syslog: OK
[ 93.794856] Testing event sys_exit_syslog: OK
[ 93.844857] Testing event sys_enter_personality: OK
[ 93.894859] Testing event sys_exit_personality: OK
[ 93.944860] Testing event sys_enter_set_tid_address: OK
[ 93.994861] Testing event sys_exit_set_tid_address: OK
[ 94.044863] Testing event sys_enter_unshare: OK
[ 94.094864] Testing event sys_exit_unshare: OK
[ 94.144866] Testing event sched_kthread_stop: OK
[ 94.194867] Testing event sched_kthread_stop_ret: OK
[ 94.244868] Testing event sched_wait_task: OK
[ 94.294870] Testing event sched_wakeup: OK
[ 94.344871] Testing event sched_wakeup_new: OK
[ 94.394872] Testing event sched_switch: OK
[ 94.444874] Testing event sched_migrate_task: OK
[ 94.494876] Testing event sched_process_free: OK
[ 94.544877] Testing event sched_process_exit: OK
[ 94.594879] Testing event sched_process_wait: OK
[ 94.644880] Testing event sched_process_fork: OK
[ 94.694882] Testing event sched_stat_wait: OK
[ 94.744882] Testing event sched_stat_sleep: OK
[ 94.794884] Testing event sched_stat_iowait: OK
[ 94.844885] Testing event sched_stat_runtime: OK
[ 94.894886] Testing event sys_enter_nice: OK
[ 94.944888] Testing event sys_exit_nice: OK
[ 94.994889] Testing event sys_enter_sched_setscheduler: OK
[ 95.044891] Testing event sys_exit_sched_setscheduler: OK
[ 95.094892] Testing event sys_enter_sched_setparam: OK
[ 95.144894] Testing event sys_exit_sched_setparam: OK
[ 95.194895] Testing event sys_enter_sched_getscheduler: OK
[ 95.244896] Testing event sys_exit_sched_getscheduler: OK
[ 95.294898] Testing event sys_enter_sched_getparam: OK
[ 95.344900] Testing event sys_exit_sched_getparam: OK
[ 95.394901] Testing event sys_enter_sched_setaffinity: OK
[ 95.444902] Testing event sys_exit_sched_setaffinity: OK
[ 95.494903] Testing event sys_enter_sched_getaffinity: OK
[ 95.544905] Testing event sys_exit_sched_getaffinity: OK
[ 95.594906] Testing event sys_enter_sched_yield: OK
[ 95.644908] Testing event sys_exit_sched_yield: OK
[ 95.694909] Testing event sys_enter_sched_get_priority_max: OK
[ 95.744910] Testing event sys_exit_sched_get_priority_max: OK
[ 95.794912] Testing event sys_enter_sched_get_priority_min: OK
[ 95.844913] Testing event sys_exit_sched_get_priority_min: OK
[ 95.894915] Testing event sys_enter_sched_rr_get_interval: OK
[ 95.944916] Testing event sys_exit_sched_rr_get_interval: OK
[ 95.994918] Testing event sys_enter: OK
[ 96.044919] Testing event sys_exit: OK
[ 96.094921] Running tests on trace event systems:
[ 96.094921] Testing event system skb: OK
[ 96.154922] Testing event system scsi: OK
[ 96.204923] Testing event system bkl: OK
[ 96.254925] Testing event system block: OK
[ 96.304927] Testing event system kmem: OK
[ 96.354927] Testing event system power: OK
[ 96.404929] Testing event system module: OK
[ 96.454931] Testing event system lock: OK
[ 96.494939] Testing event system workqueue: OK
[ 96.544933] Testing event system signal: OK
[ 96.594934] Testing event system timer: OK
[ 96.644936] Testing event system irq: OK
[ 96.694937] Testing event system sched: OK
[ 96.744939] Testing event system syscalls: OK
[ 96.804940] Testing event system raw_syscalls: OK
[ 96.854942] Running tests on all trace events:
[ 96.854942] Testing all events: OK
[ 96.957240] initcall event_trace_self_tests_init+0x0/0x39 returned 0 after 72231468 usecs
[ 96.957250] calling init_ima+0x0/0x14 @ 1
[ 96.957250] IMA: No TPM chip found, activating TPM-bypass!
[ 96.965480] initcall init_ima+0x0/0x14 returned 0 after 5600 usecs
[ 96.965480] calling random32_reseed+0x0/0x7d @ 1
[ 96.976218] initcall random32_reseed+0x0/0x7d returned 0 after 27 usecs
[ 96.976218] calling pci_resource_alignment_sysfs_init+0x0/0x14 @ 1
[ 96.989139] initcall pci_resource_alignment_sysfs_init+0x0/0x14 returned 0 after 12 usecs
[ 96.999139] calling pci_sysfs_init+0x0/0x44 @ 1
[ 96.999139] initcall pci_sysfs_init+0x0/0x44 returned 0 after 1004 usecs
[ 97.009698] calling regulator_init_complete+0x0/0xf9 @ 1
[ 97.019698] initcall regulator_init_complete+0x0/0xf9 returned 0 after 42 usecs
[ 97.019698] calling seqgen_init+0x0/0xe @ 1
[ 97.026736] initcall seqgen_init+0x0/0xe returned 0 after 29 usecs
[ 97.026736] calling scsi_complete_async_scans+0x0/0xf5 @ 1
[ 97.038532] initcall scsi_complete_async_scans+0x0/0xf5 returned 0 after 1 usecs
[ 97.048532] calling memmap_init+0x0/0x2d @ 1
[ 97.048532] initcall memmap_init+0x0/0x2d returned 0 after 133 usecs
[ 97.056801] calling dmatest_init+0x0/0x5d @ 1
[ 97.056801] __dma_request_channel: fail ((null))
[ 97.066801] initcall dmatest_init+0x0/0x5d returned 0 after 4556 usecs
[ 97.066801] calling pci_mmcfg_late_insert_resources+0x0/0x59 @ 1
[ 97.078537] initcall pci_mmcfg_late_insert_resources+0x0/0x59 returned 0 after 5 usecs
[ 97.088537] calling tcp_congestion_default+0x0/0xf @ 1
[ 97.088537] initcall tcp_congestion_default+0x0/0xf returned 0 after 4 usecs
[ 97.098749] calling initialize_hashrnd+0x0/0x16 @ 1
[ 97.098749] initcall initialize_hashrnd+0x0/0x16 returned 0 after 8 usecs
[ 97.110518] async_waiting @ 1
[ 97.110518] async_continuing @ 1 after 3 usec
[ 97.134928] EXT3-fs (sda1): recovery required on readonly filesystem
[ 97.147290] EXT3-fs (sda1): write access will be enabled during recovery
[ 97.154929] EXT3-fs: barriers not enabled
[ 97.184939] kjournald starting. Commit interval 5 seconds
[ 97.184939] EXT3-fs (sda1): recovery complete
[ 97.194927] EXT3-fs (sda1): mounted filesystem with ordered data mode
[ 97.208357] VFS: Mounted root (ext3 filesystem) readonly on device 8:1.
[ 97.215324] async_waiting @ 1
[ 97.215324] async_continuing @ 1 after 3 usec
[ 97.215324] Freeing unused kernel memory: 2004k freed
[ 97.228150] Write protecting the kernel text: 5552k
[ 97.235931] Testing CPA: Reverting c1000000-c156c000
[ 97.235931] Testing CPA: write protecting again
[ 97.246437] Write protecting the kernel read-only data: 2972k
[ 97.246437] Testing CPA: undo c156c000-c1853000
[ 97.257922] Testing CPA: write protecting again
[ 97.294934] Not activating Mandatory Access Control now since /sbin/tomoyo-init doesn't exist.
modprobe: FATAL: Could not load /lib/modules/2.6.34-08129-gcc106eb-dirty/modules.dep: No such file or directory
INIT: version 2.86 booting
[ 98.114963] mount used greatest stack depth: 1868 bytes left
Welcome to Fedora Core
Press 'I' to enter interactive startup.
modprobe: FATAL: Could not load /lib/modules/2.6.34-08129-gcc106eb-dirty/modules.dep: No such file or directory
modprobe: FATAL: Could not load /lib/modules/2.6.34-08129-gcc106eb-dirty/modules.dep: No such file or directory
Setting clock (utc): Fri May 28 09:55:18 CEST 2010 [ OK ]
Loading default keymap (us): [ OK ]
Setting hostname mercury: [ OK ]
modprobe: FATAL: Could not load /lib/modules/2.6.34-08129-gcc106eb-dirty/modules.dep: No such file or directory
modprobe: FATAL: Could not load /lib/modules/2.6.34-08129-gcc106eb-dirty/modules.dep: No such file or directory
raidautorun: failed to open /dev/md0: No such device or address
/proc/misc: No entry for device-mapper found
Is device-mapper driver missing from kernel?
device-mapper: version ioctl failed: Inappropriate ioctl for device
/proc/misc: No entry for device-mapper found
Is device-mapper driver missing from kernel?
device-mapper: version ioctl failed: Inappropriate ioctl for device
Command failed
modprobe: FATAL: Could not load /lib/modules/2.6.34-08129-gcc106eb-dirty/modules.dep: No such file or directory
modprobe: FATAL: Could not load /lib/modules/2.6.34-08129-gcc106eb-dirty/modules.dep: No such file or directory
modprobe: FATAL: Could not load /lib/modules/2.6.34-08129-gcc106eb-dirty/modules.dep: No such file or directory
modprobe: FATAL: Could not load /lib/modules/2.6.34-08129-gcc106eb-dirty/modules.dep: No such file or directory
modprobe: FATAL: Could not load /lib/modules/2.6.34-08129-gcc106eb-dirty/modules.dep: No such file or directory
modprobe: FATAL: Could not load /lib/modules/2.6.34-08129-gcc106eb-dirty/modules.dep: No such file or directory
modprobe: FATAL: Could not load /lib/modules/2.6.34-08129-gcc106eb-dirty/modules.dep: No such file or directory
modprobe: FATAL: Could not load /lib/modules/2.6.34-08129-gcc106eb-dirty/modules.dep: No such file or directory
Setting up Logical Volume Management: modprobe: FATAL: Could not load /lib/modules/2.6.34-08129-gcc106eb-dirty/modules.dep: No such file or directory
modprobe: FATAL: Could not load /lib/modules/2.6.34-08129-gcc106eb-dirty/modules.dep: No such file or directory
modprobe: FATAL: Could not load /lib/modules/2.6.34-08129-gcc106eb-dirty/modules.dep: No such file or directory
modprobe: FATAL: Could not load /lib/modules/2.6.34-08129-gcc106eb-dirty/modules.dep: No such file or directory
/dev/ramdisk: open failed: No such device or address
modprobe: FATAL: Could not load /lib/modules/2.6.34-08129-gcc106eb-dirty/modules.dep: No such file or directory
modprobe: FATAL: Could not load /lib/modules/2.6.34-08129-gcc106eb-dirty/modules.dep: No such file or directory
modprobe: FATAL: Could not load /lib/modules/2.6.34-08129-gcc106eb-dirty/modules.dep: No such file or directory
modprobe: FATAL: Could not load /lib/modules/2.6.34-08129-gcc106eb-dirty/modules.dep: No such file or directory
/dev/hda: open failed: No such device or address
modprobe: FATAL: Could not load /lib/modules/2.6.34-08129-gcc106eb-dirty/modules.dep: No such file or directory
modprobe: FATAL: Could not load /lib/modules/2.6.34-08129-gcc106eb-dirty/modules.dep: No such file or directory
modprobe: FATAL: Could not load /lib/modules/2.6.34-08129-gcc106eb-dirty/modules.dep: No such file or directory
modprobe: FATAL: Could not load /lib/modules/2.6.34-08129-gcc106eb-dirty/modules.dep: No such file or directory
/dev/md0: open failed: No such device or address
modprobe: FATAL: Could not load /lib/modules/2.6.34-08129-gcc106eb-dirty/modules.dep: No such file or directory
modprobe: FATAL: Could not load /lib/modules/2.6.34-08129-gcc106eb-dirty/modules.dep: No such file or directory
modprobe: FATAL: Could not load /lib/modules/2.6.34-08129-gcc106eb-dirty/modules.dep: No such file or directory
modprobe: FATAL: Could not load /lib/modules/2.6.34-08129-gcc106eb-dirty/modules.dep: No such file or directory
/dev/ram: open failed: No such device or address
modprobe: FATAL: Could not load /lib/modules/2.6.34-08129-gcc106eb-dirty/modules.dep: No such file or directory
modprobe: FATAL: Could not load /lib/modules/2.6.34-08129-gcc106eb-dirty/modules.dep: No such file or directory
modprobe: FATAL: Could not load /lib/modules/2.6.34-08129-gcc106eb-dirty/modules.dep: No such file or directory
modprobe: FATAL: Could not load /lib/modules/2.6.34-08129-gcc106eb-dirty/modules.dep: No such file or directory
/dev/hda1: open failed: No such device or address
modprobe: FATAL: Could not load /lib/modules/2.6.34-08129-gcc106eb-dirty/modules.dep: No such file or directory
modprobe: FATAL: Could not load /lib/modules/2.6.34-08129-gcc106eb-dirty/modules.dep: No such file or directory
modprobe: FATAL: Could not load /lib/modules/2.6.34-08129-gcc106eb-dirty/modules.dep: No such file or directory
modprobe: FATAL: Could not load /lib/modules/2.6.34-08129-gcc106eb-dirty/modules.dep: No such file or directory
/dev/md1: open failed: No such device or address
modprobe: FATAL: Could not load /lib/modules/2.6.34-08129-gcc106eb-dirty/modules.dep: No such file or directory
modprobe: FATAL: Could not load /lib/modules/2.6.34-08129-gcc106eb-dirty/modules.dep: No such file or directory
modprobe: FATAL: Could not load /lib/modules/2.6.34-08129-gcc106eb-dirty/modules.dep: No such file or directory
modprobe: FATAL: Could not load /lib/modules/2.6.34-08129-gcc106eb-dirty/modules.dep: No such file or directory
/dev/ram2: open failed: No such device or address
modprobe: FATAL: Could not load /lib/modules/2.6.34-08129-gcc106eb-dirty/modules.dep: No such file or directory
modprobe: FATAL: Could not load /lib/modules/2.6.34-08129-gcc106eb-dirty/modules.dep: No such file or directory
modprobe: FATAL: Could not load /lib/modules/2.6.34-08129-gcc106eb-dirty/modules.dep: No such file or directory
modprobe: FATAL: Could not load /lib/modules/2.6.34-08129-gcc106eb-dirty/modules.dep: No such file or directory
/dev/hda2: open failed: No such device or address
modprobe: FATAL: Could not load /lib/modules/2.6.34-08129-gcc106eb-dirty/modules.dep: No such file or directory
modprobe: FATAL: Could not load /lib/modules/2.6.34-08129-gcc106eb-dirty/modules.dep: No such file or directory
modprobe: FATAL: Could not load /lib/modules/2.6.34-08129-gcc106eb-dirty/modules.dep: No such file or directory
modprobe: FATAL: Could not load /lib/modules/2.6.34-08129-gcc106eb-dirty/modules.dep: No such file or directory
/dev/ram3: open failed: No such device or address
modprobe: FATAL: Could not load /lib/modules/2.6.34-08129-gcc106eb-dirty/modules.dep: No such file or directory
modprobe: FATAL: Could not load /lib/modules/2.6.34-08129-gcc106eb-dirty/modules.dep: No such file or directory
modprobe: FATAL: Could not load /lib/modules/2.6.34-08129-gcc106eb-dirty/modules.dep: No such file or directory
modprobe: FATAL: Could not load /lib/modules/2.6.34-08129-gcc106eb-dirty/modules.dep: No such file or directory
/dev/ram4: open failed: No such device or address
modprobe: FATAL: Could not load /lib/modules/2.6.34-08129-gcc106eb-dirty/modules.dep: No such file or directory
modprobe: FATAL: Could not load /lib/modules/2.6.34-08129-gcc106eb-dirty/modules.dep: No such file or directory
modprobe: FATAL: Could not load /lib/modules/2.6.34-08129-gcc106eb-dirty/modules.dep: No such file or directory
modprobe: FATAL: Could not load /lib/modules/2.6.34-08129-gcc106eb-dirty/modules.dep: No such file or directory
/dev/ram5: open failed: No such device or address
modprobe: FATAL: Could not load /lib/modules/2.6.34-08129-gcc106eb-dirty/modules.dep: No such file or directory
modprobe: FATAL: Could not load /lib/modules/2.6.34-08129-gcc106eb-dirty/modules.dep: No such file or directory
modprobe: FATAL: Could not load /lib/modules/2.6.34-08129-gcc106eb-dirty/modules.dep: No such file or directory
modprobe: FATAL: Could not load /lib/modules/2.6.34-08129-gcc106eb-dirty/modules.dep: No such file or directory
/dev/ram6: open failed: No such device or address
modprobe: FATAL: Could not load /lib/modules/2.6.34-08129-gcc106eb-dirty/modules.dep: No such file or directory
modprobe: FATAL: Could not load /lib/modules/2.6.34-08129-gcc106eb-dirty/modules.dep: No such file or directory
modprobe: FATAL: Could not load /lib/modules/2.6.34-08129-gcc106eb-dirty/modules.dep: No such file or directory
modprobe: FATAL: Could not load /lib/modules/2.6.34-08129-gcc106eb-dirty/modules.dep: No such file or directory
/dev/ram7: open failed: No such device or address
modprobe: FATAL: Could not load /lib/modules/2.6.34-08129-gcc106eb-dirty/modules.dep: No such file or directory
modprobe: FATAL: Could not load /lib/modules/2.6.34-08129-gcc106eb-dirty/modules.dep: No such file or directory
modprobe: FATAL: Could not load /lib/modules/2.6.34-08129-gcc106eb-dirty/modules.dep: No such file or directory
modprobe: FATAL: Could not load /lib/modules/2.6.34-08129-gcc106eb-dirty/modules.dep: No such file or directory
/dev/ram8: open failed: No such device or address
modprobe: FATAL: Could not load /lib/modules/2.6.34-08129-gcc106eb-dirty/modules.dep: No such file or directory
modprobe: FATAL: Could not load /lib/modules/2.6.34-08129-gcc106eb-dirty/modules.dep: No such file or directory
modprobe: FATAL: Could not load /lib/modules/2.6.34-08129-gcc106eb-dirty/modules.dep: No such file or directory
modprobe: FATAL: Could not load /lib/modules/2.6.34-08129-gcc106eb-dirty/modules.dep: No such file or directory
/dev/ram9: open failed: No such device or address
modprobe: FATAL: Could not load /lib/modules/2.6.34-08129-gcc106eb-dirty/modules.dep: No such file or directory
modprobe: FATAL: Could not load /lib/modules/2.6.34-08129-gcc106eb-dirty/modules.dep: No such file or directory
modprobe: FATAL: Could not load /lib/modules/2.6.34-08129-gcc106eb-dirty/modules.dep: No such file or directory
modprobe: FATAL: Could not load /lib/modules/2.6.34-08129-gcc106eb-dirty/modules.dep: No such file or directory
/dev/ram10: open failed: No such device or address
modprobe: FATAL: Could not load /lib/modules/2.6.34-08129-gcc106eb-dirty/modules.dep: No such file or directory
modprobe: FATAL: Could not load /lib/modules/2.6.34-08129-gcc106eb-dirty/modules.dep: No such file or directory
modprobe: FATAL: Could not load /lib/modules/2.6.34-08129-gcc106eb-dirty/modules.dep: No such file or directory
modprobe: FATAL: Could not load /lib/modules/2.6.34-08129-gcc106eb-dirty/modules.dep: No such file or directory
/dev/ram11: open failed: No such device or address
modprobe: FATAL: Could not load /lib/modules/2.6.34-08129-gcc106eb-dirty/modules.dep: No such file or directory
modprobe: FATAL: Could not load /lib/modules/2.6.34-08129-gcc106eb-dirty/modules.dep: No such file or directory
modprobe: FATAL: Could not load /lib/modules/2.6.34-08129-gcc106eb-dirty/modules.dep: No such file or directory
modprobe: FATAL: Could not load /lib/modules/2.6.34-08129-gcc106eb-dirty/modules.dep: No such file or directory
/dev/ram12: open failed: No such device or address
modprobe: FATAL: Could not load /lib/modules/2.6.34-08129-gcc106eb-dirty/modules.dep: No such file or directory
modprobe: FATAL: Could not load /lib/modules/2.6.34-08129-gcc106eb-dirty/modules.dep: No such file or directory
modprobe: FATAL: Could not load /lib/modules/2.6.34-08129-gcc106eb-dirty/modules.dep: No such file or directory
modprobe: FATAL: Could not load /lib/modules/2.6.34-08129-gcc106eb-dirty/modules.dep: No such file or directory
/dev/ram13: open failed: No such device or address
modprobe: FATAL: Could not load /lib/modules/2.6.34-08129-gcc106eb-dirty/modules.dep: No such file or directory
modprobe: FATAL: Could not load /lib/modules/2.6.34-08129-gcc106eb-dirty/modules.dep: No such file or directory
modprobe: FATAL: Could not load /lib/modules/2.6.34-08129-gcc106eb-dirty/modules.dep: No such file or directory
modprobe: FATAL: Could not load /lib/modules/2.6.34-08129-gcc106eb-dirty/modules.dep: No such file or directory
/dev/ram14: open failed: No such device or address
modprobe: FATAL: Could not load /lib/modules/2.6.34-08129-gcc106eb-dirty/modules.dep: No such file or directory
modprobe: FATAL: Could not load /lib/modules/2.6.34-08129-gcc106eb-dirty/modules.dep: No such file or directory
modprobe: FATAL: Could not load /lib/modules/2.6.34-08129-gcc106eb-dirty/modules.dep: No such file or directory
modprobe: FATAL: Could not load /lib/modules/2.6.34-08129-gcc106eb-dirty/modules.dep: No such file or directory
/dev/ram15: open failed: No such device or address
modprobe: FATAL: Could not load /lib/modules/2.6.34-08129-gcc106eb-dirty/modules.dep: No such file or directory
modprobe: FATAL: Could not load /lib/modules/2.6.34-08129-gcc106eb-dirty/modules.dep: No such file or directory
modprobe: FATAL: Could not load /lib/modules/2.6.34-08129-gcc106eb-dirty/modules.dep: No such file or directory
modprobe: FATAL: Could not load /lib/modules/2.6.34-08129-gcc106eb-dirty/modules.dep: No such file or directory
/dev/hdb: open failed: No such device or address
modprobe: FATAL: Could not load /lib/modules/2.6.34-08129-gcc106eb-dirty/modules.dep: No such file or directory
modprobe: FATAL: Could not load /lib/modules/2.6.34-08129-gcc106eb-dirty/modules.dep: No such file or directory
modprobe: FATAL: Could not load /lib/modules/2.6.34-08129-gcc106eb-dirty/modules.dep: No such file or directory
modprobe: FATAL: Could not load /lib/modules/2.6.34-08129-gcc106eb-dirty/modules.dep: No such file or directory
/dev/hdb2: open failed: No such device or address
No volume groups found
[ OK ]
Checking filesystems
Checking all file systems.
[/sbin/fsck.ext3 (1) -- /] fsck.ext3 -a /dev/sda1
/: clean, 514800/7685440 files, 5326367/7679062 blocks
[/sbin/fsck.ext3 (1) -- /home] fsck.ext3 -a /dev/sda5
/home: recovering journal
/home: clean, 139743/6111232 files, 2691782/12209392 blocks
[ OK ]
Remounting root filesystem in read-write mode: [ 101.495051] EXT3-fs (sda1): using internal journal
[ OK ]
Mounting local filesystems: [ 101.575054] EXT3-fs: barriers not enabled
[ 101.575061] kjournald starting. Commit interval 5 seconds
[ 101.585050] EXT3-fs (sda5): using internal journal
[ 101.585050] EXT3-fs (sda5): mounted filesystem with ordered data mode
[ OK ]
Enabling local filesystem quotas: [ OK ]
Enabling /etc/fstab swaps: modprobe: FATAL: Could not load /lib/modules/2.6.34-08129-gcc106eb-dirty/modules.dep: No such file or directory
modprobe: FATAL: Could not load /lib/modules/2.6.34-08129-gcc106eb-dirty/modules.dep: No such file or directory
swapon: /dev/hda2: Function not implemented
[FAILED]
[ 102.895100] rc.sysinit used greatest stack depth: 1780 bytes left
INIT: Entering runlevel: 3
Entering non-interactive startup
Bringing up loopback interface: [ OK ]
Bringing up interface eth0: [ OK ]
Starting sshd: modprobe: FATAL: Could not load /lib/modules/2.6.34-08129-gcc106eb-dirty/modules.dep: No such file or directory
[ OK ]modprobe: FATAL: Could not load /lib/modules/2.6.34-08129-gcc106eb-dirty/modules.dep: No such file or directory
/etc/rc3.d/S99local: line 9: /proc/sys/kernel/exec-shield: No such file or directory
FATAL: Could not load /lib/modules/2.6.34-08129-gcc106eb-dirty/modules.dep: No such file or directory
swapon: /dev/sda2: Function not implemented
Starting Distributed Compiler daemon (distccd): modprobe: FATAL: Could not load /lib/modules/2.6.34-08129-gcc106eb-dirty/modules.dep: No such file or directory
modprobe: FATAL: Could not load /lib/modules/2.6.34-08129-gcc106eb-dirty/modules.dep: No such file or directory
modprobe: FATAL: Could not load /lib/modules/2.6.34-08129-gcc106eb-dirty/modules.dep: No such file or directory
modprobe: FATAL: Could not load /lib/modules/2.6.34-08129-gcc106eb-dirty/modules.dep: No such file or directory
modprobe: FATAL: Could not load /lib/modules/2.6.34-08129-gcc106eb-dirty/modules.dep: No such file or directory
modprobe: FATAL: Could not load /lib/modules/2.6.34-08129-gcc106eb-dirty/modules.dep: No such file or directory
modprobe: FATAL: Could not load /lib/modules/2.6.34-08129-gcc106eb-dirty/modules.dep: No such file or directory
modprobe: FATAL: Could not load /lib/modules/2.6.34-08129-gcc106eb-dirty/modules.dep: No such file or directory
modprobe: FATAL: Could not load /lib/modules/2.6.34-08129-gcc106eb-dirty/modules.dep: No such file or directory
modprobe: FATAL: Could not load /lib/modules/2.6.34-08129-gcc106eb-dirty/modules.dep: No such file or directory
modprobe: FATAL: Could not load /lib/modules/2.6.34-08129-gcc106eb-dirty/modules.dep: No such file or directory
modprobe: FATAL: Could not load /lib/modules/2.6.34-08129-gcc106eb-dirty/modules.dep: No such file or directory
modprobe: FATAL: Could not load /lib/modules/2.6.34-08129-gcc106eb-dirty/modules.dep: No such file or directory
modprobe: FATAL: Could not load /lib/modules/2.6.34-08129-gcc106eb-dirty/modules.dep: No such file or directory
modprobe: FATAL: Could not load /lib/modules/2.6.34-08129-gcc106eb-dirty/modules.dep: No such file or directory
modprobe: FATAL: Could not load /lib/modules/2.6.34-08129-gcc106eb-dirty/modules.dep: No such file or directory
modprobe: FATAL: Could not load /lib/modules/2.6.34-08129-gcc106eb-dirty/modules.dep: No such file or directory
modprobe: FATAL: Could not load /lib/modules/2.6.34-08129-gcc106eb-dirty/modules.dep: No such file or directory
modprobe: FATAL: Could not load /lib/modules/2.6.34-08129-gcc106eb-dirty/modules.dep: No such file or directory
modprobe: FATAL: Could not load /lib/modules/2.6.34-08129-gcc106eb-dirty/modules.dep: No such file or directory
[ 107.435230] ssh used greatest stack depth: 1748 bytes left
modprobe: FATAL: Could not load /lib/modules/2.6.34-08129-gcc106eb-dirty/modules.dep: No such file or directory
modprobe: FATAL: Could not load /lib/modules/2.6.34-08129-gcc106eb-dirty/modules.dep: No such file or directory
modprobe: FATAL: Could not load /lib/modules/2.6.34-08129-gcc106eb-dirty/modules.dep: No such file or directory
modprobe: FATAL: Could not load /lib/modules/2.6.34-08129-gcc106eb-dirty/modules.dep: No such file or directory
distccd[2277] (dcc_setup_real_log) ERROR: failed to open /var/log/distccd.log: Permission denied
modprobe: FATAL: Could not load /lib/modules/2.6.34-08129-gcc106eb-dirty/modules.dep: No such file or directory
modprobe: FATAL: Could not load /lib/modules/2.6.34-08129-gcc106eb-dirty/modules.dep: No such file or directory
modprobe: FATAL: Could not load /lib/modules/2.6.34-08129-gcc106eb-dirty/modules.dep: No such file or directory
modprobe: FATAL: Could not load /lib/modules/2.6.34-08129-gcc106eb-dirty/modules.dep: No such file or directory
modprobe: FATAL: Could not load /lib/modules/2.6.34-08129-gcc106eb-dirty/modules.dep: No such file or directory
modprobe: FATAL: Could not load /lib/modules/2.6.34-08129-gcc106eb-dirty/modules.dep: No such file or directory
[ OK ]
modprobe: FATAL: Could not load /lib/modules/2.6.34-08129-gcc106eb-dirty/modules.dep: No such file or directory
/etc/rc3.d/S99local: line 32: /sys/kernel/uids/0/cpu_share: No such file or directory
/etc/rc3.d/S99local: line 34: /sys/kernel/uids//cpu_share: No such file or directory
NOT testing CPU hotplug
[ 107.785229] device: 'vcs2': device_add
[ 107.785229] device: 'vcsa2': device_add
[ 107.795229] device: 'vcs3': device_add
[ 107.795229] device: 'vcsa3': device_add
[ 107.805232] device: 'vcs7': device_add
[ 107.805232] device: 'vcsa7': device_add
[ 107.818082] device: 'vcs5': device_add
[ 107.818095] device: 'vcsa5': device_add
[ 107.825233] device: 'vcs9': device_add
[ 107.825233] device: 'vcsa9': device_add
[ 107.825256] device: 'vcs8': device_add
[ 107.825256] device: 'vcsa8': device_add
modprobe: FATAL:[ 107.845233] device: 'vcs10': device_add
[ 107.845233] device: 'vcsa10': device_add
Could not load [ 107.855226] device: 'vcs6': device_add
[ 107.855226] device: 'vcsa6': device_add
/lib/modules/2.6.34-08129-gcc106eb-dirty/modules.dep: No such fi[ 107.863837] device: 'vcs4': device_add
[ 107.863837] device: 'vcsa4': device_add
le or directory
modprobe: FATAL: Could not load /lib/modules/2.6.34-08129-gcc106eb-dirty/modules.dep: No such file or directory
modprobe: FATAL: Could not load /lib/modules/2.6.34-08129-gcc106eb-dirty/modules.dep: No such file or directory
modprobe: FATAL: Could not load /lib/modules/2.6.34-08129-gcc106eb-dirty/modules.dep: No such file or directory
/etc/rc3.d/S99local: line 52: /home/mingo/bin/perf: cannot execute binary file
modprobe: FATAL: Could not load /lib/modules/2.6.34-08129-gcc106eb-dirty/modules.dep: No such file or directory
modprobe: FATAL: Could not load /lib/modules/2.6.34-08129-gcc106eb-dirty/modules.dep: No such file or directory
modprobe: FATAL: Could not load /lib/modules/2.6.34-08129-gcc106eb-dirty/modules.dep: No such file or directory
modprobe: FATAL: Could not load /lib/modules/2.6.34-08129-gcc106eb-dirty/modules.dep: No such file or directory
modprobe: FATAL: Could not load /lib/modules/2.6.34-08129-gcc106eb-dirty/modules.dep: No such file or directory
modprobe: FATAL: Could not load /lib/modules/2.6.34-08129-gcc106eb-dirty/modules.dep: No such file or directory
modprobe: FATAL: Could not load /lib/modules/2.6.34-08129-gcc106eb-dirty/modules.dep: No such file or directory
modprobe: FATAL: Could not load /lib/modules/2.6.34-08129-gcc106eb-dirty/modules.dep: No such file or directory
modprobe: FATAL: Could not load /lib/modules/2.6.34-08129-gcc106eb-dirty/modules.dep: No such file or directory
modprobe: FATAL: Could not load /lib/modules/2.6.34-08129-gcc106eb-dirty/modules.dep: No such file or directory
modprobe: FATAL: Could not load /lib/modules/2.6.34-08129-gcc106eb-dirty/modules.dep: No such file or directory
modprobe: FATAL: Could not load /lib/modules/2.6.34-08129-gcc106eb-dirty/modules.dep: No such file or directory
modprobe: FATAL: Could not load /lib/modules/2.6.34-08129-gcc106eb-dirty/modules.dep: No such file or directory
modprobe: FATAL: Could not load /lib/modules/2.6.34-08129-gcc106eb-dirty/modules.dep: No such file or directory
modprobe: FATAL: Could not load /lib/modules/2.6.34-08129-gcc106eb-dirty/modules.dep: No such file or directory
modprobe: FATAL: Could not load /lib/modules/2.6.34-08129-gcc106eb-dirty/modules.dep: No such file or directory
modprobe: FATAL: Could not load /lib/modules/2.6.34-08129-gcc106eb-dirty/modules.dep: No such file or directory
Fedora Core release 6 (Zod)
Kernel 2.6.34-08129-gcc106eb-dirty on an i686
mercury login: ssh: connect to host d port 22: No route to host
modprobe: FATAL: Could not load /lib/modules/2.6.34-08129-gcc106eb-dirty/modules.dep: No such file or directory
modprobe: FATAL: Could not load /lib/modules/2.6.34-08129-gcc106eb-dirty/modules.dep: No such file or directory
modprobe: FATAL: Could not load /lib/modules/2.6.34-08129-gcc106eb-dirty/modules.dep: No such file or directory
modprobe: FATAL: Could not load /lib/modules/2.6.34-08129-gcc106eb-dirty/modules.dep: No such file or directory
modprobe: FATAL: Could not load /lib/modules/2.6.34-08129-gcc106eb-dirty/modules.dep: No such file or directory
modprobe: FATAL: Could not load /lib/modules/2.6.34-08129-gcc106eb-dirty/modules.dep: No such file or directory
modprobe: FATAL: Could not load /lib/modules/2.6.34-08129-gcc106eb-dirty/modules.dep: No such file or directory
modprobe: FATAL: Could not load /lib/modules/2.6.34-08129-gcc106eb-dirty/modules.dep: No such file or directory
modprobe: FATAL: Could not load /lib/modules/2.6.34-08129-gcc106eb-dirty/modules.dep: No such file or directory
modprobe: FATAL: Could not load /lib/modules/2.6.34-08129-gcc106eb-dirty/modules.dep: No such file or directory
modprobe: FATAL: Could not load /lib/modules/2.6.34-08129-gcc106eb-dirty/modules.dep: No such file or directory
modprobe: FATAL: Could not load /lib/modules/2.6.34-08129-gcc106eb-dirty/modules.dep: No such file or directory
modprobe: FATAL: Could not load /lib/modules/2.6.34-08129-gcc106eb-dirty/modules.dep: No such file or directory
modprobe: FATAL: Could not load /lib/modules/2.6.34-08129-gcc106eb-dirty/modules.dep: No such file or directory
modprobe: FATAL: Could not load /lib/modules/2.6.34-08129-gcc106eb-dirty/modules.dep: No such file or directory
modprobe: FATAL: Could not load /lib/modules/2.6.34-08129-gcc106eb-dirty/modules.dep: No such file or directory
[ 113.285384] BUG: unable to handle kernel paging request at 6b6b6b87
[ 113.285384] IP: [<c14c8237>] arp_error_report+0x1d/0x32
[ 113.285384] *pdpt = 00000000340fd001 *pde = 0000000000000000
[ 113.285384] Oops: 0000 [#1] SMP
[ 113.285384] last sysfs file: /sys/class/net/eth0/address
[ 113.285384] Modules linked in:
[ 113.285384]
[ 113.285384] Pid: 0, comm: swapper Not tainted 2.6.34-08129-gcc106eb-dirty #257 A8N-E/System Product Name
[ 113.285384] EIP: 0060:[<c14c8237>] EFLAGS: 00010202 CPU: 0
[ 113.285384] EIP is at arp_error_report+0x1d/0x32
[ 113.285384] EAX: 6b6b6b6b EBX: f4c820b0 ECX: 00000000 EDX: c1867a24
[ 113.285384] ESI: f40ff074 EDI: f4c820b0 EBP: c2401f34 ESP: c2401f30
[ 113.285384] DS: 007b ES: 007b FS: 00d8 GS: 00e0 SS: 0068
[ 113.285384] Process swapper (pid: 0, ti=c2401000 task=c185e3c0 task.ti=c1853000)
[ 113.285384] Stack:
[ 113.285384] f40ff000 c2401f4c c147bca4 f40ff024 f40ff000 00000000 ffffb6db c2401f64
[ 113.285384] <0> c147cfde f40ff024 00000100 f40ff0ec c2401f8c c2401f98 c10447ab f40ff000
[ 113.285384] <0> c147ce8c f40ff0a4 c22104c4 00000000 c1804b08 00000000 00000000 f40ff0a4
[ 113.285384] Call Trace:
[ 113.285384] [<c147bca4>] ? neigh_invalidate+0x6d/0x84
[ 113.285384] [<c147cfde>] ? neigh_timer_handler+0x152/0x1f9
[ 113.285384] [<c10447ab>] ? call_timer_fn+0x6f/0xed
[ 113.285384] [<c147ce8c>] ? neigh_timer_handler+0x0/0x1f9
[ 113.285384] [<c1044962>] ? run_timer_softirq+0x139/0x16f
[ 113.285384] [<c147ce8c>] ? neigh_timer_handler+0x0/0x1f9
[ 113.285384] [<c103ed4f>] ? __do_softirq+0xc9/0x18d
[ 113.285384] [<c103ec86>] ? __do_softirq+0x0/0x18d
[ 113.285384] <IRQ>
[ 113.285384] [<c103e9ab>] ? irq_exit+0x3a/0x6d
[ 113.285384] [<c1016895>] ? smp_apic_timer_interrupt+0x6c/0x7a
[ 113.285384] [<c15664d6>] ? apic_timer_interrupt+0x36/0x40
[ 113.285384] [<c1009740>] ? poll_idle+0x31/0x5d
[ 113.285384] [<c100255e>] ? cpu_idle+0xab/0xc5
[ 113.285384] [<c1529925>] ? rest_init+0xa1/0xa6
[ 113.285384] [<c18e6a2d>] ? start_kernel+0x3ed/0x3f2
[ 113.285384] [<c18e60ca>] ? i386_start_kernel+0xca/0xd1
[ 113.285384] Code: 0c 89 43 70 31 c0 8d 65 f4 5b 5e 5f 5d c3 55 89 e5 53 0f 1f 44 00 00 89 d3 89 d0 e8 fa fb ff ff 85 c0 74 12 8b 40 40 85 c0 74 0b <8b> 50 1c 85 d2 74 04 89 d8 ff d2 89 d8 e8 9b 50 fa ff 5b 5d c3
[ 113.285384] EIP: [<c14c8237>] arp_error_report+0x1d/0x32 SS:ESP 0068:c2401f30
[ 113.285384] CR2: 000000006b6b6b87
[ 113.493016] ---[ end trace e94352dcdbc4a293 ]---
[ 113.503016] Kernel panic - not syncing: Fatal exception in interrupt
[ 113.503016] Pid: 0, comm: swapper Tainted: G D 2.6.34-08129-gcc106eb-dirty #257
[ 113.512089] Call Trace:
[ 113.512089] [<c15638b5>] ? printk+0x14/0x16
[ 113.522089] [<c1563820>] panic+0x50/0xd1
[ 113.522089] [<c15670fd>] oops_end+0x98/0xa6
[ 113.528831] [<c102155c>] no_context+0xb1/0xbb
[ 113.528831] [<c1021671>] __bad_area_nosemaphore+0x10b/0x113
[ 113.537231] [<c1568d1e>] ? do_page_fault+0xf2/0x2c4
[ 113.537231] [<c102168b>] bad_area_nosemaphore+0x12/0x15
[ 113.547510] [<c1568da1>] do_page_fault+0x175/0x2c4
[ 113.547510] [<c1568c2c>] ? do_page_fault+0x0/0x2c4
[ 113.557510] [<c1566718>] error_code+0x78/0x80
[ 113.557510] [<c14c8237>] ? arp_error_report+0x1d/0x32
[ 113.567285] [<c147bca4>] neigh_invalidate+0x6d/0x84
[ 113.567285] [<c147cfde>] neigh_timer_handler+0x152/0x1f9
[ 113.577246] [<c10447ab>] call_timer_fn+0x6f/0xed
[ 113.577246] [<c147ce8c>] ? neigh_timer_handler+0x0/0x1f9
[ 113.587369] [<c1044962>] run_timer_softirq+0x139/0x16f
[ 113.587369] [<c147ce8c>] ? neigh_timer_handler+0x0/0x1f9
[ 113.597994] [<c103ed4f>] __do_softirq+0xc9/0x18d
[ 113.597994] [<c103ec86>] ? __do_softirq+0x0/0x18d
[ 113.607994] <IRQ> [<c103e9ab>] ? irq_exit+0x3a/0x6d
[ 113.607994] [<c1016895>] ? smp_apic_timer_interrupt+0x6c/0x7a
[ 113.618423] [<c15664d6>] ? apic_timer_interrupt+0x36/0x40
[ 113.618423] [<c1009740>] ? poll_idle+0x31/0x5d
[ 113.628449] [<c100255e>] ? cpu_idle+0xab/0xc5
[ 113.628449] [<c1529925>] ? rest_init+0xa1/0xa6
[ 113.638449] [<c18e6a2d>] ? start_kernel+0x3ed/0x3f2
[ 113.638449] [<c18e60ca>] ? i386_start_kernel+0xca/0xd1
^ permalink raw reply [flat|nested] 9+ messages in thread
* Re: boot crash in arp_error_report() (Re: [GIT] Networking)
2010-05-27 19:06 ` boot crash in arp_error_report() (Re: [GIT] Networking) Ingo Molnar
@ 2010-05-27 19:27 ` Linus Torvalds
2010-05-27 19:47 ` Eric Dumazet
0 siblings, 1 reply; 9+ messages in thread
From: Linus Torvalds @ 2010-05-27 19:27 UTC (permalink / raw)
To: Ingo Molnar
Cc: David Miller, Thomas Gleixner, Andrew Morton, netdev,
Linux Kernel Mailing List
On Thu, 27 May 2010, Ingo Molnar wrote:
>
> FYI, this boot crash in arp_error_report() started triggering in -tip testing:
>
> [ 113.285384] BUG: unable to handle kernel paging request at 6b6b6b87
That's the POISON_FREE signature, with an offset of 28 (0x1c).
And it looks like the whole function got captured in the Code: sequence.
It looks like this:
0: 55 push %ebp
1: 89 e5 mov %esp,%ebp
3: 53 push %ebx
4: 0f 1f 44 00 00 nopl 0x0(%eax,%eax,1)
9: 89 d3 mov %edx,%ebx
b: 89 d0 mov %edx,%eax
d: e8 fa fb ff ff call 0xfffffc0c # skb_dst()
12: 85 c0 test %eax,%eax # dst
14: 74 12 je 0x28
16: 8b 40 40 mov 0x40(%eax),%eax # dst->ops
19: 85 c0 test %eax,%eax
1b: 74 0b je 0x28
1d:* 8b 50 1c mov 0x1c(%eax),%edx <-- trapping instruction
20: 85 d2 test %edx,%edx
22: 74 04 je 0x28
24: 89 d8 mov %ebx,%eax
26: ff d2 call *%edx # dst->ops->link_failure()
28: 89 d8 mov %ebx,%eax
2a: e8 9b 50 fa ff call 0xfffa50ca # skb_free()
2f: 5b pop %ebx
30: 5d pop %ebp
31: c3 ret
Where most of it is "dst_link_failure()" being inlined (that last "callq"
is the call to kfree_skb().
Looks like 'dst' points to free'd memory, so when we load a pointer from
it (the dst->ops) field, we get 0x6b6b6b6b, and then when we try to load
dst->ops->link_failure it oopses.
tl;dr: that
struct dst_entry *dst = skb_dst(skb);
in dst_link_failure seems to result in a stale skb.
Linus
^ permalink raw reply [flat|nested] 9+ messages in thread
* Re: boot crash in arp_error_report() (Re: [GIT] Networking)
2010-05-27 19:27 ` Linus Torvalds
@ 2010-05-27 19:47 ` Eric Dumazet
2010-05-27 20:18 ` Eric Dumazet
0 siblings, 1 reply; 9+ messages in thread
From: Eric Dumazet @ 2010-05-27 19:47 UTC (permalink / raw)
To: Linus Torvalds
Cc: Ingo Molnar, David Miller, Thomas Gleixner, Andrew Morton, netdev,
Linux Kernel Mailing List
Le jeudi 27 mai 2010 à 12:27 -0700, Linus Torvalds a écrit :
>
> On Thu, 27 May 2010, Ingo Molnar wrote:
> >
> > FYI, this boot crash in arp_error_report() started triggering in -tip testing:
> >
> > [ 113.285384] BUG: unable to handle kernel paging request at 6b6b6b87
>
> That's the POISON_FREE signature, with an offset of 28 (0x1c).
>
> And it looks like the whole function got captured in the Code: sequence.
> It looks like this:
>
> 0: 55 push %ebp
> 1: 89 e5 mov %esp,%ebp
> 3: 53 push %ebx
> 4: 0f 1f 44 00 00 nopl 0x0(%eax,%eax,1)
> 9: 89 d3 mov %edx,%ebx
> b: 89 d0 mov %edx,%eax
> d: e8 fa fb ff ff call 0xfffffc0c # skb_dst()
> 12: 85 c0 test %eax,%eax # dst
> 14: 74 12 je 0x28
> 16: 8b 40 40 mov 0x40(%eax),%eax # dst->ops
> 19: 85 c0 test %eax,%eax
> 1b: 74 0b je 0x28
> 1d:* 8b 50 1c mov 0x1c(%eax),%edx <-- trapping instruction
> 20: 85 d2 test %edx,%edx
> 22: 74 04 je 0x28
> 24: 89 d8 mov %ebx,%eax
> 26: ff d2 call *%edx # dst->ops->link_failure()
> 28: 89 d8 mov %ebx,%eax
> 2a: e8 9b 50 fa ff call 0xfffa50ca # skb_free()
> 2f: 5b pop %ebx
> 30: 5d pop %ebp
> 31: c3 ret
>
> Where most of it is "dst_link_failure()" being inlined (that last "callq"
> is the call to kfree_skb().
>
> Looks like 'dst' points to free'd memory, so when we load a pointer from
> it (the dst->ops) field, we get 0x6b6b6b6b, and then when we try to load
> dst->ops->link_failure it oopses.
>
> tl;dr: that
>
> struct dst_entry *dst = skb_dst(skb);
>
> in dst_link_failure seems to result in a stale skb.
>
> Linus
> --
I am looking at this bug report, as I am probably at fault, please give
me one or two hour ;)
Thanks
^ permalink raw reply [flat|nested] 9+ messages in thread
* Re: boot crash in arp_error_report() (Re: [GIT] Networking)
2010-05-27 19:47 ` Eric Dumazet
@ 2010-05-27 20:18 ` Eric Dumazet
2010-05-27 23:10 ` boot crash in arp_error_report() David Miller
0 siblings, 1 reply; 9+ messages in thread
From: Eric Dumazet @ 2010-05-27 20:18 UTC (permalink / raw)
To: Linus Torvalds
Cc: Ingo Molnar, David Miller, Thomas Gleixner, Andrew Morton, netdev,
Linux Kernel Mailing List
Le jeudi 27 mai 2010 à 21:47 +0200, Eric Dumazet a écrit :
> I am looking at this bug report, as I am probably at fault, please give
> me one or two hour ;)
I believe problem comes from commit 7fee226ad2
(net: add a noref bit on skb dst)
We probably should add a WARN in __skb_queue_tail() and similar enqueue
functions to catch other problems. I'll post a followup.
Thanks !
[PATCH] net: fix __neigh_event_send()
commit 7fee226ad23 (net: add a noref bit on skb dst) missed one spot
where an skb is enqueued, with a possibly not refcounted dst entry.
__neigh_event_send() inserts skb into arp_queue, so we must make sure
dst entry is refcounted, or dst entry can be freed by garbage collector
after caller exits from rcu protected section.
Reported-by: Ingo Molnar <mingo@elte.hu>
Signed-off-by: Eric Dumazet <eric.dumazet@gmail.com>
---
net/core/neighbour.c | 1 +
1 file changed, 1 insertion(+)
diff --git a/net/core/neighbour.c b/net/core/neighbour.c
index bff3790..6ba1c0e 100644
--- a/net/core/neighbour.c
+++ b/net/core/neighbour.c
@@ -934,6 +934,7 @@ int __neigh_event_send(struct neighbour *neigh, struct sk_buff *skb)
kfree_skb(buff);
NEIGH_CACHE_STAT_INC(neigh->tbl, unres_discards);
}
+ skb_dst_force(skb);
__skb_queue_tail(&neigh->arp_queue, skb);
}
rc = 1;
^ permalink raw reply related [flat|nested] 9+ messages in thread
* Re: boot crash in arp_error_report()
2010-05-27 20:18 ` Eric Dumazet
@ 2010-05-27 23:10 ` David Miller
2010-05-28 8:05 ` Ingo Molnar
0 siblings, 1 reply; 9+ messages in thread
From: David Miller @ 2010-05-27 23:10 UTC (permalink / raw)
To: eric.dumazet; +Cc: torvalds, mingo, tglx, akpm, netdev, linux-kernel
From: Eric Dumazet <eric.dumazet@gmail.com>
Date: Thu, 27 May 2010 22:18:24 +0200
> [PATCH] net: fix __neigh_event_send()
>
> commit 7fee226ad23 (net: add a noref bit on skb dst) missed one spot
> where an skb is enqueued, with a possibly not refcounted dst entry.
>
> __neigh_event_send() inserts skb into arp_queue, so we must make sure
> dst entry is refcounted, or dst entry can be freed by garbage collector
> after caller exits from rcu protected section.
>
> Reported-by: Ingo Molnar <mingo@elte.hu>
> Signed-off-by: Eric Dumazet <eric.dumazet@gmail.com>
Applied, thanks Eric.
Ingo can we get a confirmation that this fixes the bootup crash?
Thanks!
^ permalink raw reply [flat|nested] 9+ messages in thread
* Re: boot crash in arp_error_report()
2010-05-27 23:10 ` boot crash in arp_error_report() David Miller
@ 2010-05-28 8:05 ` Ingo Molnar
2010-05-28 8:24 ` Ingo Molnar
0 siblings, 1 reply; 9+ messages in thread
From: Ingo Molnar @ 2010-05-28 8:05 UTC (permalink / raw)
To: David Miller; +Cc: eric.dumazet, torvalds, tglx, akpm, netdev, linux-kernel
* David Miller <davem@davemloft.net> wrote:
> From: Eric Dumazet <eric.dumazet@gmail.com>
> Date: Thu, 27 May 2010 22:18:24 +0200
>
> > [PATCH] net: fix __neigh_event_send()
> >
> > commit 7fee226ad23 (net: add a noref bit on skb dst) missed one spot
> > where an skb is enqueued, with a possibly not refcounted dst entry.
> >
> > __neigh_event_send() inserts skb into arp_queue, so we must make sure
> > dst entry is refcounted, or dst entry can be freed by garbage collector
> > after caller exits from rcu protected section.
> >
> > Reported-by: Ingo Molnar <mingo@elte.hu>
> > Signed-off-by: Eric Dumazet <eric.dumazet@gmail.com>
>
> Applied, thanks Eric.
>
> Ingo can we get a confirmation that this fixes the bootup crash?
Sure, will let you know how it goes.
Thanks,
Ingo
^ permalink raw reply [flat|nested] 9+ messages in thread
* Re: boot crash in arp_error_report()
2010-05-28 8:05 ` Ingo Molnar
@ 2010-05-28 8:24 ` Ingo Molnar
2010-05-28 8:53 ` David Miller
0 siblings, 1 reply; 9+ messages in thread
From: Ingo Molnar @ 2010-05-28 8:24 UTC (permalink / raw)
To: David Miller; +Cc: eric.dumazet, torvalds, tglx, akpm, netdev, linux-kernel
* Ingo Molnar <mingo@elte.hu> wrote:
>
> * David Miller <davem@davemloft.net> wrote:
>
> > From: Eric Dumazet <eric.dumazet@gmail.com>
> > Date: Thu, 27 May 2010 22:18:24 +0200
> >
> > > [PATCH] net: fix __neigh_event_send()
> > >
> > > commit 7fee226ad23 (net: add a noref bit on skb dst) missed one spot
> > > where an skb is enqueued, with a possibly not refcounted dst entry.
> > >
> > > __neigh_event_send() inserts skb into arp_queue, so we must make sure
> > > dst entry is refcounted, or dst entry can be freed by garbage collector
> > > after caller exits from rcu protected section.
> > >
> > > Reported-by: Ingo Molnar <mingo@elte.hu>
> > > Signed-off-by: Eric Dumazet <eric.dumazet@gmail.com>
> >
> > Applied, thanks Eric.
> >
> > Ingo can we get a confirmation that this fixes the bootup crash?
>
> Sure, will let you know how it goes.
Preliminary testing shows that Eric's patch solves the problem.
Tested-by: Ingo Molnar <mingo@elte.hu>
Thanks!
Ingo
^ permalink raw reply [flat|nested] 9+ messages in thread
* Re: boot crash in arp_error_report()
2010-05-28 8:24 ` Ingo Molnar
@ 2010-05-28 8:53 ` David Miller
0 siblings, 0 replies; 9+ messages in thread
From: David Miller @ 2010-05-28 8:53 UTC (permalink / raw)
To: mingo; +Cc: eric.dumazet, torvalds, tglx, akpm, netdev, linux-kernel
From: Ingo Molnar <mingo@elte.hu>
Date: Fri, 28 May 2010 10:24:40 +0200
> Preliminary testing shows that Eric's patch solves the problem.
>
> Tested-by: Ingo Molnar <mingo@elte.hu>
Thanks a lot for testing Ingo.
^ permalink raw reply [flat|nested] 9+ messages in thread
end of thread, other threads:[~2010-05-28 8:53 UTC | newest]
Thread overview: 9+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2010-05-25 23:59 [GIT] Networking David Miller
2010-05-27 19:06 ` boot crash in arp_error_report() (Re: [GIT] Networking) Ingo Molnar
2010-05-27 19:27 ` Linus Torvalds
2010-05-27 19:47 ` Eric Dumazet
2010-05-27 20:18 ` Eric Dumazet
2010-05-27 23:10 ` boot crash in arp_error_report() David Miller
2010-05-28 8:05 ` Ingo Molnar
2010-05-28 8:24 ` Ingo Molnar
2010-05-28 8:53 ` David Miller
This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox;
as well as URLs for NNTP newsgroup(s).