Return-Path: Received: (majordomo@vger.kernel.org) by vger.kernel.org via listexpand id S1753000AbYFATQk (ORCPT ); Sun, 1 Jun 2008 15:16:40 -0400 Received: (majordomo@vger.kernel.org) by vger.kernel.org id S1751340AbYFATQ3 (ORCPT ); Sun, 1 Jun 2008 15:16:29 -0400 Received: from smtp.cs.aau.dk ([130.225.194.6]:57104 "EHLO smtp.cs.aau.dk" rhost-flags-OK-OK-OK-OK) by vger.kernel.org with ESMTP id S1751337AbYFATQX (ORCPT ); Sun, 1 Jun 2008 15:16:23 -0400 Subject: [drm:radeon_cp_idle] *ERROR* radeon_cp_idle called without lock held From: Simon Holm =?ISO-8859-1?Q?Th=F8gersen?= To: linux-kernel Cc: Eric Anholt , David Airlie , dri-devel@lists.sourceforge.net Content-Type: multipart/mixed; boundary="=-JqoNgtRIIRvG5CU8iE5R" Date: Sun, 01 Jun 2008 21:16:29 +0200 Message-Id: <1212347789.2580.9.camel@odie.local> Mime-Version: 1.0 X-Mailer: Evolution 2.22.2 Sender: linux-kernel-owner@vger.kernel.org List-ID: X-Mailing-List: linux-kernel@vger.kernel.org Content-Length: 153010 Lines: 3625 --=-JqoNgtRIIRvG5CU8iE5R Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit I can easily trigger an endless stream of the following three lines [drm:radeon_cp_idle] *ERROR* radeon_cp_idle called without lock held, held 0 owner eb0908c0 eb0908c0 [drm:radeon_cp_reset] *ERROR* radeon_cp_reset called without lock held, held 0 owner eb0908c0 eb0908c0 [drm:radeon_cp_start] *ERROR* radeon_cp_start called without lock held, held 0 owner eb0908c0 eb0908c0 and thereby also lock my system completely up. I did not dig into this problem, except for applying the attached patch in order to get some more info and BUG_ON after the first round of errors, so that sysRq remained usable and I could produce a bunch of extra data in the dmesg. Attached is also my config and the output of `lspci -vv' and `dmesg'. Any ideas? Simon Holm Thøgersen --=-JqoNgtRIIRvG5CU8iE5R Content-Disposition: attachment; filename=add-drm-bug_on.patch Content-Type: text/x-patch; name=add-drm-bug_on.patch; charset=UTF-8 Content-Transfer-Encoding: 7bit diff --git a/drivers/char/drm/drmP.h b/drivers/char/drm/drmP.h index 0764b66..2919c03 100644 --- a/drivers/char/drm/drmP.h +++ b/drivers/char/drm/drmP.h @@ -242,6 +242,12 @@ do { \ DRM_ERROR( "%s called without lock held, held %d owner %p %p\n",\ __func__, _DRM_LOCK_IS_HELD( dev->lock.hw_lock->lock ),\ dev->lock.file_priv, file_priv ); \ + static int count = 0; \ + if (count < 3) { \ + dump_stack(); \ + count++; \ + BUG_ON(count == 3); \ + } \ return -EINVAL; \ } \ } while (0) --=-JqoNgtRIIRvG5CU8iE5R Content-Disposition: attachment; filename=config Content-Type: text/plain; name=config; charset=UTF-8 Content-Transfer-Encoding: 7bit # # Automatically generated make config: don't edit # Linux kernel version: 2.6.26-rc4 # Sun Jun 1 14:38:28 2008 # # CONFIG_64BIT is not set CONFIG_X86_32=y # CONFIG_X86_64 is not set CONFIG_X86=y CONFIG_ARCH_DEFCONFIG="arch/x86/configs/i386_defconfig" # CONFIG_GENERIC_LOCKBREAK is not set 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_FAST_CMPXCHG_LOCAL=y CONFIG_MMU=y CONFIG_ZONE_DMA=y CONFIG_GENERIC_ISA_DMA=y CONFIG_GENERIC_IOMAP=y CONFIG_GENERIC_BUG=y CONFIG_GENERIC_HWEIGHT=y # CONFIG_GENERIC_GPIO is not set CONFIG_ARCH_MAY_HAVE_PC_FDC=y # CONFIG_RWSEM_GENERIC_SPINLOCK is not set CONFIG_RWSEM_XCHGADD_ALGORITHM=y # CONFIG_ARCH_HAS_ILOG2_U32 is not set # CONFIG_ARCH_HAS_ILOG2_U64 is not set 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_CACHE_LINE_SIZE=y # CONFIG_HAVE_SETUP_PER_CPU_AREA is not set # 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_AOUT=y CONFIG_ARCH_SUPPORTS_OPTIMIZED_INLINING=y CONFIG_GENERIC_HARDIRQS=y CONFIG_GENERIC_IRQ_PROBE=y CONFIG_X86_BIOS_REBOOT=y CONFIG_KTIME_SCALAR=y CONFIG_DEFCONFIG_LIST="/lib/modules/$UNAME_RELEASE/.config" # # General setup # CONFIG_EXPERIMENTAL=y CONFIG_BROKEN_ON_SMP=y CONFIG_LOCK_KERNEL=y CONFIG_INIT_ENV_ARG_LIMIT=32 CONFIG_LOCALVERSION="-add-drm-bug_on" CONFIG_LOCALVERSION_AUTO=y CONFIG_SWAP=y CONFIG_SYSVIPC=y CONFIG_SYSVIPC_SYSCTL=y # CONFIG_POSIX_MQUEUE is not set # CONFIG_BSD_PROCESS_ACCT is not set # CONFIG_TASKSTATS is not set # CONFIG_AUDIT is not set CONFIG_IKCONFIG=y CONFIG_IKCONFIG_PROC=y CONFIG_LOG_BUF_SHIFT=16 CONFIG_CGROUPS=y # CONFIG_CGROUP_DEBUG is not set # CONFIG_CGROUP_NS is not set # CONFIG_CGROUP_DEVICE is not set CONFIG_HAVE_UNSTABLE_SCHED_CLOCK=y CONFIG_GROUP_SCHED=y CONFIG_FAIR_GROUP_SCHED=y # CONFIG_RT_GROUP_SCHED is not set CONFIG_USER_SCHED=y # CONFIG_CGROUP_SCHED is not set # CONFIG_CGROUP_CPUACCT is not set # CONFIG_RESOURCE_COUNTERS is not set # CONFIG_SYSFS_DEPRECATED_V2 is not set CONFIG_RELAY=y CONFIG_NAMESPACES=y # CONFIG_UTS_NS is not set # CONFIG_IPC_NS is not set # CONFIG_USER_NS is not set # CONFIG_PID_NS is not set CONFIG_BLK_DEV_INITRD=y CONFIG_INITRAMFS_SOURCE="" CONFIG_CC_OPTIMIZE_FOR_SIZE=y CONFIG_SYSCTL=y # CONFIG_EMBEDDED is not set CONFIG_UID16=y CONFIG_SYSCTL_SYSCALL=y CONFIG_SYSCTL_SYSCALL_CHECK=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_COMPAT_BRK=y CONFIG_BASE_FULL=y CONFIG_FUTEX=y CONFIG_ANON_INODES=y CONFIG_EPOLL=y CONFIG_SIGNALFD=y CONFIG_TIMERFD=y CONFIG_EVENTFD=y CONFIG_SHMEM=y CONFIG_VM_EVENT_COUNTERS=y CONFIG_SLAB=y # CONFIG_SLUB is not set # CONFIG_SLOB is not set CONFIG_PROFILING=y CONFIG_MARKERS=y CONFIG_OPROFILE=m CONFIG_HAVE_OPROFILE=y CONFIG_KPROBES=y CONFIG_KRETPROBES=y CONFIG_HAVE_KPROBES=y CONFIG_HAVE_KRETPROBES=y # CONFIG_HAVE_DMA_ATTRS is not set CONFIG_PROC_PAGE_MONITOR=y CONFIG_SLABINFO=y CONFIG_RT_MUTEXES=y # CONFIG_TINY_SHMEM is not set CONFIG_BASE_SMALL=0 CONFIG_MODULES=y # CONFIG_MODULE_FORCE_LOAD is not set CONFIG_MODULE_UNLOAD=y # CONFIG_MODULE_FORCE_UNLOAD is not set # CONFIG_MODVERSIONS is not set # CONFIG_MODULE_SRCVERSION_ALL is not set CONFIG_KMOD=y CONFIG_BLOCK=y # CONFIG_LBD is not set # CONFIG_BLK_DEV_IO_TRACE is not set # CONFIG_LSF is not set # CONFIG_BLK_DEV_BSG is not set # # IO Schedulers # CONFIG_IOSCHED_NOOP=y CONFIG_IOSCHED_AS=y CONFIG_IOSCHED_DEADLINE=y CONFIG_IOSCHED_CFQ=y # CONFIG_DEFAULT_AS is not set # CONFIG_DEFAULT_DEADLINE is not set CONFIG_DEFAULT_CFQ=y # CONFIG_DEFAULT_NOOP is not set CONFIG_DEFAULT_IOSCHED="cfq" CONFIG_CLASSIC_RCU=y # # Processor type and features # CONFIG_TICK_ONESHOT=y CONFIG_NO_HZ=y CONFIG_HIGH_RES_TIMERS=y CONFIG_GENERIC_CLOCKEVENTS_BUILD=y # CONFIG_SMP is not set CONFIG_X86_PC=y # CONFIG_X86_ELAN is not set # CONFIG_X86_VOYAGER is not set # CONFIG_X86_NUMAQ is not set # CONFIG_X86_SUMMIT is not set # CONFIG_X86_BIGSMP is not set # CONFIG_X86_VISWS is not set # CONFIG_X86_GENERICARCH is not set # CONFIG_X86_ES7000 is not set # CONFIG_X86_RDC321X is not set # CONFIG_X86_VSMP is not set CONFIG_SCHED_NO_NO_OMIT_FRAME_POINTER=y CONFIG_PARAVIRT_GUEST=y # CONFIG_XEN is not set # CONFIG_VMI is not set # CONFIG_KVM_CLOCK is not set # CONFIG_KVM_GUEST is not set CONFIG_LGUEST_GUEST=y CONFIG_PARAVIRT=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=y # CONFIG_MPENTIUM4 is not set # CONFIG_MK6 is not set # CONFIG_MK7 is not set # CONFIG_MK8 is not set # CONFIG_MCRUSOE is not set # CONFIG_MEFFICEON is not set # CONFIG_MWINCHIPC6 is not set # CONFIG_MWINCHIP2 is not set # CONFIG_MWINCHIP3D is not set # CONFIG_MGEODEGX1 is not set # CONFIG_MGEODE_LX is not set # CONFIG_MCYRIXIII is not set # CONFIG_MVIAC3_2 is not set # CONFIG_MVIAC7 is not set # CONFIG_MPSC is not set # CONFIG_MCORE2 is not set # CONFIG_GENERIC_CPU is not set # CONFIG_X86_GENERIC is not set CONFIG_X86_CPU=y CONFIG_X86_CMPXCHG=y CONFIG_X86_L1_CACHE_SHIFT=6 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_GOOD_APIC=y CONFIG_X86_INTEL_USERCOPY=y CONFIG_X86_USE_PPRO_CHECKSUM=y CONFIG_X86_P6_NOP=y CONFIG_X86_TSC=y CONFIG_X86_CMOV=y CONFIG_X86_MINIMUM_CPU_FAMILY=6 CONFIG_X86_DEBUGCTLMSR=y CONFIG_HPET_TIMER=y CONFIG_HPET_EMULATE_RTC=y CONFIG_DMI=y # CONFIG_IOMMU_HELPER is not set # CONFIG_PREEMPT_NONE is not set # CONFIG_PREEMPT_VOLUNTARY is not set CONFIG_PREEMPT=y # CONFIG_PREEMPT_RCU is not set CONFIG_X86_UP_APIC=y # CONFIG_X86_UP_IOAPIC is not set CONFIG_X86_LOCAL_APIC=y CONFIG_X86_MCE=y # CONFIG_X86_MCE_NONFATAL is not set # CONFIG_X86_MCE_P4THERMAL is not set CONFIG_VM86=y # CONFIG_TOSHIBA is not set # CONFIG_I8K is not set # CONFIG_X86_REBOOTFIXUPS is not set # CONFIG_MICROCODE is not set # CONFIG_X86_MSR is not set # CONFIG_X86_CPUID is not set CONFIG_NOHIGHMEM=y # CONFIG_HIGHMEM4G is not set # CONFIG_HIGHMEM64G is not set CONFIG_PAGE_OFFSET=0xC0000000 # CONFIG_X86_PAE is not set CONFIG_ARCH_FLATMEM_ENABLE=y CONFIG_ARCH_SPARSEMEM_ENABLE=y CONFIG_ARCH_SELECT_MEMORY_MODEL=y CONFIG_SELECT_MEMORY_MODEL=y CONFIG_FLATMEM_MANUAL=y # CONFIG_DISCONTIGMEM_MANUAL is not set # CONFIG_SPARSEMEM_MANUAL is not set CONFIG_FLATMEM=y CONFIG_FLAT_NODE_MEM_MAP=y CONFIG_SPARSEMEM_STATIC=y # CONFIG_SPARSEMEM_VMEMMAP_ENABLE is not set CONFIG_PAGEFLAGS_EXTENDED=y CONFIG_SPLIT_PTLOCK_CPUS=4 CONFIG_RESOURCES_64BIT=y CONFIG_ZONE_DMA_FLAG=1 CONFIG_BOUNCE=y CONFIG_VIRT_TO_BUS=y # CONFIG_MATH_EMULATION is not set CONFIG_MTRR=y # CONFIG_X86_PAT is not set # CONFIG_EFI is not set CONFIG_SECCOMP=y # CONFIG_HZ_100 is not set CONFIG_HZ_250=y # CONFIG_HZ_300 is not set # CONFIG_HZ_1000 is not set CONFIG_HZ=250 CONFIG_SCHED_HRTICK=y CONFIG_KEXEC=y CONFIG_PHYSICAL_START=0x100000 # CONFIG_RELOCATABLE is not set CONFIG_PHYSICAL_ALIGN=0x100000 # CONFIG_COMPAT_VDSO is not set # # Power management options # CONFIG_PM=y CONFIG_PM_DEBUG=y # CONFIG_PM_VERBOSE is not set CONFIG_CAN_PM_TRACE=y # CONFIG_PM_TRACE_RTC is not set CONFIG_PM_SLEEP=y CONFIG_SUSPEND=y CONFIG_SUSPEND_FREEZER=y CONFIG_HIBERNATION=y CONFIG_PM_STD_PARTITION="/dev/hda5" CONFIG_ACPI=y CONFIG_ACPI_SLEEP=y # CONFIG_ACPI_PROCFS is not set # CONFIG_ACPI_PROCFS_POWER is not set CONFIG_ACPI_SYSFS_POWER=y CONFIG_ACPI_PROC_EVENT=y CONFIG_ACPI_AC=y CONFIG_ACPI_BATTERY=y CONFIG_ACPI_BUTTON=y CONFIG_ACPI_FAN=y # CONFIG_ACPI_DOCK is not set CONFIG_ACPI_PROCESSOR=y CONFIG_ACPI_THERMAL=y # CONFIG_ACPI_WMI is not set # CONFIG_ACPI_ASUS is not set # CONFIG_ACPI_TOSHIBA is not set # CONFIG_ACPI_CUSTOM_DSDT is not set CONFIG_ACPI_BLACKLIST_YEAR=0 # CONFIG_ACPI_DEBUG is not set CONFIG_ACPI_EC=y CONFIG_ACPI_POWER=y CONFIG_ACPI_SYSTEM=y CONFIG_X86_PM_TIMER=y # CONFIG_ACPI_CONTAINER is not set # CONFIG_ACPI_SBS is not set # CONFIG_APM is not set # # CPU Frequency scaling # CONFIG_CPU_FREQ=y CONFIG_CPU_FREQ_TABLE=y # CONFIG_CPU_FREQ_DEBUG is not set CONFIG_CPU_FREQ_STAT=y # CONFIG_CPU_FREQ_STAT_DETAILS 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=m CONFIG_CPU_FREQ_GOV_USERSPACE=y CONFIG_CPU_FREQ_GOV_ONDEMAND=m CONFIG_CPU_FREQ_GOV_CONSERVATIVE=m # # CPUFreq processor drivers # CONFIG_X86_ACPI_CPUFREQ=m # CONFIG_X86_POWERNOW_K6 is not set # CONFIG_X86_POWERNOW_K7 is not set # CONFIG_X86_POWERNOW_K8 is not set # CONFIG_X86_GX_SUSPMOD is not set CONFIG_X86_SPEEDSTEP_CENTRINO=m CONFIG_X86_SPEEDSTEP_CENTRINO_TABLE=y # CONFIG_X86_SPEEDSTEP_ICH is not set # CONFIG_X86_SPEEDSTEP_SMI is not set # CONFIG_X86_P4_CLOCKMOD is not set # CONFIG_X86_CPUFREQ_NFORCE2 is not set # CONFIG_X86_LONGRUN is not set # CONFIG_X86_LONGHAUL is not set # CONFIG_X86_E_POWERSAVER is not set # # shared options # # CONFIG_X86_ACPI_CPUFREQ_PROC_INTF is not set # CONFIG_X86_SPEEDSTEP_LIB is not set # CONFIG_CPU_IDLE is not set # # Bus options (PCI etc.) # CONFIG_PCI=y # CONFIG_PCI_GOBIOS is not set # CONFIG_PCI_GOMMCONFIG is not set # CONFIG_PCI_GODIRECT is not set CONFIG_PCI_GOANY=y # CONFIG_PCI_GOOLPC is not set CONFIG_PCI_BIOS=y CONFIG_PCI_DIRECT=y CONFIG_PCI_MMCONFIG=y CONFIG_PCI_DOMAINS=y # CONFIG_PCIEPORTBUS is not set # CONFIG_ARCH_SUPPORTS_MSI is not set # CONFIG_PCI_LEGACY is not set # CONFIG_PCI_DEBUG is not set CONFIG_ISA_DMA_API=y # CONFIG_ISA is not set # CONFIG_MCA is not set # CONFIG_SCx200 is not set # CONFIG_OLPC is not set # CONFIG_PCCARD is not set # CONFIG_HOTPLUG_PCI is not set # # Executable file formats / Emulations # CONFIG_BINFMT_ELF=y CONFIG_BINFMT_AOUT=y CONFIG_BINFMT_MISC=y # # Networking # CONFIG_NET=y # # Networking options # CONFIG_PACKET=y # CONFIG_PACKET_MMAP is not set CONFIG_UNIX=y # CONFIG_NET_KEY is not set CONFIG_INET=y CONFIG_IP_MULTICAST=y CONFIG_IP_ADVANCED_ROUTER=y CONFIG_ASK_IP_FIB_HASH=y # CONFIG_IP_FIB_TRIE is not set CONFIG_IP_FIB_HASH=y # CONFIG_IP_MULTIPLE_TABLES 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 is not set # CONFIG_NET_IPGRE is not set # CONFIG_IP_MROUTE is not set # CONFIG_ARPD is not set # CONFIG_SYN_COOKIES is not set # CONFIG_INET_AH is not set # CONFIG_INET_ESP is not set # CONFIG_INET_IPCOMP is not set # CONFIG_INET_XFRM_TUNNEL is not set # CONFIG_INET_TUNNEL is not set # CONFIG_INET_XFRM_MODE_TRANSPORT is not set # CONFIG_INET_XFRM_MODE_TUNNEL is not set # CONFIG_INET_XFRM_MODE_BEET is not set CONFIG_INET_LRO=m # CONFIG_INET_DIAG is not set # CONFIG_TCP_CONG_ADVANCED is not set CONFIG_TCP_CONG_CUBIC=y CONFIG_DEFAULT_TCP_CONG="cubic" # CONFIG_TCP_MD5SIG is not set # CONFIG_IP_VS is not set # CONFIG_IPV6 is not set # CONFIG_NETWORK_SECMARK is not set CONFIG_NETFILTER=y # CONFIG_NETFILTER_DEBUG is not set CONFIG_NETFILTER_ADVANCED=y CONFIG_BRIDGE_NETFILTER=y # # Core Netfilter Configuration # # CONFIG_NETFILTER_NETLINK_QUEUE is not set # CONFIG_NETFILTER_NETLINK_LOG is not set CONFIG_NF_CONNTRACK=m # CONFIG_NF_CT_ACCT is not set # CONFIG_NF_CONNTRACK_MARK is not set # CONFIG_NF_CONNTRACK_EVENTS is not set # CONFIG_NF_CT_PROTO_DCCP is not set # CONFIG_NF_CT_PROTO_SCTP is not set # CONFIG_NF_CT_PROTO_UDPLITE is not set # CONFIG_NF_CONNTRACK_AMANDA is not set # CONFIG_NF_CONNTRACK_FTP is not set # CONFIG_NF_CONNTRACK_H323 is not set # CONFIG_NF_CONNTRACK_IRC is not set # CONFIG_NF_CONNTRACK_NETBIOS_NS is not set # CONFIG_NF_CONNTRACK_PPTP is not set # CONFIG_NF_CONNTRACK_SANE is not set # CONFIG_NF_CONNTRACK_SIP is not set # CONFIG_NF_CONNTRACK_TFTP is not set # CONFIG_NF_CT_NETLINK is not set CONFIG_NETFILTER_XTABLES=m # CONFIG_NETFILTER_XT_TARGET_CLASSIFY is not set # CONFIG_NETFILTER_XT_TARGET_MARK is not set # CONFIG_NETFILTER_XT_TARGET_NFQUEUE is not set # CONFIG_NETFILTER_XT_TARGET_NFLOG is not set # CONFIG_NETFILTER_XT_TARGET_RATEEST is not set # CONFIG_NETFILTER_XT_TARGET_TCPMSS is not set # CONFIG_NETFILTER_XT_MATCH_COMMENT is not set # CONFIG_NETFILTER_XT_MATCH_CONNBYTES is not set # CONFIG_NETFILTER_XT_MATCH_CONNLIMIT is not set # CONFIG_NETFILTER_XT_MATCH_CONNMARK is not set # CONFIG_NETFILTER_XT_MATCH_CONNTRACK is not set # CONFIG_NETFILTER_XT_MATCH_DCCP is not set # CONFIG_NETFILTER_XT_MATCH_DSCP is not set # CONFIG_NETFILTER_XT_MATCH_ESP is not set # CONFIG_NETFILTER_XT_MATCH_HELPER is not set # CONFIG_NETFILTER_XT_MATCH_IPRANGE is not set # CONFIG_NETFILTER_XT_MATCH_LENGTH is not set # CONFIG_NETFILTER_XT_MATCH_LIMIT is not set # CONFIG_NETFILTER_XT_MATCH_MAC is not set # CONFIG_NETFILTER_XT_MATCH_MARK is not set # CONFIG_NETFILTER_XT_MATCH_OWNER is not set # CONFIG_NETFILTER_XT_MATCH_MULTIPORT is not set # CONFIG_NETFILTER_XT_MATCH_PHYSDEV is not set # CONFIG_NETFILTER_XT_MATCH_PKTTYPE is not set # CONFIG_NETFILTER_XT_MATCH_QUOTA is not set # CONFIG_NETFILTER_XT_MATCH_RATEEST is not set # CONFIG_NETFILTER_XT_MATCH_REALM is not set # CONFIG_NETFILTER_XT_MATCH_SCTP is not set # CONFIG_NETFILTER_XT_MATCH_STATE is not set # CONFIG_NETFILTER_XT_MATCH_STATISTIC is not set # CONFIG_NETFILTER_XT_MATCH_STRING is not set # CONFIG_NETFILTER_XT_MATCH_TCPMSS is not set # CONFIG_NETFILTER_XT_MATCH_TIME is not set # CONFIG_NETFILTER_XT_MATCH_U32 is not set # CONFIG_NETFILTER_XT_MATCH_HASHLIMIT is not set # # IP: Netfilter Configuration # CONFIG_NF_CONNTRACK_IPV4=m CONFIG_NF_CONNTRACK_PROC_COMPAT=y # CONFIG_IP_NF_QUEUE is not set CONFIG_IP_NF_IPTABLES=m # CONFIG_IP_NF_MATCH_RECENT is not set # CONFIG_IP_NF_MATCH_ECN is not set # CONFIG_IP_NF_MATCH_AH is not set # CONFIG_IP_NF_MATCH_TTL is not set # CONFIG_IP_NF_MATCH_ADDRTYPE is not set CONFIG_IP_NF_FILTER=m # CONFIG_IP_NF_TARGET_REJECT is not set # CONFIG_IP_NF_TARGET_LOG is not set # CONFIG_IP_NF_TARGET_ULOG is not set CONFIG_NF_NAT=m CONFIG_NF_NAT_NEEDED=y CONFIG_IP_NF_TARGET_MASQUERADE=m # CONFIG_IP_NF_TARGET_REDIRECT is not set # CONFIG_IP_NF_TARGET_NETMAP is not set # CONFIG_NF_NAT_SNMP_BASIC is not set # CONFIG_NF_NAT_FTP is not set # CONFIG_NF_NAT_IRC is not set # CONFIG_NF_NAT_TFTP is not set # CONFIG_NF_NAT_AMANDA is not set # CONFIG_NF_NAT_PPTP is not set # CONFIG_NF_NAT_H323 is not set # CONFIG_NF_NAT_SIP is not set # CONFIG_IP_NF_MANGLE is not set # CONFIG_IP_NF_RAW is not set # CONFIG_IP_NF_ARPTABLES is not set # # Bridge: Netfilter Configuration # # CONFIG_BRIDGE_NF_EBTABLES is not set # CONFIG_IP_DCCP is not set # CONFIG_IP_SCTP is not set # CONFIG_TIPC is not set # CONFIG_ATM is not set CONFIG_BRIDGE=m # CONFIG_VLAN_8021Q is not set # CONFIG_DECNET is not set CONFIG_LLC=m # CONFIG_LLC2 is not set # CONFIG_IPX is not set # CONFIG_ATALK is not set # CONFIG_X25 is not set # CONFIG_LAPB is not set # CONFIG_ECONET is not set # CONFIG_WAN_ROUTER is not set # CONFIG_NET_SCHED is not set # # Network testing # # CONFIG_NET_PKTGEN is not set # CONFIG_NET_TCPPROBE is not set # CONFIG_HAMRADIO is not set # CONFIG_CAN is not set # CONFIG_IRDA is not set # CONFIG_BT is not set # CONFIG_AF_RXRPC is not set # # Wireless # # CONFIG_CFG80211 is not set CONFIG_WIRELESS_EXT=y # CONFIG_MAC80211 is not set CONFIG_IEEE80211=m # CONFIG_IEEE80211_DEBUG is not set CONFIG_IEEE80211_CRYPT_WEP=m CONFIG_IEEE80211_CRYPT_CCMP=m CONFIG_IEEE80211_CRYPT_TKIP=m CONFIG_RFKILL=m CONFIG_RFKILL_INPUT=m # CONFIG_NET_9P is not set # # Device Drivers # # # Generic Driver Options # CONFIG_UEVENT_HELPER_PATH="/sbin/hotplug" CONFIG_STANDALONE=y CONFIG_PREVENT_FIRMWARE_BUILD=y CONFIG_FW_LOADER=m # CONFIG_DEBUG_DRIVER is not set # CONFIG_DEBUG_DEVRES is not set # 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 is not set # # Protocols # CONFIG_PNPACPI=y CONFIG_BLK_DEV=y # CONFIG_BLK_DEV_FD is not set # CONFIG_BLK_CPQ_DA is not set # CONFIG_BLK_CPQ_CISS_DA is not set # CONFIG_BLK_DEV_DAC960 is not set # CONFIG_BLK_DEV_UMEM is not set # CONFIG_BLK_DEV_COW_COMMON is not set CONFIG_BLK_DEV_LOOP=m CONFIG_BLK_DEV_CRYPTOLOOP=m # CONFIG_BLK_DEV_NBD is not set # CONFIG_BLK_DEV_SX8 is not set # CONFIG_BLK_DEV_UB is not set CONFIG_BLK_DEV_RAM=y CONFIG_BLK_DEV_RAM_COUNT=16 CONFIG_BLK_DEV_RAM_SIZE=4096 # CONFIG_BLK_DEV_XIP is not set # CONFIG_CDROM_PKTCDVD is not set # CONFIG_ATA_OVER_ETH is not set CONFIG_VIRTIO_BLK=y # CONFIG_MISC_DEVICES is not set CONFIG_HAVE_IDE=y CONFIG_IDE=y CONFIG_BLK_DEV_IDE=y # # Please see Documentation/ide/ide.txt for help/info on IDE drives # # CONFIG_BLK_DEV_IDE_SATA is not set CONFIG_BLK_DEV_IDEDISK=y CONFIG_IDEDISK_MULTI_MODE=y CONFIG_BLK_DEV_IDECD=y CONFIG_BLK_DEV_IDECD_VERBOSE_ERRORS=y # CONFIG_BLK_DEV_IDETAPE is not set # CONFIG_BLK_DEV_IDEFLOPPY is not set # CONFIG_BLK_DEV_IDESCSI is not set # CONFIG_BLK_DEV_IDEACPI is not set # CONFIG_IDE_TASK_IOCTL is not set # CONFIG_IDE_PROC_FS is not set # # IDE chipset support/bugfixes # CONFIG_IDE_GENERIC=y # CONFIG_BLK_DEV_PLATFORM is not set # CONFIG_BLK_DEV_CMD640 is not set # CONFIG_BLK_DEV_IDEPNP is not set CONFIG_BLK_DEV_IDEDMA_SFF=y # # PCI IDE chipsets support # CONFIG_BLK_DEV_IDEPCI=y # CONFIG_IDEPCI_PCIBUS_ORDER is not set # CONFIG_BLK_DEV_OFFBOARD is not set CONFIG_BLK_DEV_GENERIC=y # CONFIG_BLK_DEV_OPTI621 is not set # CONFIG_BLK_DEV_RZ1000 is not set CONFIG_BLK_DEV_IDEDMA_PCI=y # CONFIG_BLK_DEV_AEC62XX is not set # CONFIG_BLK_DEV_ALI15X3 is not set # CONFIG_BLK_DEV_AMD74XX is not set # CONFIG_BLK_DEV_ATIIXP is not set # CONFIG_BLK_DEV_CMD64X is not set # CONFIG_BLK_DEV_TRIFLEX is not set # CONFIG_BLK_DEV_CY82C693 is not set # CONFIG_BLK_DEV_CS5520 is not set # CONFIG_BLK_DEV_CS5530 is not set # CONFIG_BLK_DEV_CS5535 is not set # CONFIG_BLK_DEV_HPT34X is not set # CONFIG_BLK_DEV_HPT366 is not set # CONFIG_BLK_DEV_JMICRON is not set # CONFIG_BLK_DEV_SC1200 is not set CONFIG_BLK_DEV_PIIX=y # CONFIG_BLK_DEV_IT8213 is not set # CONFIG_BLK_DEV_IT821X is not set # CONFIG_BLK_DEV_NS87415 is not set # CONFIG_BLK_DEV_PDC202XX_OLD is not set # CONFIG_BLK_DEV_PDC202XX_NEW is not set # CONFIG_BLK_DEV_SVWKS is not set # CONFIG_BLK_DEV_SIIMAGE is not set # CONFIG_BLK_DEV_SIS5513 is not set # CONFIG_BLK_DEV_SLC90E66 is not set # CONFIG_BLK_DEV_TRM290 is not set # CONFIG_BLK_DEV_VIA82CXXX is not set # CONFIG_BLK_DEV_TC86C001 is not set CONFIG_BLK_DEV_IDEDMA=y # CONFIG_BLK_DEV_HD_ONLY is not set # CONFIG_BLK_DEV_HD is not set # # SCSI device support # # CONFIG_RAID_ATTRS is not set CONFIG_SCSI=y CONFIG_SCSI_DMA=y # CONFIG_SCSI_TGT is not set # CONFIG_SCSI_NETLINK is not set # CONFIG_SCSI_PROC_FS is not set # # SCSI support type (disk, tape, CD-ROM) # CONFIG_BLK_DEV_SD=y # CONFIG_CHR_DEV_ST is not set # CONFIG_CHR_DEV_OSST is not set # CONFIG_BLK_DEV_SR is not set # CONFIG_CHR_DEV_SG is not set # CONFIG_CHR_DEV_SCH is not set # # Some SCSI devices (e.g. CD jukebox) support multiple LUNs # # CONFIG_SCSI_MULTI_LUN is not set # CONFIG_SCSI_CONSTANTS is not set # CONFIG_SCSI_LOGGING is not set # CONFIG_SCSI_SCAN_ASYNC is not set CONFIG_SCSI_WAIT_SCAN=m # # SCSI Transports # # CONFIG_SCSI_SPI_ATTRS is not set # CONFIG_SCSI_FC_ATTRS is not set # CONFIG_SCSI_ISCSI_ATTRS is not set # CONFIG_SCSI_SAS_LIBSAS is not set # CONFIG_SCSI_SRP_ATTRS is not set # CONFIG_SCSI_LOWLEVEL is not set # CONFIG_ATA is not set # CONFIG_MD is not set # CONFIG_FUSION is not set # # IEEE 1394 (FireWire) support # CONFIG_FIREWIRE=m CONFIG_FIREWIRE_OHCI=m CONFIG_FIREWIRE_OHCI_DEBUG=y CONFIG_FIREWIRE_SBP2=m # CONFIG_IEEE1394 is not set # CONFIG_I2O is not set # CONFIG_MACINTOSH_DRIVERS is not set CONFIG_NETDEVICES=y # CONFIG_NETDEVICES_MULTIQUEUE is not set # CONFIG_DUMMY is not set # CONFIG_BONDING is not set # CONFIG_MACVLAN is not set # CONFIG_EQUALIZER is not set CONFIG_TUN=m # CONFIG_VETH is not set # CONFIG_NET_SB1000 is not set # CONFIG_ARCNET is not set # CONFIG_PHYLIB is not set CONFIG_NET_ETHERNET=y CONFIG_MII=y # CONFIG_HAPPYMEAL is not set # CONFIG_SUNGEM is not set # CONFIG_CASSINI is not set # CONFIG_NET_VENDOR_3COM is not set # CONFIG_NET_TULIP is not set # CONFIG_HP100 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_NET_PCI=y # CONFIG_PCNET32 is not set # CONFIG_AMD8111_ETH is not set # CONFIG_ADAPTEC_STARFIRE is not set # CONFIG_B44 is not set # CONFIG_FORCEDETH is not set # CONFIG_EEPRO100 is not set # CONFIG_E100 is not set # CONFIG_FEALNX is not set # CONFIG_NATSEMI is not set # CONFIG_NE2K_PCI is not set # CONFIG_8139CP is not set CONFIG_8139TOO=y # CONFIG_8139TOO_PIO is not set # CONFIG_8139TOO_TUNE_TWISTER is not set # CONFIG_8139TOO_8129 is not set # CONFIG_8139_OLD_RX_RESET is not set # CONFIG_R6040 is not set # CONFIG_SIS900 is not set # CONFIG_EPIC100 is not set # CONFIG_SUNDANCE is not set # CONFIG_TLAN is not set # CONFIG_VIA_RHINE is not set # CONFIG_SC92031 is not set # CONFIG_NETDEV_1000 is not set # CONFIG_NETDEV_10000 is not set # CONFIG_TR is not set # # Wireless LAN # # CONFIG_WLAN_PRE80211 is not set CONFIG_WLAN_80211=y # CONFIG_IPW2100 is not set CONFIG_IPW2200=m CONFIG_IPW2200_MONITOR=y CONFIG_IPW2200_RADIOTAP=y CONFIG_IPW2200_PROMISCUOUS=y # CONFIG_IPW2200_QOS is not set # CONFIG_IPW2200_DEBUG is not set # CONFIG_LIBERTAS is not set # CONFIG_AIRO is not set # CONFIG_HERMES is not set # CONFIG_ATMEL is not set # CONFIG_PRISM54 is not set # CONFIG_USB_ZD1201 is not set # CONFIG_USB_NET_RNDIS_WLAN is not set # CONFIG_IWLWIFI_LEDS is not set # CONFIG_HOSTAP is not set # # USB Network Adapters # # CONFIG_USB_CATC is not set # CONFIG_USB_KAWETH is not set # CONFIG_USB_PEGASUS is not set # CONFIG_USB_RTL8150 is not set # CONFIG_USB_USBNET is not set # CONFIG_WAN is not set # CONFIG_FDDI is not set # CONFIG_HIPPI is not set # CONFIG_PPP is not set # CONFIG_SLIP is not set # CONFIG_NET_FC is not set CONFIG_NETCONSOLE=y CONFIG_NETCONSOLE_DYNAMIC=y CONFIG_NETPOLL=y # CONFIG_NETPOLL_TRAP is not set CONFIG_NET_POLL_CONTROLLER=y CONFIG_VIRTIO_NET=y # CONFIG_ISDN is not set # CONFIG_PHONE is not set # # Input device support # CONFIG_INPUT=y # CONFIG_INPUT_FF_MEMLESS is not set # CONFIG_INPUT_POLLDEV is not set # # Userland interfaces # CONFIG_INPUT_MOUSEDEV=y # CONFIG_INPUT_MOUSEDEV_PSAUX is not set CONFIG_INPUT_MOUSEDEV_SCREEN_X=1400 CONFIG_INPUT_MOUSEDEV_SCREEN_Y=1050 # CONFIG_INPUT_JOYDEV is not set CONFIG_INPUT_EVDEV=y # CONFIG_INPUT_EVBUG is not set # # Input Device Drivers # CONFIG_INPUT_KEYBOARD=y CONFIG_KEYBOARD_ATKBD=y # CONFIG_KEYBOARD_SUNKBD is not set # CONFIG_KEYBOARD_LKKBD is not set # CONFIG_KEYBOARD_XTKBD is not set # CONFIG_KEYBOARD_NEWTON is not set # CONFIG_KEYBOARD_STOWAWAY is not set CONFIG_INPUT_MOUSE=y CONFIG_MOUSE_PS2=y CONFIG_MOUSE_PS2_ALPS=y CONFIG_MOUSE_PS2_LOGIPS2PP=y CONFIG_MOUSE_PS2_SYNAPTICS=y CONFIG_MOUSE_PS2_LIFEBOOK=y CONFIG_MOUSE_PS2_TRACKPOINT=y # CONFIG_MOUSE_PS2_TOUCHKIT is not set # CONFIG_MOUSE_SERIAL is not set # CONFIG_MOUSE_APPLETOUCH is not set # CONFIG_MOUSE_VSXXXAA is not set # CONFIG_INPUT_JOYSTICK is not set # CONFIG_INPUT_TABLET is not set # CONFIG_INPUT_TOUCHSCREEN is not set # CONFIG_INPUT_MISC is not set # # Hardware I/O ports # CONFIG_SERIO=y CONFIG_SERIO_I8042=y # CONFIG_SERIO_SERPORT is not set # CONFIG_SERIO_CT82C710 is not set # CONFIG_SERIO_PCIPS2 is not set CONFIG_SERIO_LIBPS2=y # CONFIG_SERIO_RAW is not set # CONFIG_GAMEPORT is not set # # Character devices # CONFIG_VT=y CONFIG_VT_CONSOLE=y CONFIG_HW_CONSOLE=y # CONFIG_VT_HW_CONSOLE_BINDING is not set # CONFIG_DEVKMEM is not set # CONFIG_SERIAL_NONSTANDARD is not set # CONFIG_NOZOMI is not set # # 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 is not set # # Non-8250 serial port support # CONFIG_SERIAL_CORE=y CONFIG_SERIAL_CORE_CONSOLE=y # CONFIG_SERIAL_JSM is not set CONFIG_UNIX98_PTYS=y # CONFIG_LEGACY_PTYS is not set CONFIG_HVC_DRIVER=y CONFIG_VIRTIO_CONSOLE=y # CONFIG_IPMI_HANDLER is not set # CONFIG_HW_RANDOM is not set # CONFIG_NVRAM is not set CONFIG_RTC=m CONFIG_GEN_RTC=m # CONFIG_GEN_RTC_X is not set # CONFIG_R3964 is not set # CONFIG_APPLICOM is not set # CONFIG_SONYPI is not set # CONFIG_MWAVE is not set # CONFIG_PC8736x_GPIO is not set # CONFIG_NSC_GPIO is not set # CONFIG_CS5535_GPIO is not set # CONFIG_RAW_DRIVER is not set CONFIG_HPET=y # CONFIG_HPET_RTC_IRQ is not set CONFIG_HPET_MMAP=y # CONFIG_HANGCHECK_TIMER is not set # CONFIG_TCG_TPM is not set # CONFIG_TELCLOCK is not set CONFIG_DEVPORT=y CONFIG_I2C=m CONFIG_I2C_BOARDINFO=y CONFIG_I2C_CHARDEV=m CONFIG_I2C_ALGOBIT=m # # I2C Hardware Bus support # # CONFIG_I2C_ALI1535 is not set # CONFIG_I2C_ALI1563 is not set # CONFIG_I2C_ALI15X3 is not set # CONFIG_I2C_AMD756 is not set # CONFIG_I2C_AMD8111 is not set CONFIG_I2C_I801=m # CONFIG_I2C_I810 is not set # CONFIG_I2C_PIIX4 is not set # CONFIG_I2C_NFORCE2 is not set # CONFIG_I2C_OCORES is not set # CONFIG_I2C_PARPORT_LIGHT is not set # CONFIG_I2C_PROSAVAGE is not set # CONFIG_I2C_SAVAGE4 is not set # CONFIG_I2C_SIMTEC is not set # CONFIG_SCx200_ACB is not set # CONFIG_I2C_SIS5595 is not set # CONFIG_I2C_SIS630 is not set # CONFIG_I2C_SIS96X is not set # CONFIG_I2C_TAOS_EVM is not set # CONFIG_I2C_STUB is not set # CONFIG_I2C_TINY_USB is not set # CONFIG_I2C_VIA is not set # CONFIG_I2C_VIAPRO is not set # CONFIG_I2C_VOODOO3 is not set # CONFIG_I2C_PCA_PLATFORM is not set # # Miscellaneous I2C Chip support # # CONFIG_DS1682 is not set # CONFIG_SENSORS_EEPROM is not set # CONFIG_SENSORS_PCF8574 is not set # CONFIG_PCF8575 is not set # CONFIG_SENSORS_PCF8591 is not set # CONFIG_SENSORS_MAX6875 is not set # CONFIG_SENSORS_TSL2550 is not set # CONFIG_I2C_DEBUG_CORE is not set # CONFIG_I2C_DEBUG_ALGO is not set # CONFIG_I2C_DEBUG_BUS is not set # CONFIG_I2C_DEBUG_CHIP is not set # CONFIG_SPI is not set # CONFIG_W1 is not set CONFIG_POWER_SUPPLY=y # CONFIG_POWER_SUPPLY_DEBUG is not set # CONFIG_PDA_POWER is not set # CONFIG_BATTERY_DS2760 is not set # CONFIG_HWMON is not set CONFIG_THERMAL=y CONFIG_WATCHDOG=y # CONFIG_WATCHDOG_NOWAYOUT is not set # # Watchdog Device Drivers # # CONFIG_SOFT_WATCHDOG is not set # CONFIG_ACQUIRE_WDT is not set # CONFIG_ADVANTECH_WDT is not set # CONFIG_ALIM1535_WDT is not set # CONFIG_ALIM7101_WDT is not set # CONFIG_SC520_WDT is not set # CONFIG_EUROTECH_WDT is not set # CONFIG_IB700_WDT is not set # CONFIG_IBMASR is not set # CONFIG_WAFER_WDT is not set # CONFIG_I6300ESB_WDT is not set CONFIG_ITCO_WDT=m # CONFIG_ITCO_VENDOR_SUPPORT is not set # CONFIG_IT8712F_WDT is not set # CONFIG_HP_WATCHDOG is not set # CONFIG_SC1200_WDT is not set # CONFIG_PC87413_WDT is not set # CONFIG_60XX_WDT is not set # CONFIG_SBC8360_WDT is not set # CONFIG_SBC7240_WDT is not set # CONFIG_CPU5_WDT is not set # CONFIG_SMSC37B787_WDT is not set # CONFIG_W83627HF_WDT is not set # CONFIG_W83697HF_WDT is not set # CONFIG_W83877F_WDT is not set # CONFIG_W83977F_WDT is not set # CONFIG_MACHZ_WDT is not set # CONFIG_SBC_EPX_C3_WATCHDOG is not set # # PCI-based Watchdog Cards # # CONFIG_PCIPCWATCHDOG is not set # CONFIG_WDTPCI is not set # # USB-based Watchdog Cards # # CONFIG_USBPCWATCHDOG is not set # # Sonics Silicon Backplane # CONFIG_SSB_POSSIBLE=y # CONFIG_SSB is not set # # Multifunction device drivers # # CONFIG_MFD_SM501 is not set # CONFIG_HTC_PASIC3 is not set # # Multimedia devices # # # Multimedia core support # CONFIG_VIDEO_DEV=m CONFIG_VIDEO_V4L2_COMMON=m # CONFIG_VIDEO_ALLOW_V4L1 is not set # CONFIG_VIDEO_V4L1_COMPAT is not set # CONFIG_DVB_CORE is not set CONFIG_VIDEO_MEDIA=m # # Multimedia drivers # # CONFIG_MEDIA_ATTACH is not set CONFIG_MEDIA_TUNER=m # CONFIG_MEDIA_TUNER_CUSTOMIZE is not set CONFIG_MEDIA_TUNER_SIMPLE=m CONFIG_MEDIA_TUNER_TDA8290=m CONFIG_MEDIA_TUNER_TDA9887=m CONFIG_MEDIA_TUNER_TEA5761=m CONFIG_MEDIA_TUNER_TEA5767=m CONFIG_MEDIA_TUNER_MT20XX=m CONFIG_MEDIA_TUNER_XC2028=m CONFIG_MEDIA_TUNER_XC5000=m CONFIG_VIDEO_V4L2=m CONFIG_VIDEO_CAPTURE_DRIVERS=y # CONFIG_VIDEO_ADV_DEBUG is not set CONFIG_VIDEO_HELPER_CHIPS_AUTO=y # CONFIG_VIDEO_VIVI is not set # CONFIG_VIDEO_BT848 is not set # CONFIG_VIDEO_SAA5246A is not set # CONFIG_VIDEO_SAA5249 is not set # CONFIG_VIDEO_SAA7134 is not set # CONFIG_VIDEO_HEXIUM_ORION is not set # CONFIG_VIDEO_HEXIUM_GEMINI is not set # CONFIG_VIDEO_CX88 is not set # CONFIG_VIDEO_CAFE_CCIC is not set CONFIG_V4L_USB_DRIVERS=y # CONFIG_VIDEO_PVRUSB2 is not set # CONFIG_VIDEO_EM28XX is not set # CONFIG_VIDEO_USBVISION is not set # CONFIG_USB_ET61X251 is not set # CONFIG_USB_SN9C102 is not set # CONFIG_USB_ZC0301 is not set # CONFIG_USB_ZR364XX is not set # CONFIG_USB_STKWEBCAM is not set # CONFIG_SOC_CAMERA is not set # CONFIG_RADIO_ADAPTERS is not set # CONFIG_DAB is not set # # Graphics support # CONFIG_AGP=m # CONFIG_AGP_ALI is not set # CONFIG_AGP_ATI is not set # CONFIG_AGP_AMD is not set # CONFIG_AGP_AMD64 is not set CONFIG_AGP_INTEL=m # CONFIG_AGP_NVIDIA is not set # CONFIG_AGP_SIS is not set # CONFIG_AGP_SWORKS is not set # CONFIG_AGP_VIA is not set # CONFIG_AGP_EFFICEON is not set CONFIG_DRM=m # CONFIG_DRM_TDFX is not set # CONFIG_DRM_R128 is not set CONFIG_DRM_RADEON=m # CONFIG_DRM_I810 is not set # CONFIG_DRM_I830 is not set # CONFIG_DRM_I915 is not set # CONFIG_DRM_MGA is not set # CONFIG_DRM_SIS is not set # CONFIG_DRM_VIA is not set # CONFIG_DRM_SAVAGE is not set # CONFIG_VGASTATE is not set # CONFIG_VIDEO_OUTPUT_CONTROL is not set CONFIG_FB=m # CONFIG_FIRMWARE_EDID is not set CONFIG_FB_DDC=m CONFIG_FB_CFB_FILLRECT=m CONFIG_FB_CFB_COPYAREA=m CONFIG_FB_CFB_IMAGEBLIT=m # CONFIG_FB_CFB_REV_PIXELS_IN_BYTE is not set CONFIG_FB_SYS_FILLRECT=m CONFIG_FB_SYS_COPYAREA=m CONFIG_FB_SYS_IMAGEBLIT=m # CONFIG_FB_FOREIGN_ENDIAN is not set CONFIG_FB_SYS_FOPS=m # CONFIG_FB_SVGALIB is not set # CONFIG_FB_MACMODES is not set CONFIG_FB_BACKLIGHT=y CONFIG_FB_MODE_HELPERS=y # CONFIG_FB_TILEBLITTING is not set # # Frame buffer hardware drivers # # CONFIG_FB_CIRRUS is not set # CONFIG_FB_PM2 is not set # CONFIG_FB_CYBER2000 is not set # CONFIG_FB_ARC is not set # CONFIG_FB_VGA16 is not set # CONFIG_FB_N411 is not set # CONFIG_FB_HGA is not set # CONFIG_FB_S1D13XXX is not set # CONFIG_FB_NVIDIA is not set # CONFIG_FB_RIVA is not set # CONFIG_FB_I810 is not set # CONFIG_FB_LE80578 is not set # CONFIG_FB_INTEL is not set # CONFIG_FB_MATROX is not set CONFIG_FB_RADEON=m CONFIG_FB_RADEON_I2C=y CONFIG_FB_RADEON_BACKLIGHT=y # CONFIG_FB_RADEON_DEBUG is not set # CONFIG_FB_ATY128 is not set # CONFIG_FB_ATY is not set # CONFIG_FB_S3 is not set # CONFIG_FB_SAVAGE is not set # CONFIG_FB_SIS is not set # CONFIG_FB_NEOMAGIC is not set # CONFIG_FB_KYRO is not set # CONFIG_FB_3DFX is not set # CONFIG_FB_VOODOO1 is not set # CONFIG_FB_VT8623 is not set # CONFIG_FB_CYBLA is not set # CONFIG_FB_TRIDENT is not set # CONFIG_FB_ARK is not set # CONFIG_FB_PM3 is not set # CONFIG_FB_GEODE is not set CONFIG_FB_VIRTUAL=m CONFIG_BACKLIGHT_LCD_SUPPORT=y CONFIG_LCD_CLASS_DEVICE=m CONFIG_BACKLIGHT_CLASS_DEVICE=m # CONFIG_BACKLIGHT_CORGI is not set # CONFIG_BACKLIGHT_PROGEAR is not set # # Display device support # CONFIG_DISPLAY_SUPPORT=m # # Display hardware drivers # # # Console display driver support # CONFIG_VGA_CONSOLE=y CONFIG_VGACON_SOFT_SCROLLBACK=y CONFIG_VGACON_SOFT_SCROLLBACK_SIZE=64 CONFIG_VIDEO_SELECT=y CONFIG_DUMMY_CONSOLE=y CONFIG_FRAMEBUFFER_CONSOLE=m # CONFIG_FRAMEBUFFER_CONSOLE_DETECT_PRIMARY is not set # CONFIG_FRAMEBUFFER_CONSOLE_ROTATION is not set # CONFIG_FONTS is not set CONFIG_FONT_8x8=y CONFIG_FONT_8x16=y # CONFIG_LOGO is not set # # Sound # CONFIG_SOUND=m # # Advanced Linux Sound Architecture # CONFIG_SND=m CONFIG_SND_TIMER=m CONFIG_SND_PCM=m CONFIG_SND_SEQUENCER=m # CONFIG_SND_SEQ_DUMMY is not set # CONFIG_SND_MIXER_OSS is not set # CONFIG_SND_PCM_OSS is not set # CONFIG_SND_SEQUENCER_OSS is not set CONFIG_SND_RTCTIMER=m CONFIG_SND_SEQ_RTCTIMER_DEFAULT=y # CONFIG_SND_DYNAMIC_MINORS is not set # CONFIG_SND_SUPPORT_OLD_API is not set # CONFIG_SND_VERBOSE_PROCFS is not set # CONFIG_SND_VERBOSE_PRINTK is not set # CONFIG_SND_DEBUG is not set # # Generic devices # # CONFIG_SND_PCSP is not set CONFIG_SND_AC97_CODEC=m # CONFIG_SND_DUMMY is not set # CONFIG_SND_VIRMIDI is not set # CONFIG_SND_MTPAV is not set # CONFIG_SND_SERIAL_U16550 is not set # CONFIG_SND_MPU401 is not set # # PCI devices # # CONFIG_SND_AD1889 is not set # CONFIG_SND_ALS300 is not set # CONFIG_SND_ALS4000 is not set # CONFIG_SND_ALI5451 is not set # CONFIG_SND_ATIIXP is not set # CONFIG_SND_ATIIXP_MODEM is not set # CONFIG_SND_AU8810 is not set # CONFIG_SND_AU8820 is not set # CONFIG_SND_AU8830 is not set # CONFIG_SND_AW2 is not set # CONFIG_SND_AZT3328 is not set # CONFIG_SND_BT87X is not set # CONFIG_SND_CA0106 is not set # CONFIG_SND_CMIPCI is not set # CONFIG_SND_OXYGEN is not set # CONFIG_SND_CS4281 is not set # CONFIG_SND_CS46XX is not set # CONFIG_SND_CS5530 is not set # CONFIG_SND_CS5535AUDIO is not set # CONFIG_SND_DARLA20 is not set # CONFIG_SND_GINA20 is not set # CONFIG_SND_LAYLA20 is not set # CONFIG_SND_DARLA24 is not set # CONFIG_SND_GINA24 is not set # CONFIG_SND_LAYLA24 is not set # CONFIG_SND_MONA is not set # CONFIG_SND_MIA is not set # CONFIG_SND_ECHO3G is not set # CONFIG_SND_INDIGO is not set # CONFIG_SND_INDIGOIO is not set # CONFIG_SND_INDIGODJ is not set # CONFIG_SND_EMU10K1 is not set # CONFIG_SND_EMU10K1X is not set # CONFIG_SND_ENS1370 is not set # CONFIG_SND_ENS1371 is not set # CONFIG_SND_ES1938 is not set # CONFIG_SND_ES1968 is not set # CONFIG_SND_FM801 is not set # CONFIG_SND_HDA_INTEL is not set # CONFIG_SND_HDSP is not set # CONFIG_SND_HDSPM is not set # CONFIG_SND_HIFIER is not set # CONFIG_SND_ICE1712 is not set # CONFIG_SND_ICE1724 is not set CONFIG_SND_INTEL8X0=m # CONFIG_SND_INTEL8X0M is not set # CONFIG_SND_KORG1212 is not set # CONFIG_SND_MAESTRO3 is not set # CONFIG_SND_MIXART is not set # CONFIG_SND_NM256 is not set # CONFIG_SND_PCXHR is not set # CONFIG_SND_RIPTIDE is not set # CONFIG_SND_RME32 is not set # CONFIG_SND_RME96 is not set # CONFIG_SND_RME9652 is not set # CONFIG_SND_SIS7019 is not set # CONFIG_SND_SONICVIBES is not set # CONFIG_SND_TRIDENT is not set # CONFIG_SND_VIA82XX is not set # CONFIG_SND_VIA82XX_MODEM is not set # CONFIG_SND_VIRTUOSO is not set # CONFIG_SND_VX222 is not set # CONFIG_SND_YMFPCI is not set CONFIG_SND_AC97_POWER_SAVE=y CONFIG_SND_AC97_POWER_SAVE_DEFAULT=1 # # USB devices # # CONFIG_SND_USB_AUDIO is not set # CONFIG_SND_USB_USX2Y is not set # CONFIG_SND_USB_CAIAQ is not set # # System on Chip audio support # # CONFIG_SND_SOC is not set # # ALSA SoC audio for Freescale SOCs # # # SoC Audio for the Texas Instruments OMAP # # # Open Sound System # # CONFIG_SOUND_PRIME is not set CONFIG_AC97_BUS=m CONFIG_HID_SUPPORT=y CONFIG_HID=y # CONFIG_HID_DEBUG is not set # CONFIG_HIDRAW is not set # # USB Input Devices # CONFIG_USB_HID=m # CONFIG_USB_HIDINPUT_POWERBOOK is not set # CONFIG_HID_FF is not set # CONFIG_USB_HIDDEV is not set # # USB HID Boot Protocol drivers # # CONFIG_USB_KBD is not set # CONFIG_USB_MOUSE 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=m # CONFIG_USB_DEBUG is not set # 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 is not set CONFIG_USB_SUSPEND=y # CONFIG_USB_OTG is not set # # USB Host Controller Drivers # # CONFIG_USB_C67X00_HCD is not set CONFIG_USB_EHCI_HCD=m # CONFIG_USB_EHCI_ROOT_HUB_TT is not set # CONFIG_USB_EHCI_TT_NEWSCHED is not set # CONFIG_USB_ISP116X_HCD is not set # CONFIG_USB_ISP1760_HCD is not set # CONFIG_USB_OHCI_HCD is not set CONFIG_USB_UHCI_HCD=m # CONFIG_USB_SL811_HCD is not set # CONFIG_USB_R8A66597_HCD is not set # # USB Device Class drivers # # CONFIG_USB_ACM is not set CONFIG_USB_PRINTER=m # CONFIG_USB_WDM is not set # # NOTE: USB_STORAGE enables SCSI, and 'SCSI disk support' # # # may also be needed; see USB_STORAGE Help for more information # CONFIG_USB_STORAGE=m # CONFIG_USB_STORAGE_DEBUG is not set # CONFIG_USB_STORAGE_DATAFAB is not set # CONFIG_USB_STORAGE_FREECOM is not set # CONFIG_USB_STORAGE_ISD200 is not set # CONFIG_USB_STORAGE_DPCM is not set # CONFIG_USB_STORAGE_USBAT is not set CONFIG_USB_STORAGE_SDDR09=y CONFIG_USB_STORAGE_SDDR55=y # CONFIG_USB_STORAGE_JUMPSHOT is not set # CONFIG_USB_STORAGE_ALAUDA is not set # CONFIG_USB_STORAGE_ONETOUCH is not set # CONFIG_USB_STORAGE_KARMA is not set # CONFIG_USB_STORAGE_CYPRESS_ATACB is not set # CONFIG_USB_LIBUSUAL is not set # # USB Imaging devices # # CONFIG_USB_MDC800 is not set # CONFIG_USB_MICROTEK is not set CONFIG_USB_MON=y # # USB port drivers # CONFIG_USB_SERIAL=m # CONFIG_USB_EZUSB is not set CONFIG_USB_SERIAL_GENERIC=y # CONFIG_USB_SERIAL_AIRCABLE is not set # CONFIG_USB_SERIAL_AIRPRIME is not set # CONFIG_USB_SERIAL_ARK3116 is not set # CONFIG_USB_SERIAL_BELKIN is not set # CONFIG_USB_SERIAL_CH341 is not set # CONFIG_USB_SERIAL_WHITEHEAT is not set # CONFIG_USB_SERIAL_DIGI_ACCELEPORT is not set # CONFIG_USB_SERIAL_CP2101 is not set # CONFIG_USB_SERIAL_CYPRESS_M8 is not set # CONFIG_USB_SERIAL_EMPEG is not set # CONFIG_USB_SERIAL_FTDI_SIO is not set # CONFIG_USB_SERIAL_FUNSOFT is not set # CONFIG_USB_SERIAL_VISOR is not set # CONFIG_USB_SERIAL_IPAQ is not set # CONFIG_USB_SERIAL_IR is not set # CONFIG_USB_SERIAL_EDGEPORT is not set # CONFIG_USB_SERIAL_EDGEPORT_TI is not set # CONFIG_USB_SERIAL_GARMIN is not set # CONFIG_USB_SERIAL_IPW is not set # CONFIG_USB_SERIAL_IUU is not set # CONFIG_USB_SERIAL_KEYSPAN_PDA is not set # CONFIG_USB_SERIAL_KEYSPAN is not set # CONFIG_USB_SERIAL_KLSI is not set # CONFIG_USB_SERIAL_KOBIL_SCT is not set # CONFIG_USB_SERIAL_MCT_U232 is not set # CONFIG_USB_SERIAL_MOS7720 is not set # CONFIG_USB_SERIAL_MOS7840 is not set # CONFIG_USB_SERIAL_MOTOROLA is not set # CONFIG_USB_SERIAL_NAVMAN is not set # CONFIG_USB_SERIAL_PL2303 is not set # CONFIG_USB_SERIAL_OTI6858 is not set # CONFIG_USB_SERIAL_SPCP8X5 is not set # CONFIG_USB_SERIAL_HP4X is not set # CONFIG_USB_SERIAL_SAFE is not set # CONFIG_USB_SERIAL_SIERRAWIRELESS is not set # CONFIG_USB_SERIAL_TI is not set # CONFIG_USB_SERIAL_CYBERJACK is not set # CONFIG_USB_SERIAL_XIRCOM is not set # CONFIG_USB_SERIAL_OPTION is not set # CONFIG_USB_SERIAL_OMNINET is not set # CONFIG_USB_SERIAL_DEBUG is not set # # USB Miscellaneous drivers # # CONFIG_USB_EMI62 is not set # CONFIG_USB_EMI26 is not set # CONFIG_USB_ADUTUX is not set # CONFIG_USB_AUERSWALD is not set # CONFIG_USB_RIO500 is not set # CONFIG_USB_LEGOTOWER is not set # CONFIG_USB_LCD is not set # CONFIG_USB_BERRY_CHARGE is not set # CONFIG_USB_LED is not set # CONFIG_USB_CYPRESS_CY7C63 is not set # CONFIG_USB_CYTHERM is not set # CONFIG_USB_PHIDGET is not set # CONFIG_USB_IDMOUSE is not set # CONFIG_USB_FTDI_ELAN is not set # CONFIG_USB_APPLEDISPLAY is not set # CONFIG_USB_SISUSBVGA is not set # CONFIG_USB_LD is not set # CONFIG_USB_TRANCEVIBRATOR is not set # CONFIG_USB_IOWARRIOR is not set # CONFIG_USB_TEST is not set # CONFIG_USB_ISIGHTFW is not set # CONFIG_USB_GADGET is not set # CONFIG_MMC is not set # CONFIG_MEMSTICK is not set # CONFIG_NEW_LEDS is not set # CONFIG_ACCESSIBILITY is not set # CONFIG_INFINIBAND is not set # CONFIG_EDAC is not set # CONFIG_RTC_CLASS is not set # CONFIG_DMADEVICES is not set # CONFIG_UIO is not set # # Firmware Drivers # # CONFIG_EDD is not set # CONFIG_DELL_RBU is not set # CONFIG_DCDBAS is not set CONFIG_DMIID=y # CONFIG_ISCSI_IBFT_FIND is not set # # File systems # # CONFIG_EXT2_FS is not set CONFIG_EXT3_FS=y CONFIG_EXT3_FS_XATTR=y CONFIG_EXT3_FS_POSIX_ACL=y # CONFIG_EXT3_FS_SECURITY is not set # CONFIG_EXT4DEV_FS is not set CONFIG_JBD=y # CONFIG_JBD_DEBUG is not set CONFIG_FS_MBCACHE=y CONFIG_REISERFS_FS=y # CONFIG_REISERFS_CHECK is not set # CONFIG_REISERFS_PROC_INFO is not set CONFIG_REISERFS_FS_XATTR=y # CONFIG_REISERFS_FS_POSIX_ACL is not set # CONFIG_REISERFS_FS_SECURITY is not set # CONFIG_JFS_FS is not set CONFIG_FS_POSIX_ACL=y # CONFIG_XFS_FS is not set # CONFIG_OCFS2_FS is not set CONFIG_DNOTIFY=y CONFIG_INOTIFY=y CONFIG_INOTIFY_USER=y # CONFIG_QUOTA is not set # CONFIG_AUTOFS_FS is not set # CONFIG_AUTOFS4_FS is not set CONFIG_FUSE_FS=m # # CD-ROM/DVD Filesystems # CONFIG_ISO9660_FS=y CONFIG_JOLIET=y # CONFIG_ZISOFS is not set CONFIG_UDF_FS=m CONFIG_UDF_NLS=y # # DOS/FAT/NT Filesystems # CONFIG_FAT_FS=y # CONFIG_MSDOS_FS is not set CONFIG_VFAT_FS=y CONFIG_FAT_DEFAULT_CODEPAGE=850 CONFIG_FAT_DEFAULT_IOCHARSET="iso8859-15" # CONFIG_NTFS_FS is not set # # Pseudo filesystems # CONFIG_PROC_FS=y CONFIG_PROC_KCORE=y CONFIG_PROC_SYSCTL=y CONFIG_SYSFS=y CONFIG_TMPFS=y # CONFIG_TMPFS_POSIX_ACL is not set # CONFIG_HUGETLBFS is not set # CONFIG_HUGETLB_PAGE is not set CONFIG_CONFIGFS_FS=y # # Miscellaneous filesystems # # CONFIG_ADFS_FS is not set # CONFIG_AFFS_FS is not set # CONFIG_HFS_FS is not set # CONFIG_HFSPLUS_FS is not set # CONFIG_BEFS_FS is not set # CONFIG_BFS_FS is not set # CONFIG_EFS_FS is not set # CONFIG_CRAMFS is not set # CONFIG_VXFS_FS is not set # CONFIG_MINIX_FS is not set # CONFIG_HPFS_FS is not set # CONFIG_QNX4FS_FS is not set # CONFIG_ROMFS_FS is not set # CONFIG_SYSV_FS is not set # CONFIG_UFS_FS is not set CONFIG_NETWORK_FILESYSTEMS=y # CONFIG_NFS_FS is not set # CONFIG_NFSD is not set # CONFIG_SMB_FS is not set CONFIG_CIFS=m CONFIG_CIFS_STATS=y # CONFIG_CIFS_STATS2 is not set # CONFIG_CIFS_WEAK_PW_HASH is not set # CONFIG_CIFS_XATTR is not set # CONFIG_CIFS_DEBUG2 is not set # CONFIG_CIFS_EXPERIMENTAL is not set # CONFIG_NCP_FS is not set # CONFIG_CODA_FS is not set # CONFIG_AFS_FS is not set # # Partition Types # # CONFIG_PARTITION_ADVANCED is not set CONFIG_MSDOS_PARTITION=y CONFIG_NLS=y CONFIG_NLS_DEFAULT="iso8859-15" CONFIG_NLS_CODEPAGE_437=y # CONFIG_NLS_CODEPAGE_737 is not set # CONFIG_NLS_CODEPAGE_775 is not set CONFIG_NLS_CODEPAGE_850=y # CONFIG_NLS_CODEPAGE_852 is not set # CONFIG_NLS_CODEPAGE_855 is not set # CONFIG_NLS_CODEPAGE_857 is not set # CONFIG_NLS_CODEPAGE_860 is not set # CONFIG_NLS_CODEPAGE_861 is not set # CONFIG_NLS_CODEPAGE_862 is not set # CONFIG_NLS_CODEPAGE_863 is not set # CONFIG_NLS_CODEPAGE_864 is not set # CONFIG_NLS_CODEPAGE_865 is not set # CONFIG_NLS_CODEPAGE_866 is not set # CONFIG_NLS_CODEPAGE_869 is not set # CONFIG_NLS_CODEPAGE_936 is not set # CONFIG_NLS_CODEPAGE_950 is not set # CONFIG_NLS_CODEPAGE_932 is not set # CONFIG_NLS_CODEPAGE_949 is not set # CONFIG_NLS_CODEPAGE_874 is not set # CONFIG_NLS_ISO8859_8 is not set # CONFIG_NLS_CODEPAGE_1250 is not set # CONFIG_NLS_CODEPAGE_1251 is not set # CONFIG_NLS_ASCII is not set CONFIG_NLS_ISO8859_1=y # CONFIG_NLS_ISO8859_2 is not set # CONFIG_NLS_ISO8859_3 is not set # CONFIG_NLS_ISO8859_4 is not set # CONFIG_NLS_ISO8859_5 is not set # CONFIG_NLS_ISO8859_6 is not set # CONFIG_NLS_ISO8859_7 is not set # CONFIG_NLS_ISO8859_9 is not set # CONFIG_NLS_ISO8859_13 is not set # CONFIG_NLS_ISO8859_14 is not set CONFIG_NLS_ISO8859_15=y # CONFIG_NLS_KOI8_R is not set # CONFIG_NLS_KOI8_U is not set CONFIG_NLS_UTF8=y # CONFIG_DLM is not set # # Kernel hacking # CONFIG_TRACE_IRQFLAGS_SUPPORT=y CONFIG_PRINTK_TIME=y CONFIG_ENABLE_WARN_DEPRECATED=y CONFIG_ENABLE_MUST_CHECK=y CONFIG_FRAME_WARN=1024 CONFIG_MAGIC_SYSRQ=y # CONFIG_UNUSED_SYMBOLS is not set CONFIG_DEBUG_FS=y # CONFIG_HEADERS_CHECK is not set CONFIG_DEBUG_KERNEL=y # CONFIG_DEBUG_SHIRQ is not set CONFIG_DETECT_SOFTLOCKUP=y CONFIG_SCHED_DEBUG=y # CONFIG_SCHEDSTATS is not set CONFIG_TIMER_STATS=y # CONFIG_DEBUG_OBJECTS is not set # CONFIG_DEBUG_SLAB is not set CONFIG_DEBUG_PREEMPT=y # CONFIG_DEBUG_RT_MUTEXES is not set # CONFIG_RT_MUTEX_TESTER is not set # CONFIG_DEBUG_SPINLOCK is not set # CONFIG_DEBUG_MUTEXES is not set # CONFIG_DEBUG_LOCK_ALLOC is not set # CONFIG_PROVE_LOCKING is not set # CONFIG_LOCK_STAT is not set CONFIG_DEBUG_SPINLOCK_SLEEP=y CONFIG_DEBUG_LOCKING_API_SELFTESTS=y # CONFIG_DEBUG_KOBJECT is not set CONFIG_DEBUG_BUGVERBOSE=y CONFIG_DEBUG_INFO=y # CONFIG_DEBUG_VM is not set # CONFIG_DEBUG_WRITECOUNT is not set CONFIG_DEBUG_LIST=y # CONFIG_DEBUG_SG is not set CONFIG_FRAME_POINTER=y # CONFIG_BOOT_PRINTK_DELAY is not set # CONFIG_RCU_TORTURE_TEST is not set CONFIG_KPROBES_SANITY_TEST=y # CONFIG_BACKTRACE_SELF_TEST is not set # CONFIG_LKDTM is not set # CONFIG_FAULT_INJECTION is not set # CONFIG_LATENCYTOP is not set # CONFIG_PROVIDE_OHCI1394_DMA_INIT is not set CONFIG_FIREWIRE_OHCI_REMOTE_DMA=y # CONFIG_SAMPLES is not set CONFIG_HAVE_ARCH_KGDB=y # CONFIG_KGDB is not set # CONFIG_NONPROMISC_DEVMEM is not set CONFIG_EARLY_PRINTK=y # CONFIG_DEBUG_STACKOVERFLOW is not set # CONFIG_DEBUG_STACK_USAGE is not set # CONFIG_DEBUG_PAGEALLOC is not set # CONFIG_X86_PTDUMP is not set # CONFIG_DEBUG_RODATA is not set # CONFIG_DEBUG_NX_TEST is not set # CONFIG_4KSTACKS is not set CONFIG_X86_FIND_SMP_CONFIG=y CONFIG_X86_MPPARSE=y CONFIG_DOUBLEFAULT=y CONFIG_IO_DELAY_TYPE_0X80=0 CONFIG_IO_DELAY_TYPE_0XED=1 CONFIG_IO_DELAY_TYPE_UDELAY=2 CONFIG_IO_DELAY_TYPE_NONE=3 CONFIG_IO_DELAY_0X80=y # CONFIG_IO_DELAY_0XED is not set # CONFIG_IO_DELAY_UDELAY is not set # CONFIG_IO_DELAY_NONE is not set CONFIG_DEFAULT_IO_DELAY_TYPE=0 # CONFIG_DEBUG_BOOT_PARAMS is not set # CONFIG_CPA_DEBUG is not set # # Security options # # CONFIG_KEYS is not set # CONFIG_SECURITY is not set # CONFIG_SECURITY_FILE_CAPABILITIES is not set CONFIG_CRYPTO=y # # Crypto core or helper # CONFIG_CRYPTO_ALGAPI=m CONFIG_CRYPTO_BLKCIPHER=m CONFIG_CRYPTO_MANAGER=m # CONFIG_CRYPTO_GF128MUL is not set # CONFIG_CRYPTO_NULL is not set # CONFIG_CRYPTO_CRYPTD is not set # CONFIG_CRYPTO_AUTHENC is not set # CONFIG_CRYPTO_TEST is not set # # Authenticated Encryption with Associated Data # # CONFIG_CRYPTO_CCM is not set # CONFIG_CRYPTO_GCM is not set # CONFIG_CRYPTO_SEQIV is not set # # Block modes # CONFIG_CRYPTO_CBC=m # CONFIG_CRYPTO_CTR is not set # CONFIG_CRYPTO_CTS is not set CONFIG_CRYPTO_ECB=m # CONFIG_CRYPTO_LRW is not set # CONFIG_CRYPTO_PCBC is not set # CONFIG_CRYPTO_XTS is not set # # Hash modes # # CONFIG_CRYPTO_HMAC is not set # CONFIG_CRYPTO_XCBC is not set # # Digest # # CONFIG_CRYPTO_CRC32C is not set # CONFIG_CRYPTO_MD4 is not set # CONFIG_CRYPTO_MD5 is not set CONFIG_CRYPTO_MICHAEL_MIC=m # CONFIG_CRYPTO_SHA1 is not set # CONFIG_CRYPTO_SHA256 is not set # CONFIG_CRYPTO_SHA512 is not set # CONFIG_CRYPTO_TGR192 is not set # CONFIG_CRYPTO_WP512 is not set # # Ciphers # CONFIG_CRYPTO_AES=m CONFIG_CRYPTO_AES_586=m # CONFIG_CRYPTO_ANUBIS is not set CONFIG_CRYPTO_ARC4=m # CONFIG_CRYPTO_BLOWFISH is not set # CONFIG_CRYPTO_CAMELLIA is not set # CONFIG_CRYPTO_CAST5 is not set # CONFIG_CRYPTO_CAST6 is not set # CONFIG_CRYPTO_DES is not set # CONFIG_CRYPTO_FCRYPT is not set # CONFIG_CRYPTO_KHAZAD is not set # CONFIG_CRYPTO_SALSA20 is not set # CONFIG_CRYPTO_SALSA20_586 is not set # CONFIG_CRYPTO_SEED is not set # CONFIG_CRYPTO_SERPENT is not set # CONFIG_CRYPTO_TEA is not set # CONFIG_CRYPTO_TWOFISH is not set # CONFIG_CRYPTO_TWOFISH_586 is not set # # Compression # # CONFIG_CRYPTO_DEFLATE is not set # CONFIG_CRYPTO_LZO is not set # CONFIG_CRYPTO_HW is not set CONFIG_HAVE_KVM=y CONFIG_VIRTUALIZATION=y # CONFIG_KVM is not set CONFIG_LGUEST=m CONFIG_VIRTIO=y CONFIG_VIRTIO_RING=y # CONFIG_VIRTIO_PCI is not set # CONFIG_VIRTIO_BALLOON is not set # # Library routines # CONFIG_BITREVERSE=y CONFIG_GENERIC_FIND_FIRST_BIT=y CONFIG_GENERIC_FIND_NEXT_BIT=y CONFIG_CRC_CCITT=m # CONFIG_CRC16 is not set CONFIG_CRC_ITU_T=m CONFIG_CRC32=y # CONFIG_CRC7 is not set CONFIG_LIBCRC32C=m CONFIG_PLIST=y CONFIG_HAS_IOMEM=y CONFIG_HAS_IOPORT=y CONFIG_HAS_DMA=y --=-JqoNgtRIIRvG5CU8iE5R Content-Disposition: attachment; filename=dmesg Content-Type: text/plain; name=dmesg; charset=UTF-8 Content-Transfer-Encoding: 7bit [ 0.000000] Linux version 2.6.26-rc4-add-drm-bug_on-00103-g1beee8d-dirty (simon@odie) (gcc version 4.2.4 (Gentoo 4.2.4 p1.0)) #5 PREEMPT Sun Jun 1 20:35:16 CEST 2008 [ 0.000000] BIOS-provided physical RAM map: [ 0.000000] BIOS-e820: 0000000000000000 - 000000000009fc00 (usable) [ 0.000000] BIOS-e820: 000000000009fc00 - 00000000000a0000 (reserved) [ 0.000000] BIOS-e820: 00000000000e0000 - 0000000000100000 (reserved) [ 0.000000] BIOS-e820: 0000000000100000 - 000000002fff0000 (usable) [ 0.000000] BIOS-e820: 000000002fff0000 - 000000002fffffc0 (ACPI data) [ 0.000000] BIOS-e820: 000000002fffffc0 - 0000000030000000 (ACPI NVS) [ 0.000000] BIOS-e820: 00000000ffb80000 - 00000000ffc00000 (reserved) [ 0.000000] BIOS-e820: 00000000fff80000 - 0000000100000000 (reserved) [ 0.000000] 767MB LOWMEM available. [ 0.000000] Zone PFN ranges: [ 0.000000] DMA 0 -> 4096 [ 0.000000] Normal 4096 -> 196592 [ 0.000000] Movable zone start PFN for each node [ 0.000000] early_node_map[1] active PFN ranges [ 0.000000] 0: 0 -> 196592 [ 0.000000] DMI 2.3 present. [ 0.000000] ACPI: RSDP 000E6010, 0014 (r0 OID_00) [ 0.000000] ACPI: RSDT 2FFFA7F0, 0034 (r1 INSYDE RSDT_000 1 _CSI 10101) [ 0.000000] ACPI: FACP 2FFFFB00, 0074 (r1 COMPAL DCL56 200 _CSI 10101) [ 0.000000] ACPI: DSDT 2FFFAC70, 4E8A (r1 COMPAL DCL561 6 MSFT 100000E) [ 0.000000] ACPI: FACS 2FFFFFC0, 0040 [ 0.000000] ACPI: BOOT 2FFFFB90, 0028 (r1 INSYDE SYS_BOOT 100 _CSI 10101) [ 0.000000] ACPI: DBGP 2FFFFBC0, 0034 (r1 INSYDE DBGP_000 100 _CSI 10101) [ 0.000000] ACPI: SSDT 2FFFA830, 029A (r1 INSYDE GV3Ref 2000 INTL 20021002) [ 0.000000] ACPI: DMI detected: Compal [ 0.000000] ACPI: PM-Timer IO Port: 0x1008 [ 0.000000] Allocating PCI resources starting at 40000000 (gap: 30000000:cfb80000) [ 0.000000] PM: Registered nosave memory: 000000000009f000 - 00000000000a0000 [ 0.000000] PM: Registered nosave memory: 00000000000a0000 - 00000000000e0000 [ 0.000000] PM: Registered nosave memory: 00000000000e0000 - 0000000000100000 [ 0.000000] Built 1 zonelists in Zone order, mobility grouping on. Total pages: 195056 [ 0.000000] Kernel command line: resume=/dev/hda5 root=/dev/hda6 video=radeonfb,1400x1050 netconsole=@10.0.0.8/,@10.0.0.9/ [ 0.000000] Local APIC disabled by BIOS -- you can enable it with "lapic" [ 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] PID hash table entries: 4096 (order: 12, 16384 bytes) [ 0.000000] Detected 1495.175 MHz processor. [ 0.004000] Console: colour VGA+ 80x25 [ 0.004000] console [tty0] enabled [ 0.004000] ------------------------ [ 0.004000] | Locking API testsuite: [ 0.004000] ---------------------------------------------------------------------------- [ 0.004000] | spin |wlock |rlock |mutex | wsem | rsem | [ 0.004000] -------------------------------------------------------------------------- [ 0.004000] A-A deadlock:failed|failed| ok |failed|failed|failed| [ 0.004000] A-B-B-A deadlock:failed|failed| ok |failed|failed|failed| [ 0.004000] A-B-B-C-C-A deadlock:failed|failed| ok |failed|failed|failed| [ 0.004000] A-B-C-A-B-C deadlock:failed|failed| ok |failed|failed|failed| [ 0.004000] A-B-B-C-C-D-D-A deadlock:failed|failed| ok |failed|failed|failed| [ 0.004000] A-B-C-D-B-D-D-A deadlock:failed|failed| ok |failed|failed|failed| [ 0.004000] A-B-C-D-B-C-D-A deadlock:failed|failed| ok |failed|failed|failed| [ 0.004000] double unlock:failed|failed|failed|failed|failed|failed| [ 0.004000] initialize held:failed|failed|failed|failed|failed|failed| [ 0.004000] bad unlock order: ok | ok | ok | ok | ok | ok | [ 0.004000] -------------------------------------------------------------------------- [ 0.004000] recursive read-lock: | ok | |failed| [ 0.004000] recursive read-lock #2: | ok | |failed| [ 0.004000] mixed read-write-lock: |failed| |failed| [ 0.004000] mixed write-read-lock: |failed| |failed| [ 0.004000] -------------------------------------------------------------------------- [ 0.004000] hard-irqs-on + irq-safe-A/12:failed|failed| ok | [ 0.004000] soft-irqs-on + irq-safe-A/12:failed|failed| ok | [ 0.004000] hard-irqs-on + irq-safe-A/21:failed|failed| ok | [ 0.004000] soft-irqs-on + irq-safe-A/21:failed|failed| ok | [ 0.004000] sirq-safe-A => hirqs-on/12:failed|failed| ok | [ 0.004000] sirq-safe-A => hirqs-on/21:failed|failed| ok | [ 0.004000] hard-safe-A + irqs-on/12:failed|failed| ok | [ 0.004000] soft-safe-A + irqs-on/12:failed|failed| ok | [ 0.004000] hard-safe-A + irqs-on/21:failed|failed| ok | [ 0.004000] soft-safe-A + irqs-on/21:failed|failed| ok | [ 0.004000] hard-safe-A + unsafe-B #1/123:failed|failed| ok | [ 0.004000] soft-safe-A + unsafe-B #1/123:failed|failed| ok | [ 0.004000] hard-safe-A + unsafe-B #1/132:failed|failed| ok | [ 0.004000] soft-safe-A + unsafe-B #1/132:failed|failed| ok | [ 0.004000] hard-safe-A + unsafe-B #1/213:failed|failed| ok | [ 0.004000] soft-safe-A + unsafe-B #1/213:failed|failed| ok | [ 0.004000] hard-safe-A + unsafe-B #1/231:failed|failed| ok | [ 0.004000] soft-safe-A + unsafe-B #1/231:failed|failed| ok | [ 0.004000] hard-safe-A + unsafe-B #1/312:failed|failed| ok | [ 0.004000] soft-safe-A + unsafe-B #1/312:failed|failed| ok | [ 0.004000] hard-safe-A + unsafe-B #1/321:failed|failed| ok | [ 0.004000] soft-safe-A + unsafe-B #1/321:failed|failed| ok | [ 0.004000] hard-safe-A + unsafe-B #2/123:failed|failed| ok | [ 0.004000] soft-safe-A + unsafe-B #2/123:failed|failed| ok | [ 0.004000] hard-safe-A + unsafe-B #2/132:failed|failed| ok | [ 0.004000] soft-safe-A + unsafe-B #2/132:failed|failed| ok | [ 0.004000] hard-safe-A + unsafe-B #2/213:failed|failed| ok | [ 0.004000] soft-safe-A + unsafe-B #2/213:failed|failed| ok | [ 0.004000] hard-safe-A + unsafe-B #2/231:failed|failed| ok | [ 0.004000] soft-safe-A + unsafe-B #2/231:failed|failed| ok | [ 0.004000] hard-safe-A + unsafe-B #2/312:failed|failed| ok | [ 0.004000] soft-safe-A + unsafe-B #2/312:failed|failed| ok | [ 0.004000] hard-safe-A + unsafe-B #2/321:failed|failed| ok | [ 0.004000] soft-safe-A + unsafe-B #2/321:failed|failed| ok | [ 0.004000] hard-irq lock-inversion/123:failed|failed| ok | [ 0.004000] soft-irq lock-inversion/123:failed|failed| ok | [ 0.004000] hard-irq lock-inversion/132:failed|failed| ok | [ 0.004000] soft-irq lock-inversion/132:failed|failed| ok | [ 0.004000] hard-irq lock-inversion/213:failed|failed| ok | [ 0.004000] soft-irq lock-inversion/213:failed|failed| ok | [ 0.004000] hard-irq lock-inversion/231:failed|failed| ok | [ 0.004000] soft-irq lock-inversion/231:failed|failed| ok | [ 0.004000] hard-irq lock-inversion/312:failed|failed| ok | [ 0.004000] soft-irq lock-inversion/312:failed|failed| ok | [ 0.004000] hard-irq lock-inversion/321:failed|failed| ok | [ 0.004000] soft-irq lock-inversion/321:failed|failed| ok | [ 0.004000] hard-irq read-recursion/123: ok | [ 0.004000] soft-irq read-recursion/123: ok | [ 0.004000] hard-irq read-recursion/132: ok | [ 0.004000] soft-irq read-recursion/132: ok | [ 0.004000] hard-irq read-recursion/213: ok | [ 0.004000] soft-irq read-recursion/213: ok | [ 0.004000] hard-irq read-recursion/231: ok | [ 0.004000] soft-irq read-recursion/231: ok | [ 0.004000] hard-irq read-recursion/312: ok | [ 0.004000] soft-irq read-recursion/312: ok | [ 0.004000] hard-irq read-recursion/321: ok | [ 0.004000] soft-irq read-recursion/321: ok | [ 0.004000] -------------------------------------------------------- [ 0.004000] 145 out of 218 testcases failed, as expected. | [ 0.004000] ---------------------------------------------------- [ 0.004000] Dentry cache hash table entries: 131072 (order: 7, 524288 bytes) [ 0.004000] Inode-cache hash table entries: 65536 (order: 6, 262144 bytes) [ 0.004000] Memory: 775516k/786368k available (1903k kernel code, 10376k reserved, 934k data, 212k init, 0k highmem) [ 0.004000] virtual kernel memory layout: [ 0.004000] fixmap : 0xffff4000 - 0xfffff000 ( 44 kB) [ 0.004000] vmalloc : 0xf0800000 - 0xffff2000 ( 247 MB) [ 0.004000] lowmem : 0xc0000000 - 0xefff0000 ( 767 MB) [ 0.004000] .init : 0xc03c8000 - 0xc03fd000 ( 212 kB) [ 0.004000] .data : 0xc02dbc83 - 0xc03c5790 ( 934 kB) [ 0.004000] .text : 0xc0100000 - 0xc02dbc83 (1903 kB) [ 0.004000] Checking if this processor honours the WP bit even in supervisor mode...Ok. [ 0.084074] Calibrating delay using timer specific routine.. 2992.77 BogoMIPS (lpj=5985543) [ 0.084277] Mount-cache hash table entries: 512 [ 0.084514] CPU: L1 I cache: 32K, L1 D cache: 32K [ 0.084617] CPU: L2 cache: 1024K [ 0.084686] Intel machine check architecture supported. [ 0.084759] Intel machine check reporting enabled on CPU#0. [ 0.084835] CPU: Intel(R) Pentium(R) M processor 1500MHz stepping 05 [ 0.084975] Checking 'hlt' instruction... OK. [ 0.102898] Freeing SMP alternatives: 0k freed [ 0.102968] ACPI: Core revision 20080321 [ 0.112677] ACPI: setting ELCR to 0200 (from 0c00) [ 0.119653] net_namespace: 480 bytes [ 0.119727] Booting paravirtualized kernel on bare hardware [ 0.120114] NET: Registered protocol family 16 [ 0.120398] ACPI: bus type pci registered [ 0.120653] PCI: PCI BIOS revision 2.10 entry at 0xe97a4, last bus=2 [ 0.120727] PCI: Using configuration type 1 for base access [ 0.120801] Setting up standard PCI resources [ 0.133248] ACPI: Interpreter enabled [ 0.133320] ACPI: (supports S0 S1 S3 S4 S5) [ 0.133561] ACPI: Using PIC for interrupt routing [ 0.181752] ACPI: EC: GPE = 0x1c, I/O: command/status = 0x66, data = 0x62 [ 0.181828] ACPI: EC: driver started in poll mode [ 0.181946] ACPI: PCI Root Bridge [PCI0] (0000:00) [ 0.182442] pci 0000:00:1f.0: quirk: region 1000-107f claimed by ICH4 ACPI/GPIO/TCO [ 0.183256] pci 0000:00:1f.0: quirk: region 1300-133f claimed by ICH4 GPIO [ 0.183855] PCI: Transparent bridge - 0000:00:1e.0 [ 0.191958] ACPI: PCI Interrupt Link [LNKA] (IRQs 5 *10) [ 0.192287] ACPI: PCI Interrupt Link [LNKB] (IRQs 5 10) *11 [ 0.192631] ACPI: PCI Interrupt Link [LNKC] (IRQs 5 10) *11 [ 0.192972] ACPI: PCI Interrupt Link [LNKD] (IRQs 5 10) *11 [ 0.193322] ACPI: PCI Interrupt Link [LNKE] (IRQs 3 4 5 7 10 11 12 14 15) *0, disabled. [ 0.193958] ACPI: PCI Interrupt Link [LNKF] (IRQs 3 4 5 7 10 11 12 14 15) *0, disabled. [ 0.194597] ACPI: PCI Interrupt Link [LNKG] (IRQs 3 4 5 7 10 11 12 14 15) *0, disabled. [ 0.195232] ACPI: PCI Interrupt Link [LNKH] (IRQs 5 10) *11 [ 0.195643] Linux Plug and Play Support v0.97 (c) Adam Belay [ 0.195747] pnp: PnP ACPI init [ 0.195821] ACPI: bus type pnp registered [ 0.220379] pnp: PnP ACPI: found 11 devices [ 0.220449] ACPI: ACPI bus type pnp unregistered [ 0.220760] SCSI subsystem initialized [ 0.220961] PCI: Using ACPI for IRQ routing [ 0.221068] PCI: Cannot allocate resource region 0 of device 0000:02:03.0 [ 0.221294] system 00:01: ioport range 0x1000-0x107f has been reserved [ 0.221369] system 00:01: ioport range 0x1300-0x133f has been reserved [ 0.221442] system 00:01: ioport range 0x200-0x20f has been reserved [ 0.221516] system 00:01: ioport range 0x4d0-0x4d1 has been reserved [ 0.221590] system 00:01: ioport range 0xfe00-0xfe00 has been reserved [ 0.221664] system 00:01: ioport range 0xff2c-0xff2f has been reserved [ 0.221738] system 00:01: iomem range 0xfff80000-0xffffffff could not be reserved [ 0.252295] PCI: Bridge: 0000:00:01.0 [ 0.252365] IO window: c000-dfff [ 0.252434] MEM window: 0xe0000000-0xefffffff [ 0.252505] PREFETCH window: 0x00000000a0000000-0x00000000afffffff [ 0.252587] PCI: Bus 3, cardbus bridge: 0000:02:03.0 [ 0.252657] IO window: 0x0000a400-0x0000a4ff [ 0.252728] IO window: 0x0000a800-0x0000a8ff [ 0.252800] PREFETCH window: 0x90000000-0x93ffffff [ 0.252872] MEM window: 0xd4000000-0xd7ffffff [ 0.252943] PCI: Bridge: 0000:00:1e.0 [ 0.253011] IO window: a000-bfff [ 0.253082] MEM window: 0xd0000000-0xdfffffff [ 0.253154] PREFETCH window: 0x0000000090000000-0x000000009fffffff [ 0.253451] ACPI: PCI Interrupt Link [LNKC] enabled at IRQ 10 [ 0.253528] ACPI: PCI Interrupt 0000:02:03.0[A] -> Link [LNKC] -> GSI 10 (level, low) -> IRQ 10 [ 0.253736] NET: Registered protocol family 2 [ 0.253919] IP route cache hash table entries: 32768 (order: 5, 131072 bytes) [ 0.254339] TCP established hash table entries: 131072 (order: 8, 1048576 bytes) [ 0.256101] TCP bind hash table entries: 65536 (order: 6, 262144 bytes) [ 0.256713] TCP: Hash tables configured (established 131072 bind 65536) [ 0.256789] TCP reno registered [ 0.257028] NET: Registered protocol family 1 [ 0.257414] Simple Boot Flag at 0x37 set to 0x80 [ 0.260269] Kprobe smoke test started [ 0.262118] Kprobe smoke test passed successfully [ 0.262518] msgmni has been set to 1514 for ipc namespace c03afb70 [ 0.262625] io scheduler noop registered [ 0.262694] io scheduler anticipatory registered [ 0.262763] io scheduler deadline registered [ 0.262848] io scheduler cfq registered (default) [ 0.263286] ACPI: AC Adapter [ACAD] (off-line) [ 0.280508] ACPI: Battery Slot [BAT1] (battery present) [ 0.280758] input: Power Button (FF) as /devices/LNXSYSTM:00/LNXPWRBN:00/input/input0 [ 0.280863] ACPI: Power Button (FF) [PWRF] [ 0.280946] ACPI Error (evxfevnt-0186): Could not enable SleepButton event [20080321] [ 0.281116] ACPI Warning (evxface-0145): Could not enable fixed event 3 [20080321] [ 0.281378] input: Lid Switch as /devices/LNXSYSTM:00/device:00/PNP0C0D:00/input/input1 [ 0.281536] ACPI: Lid Switch [LID] [ 0.281690] input: Power Button (CM) as /devices/LNXSYSTM:00/device:00/PNP0C0C:00/input/input2 [ 0.281796] ACPI: Power Button (CM) [PWRB] [ 0.282242] ACPI: CPU0 (power states: C1[C1] C2[C2] C3[C3] C4[C3]) [ 0.282524] ACPI: ACPI0007:00 is registered as cooling_device0 [ 0.282599] ACPI: Processor [CPU0] (supports 8 throttling states) [ 0.285847] Serial: 8250/16550 driver $Revision: 1.90 $ 4 ports, IRQ sharing disabled [ 0.286118] serial8250: ttyS1 at I/O 0x2f8 (irq = 3) is a 16550A [ 0.286819] ACPI: PCI Interrupt Link [LNKB] enabled at IRQ 10 [ 0.286892] ACPI: PCI Interrupt 0000:00:1f.6[B] -> Link [LNKB] -> GSI 10 (level, low) -> IRQ 10 [ 0.287068] ACPI: PCI interrupt for device 0000:00:1f.6 disabled [ 0.288576] brd: module loaded [ 0.288697] 8139too Fast Ethernet driver 0.9.28 [ 0.288971] ACPI: PCI Interrupt Link [LNKD] enabled at IRQ 10 [ 0.289043] ACPI: PCI Interrupt 0000:02:01.0[A] -> Link [LNKD] -> GSI 10 (level, low) -> IRQ 10 [ 0.289769] eth0: RealTek RTL8139 at 0xf0816000, 00:02:3f:17:bd:36, IRQ 10 [ 0.289890] netconsole: local port 6665 [ 0.289959] netconsole: local IP 10.0.0.8 [ 0.290027] netconsole: interface eth0 [ 0.290095] netconsole: remote port 6666 [ 0.290163] netconsole: remote IP 10.0.0.9 [ 0.290233] netconsole: remote ethernet address ff:ff:ff:ff:ff:ff [ 0.290306] netconsole: device eth0 not up yet, forcing it [ 0.290424] eth0: link up, 100Mbps, full-duplex, lpa 0x45E1 [ 0.290779] netconsole: carrier detect appears untrustworthy, waiting 4 seconds [ 0.332012] Marking TSC unstable due to: possible TSC halt in C2. [ 1.253910] Clocksource tsc unstable (delta = -498395173 ns) [ 4.292281] console [netcon0] enabled [ 4.316437] netconsole: network logging started [ 4.316576] Uniform Multi-Platform E-IDE driver [ 4.316651] ide: Assuming 33MHz system bus speed for PIO modes; override with idebus=xx [ 4.316892] ICH4: IDE controller (0x8086:0x24ca rev 0x03) at PCI slot 0000:00:1f.1 [ 4.317006] PIIX_IDE 0000:00:1f.1: enabling device (0005 -> 0007) [ 4.317101] ACPI: PCI Interrupt 0000:00:1f.1[A] -> Link [LNKC] -> GSI 10 (level, low) -> IRQ 10 [ 4.317299] ICH4: not 100% native mode: will probe irqs later [ 4.317398] ide0: BM-DMA at 0x1100-0x1107 [ 4.317488] ide1: BM-DMA at 0x1108-0x110f [ 4.604377] hda: HTS548060M9AT00, ATA DISK drive [ 5.276504] hda: UDMA/100 mode selected [ 6.012378] hdc: QSI CD-RW/DVD-ROM SBW-242, ATAPI CD/DVD-ROM drive [ 6.684364] hdc: UDMA/33 mode selected [ 6.684596] ide0 at 0x1f0-0x1f7,0x3f6 on irq 14 [ 6.684737] ide1 at 0x170-0x177,0x376 on irq 15 [ 6.685058] ide_generic: I/O resource 0x1F0-0x1F7 not free. [ 6.685134] ide_generic: I/O resource 0x170-0x177 not free. [ 6.685267] hda: max request size: 512KiB [ 6.701574] hda: 117210240 sectors (60011 MB) w/7877KiB Cache, CHS=16383/255/63 [ 6.701844] hda: cache flushes supported [ 6.701844] hda: hda1 hda2 hda3 hda4 < hda5 hda6 > [ 6.753465] hdc: ATAPI 24X DVD-ROM CD-R/RW drive, 2048kB Cache [ 6.753465] Uniform CD-ROM driver Revision: 3.20 [ 6.754093] Driver 'sd' needs updating - please use bus_type methods [ 6.754093] PNP: PS/2 Controller [PNP0303:KBC0,PNP0f13:MSE0] at 0x60,0x64 irq 1,12 [ 6.756340] i8042.c: Detected active multiplexing controller, rev 1.1. [ 6.756466] serio: i8042 KBD port at 0x60,0x64 irq 1 [ 6.756543] serio: i8042 AUX0 port at 0x60,0x64 irq 12 [ 6.756624] serio: i8042 AUX1 port at 0x60,0x64 irq 12 [ 6.756705] serio: i8042 AUX2 port at 0x60,0x64 irq 12 [ 6.756786] serio: i8042 AUX3 port at 0x60,0x64 irq 12 [ 6.756953] mice: PS/2 mouse device common for all mice [ 6.760038] input: AT Translated Set 2 keyboard as /devices/platform/i8042/serio0/input/input3 [ 6.764401] TCP cubic registered [ 6.764474] NET: Registered protocol family 17 [ 6.764570] Using IPI Shortcut mode [ 7.341038] Synaptics Touchpad, model: 1, fw: 5.9, id: 0x254ab1, caps: 0x804713/0x0 [ 7.371170] input: SynPS/2 Synaptics TouchPad as /devices/platform/i8042/serio4/input/input4 [ 7.418604] ReiserFS: hda6: found reiserfs format "3.6" with standard journal [ 7.418604] ReiserFS: hda6: using ordered data mode [ 7.428087] ReiserFS: hda6: journal params: device hda6, size 8192, journal first block 18, max trans len 1024, max batch 900, max commit age 30, max trans age 30 [ 7.428087] ReiserFS: hda6: checking transaction log (hda6) [ 7.507233] ReiserFS: hda6: Using r5 hash to sort names [ 7.520655] VFS: Mounted root (reiserfs filesystem) readonly. [ 7.520655] Freeing unused kernel memory: 212k freed [ 11.978813] Real Time Clock Driver v1.12ac [ 12.169440] iTCO_wdt: Intel TCO WatchDog Timer Driver v1.03 (30-Apr-2008) [ 12.169620] iTCO_wdt: Found a ICH4-M TCO device (Version=1, TCOBASE=0x1060) [ 12.169737] iTCO_wdt: initialized. heartbeat=30 sec (nowayout=0) [ 13.239501] Linux agpgart interface v0.103 [ 13.427168] ieee80211_crypt: registered algorithm 'NULL' [ 13.545056] ACPI: PCI Interrupt 0000:00:1f.3[B] -> Link [LNKB] -> GSI 10 (level, low) -> IRQ 10 [ 14.956652] agpgart: Detected an Intel 855PM Chipset. [ 14.960476] agpgart: AGP aperture is 64M @ 0xb0000000 [ 15.197065] ACPI: PCI Interrupt 0000:02:00.0[A] -> Link [LNKB] -> GSI 10 (level, low) -> IRQ 10 [ 15.276030] firewire_ohci: Added fw-ohci device 0000:02:00.0, OHCI version 1.0 [ 15.580286] ieee80211: 802.11 data/management/control stack, git-1.1.13 [ 15.580377] ieee80211: Copyright (C) 2004-2005 Intel Corporation [ 15.776137] firewire_core: created device fw0: GUID 00023f4552000905, S400 [ 16.054903] ipw2200: Intel(R) PRO/Wireless 2200/2915 Network Driver, 1.2.2kmpr [ 16.055026] ipw2200: Copyright(c) 2003-2006 Intel Corporation [ 16.055260] ACPI: PCI Interrupt 0000:02:02.0[A] -> Link [LNKC] -> GSI 10 (level, low) -> IRQ 10 [ 16.055554] ipw2200: Detected Intel PRO/Wireless 2200BG Network Connection [ 16.055693] firmware: requesting ipw2200-bss.fw [ 16.743494] usbcore: registered new interface driver usbfs [ 16.743630] usbcore: registered new interface driver hub [ 16.743770] usbcore: registered new device driver usb [ 16.878453] ipw2200: Detected geography ZZM (11 802.11bg channels, 0 802.11a channels) [ 16.878908] ACPI: PCI Interrupt Link [LNKA] enabled at IRQ 10 [ 16.878984] ACPI: PCI Interrupt 0000:01:00.0[A] -> Link [LNKA] -> GSI 10 (level, low) -> IRQ 10 [ 16.879793] radeonfb: Retrieved PLL infos from BIOS [ 16.879867] radeonfb: Reference=27.00 MHz (RefDiv=6) Memory=390.00 Mhz, System=200.00 MHz [ 16.879985] radeonfb: PLL min 20000 max 35000 [ 17.221829] USB Universal Host Controller Interface driver v3.0 [ 17.480040] Non-DDC laptop panel detected [ 17.577162] i2c-adapter i2c-3: unable to read EDID block. [ 17.729158] i2c-adapter i2c-3: unable to read EDID block. [ 17.881158] i2c-adapter i2c-3: unable to read EDID block. [ 18.237035] radeonfb: Monitor 1 type LCD found [ 18.237107] radeonfb: Monitor 2 type no found [ 18.237200] radeonfb: panel ID string: AUO [ 18.237274] radeonfb: detected LVDS panel size from BIOS: 1400x1050 [ 18.237359] radeondb: BIOS provided dividers will be used [ 18.237488] radeonfb: Dynamic Clock Power Management enabled [ 18.238049] radeonfb (0000:01:00.0): ATI Radeon 4e50 "NP" [ 18.238831] ACPI: PCI Interrupt 0000:00:1d.0[A] -> Link [LNKA] -> GSI 10 (level, low) -> IRQ 10 [ 18.239039] PCI: Setting latency timer of device 0000:00:1d.0 to 64 [ 18.239135] uhci_hcd 0000:00:1d.0: UHCI Host Controller [ 18.239395] uhci_hcd 0000:00:1d.0: new USB bus registered, assigned bus number 1 [ 18.239535] uhci_hcd 0000:00:1d.0: irq 10, io base 0x00001200 [ 18.239732] usb usb1: configuration #1 chosen from 1 choice [ 18.239853] hub 1-0:1.0: USB hub found [ 18.239930] hub 1-0:1.0: 2 ports detected [ 18.344561] ACPI: PCI Interrupt Link [LNKH] enabled at IRQ 10 [ 18.344648] ACPI: PCI Interrupt 0000:00:1d.7[D] -> Link [LNKH] -> GSI 10 (level, low) -> IRQ 10 [ 18.344894] PCI: Setting latency timer of device 0000:00:1d.7 to 64 [ 18.344970] ehci_hcd 0000:00:1d.7: EHCI Host Controller [ 18.345094] ehci_hcd 0000:00:1d.7: new USB bus registered, assigned bus number 2 [ 18.349143] ehci_hcd 0000:00:1d.7: debug port 1 [ 18.349220] PCI: cache line size of 32 is not supported by device 0000:00:1d.7 [ 18.350063] ehci_hcd 0000:00:1d.7: irq 10, io mem 0xf4000000 [ 18.364037] ehci_hcd 0000:00:1d.7: USB 2.0 started, EHCI 1.00, driver 10 Dec 2004 [ 18.364282] usb usb2: configuration #1 chosen from 1 choice [ 18.364403] hub 2-0:1.0: USB hub found [ 18.364482] hub 2-0:1.0: 6 ports detected [ 18.468165] ACPI: PCI Interrupt 0000:00:1d.1[B] -> Link [LNKD] -> GSI 10 (level, low) -> IRQ 10 [ 18.468409] PCI: Setting latency timer of device 0000:00:1d.1 to 64 [ 18.468486] uhci_hcd 0000:00:1d.1: UHCI Host Controller [ 18.468609] uhci_hcd 0000:00:1d.1: new USB bus registered, assigned bus number 3 [ 18.468749] uhci_hcd 0000:00:1d.1: irq 10, io base 0x00001600 [ 18.468936] usb usb3: configuration #1 chosen from 1 choice [ 18.469053] hub 3-0:1.0: USB hub found [ 18.469147] hub 3-0:1.0: 2 ports detected [ 18.572211] ACPI: PCI Interrupt 0000:00:1d.2[C] -> Link [LNKC] -> GSI 10 (level, low) -> IRQ 10 [ 18.572434] PCI: Setting latency timer of device 0000:00:1d.2 to 64 [ 18.572535] uhci_hcd 0000:00:1d.2: UHCI Host Controller [ 18.572647] uhci_hcd 0000:00:1d.2: new USB bus registered, assigned bus number 4 [ 18.572789] uhci_hcd 0000:00:1d.2: irq 10, io base 0x00001700 [ 18.572982] usb usb4: configuration #1 chosen from 1 choice [ 18.573106] hub 4-0:1.0: USB hub found [ 18.573183] hub 4-0:1.0: 2 ports detected [ 18.676259] ACPI: PCI Interrupt 0000:00:1f.5[B] -> Link [LNKB] -> GSI 10 (level, low) -> IRQ 10 [ 18.676512] PCI: Setting latency timer of device 0000:00:1f.5 to 64 [ 18.892031] usb 3-1: new low speed USB device using uhci_hcd and address 2 [ 19.069861] usb 3-1: configuration #1 chosen from 1 choice [ 19.235370] input: Logitech USB Receiver as /devices/pci0000:00/0000:00:1d.1/usb3/3-1/3-1:1.0/input/input5 [ 19.235735] input: USB HID v1.10 Keyboard [Logitech USB Receiver] on usb-0000:00:1d.1-1 [ 19.266930] input: Logitech USB Receiver as /devices/pci0000:00/0000:00:1d.1/usb3/3-1/3-1:1.1/input/input6 [ 19.273565] input: USB HID v1.10 Mouse [Logitech USB Receiver] on usb-0000:00:1d.1-1 [ 19.273809] usbcore: registered new interface driver usbhid [ 19.273885] usbhid: v2.6:USB HID core driver [ 19.512039] intel8x0_measure_ac97_clock: measured 55877 usecs [ 19.512126] intel8x0: clocking to 48000 [ 31.335981] Bridge firewalling registered [ 32.733034] ieee80211_crypt: registered algorithm 'WEP' [ 35.388501] Adding 987956k swap on /dev/hda5. Priority:-1 extents:1 across:987956k [ 68.231743] tun: Universal TUN/TAP device driver, 1.6 [ 68.232113] tun: (C) 1999-2004 Max Krasnyansky [ 79.847234] [drm] Initialized drm 1.1.0 20060810 [ 80.357148] [drm] Initialized radeon 1.28.0 20060524 on minor 0 [ 81.577446] agpgart: Found an AGP 2.0 compliant device at 0000:00:00.0. [ 81.577496] agpgart: Putting AGP V2 device at 0000:00:00.0 into 4x mode [ 81.577550] agpgart: Putting AGP V2 device at 0000:01:00.0 into 4x mode [ 82.884239] [drm] Setting GART location based on new memory map [ 82.884260] [drm] Loading R300 Microcode [ 82.884345] [drm] writeback test succeeded in 2 usecs [ 92.635604] [drm:radeon_cp_idle] *ERROR* radeon_cp_idle called without lock held, held 0 owner ec3c5780 ec3c5780 [ 92.635604] Pid: 2413, comm: X Not tainted 2.6.26-rc4-add-drm-bug_on-00103-g1beee8d-dirty #5 [ 92.635604] [] radeon_cp_idle+0x72/0x9c [radeon] [ 92.635604] [] drm_ioctl+0x1a7/0x21b [drm] [ 92.635604] [] ? radeon_cp_idle+0x0/0x9c [radeon] [ 92.635604] [] vfs_ioctl+0x4e/0x67 [ 92.635604] [] do_vfs_ioctl+0x257/0x265 [ 92.635604] [] ? do_page_fault+0x33c/0x616 [ 92.635604] [] sys_ioctl+0x2c/0x48 [ 92.635604] [] sysenter_past_esp+0x78/0xb1 [ 92.635604] ======================= [ 92.635604] [drm:radeon_cp_reset] *ERROR* radeon_cp_reset called without lock held, held 0 owner ec3c5780 ec3c5780 [ 92.635604] Pid: 2413, comm: X Not tainted 2.6.26-rc4-add-drm-bug_on-00103-g1beee8d-dirty #5 [ 92.635604] [] radeon_cp_reset+0x72/0xca [radeon] [ 92.635604] [] drm_ioctl+0x1a7/0x21b [drm] [ 92.635604] [] ? radeon_cp_reset+0x0/0xca [radeon] [ 92.635604] [] vfs_ioctl+0x4e/0x67 [ 92.635604] [] do_vfs_ioctl+0x257/0x265 [ 92.635604] [] sys_ioctl+0x2c/0x48 [ 92.635604] [] sysenter_past_esp+0x78/0xb1 [ 92.635604] ======================= [ 92.635604] [drm:radeon_cp_start] *ERROR* radeon_cp_start called without lock held, held 0 owner ec3c5780 ec3c5780 [ 92.635604] Pid: 2413, comm: X Not tainted 2.6.26-rc4-add-drm-bug_on-00103-g1beee8d-dirty #5 [ 92.635604] [] radeon_cp_start+0x76/0x248 [radeon] [ 92.635604] [] drm_ioctl+0x1a7/0x21b [drm] [ 92.635604] [] ? radeon_cp_start+0x0/0x248 [radeon] [ 92.635604] [] vfs_ioctl+0x4e/0x67 [ 92.635604] [] do_vfs_ioctl+0x257/0x265 [ 92.635604] [] sys_ioctl+0x2c/0x48 [ 92.635604] [] sysenter_past_esp+0x78/0xb1 [ 92.635604] ======================= [ 92.635604] [drm:radeon_cp_idle] *ERROR* radeon_cp_idle called without lock held, held 0 owner ec3c5780 ec3c5780 [ 92.635604] Pid: 2413, comm: X Not tainted 2.6.26-rc4-add-drm-bug_on-00103-g1beee8d-dirty #5 [ 92.635604] [] radeon_cp_idle+0x72/0x9c [radeon] [ 92.635604] [] drm_ioctl+0x1a7/0x21b [drm] [ 92.635604] [] ? radeon_cp_idle+0x0/0x9c [radeon] [ 92.635604] [] vfs_ioctl+0x4e/0x67 [ 92.635604] [] do_vfs_ioctl+0x257/0x265 [ 92.635604] [] sys_ioctl+0x2c/0x48 [ 92.635604] [] sysenter_past_esp+0x78/0xb1 [ 92.635604] ======================= [ 92.635604] [drm:radeon_cp_reset] *ERROR* radeon_cp_reset called without lock held, held 0 owner ec3c5780 ec3c5780 [ 92.635604] Pid: 2413, comm: X Not tainted 2.6.26-rc4-add-drm-bug_on-00103-g1beee8d-dirty #5 [ 92.635604] [] radeon_cp_reset+0x72/0xca [radeon] [ 92.635604] [] drm_ioctl+0x1a7/0x21b [drm] [ 92.635604] [] ? radeon_cp_reset+0x0/0xca [radeon] [ 92.635604] [] vfs_ioctl+0x4e/0x67 [ 92.635604] [] do_vfs_ioctl+0x257/0x265 [ 92.635604] [] sys_ioctl+0x2c/0x48 [ 92.635604] [] sysenter_past_esp+0x78/0xb1 [ 92.635604] ======================= [ 92.635604] [drm:radeon_cp_start] *ERROR* radeon_cp_start called without lock held, held 0 owner ec3c5780 ec3c5780 [ 92.635604] Pid: 2413, comm: X Not tainted 2.6.26-rc4-add-drm-bug_on-00103-g1beee8d-dirty #5 [ 92.635604] [] radeon_cp_start+0x76/0x248 [radeon] [ 92.635604] [] drm_ioctl+0x1a7/0x21b [drm] [ 92.635604] [] ? radeon_cp_start+0x0/0x248 [radeon] [ 92.635604] [] vfs_ioctl+0x4e/0x67 [ 92.635604] [] do_vfs_ioctl+0x257/0x265 [ 92.635604] [] sys_ioctl+0x2c/0x48 [ 92.635604] [] sysenter_past_esp+0x78/0xb1 [ 92.635604] ======================= [ 92.635604] [drm:radeon_cp_idle] *ERROR* radeon_cp_idle called without lock held, held 0 owner ec3c5780 ec3c5780 [ 92.635604] Pid: 2413, comm: X Not tainted 2.6.26-rc4-add-drm-bug_on-00103-g1beee8d-dirty #5 [ 92.635604] [] radeon_cp_idle+0x72/0x9c [radeon] [ 92.635604] [] drm_ioctl+0x1a7/0x21b [drm] [ 92.635604] [] ? radeon_cp_idle+0x0/0x9c [radeon] [ 92.635604] [] vfs_ioctl+0x4e/0x67 [ 92.635604] [] do_vfs_ioctl+0x257/0x265 [ 92.635604] [] sys_ioctl+0x2c/0x48 [ 92.635604] [] sysenter_past_esp+0x78/0xb1 [ 92.635604] ======================= [ 92.635604] ------------[ cut here ]------------ [ 92.635604] kernel BUG at drivers/char/drm/radeon_cp.c:2116! [ 92.635604] invalid opcode: 0000 [#1] PREEMPT [ 92.635604] Modules linked in: radeon drm tun arc4 ecb crypto_blkcipher cryptomgr crypto_algapi ieee80211_crypt_wep bridge llc snd_seq snd_seq_device usbhid snd_intel8x0 snd_ac97_codec uhci_hcd ehci_hcd usbcore radeonfb ac97_bus fb snd_pcm ipw2200 ieee80211 fb_ddc snd_timer snd firewire_ohci backlight i2c_algo_bit intel_agp firewire_core cfbcopyarea cfbimgblt i2c_i801 soundcore ieee80211_crypt agpgart i2c_core firmware_class crc_itu_t cfbfillrect iTCO_wdt snd_page_alloc rtc [ 92.635604] [ 92.635604] Pid: 2413, comm: X Not tainted (2.6.26-rc4-add-drm-bug_on-00103-g1beee8d-dirty #5) [ 92.635604] EIP: 0060:[] EFLAGS: 00213246 CPU: 0 [ 92.635604] EIP is at radeon_cp_idle+0x82/0x9c [radeon] [ 92.635604] EAX: 00000003 EBX: eee3c400 ECX: 00000001 EDX: c035809e [ 92.635604] ESI: ec3c5780 EDI: ec39f400 EBP: ed5f9f2c ESP: ed5f9f20 [ 92.635604] DS: 007b ES: 007b FS: 0000 GS: 0033 SS: 0068 [ 92.635604] Process X (pid: 2413, ti=ed5f8000 task=ef921c40 task.ti=ed5f8000) [ 92.635604] Stack: 00000000 f1beec9c 00006444 ed5f9f50 f0a5d7f8 ec3c5780 eee3c400 eee3c424 [ 92.635604] f1bd86ad f1bed1ac ed5dd4c0 00000000 ed5f9f6c c016d79a 00000000 00006444 [ 92.635604] ebcd63e0 ed5dd4c0 00000000 ed5f9f98 c016da0a 00000008 00000000 ef657870 [ 92.635604] Call Trace: [ 92.635604] [] ? drm_ioctl+0x1a7/0x21b [drm] [ 92.635604] [] ? radeon_cp_idle+0x0/0x9c [radeon] [ 92.635604] [] ? vfs_ioctl+0x4e/0x67 [ 92.635604] [] ? do_vfs_ioctl+0x257/0x265 [ 92.635604] [] ? sys_ioctl+0x2c/0x48 [ 92.635604] [] ? sysenter_past_esp+0x78/0xb1 [ 92.635604] ======================= [ 92.635604] Code: 68 5e 7f be f1 e8 1e 24 54 ce 83 c4 18 83 3d 4c ef be f1 02 7f 22 e8 87 cd 52 ce a1 4c ef be f1 40 83 f8 03 a3 4c ef be f1 75 0d <0f> 0b eb fe 89 f8 e8 33 fe ff ff eb 05 b8 ea ff ff ff 8d 65 f4 [ 92.635604] EIP: [] radeon_cp_idle+0x82/0x9c [radeon] SS:ESP 0068:ed5f9f20 [ 92.643835] ---[ end trace fa67bf9783eb67d1 ]--- [ 92.652013] [drm:drm_release] *ERROR* Device busy: 1 0 [ 117.303633] SysRq : HELP : loglevel0-8 reBoot Crashdump tErm Full kIll saK showMem Nice powerOff showPc show-all-timers(Q) unRaw Sync showTasks Unmount shoW-blocked-tasks [ 142.927371] SysRq : Show State [ 142.927371] task PC stack pid father [ 142.927371] init S ef841b44 0 1 0 [ 142.927371] ef841b3c 00000086 ef83fbc0 ef841b44 ef841b44 ef83fd20 ef83fd20 00000000 [ 142.927371] efb80e00 ef841b44 ffff6b4d 00000400 ef841b7c c02d71bf c041efa0 c041efa0 [ 142.927371] ffff6b4d c0121a6c ef83fbc0 c041e640 c02d71ba 74696e69 00726500 00000000 [ 142.927371] Call Trace: [ 142.927371] [] schedule_timeout+0x6b/0x89 [ 142.927371] [] ? process_timeout+0x0/0xa [ 142.927371] [] ? schedule_timeout+0x66/0x89 [ 142.927371] [] do_select+0x478/0x4cd [ 142.927371] [] ? __pollwait+0x0/0xb0 [ 142.927371] [] ? default_wake_function+0x0/0xd [ 142.927371] [] ? pathrelse+0x1b/0x2f [ 142.927371] [] ? reiserfs_update_sd_size+0x233/0x23b [ 142.927371] [] ? inode_get_bytes+0x23/0x4b [ 142.927371] [] ? up+0x50/0x66 [ 142.927371] [] ? do_journal_end+0x27b/0xa8b [ 142.927371] [] ? autoremove_wake_function+0x0/0x30 [ 142.927371] [] ? journal_end+0xa7/0xb0 [ 142.927371] [] ? balance_dirty_pages_ratelimited_nr+0x228/0x242 [ 142.927371] [] ? generic_file_buffered_write+0x131/0x549 [ 142.927371] [] ? generic_file_buffered_write+0x16a/0x549 [ 142.927371] [] ? get_page_from_freelist+0x32c/0x3e4 [ 142.927371] [] ? xattr_lookup_poison+0x52/0x60 [ 142.927371] [] ? __d_lookup+0x120/0x13c [ 142.927371] [] core_sys_select+0x1e9/0x2c7 [ 142.927371] [] ? _atomic_dec_and_lock+0x28/0x44 [ 142.927371] [] ? mntput_no_expire+0x16/0xf0 [ 142.927371] [] ? path_put+0x20/0x23 [ 142.927371] [] ? path_walk+0x8d/0x96 [ 142.927371] [] ? copy_to_user+0x3d/0x46 [ 142.927371] [] ? cp_new_stat64+0xe8/0xfa [ 142.927371] [] sys_select+0x8f/0x143 [ 142.927371] [] sysenter_past_esp+0x78/0xb1 [ 142.927371] ======================= [ 142.927371] kthreadd S ec3a7c64 0 2 0 [ 142.927371] ef843fc8 00000046 ef83f850 ec3a7c64 00000246 ef83f9b0 ef83f9b0 c02d6db1 [ 142.927371] eec49800 000007b9 ec3a7c48 c03a9538 ef843fe0 c012a4bc 00000000 c012a466 [ 142.927371] 00000000 00000000 00000000 c0104657 00000000 00000000 00000000 00000000 [ 142.927371] Call Trace: [ 142.927371] [] ? preempt_schedule+0x38/0x47 [ 142.927371] [] kthreadd+0x56/0x163 [ 142.927371] [] ? kthreadd+0x0/0x163 [ 142.927371] [] kernel_thread_helper+0x7/0x10 [ 142.927371] ======================= [ 142.927371] ksoftirqd/0 S c011e20d 0 3 2 [ 142.927371] ef845fc4 00000046 ef83f4e0 c011e20d ef845fb8 ef83f640 ef83f640 c011e79c [ 142.927371] eec85b40 00000000 c011e79c 00000000 ef845fd0 c011e7d9 00000000 ef845fe0 [ 142.927371] c012a6a8 c012a66f 00000000 00000000 c0104657 ef841f1c 00000000 00000000 [ 142.927371] Call Trace: [ 142.927371] [] ? _local_bh_enable+0x70/0x72 [ 142.927371] [] ? ksoftirqd+0x0/0x10c [ 142.927371] [] ? ksoftirqd+0x0/0x10c [ 142.927371] [] ksoftirqd+0x3d/0x10c [ 142.927371] [] kthread+0x39/0x61 [ 142.927371] [] ? kthread+0x0/0x61 [ 142.927371] [] kernel_thread_helper+0x7/0x10 [ 142.927371] ======================= [ 142.927371] watchdog/0 S 00000000 0 4 2 [ 142.927371] ef847fb0 00000046 ef83f170 00000000 00000000 ef83f2d0 ef83f2d0 00000000 [ 142.927371] c03a0160 00000000 c014165f 00000000 ef847fd0 c01416a3 00000000 ef841f2c [ 142.927371] 00000063 00000000 c014165f 00000000 ef847fe0 c012a6a8 c012a66f 00000000 [ 142.927371] Call Trace: [ 142.927371] [] ? watchdog+0x0/0x1bd [ 142.927371] [] watchdog+0x44/0x1bd [ 142.927371] [] ? watchdog+0x0/0x1bd [ 142.927371] [] kthread+0x39/0x61 [ 142.927371] [] ? kthread+0x0/0x61 [ 142.927371] [] kernel_thread_helper+0x7/0x10 [ 142.927371] ======================= [ 142.927371] events/0 R running 0 5 2 [ 142.927371] ef849fa8 00000046 ef83ee00 ef849fb0 ef849f90 ef83ef60 ef83ef60 c012a95b [ 142.927371] efb80e00 ef80a9c0 ef849fb0 ef80a9c8 ef849fd0 c01280c1 00000000 ef83ee00 [ 142.927371] c012a76f ef849fbc ef849fbc ef80a9c0 c012803f 00000000 ef849fe0 c012a6a8 [ 142.927371] Call Trace: [ 142.927371] [] ? prepare_to_wait+0x6c/0x84 [ 142.927371] [] worker_thread+0x82/0xba [ 142.927371] [] ? autoremove_wake_function+0x0/0x30 [ 142.927371] [] ? worker_thread+0x0/0xba [ 142.927371] [] kthread+0x39/0x61 [ 142.927371] [] ? kthread+0x0/0x61 [ 142.927371] [] kernel_thread_helper+0x7/0x10 [ 142.927371] ======================= [ 142.927371] khelper S ef84bfb0 0 6 2 [ 142.927371] ef84bfa8 00000046 ef83ea90 ef84bfb0 ef84bf90 ef83ebf0 ef83ebf0 c012a95b [ 142.927371] efbfc3c0 ef80a980 ef84bfb0 ef80a988 ef84bfd0 c01280c1 00000000 ef83ea90 [ 142.927371] c012a76f ef80a988 ef80a988 ef80a980 c012803f 00000000 ef84bfe0 c012a6a8 [ 142.927371] Call Trace: [ 142.927371] [] ? prepare_to_wait+0x6c/0x84 [ 142.927371] [] worker_thread+0x82/0xba [ 142.927371] [] ? autoremove_wake_function+0x0/0x30 [ 142.927371] [] ? worker_thread+0x0/0xba [ 142.927371] [] kthread+0x39/0x61 [ 142.927371] [] ? kthread+0x0/0x61 [ 142.927371] [] kernel_thread_helper+0x7/0x10 [ 142.927371] ======================= [ 142.927371] kblockd/0 S ef8cdfb0 0 48 2 [ 142.927371] ef8cdfa8 00000046 ef8c3560 ef8cdfb0 ef8cdf90 ef8c36c0 ef8c36c0 c012a95b [ 142.927371] eec85b40 ef866380 ef8cdfb0 ef866388 ef8cdfd0 c01280c1 00000000 ef8c3560 [ 142.927371] c012a76f ef866388 ef866388 ef866380 c012803f 00000000 ef8cdfe0 c012a6a8 [ 142.927371] Call Trace: [ 142.927371] [] ? prepare_to_wait+0x6c/0x84 [ 142.927371] [] worker_thread+0x82/0xba [ 142.927371] [] ? autoremove_wake_function+0x0/0x30 [ 142.927371] [] ? worker_thread+0x0/0xba [ 142.927371] [] kthread+0x39/0x61 [ 142.927371] [] ? kthread+0x0/0x61 [ 142.927371] [] kernel_thread_helper+0x7/0x10 [ 142.927371] ======================= [ 142.927371] kacpid S ef8cffb0 0 49 2 [ 142.927371] ef8cffa8 00000046 ef8c31f0 ef8cffb0 ef8cff90 ef8c3350 ef8c3350 c012a95b [ 142.927371] c03a0160 ef866200 ef8cffb0 ef866208 ef8cffd0 c01280c1 00000000 ef8c31f0 [ 142.927371] c012a76f ef866208 ef866208 ef866200 c012803f 00000000 ef8cffe0 c012a6a8 [ 142.927371] Call Trace: [ 142.927371] [] ? prepare_to_wait+0x6c/0x84 [ 142.927371] [] worker_thread+0x82/0xba [ 142.927371] [] ? autoremove_wake_function+0x0/0x30 [ 142.927371] [] ? worker_thread+0x0/0xba [ 142.927371] [] kthread+0x39/0x61 [ 142.927371] [] ? kthread+0x0/0x61 [ 142.927371] [] kernel_thread_helper+0x7/0x10 [ 142.927371] ======================= [ 142.927371] kacpi_notify S ef8d1fb0 0 50 2 [ 142.927371] ef8d1fa8 00000046 ef8c2e80 ef8d1fb0 ef8d1f90 ef8c2fe0 ef8c2fe0 c012a95b [ 142.927371] efb80c80 ef8661c0 ef8d1fb0 ef8661c8 ef8d1fd0 c01280c1 00000000 ef8c2e80 [ 142.927371] c012a76f ef8661c8 ef8661c8 ef8661c0 c012803f 00000000 ef8d1fe0 c012a6a8 [ 142.927371] Call Trace: [ 142.927371] [] ? prepare_to_wait+0x6c/0x84 [ 142.927371] [] worker_thread+0x82/0xba [ 142.927371] [] ? autoremove_wake_function+0x0/0x30 [ 142.927371] [] ? worker_thread+0x0/0xba [ 142.927371] [] kthread+0x39/0x61 [ 142.927371] [] ? kthread+0x0/0x61 [ 142.927371] [] kernel_thread_helper+0x7/0x10 [ 142.927371] ======================= [ 142.927371] kseriod S ef865fb0 0 127 2 [ 142.927371] ef865fa0 00000046 ef83e3b0 ef865fb0 ef865f88 ef83e510 ef83e510 c012a95b [ 142.927371] c03a0160 c03b94f8 ef908b60 ef865fc4 ef865fd0 c026f2d7 ef865fb0 ef90bfa0 [ 142.927371] 00000000 ef83e3b0 c012a76f c03b9500 c03b9500 00000000 c026efa7 00000000 [ 142.927371] Call Trace: [ 142.927371] [] ? prepare_to_wait+0x6c/0x84 [ 142.927371] [] serio_thread+0x330/0x391 [ 142.927371] [] ? autoremove_wake_function+0x0/0x30 [ 142.927371] [] ? serio_thread+0x0/0x391 [ 142.927371] [] kthread+0x39/0x61 [ 142.927371] [] ? kthread+0x0/0x61 [ 142.927371] [] kernel_thread_helper+0x7/0x10 [ 142.927371] ======================= [ 142.927371] pdflush S ef8c5f90 0 153 2 [ 142.927371] ef8c5fac 00000046 ef9218d0 ef8c5f90 c02d6db1 ef921a30 ef921a30 00000001 [ 142.927371] c03a0160 ef8c5fc0 c014ce69 00000000 ef8c5fd0 c014cf1b ef9218d0 00000000 [ 142.927371] ef841f34 c03ae04c ef8c1fc0 fffedb49 00000000 ef8c5fe0 c012a6a8 c012a66f [ 142.927371] Call Trace: [ 142.927371] [] ? preempt_schedule+0x38/0x47 [ 142.927371] [] ? pdflush+0x0/0x1e7 [ 142.927371] [] pdflush+0xb2/0x1e7 [ 142.927371] [] kthread+0x39/0x61 [ 142.927371] [] ? kthread+0x0/0x61 [ 142.927371] [] kernel_thread_helper+0x7/0x10 [ 142.927371] [] bio_fs_destructor+0x0/0x10 [ 142.927371] ======================= [ 142.927371] pdflush S 00000000 0 154 2 [ 142.927371] ef8c1fac 00000046 ef9211f0 00000000 00000000 ef921350 ef921350 00000025 [ 142.927371] eec85b40 ef8c1fc0 c014ce69 00000000 ef8c1fd0 c014cf1b ef9211f0 00000000 [ 142.927371] 00000000 ef8c5fc0 c03ae04c ffff644d 00000000 ef8c1fe0 c012a6a8 c012a66f [ 142.927371] Call Trace: [ 142.927371] [] ? pdflush+0x0/0x1e7 [ 142.927371] [] pdflush+0xb2/0x1e7 [ 142.927371] [] kthread+0x39/0x61 [ 142.927371] [] ? kthread+0x0/0x61 [ 142.927371] [] kernel_thread_helper+0x7/0x10 [ 142.927371] ======================= [ 142.927371] kswapd0 S ef8adfa0 0 155 2 [ 142.927371] ef8adf4c 00000046 ef921560 ef8adfa0 ef8adf34 ef9216c0 ef9216c0 c012a95b [ 142.927371] c03a0160 c03ad7b4 c03ad7b4 ef8adfb4 ef8adfd0 c014fc15 c03adfb0 00000000 [ 142.927371] ef8adf7c c0114245 ef83f878 c0114502 c040d5cc ef83f850 ef921560 ef8adf98 [ 142.927371] Call Trace: [ 142.927371] [] ? prepare_to_wait+0x6c/0x84 [ 142.927371] [] kswapd+0x9f/0x393 [ 142.927371] [] ? __dequeue_entity+0x73/0x7b [ 142.927371] [] ? __enqueue_entity+0xe3/0xeb [ 142.927371] [] ? hrtick_set+0x138/0x140 [ 142.927371] [] ? autoremove_wake_function+0x0/0x30 [ 142.927371] [] ? kswapd+0x0/0x393 [ 142.927371] [] kthread+0x39/0x61 [ 142.927372] [] ? kthread+0x0/0x61 [ 142.927372] [] kernel_thread_helper+0x7/0x10 [ 142.927372] ======================= [ 142.927372] aio/0 S ef899fb0 0 156 2 [ 142.927372] ef899fa8 00000046 ef8c38d0 ef899fb0 ef899f90 ef8c3a30 ef8c3a30 c012a95b [ 142.927372] c03a0160 ef89cdc0 ef899fb0 ef89cdc8 ef899fd0 c01280c1 00000000 ef8c38d0 [ 142.927372] c012a76f ef89cdc8 ef89cdc8 ef89cdc0 c012803f 00000000 ef899fe0 c012a6a8 [ 142.927372] Call Trace: [ 142.927372] [] ? prepare_to_wait+0x6c/0x84 [ 142.927372] [] worker_thread+0x82/0xba [ 142.927372] [] ? autoremove_wake_function+0x0/0x30 [ 142.927372] [] ? worker_thread+0x0/0xba [ 142.927372] [] kthread+0x39/0x61 [ 142.927372] [] ? kthread+0x0/0x61 [ 142.927372] [] kernel_thread_helper+0x7/0x10 [ 142.927372] ======================= [ 142.927372] kpsmoused S efb01fb0 0 327 2 [ 142.927372] efb01fa8 00000046 ef853520 efb01fb0 efb01f90 ef853680 ef853680 c012a95b [ 142.927372] c03a0160 efb0f400 efb01fb0 efb0f408 efb01fd0 c01280c1 00000000 ef853520 [ 142.927372] c012a76f efb0f408 efb0f408 efb0f400 c012803f 00000000 efb01fe0 c012a6a8 [ 142.927372] Call Trace: [ 142.927372] [] ? prepare_to_wait+0x6c/0x84 [ 142.927372] [] worker_thread+0x82/0xba [ 142.927372] [] ? autoremove_wake_function+0x0/0x30 [ 142.927372] [] ? worker_thread+0x0/0xba [ 142.927372] [] kthread+0x39/0x61 [ 142.927372] [] ? kthread+0x0/0x61 [ 142.927372] [] kernel_thread_helper+0x7/0x10 [ 142.927372] ======================= [ 142.927372] reiserfs/0 S efb8ffb0 0 337 2 [ 142.927372] efb8ffa8 00000046 ef852e40 efb8ffb0 efb8ff90 ef852fa0 ef852fa0 c012a95b [ 142.927372] eec85b40 ef974a40 efb8ffb0 ef974a48 efb8ffd0 c01280c1 00000000 ef852e40 [ 142.927372] c012a76f ef974a48 ef974a48 ef974a40 c012803f 00000000 efb8ffe0 c012a6a8 [ 142.927372] Call Trace: [ 142.927372] [] ? prepare_to_wait+0x6c/0x84 [ 142.927372] [] worker_thread+0x82/0xba [ 142.927372] [] ? autoremove_wake_function+0x0/0x30 [ 142.927372] [] ? worker_thread+0x0/0xba [ 142.927372] [] kthread+0x39/0x61 [ 142.927372] [] ? kthread+0x0/0x61 [ 142.927372] [] kernel_thread_helper+0x7/0x10 [ 142.927372] ======================= [ 142.927372] udevd S eedd2e80 0 424 1 [ 142.927372] ef90db3c 00000082 ef853c00 eedd2e80 ef90db38 ef853d60 ef853d60 ef404218 [ 142.927372] efb80680 7fffffff ef90df9c 00000040 ef90db7c c02d716a ef90dbd8 ef86b940 [ 142.927372] ef90db64 c016ed36 ef895e00 ef90dbd8 ef86b940 ef895e00 ef90db7c c0168358 [ 142.927372] Call Trace: [ 142.927372] [] schedule_timeout+0x16/0x89 [ 142.927372] [] ? __pollwait+0xaa/0xb0 [ 142.927372] [] ? pipe_poll+0x29/0x89 [ 142.927372] [] do_select+0x478/0x4cd [ 142.927372] [] ? __pollwait+0x0/0xb0 [ 142.927372] [] ? default_wake_function+0x0/0xd [ 142.927372] [] ? default_wake_function+0x0/0xd [ 142.927372] [] ? default_wake_function+0x0/0xd [ 142.927372] [] ? default_wake_function+0x0/0xd [ 142.927372] [] ? update_curr+0x48/0x64 [ 142.927372] [] ? get_page_from_freelist+0x27a/0x3e4 [ 142.927372] [] ? number+0x10d/0x1cd [ 142.927372] [] ? number+0x10d/0x1cd [ 142.927372] [] ? number+0x10d/0x1cd [ 142.927372] [] ? vsnprintf+0x3aa/0x3e3 [ 142.927372] [] ? get_page_from_freelist+0x32c/0x3e4 [ 142.927372] [] ? ptep_set_access_flags+0x65/0x70 [ 142.927372] [] ? do_wp_page+0x435/0x4a1 [ 142.927372] [] ? number+0x10d/0x1cd [ 142.927372] [] core_sys_select+0x1e9/0x2c7 [ 142.927372] [] ? dput+0x2e/0x120 [ 142.927372] [] ? __follow_mount+0x21/0x63 [ 142.927372] [] ? do_lookup+0x4f/0x140 [ 142.927372] [] ? _atomic_dec_and_lock+0x28/0x44 [ 142.927372] [] ? __link_path_walk+0xb76/0xc32 [ 142.927372] [] ? _atomic_dec_and_lock+0x28/0x44 [ 142.927372] [] ? remove_wait_queue+0x45/0x5b [ 142.927372] [] ? do_wait+0x97d/0x9f6 [ 142.927372] [] sys_select+0x8f/0x143 [ 142.927372] [] ? sys_wait4+0x80/0x8d [ 142.927372] [] sysenter_past_esp+0x78/0xb1 [ 142.927372] [] ? packet_rcv+0x159/0x2c7 [ 142.927372] ======================= [ 142.927372] ipw2200/0 S eeef1fb0 0 874 2 [ 142.927372] eeef1fa8 00000046 eeec9560 eeef1fb0 eeef1f90 eeec96c0 eeec96c0 c012a95b [ 142.927372] efb80e00 eee43200 eeef1fb0 eee43208 eeef1fd0 c01280c1 00000000 eeec9560 [ 142.927372] c012a76f eee43208 eee43208 eee43200 c012803f 00000000 eeef1fe0 c012a6a8 [ 142.927372] Call Trace: [ 142.927372] [] ? prepare_to_wait+0x6c/0x84 [ 142.927372] [] worker_thread+0x82/0xba [ 142.927372] [] ? autoremove_wake_function+0x0/0x30 [ 142.927372] [] ? worker_thread+0x0/0xba [ 142.927372] [] kthread+0x39/0x61 [ 142.927372] [] ? kthread+0x0/0x61 [ 142.927372] [] kernel_thread_helper+0x7/0x10 [ 142.927372] ======================= [ 142.927372] ksuspend_usbd S eee15fb0 0 885 2 [ 142.927372] eee15fa8 00000046 efb02a90 eee15fb0 eee15f90 efb02bf0 efb02bf0 c012a95b [ 142.927372] efb80500 eedaba40 eee15fb0 eedaba48 eee15fd0 c01280c1 00000000 efb02a90 [ 142.927372] c012a76f eedaba48 eedaba48 eedaba40 c012803f 00000000 eee15fe0 c012a6a8 [ 142.927372] Call Trace: [ 142.927372] [] ? prepare_to_wait+0x6c/0x84 [ 142.927372] [] worker_thread+0x82/0xba [ 142.927372] [] ? autoremove_wake_function+0x0/0x30 [ 142.927372] [] ? worker_thread+0x0/0xba [ 142.927372] [] kthread+0x39/0x61 [ 142.927372] [] ? kthread+0x0/0x61 [ 142.927372] [] kernel_thread_helper+0x7/0x10 [ 142.927372] ======================= [ 142.927372] khubd S eee6bfa4 0 886 2 [ 142.927372] eee6bf48 00000046 ef9207a0 eee6bfa4 eee6bf30 ef920900 ef920900 c012a95b [ 142.927372] eed07e00 f098aa68 00000000 eee6bfb8 eee6bfd0 f0973249 eee6bfa4 efb12650 [ 142.927372] efbeac00 efbeac1c c012d6ae eed00000 efbea01c 00000000 0000000a efbeb600 [ 142.927372] Call Trace: [ 142.927372] [] ? prepare_to_wait+0x6c/0x84 [ 142.927372] [] hub_thread+0xa5f/0xafb [usbcore] [ 142.927372] [] ? hrtimer_start+0xcc/0xf8 [ 142.927372] [] ? autoremove_wake_function+0x0/0x30 [ 142.927372] [] ? hub_thread+0x0/0xafb [usbcore] [ 142.927372] [] kthread+0x39/0x61 [ 142.927372] [] ? kthread+0x0/0x61 [ 142.927372] [] kernel_thread_helper+0x7/0x10 [ 142.927372] ======================= [ 142.927372] dhcpcd S ed4a7bec 0 2050 1 [ 142.927372] ed4a7be4 00000086 efb17890 ed4a7bec ed4a7bec efb179f0 efb179f0 00000000 [ 142.927372] eec49b00 ed4a7bec 01ed5feb 01ee6281 ed4a7c24 c02d71bf c041f338 c041f338 [ 142.927372] 01ed5feb c0121a6c efb17890 c041e640 c02d71ba 70636864 70006463 68732e74 [ 142.927372] Call Trace: [ 142.927372] [] schedule_timeout+0x6b/0x89 [ 142.927372] [] ? process_timeout+0x0/0xa [ 142.927372] [] ? schedule_timeout+0x66/0x89 [ 142.927372] [] do_sys_poll+0x27d/0x326 [ 142.927372] [] ? __pollwait+0x0/0xb0 [ 142.927372] [] ? default_wake_function+0x0/0xd [ 142.927372] [] ? pit_next_event+0x31/0x4a [ 142.927372] [] ? clockevents_program_event+0xd4/0xe3 [ 142.927372] [] ? get_page_from_freelist+0x27a/0x3e4 [ 142.927372] [] ? get_page_from_freelist+0x32c/0x3e4 [ 142.927372] [] ? __d_lookup+0x120/0x13c [ 142.927372] [] ? do_lookup+0x4f/0x140 [ 142.927372] [] ? _atomic_dec_and_lock+0x28/0x44 [ 142.927372] [] ? xattr_lookup_poison+0x52/0x60 [ 142.927372] [] ? __d_lookup+0x120/0x13c [ 142.927372] [] ? do_lookup+0x4f/0x140 [ 142.927372] [] ? get_page_from_freelist+0x27a/0x3e4 [ 142.927372] [] ? _atomic_dec_and_lock+0x28/0x44 [ 142.927372] [] ? find_lock_page+0xa1/0xbb [ 142.927372] [] ? filemap_fault+0x21c/0x382 [ 142.927372] [] ? unlock_page+0x24/0x27 [ 142.927372] [] ? __do_fault+0x314/0x34c [ 142.927372] [] ? handle_mm_fault+0x291/0x65a [ 142.927372] [] ? do_page_fault+0x33c/0x616 [ 142.927372] [] sys_poll+0x3a/0x6b [ 142.927372] [] sysenter_past_esp+0x78/0xb1 [ 142.927372] ======================= [ 142.927372] metalog S 006aa650 0 2175 1 [ 142.927372] ebcb7be4 00000086 eedd2e80 006aa650 eeadc060 eedd2fe0 eedd2fe0 ebcb7bd8 [ 142.927372] eec49800 7fffffff eec5a540 ffffffff ebcb7c24 c02d716a ebcb7c04 c016ed36 [ 142.927372] ef6cde58 efb9fac0 ebcb7c48 ebcb7ea0 ebcb7c18 c02cbeb6 0028c73d c02feba4 [ 142.927372] Call Trace: [ 142.927372] [] schedule_timeout+0x16/0x89 [ 142.927372] [] ? __pollwait+0xaa/0xb0 [ 142.927372] [] ? unix_poll+0x1a/0x8d [ 142.927372] [] do_sys_poll+0x27d/0x326 [ 142.927372] [] ? __pollwait+0x0/0xb0 [ 142.927372] [] ? default_wake_function+0x0/0xd [ 142.927372] [] ? default_wake_function+0x0/0xd [ 142.927372] [] ? default_wake_function+0x0/0xd [ 142.927372] [] ? autoremove_wake_function+0x0/0x30 [ 142.927372] [] ? journal_end+0xa7/0xb0 [ 142.927372] [] ? balance_dirty_pages_ratelimited_nr+0x228/0x242 [ 142.927372] [] ? generic_file_buffered_write+0x131/0x549 [ 142.927372] [] ? generic_file_buffered_write+0x16a/0x549 [ 142.927372] [] ? reiserfs_dirty_inode+0x74/0x7d [ 142.927372] [] ? __generic_file_aio_write_nolock+0x3f7/0x430 [ 142.927372] [] ? _atomic_dec_and_lock+0x28/0x44 [ 142.927372] [] ? generic_file_aio_write+0x62/0xb4 [ 142.927372] [] ? do_sync_write+0xba/0xf8 [ 142.927372] [] ? autoremove_wake_function+0x0/0x30 [ 142.927372] [] ? vfs_write+0xf1/0x108 [ 142.927372] [] sys_poll+0x3a/0x6b [ 142.927372] [] sysenter_past_esp+0x78/0xb1 [ 142.927372] ======================= [ 142.927372] metalog R running 0 2176 2175 [ 142.927372] ebccdf6c 00000086 efb03170 ebccdf88 ebccdf54 efb032d0 efb032d0 c012a95b [ 142.927372] efb80500 ebccdf88 00000800 ebccdf9c ebccdfa8 c011ac55 bfc707b6 00000000 [ 142.927372] ef6a4570 00000000 eec5ab40 00000000 efb03170 c012a76f ebccdf94 ebccdf94 [ 142.927372] Call Trace: [ 142.927372] [] ? prepare_to_wait+0x6c/0x84 [ 142.927372] [] do_syslog+0xd8/0x3ad [ 142.927372] [] ? autoremove_wake_function+0x0/0x30 [ 142.927372] [] sys_syslog+0x11/0x13 [ 142.927372] [] sysenter_past_esp+0x78/0xb1 [ 142.927372] ======================= [ 142.927372] acpid S ef921c40 0 2189 1 [ 142.927372] ef927be4 00000086 ef8aead0 ef921c40 c03b118c ef8aec30 ef8aec30 ef927bd8 [ 142.927372] efb80200 7fffffff eece1940 ffffffff ef927c24 c02d716a ef927c04 c016ed36 [ 142.927372] ef6cd858 efb9f580 ef927c48 ef927e98 ef927c18 c02cbeb6 00190d06 c02feba4 [ 142.927372] Call Trace: [ 142.927372] [] schedule_timeout+0x16/0x89 [ 142.927372] [] ? __pollwait+0xaa/0xb0 [ 142.927372] [] ? unix_poll+0x1a/0x8d [ 142.927372] [] do_sys_poll+0x27d/0x326 [ 142.927372] [] ? __pollwait+0x0/0xb0 [ 142.927372] [] ? default_wake_function+0x0/0xd [ 142.927372] [] ? default_wake_function+0x0/0xd [ 142.927372] [] ? ktime_get+0x13/0x2f [ 142.927372] [] ? hrtick_start_fair+0xd5/0x111 [ 142.927372] [] ? enqueue_task_fair+0x35/0x39 [ 142.927372] [] ? try_to_wake_up+0x84/0xa0 [ 142.927372] [] ? default_wake_function+0xb/0xd [ 142.927372] [] ? __wake_up_common+0x2e/0x54 [ 142.927372] [] ? __wake_up_sync+0x62/0x7c [ 142.927372] [] ? sock_def_readable+0x53/0x68 [ 142.927372] [] ? unix_dgram_sendmsg+0x3d1/0x45c [ 142.927372] [] ? sock_sendmsg+0xc9/0xe0 [ 142.927372] [] ? autoremove_wake_function+0x0/0x30 [ 142.927372] [] ? _atomic_dec_and_lock+0x28/0x44 [ 142.927372] [] ? dput+0x2e/0x120 [ 142.927372] [] ? __link_path_walk+0xb15/0xc32 [ 142.927372] [] ? enqueue_hrtimer+0xce/0xda [ 142.927372] [] ? _atomic_dec_and_lock+0x28/0x44 [ 142.927372] [] ? mntput_no_expire+0x16/0xf0 [ 142.927372] [] ? sys_sendto+0xa4/0xc3 [ 142.927372] [] ? copy_to_user+0x3d/0x46 [ 142.927372] [] ? cp_new_stat64+0xe8/0xfa [ 142.927372] [] ? sys_send+0x18/0x1a [ 142.927372] [] ? sys_socketcall+0xc9/0x15e [ 142.927372] [] sys_poll+0x3a/0x6b [ 142.927372] [] sysenter_past_esp+0x78/0xb1 [ 142.927372] ======================= [ 142.927372] dbus-daemon S eec69bec 0 2211 1 [ 142.927372] eec69be4 00000086 ef89a3b0 eec69bec eec69bec ef89a510 ef89a510 00000000 [ 142.927372] efb80800 eec69bec 000054ed 00011f69 eec69c24 c02d71bf c041f050 c041f050 [ 142.927372] 000054ed c0121a6c ef89a3b0 c041e640 c02d71ba 73756264 6561642d 006e6f6d [ 142.927372] Call Trace: [ 142.927372] [] schedule_timeout+0x6b/0x89 [ 142.927372] [] ? process_timeout+0x0/0xa [ 142.927372] [] ? schedule_timeout+0x66/0x89 [ 142.927372] [] do_sys_poll+0x27d/0x326 [ 142.927372] [] ? __pollwait+0x0/0xb0 [ 142.927372] [] ? default_wake_function+0x0/0xd [ 142.927372] [] ? default_wake_function+0x0/0xd [ 142.927372] [] ? default_wake_function+0x0/0xd [ 142.927372] [] ? default_wake_function+0x0/0xd [ 142.927372] [] ? default_wake_function+0x0/0xd [ 142.927372] [] ? default_wake_function+0x0/0xd [ 142.927372] [] ? rb_erase+0x176/0x228 [ 142.927372] [] ? __dequeue_entity+0x73/0x7b [ 142.927372] [] ? hrtick_set+0x138/0x140 [ 142.927372] [] ? schedule+0x28b/0x2a4 [ 142.927372] [] ? preempt_schedule+0x38/0x47 [ 142.927372] [] ? sock_def_readable+0x65/0x68 [ 142.927372] [] ? unix_stream_sendmsg+0x201/0x2c4 [ 142.927372] [] ? sock_aio_write+0xc2/0xcb [ 142.927372] [] ? do_sync_readv_writev+0xa8/0xe6 [ 142.927372] [] ? copy_from_user+0x3b/0x5e [ 142.927372] [] ? rw_copy_check_uvector+0x58/0xbf [ 142.927372] [] ? do_readv_writev+0x12e/0x13c [ 142.927372] [] ? d_free+0x25/0x37 [ 142.927372] [] ? _atomic_dec_and_lock+0x28/0x44 [ 142.927372] [] ? mntput_no_expire+0x16/0xf0 [ 142.927372] [] ? getnstimeofday+0x37/0xb7 [ 142.927372] [] ? copy_to_user+0x3d/0x46 [ 142.927372] [] sys_poll+0x3a/0x6b [ 142.927372] [] sysenter_past_esp+0x78/0xb1 [ 142.927372] [] ? packet_rcv+0x159/0x2c7 [ 142.927372] ======================= [ 142.927372] avahi-daemon S ec39dbec 0 2225 1 [ 142.927372] ec39dbe4 00000086 ef852080 ec39dbec ec39dbec ef8521e0 ef8521e0 00000000 [ 142.927372] eec859c0 ec39dbec ffff6815 0000055a ec39dc24 c02d71bf eed57828 ef8d41b0 [ 142.927372] ffff6815 c0121a6c ef852080 c041e640 c02d71ba 68617661 61642d69 6e6f6d65 [ 142.927372] Call Trace: [ 142.927372] [] schedule_timeout+0x6b/0x89 [ 142.927372] [] ? process_timeout+0x0/0xa [ 142.927372] [] ? schedule_timeout+0x66/0x89 [ 142.927372] [] do_sys_poll+0x27d/0x326 [ 142.927372] [] ? __pollwait+0x0/0xb0 [ 142.927372] [] ? default_wake_function+0x0/0xd [ 142.927372] [] ? default_wake_function+0x0/0xd [ 142.927372] [] ? default_wake_function+0x0/0xd [ 142.927372] [] ? default_wake_function+0x0/0xd [ 142.927372] [] ? default_wake_function+0x0/0xd [ 142.927372] [] ? default_wake_function+0x0/0xd [ 142.927372] [] ? default_wake_function+0x0/0xd [ 142.927372] [] ? default_wake_function+0x0/0xd [ 142.927372] [] ? check_preempt_wakeup+0xb1/0xd0 [ 142.927372] [] ? try_to_wake_up+0x84/0xa0 [ 142.927372] [] ? default_wake_function+0xb/0xd [ 142.927372] [] ? __wake_up_common+0x2e/0x54 [ 142.927372] [] ? skb_dequeue+0x66/0x7f [ 142.927372] [] ? unix_stream_recvmsg+0x3f7/0x477 [ 142.927372] [] ? mnt_drop_write+0xf5/0x10e [ 142.927372] [] ? touch_atime+0xa2/0xbc [ 142.927372] [] ? pipe_read+0x2f7/0x302 [ 142.927372] [] ? do_filp_open+0x92/0x643 [ 142.927372] [] ? autoremove_wake_function+0x0/0x30 [ 142.927372] [] ? getnstimeofday+0x37/0xb7 [ 142.927372] [] ? copy_to_user+0x3d/0x46 [ 142.927372] [] sys_poll+0x3a/0x6b [ 142.927372] [] sysenter_past_esp+0x78/0xb1 [ 142.927372] ======================= [ 142.927372] avahi-daemon S ef852080 0 2227 2225 [ 142.927372] ebd59db4 00000082 ef853890 ef852080 00000000 ef8539f0 ef8539f0 00000000 [ 142.927372] eec49380 7fffffff 00000000 ebd59e40 ebd59df4 c02d716a 00000000 ebd59de8 [ 142.927372] ef853890 c012a76f ebd59dcc ebd59e2c ebd59ddc ebd59e2c ebd59df4 c012a95b [ 142.927372] Call Trace: [ 142.927372] [] schedule_timeout+0x16/0x89 [ 142.927372] [] ? autoremove_wake_function+0x0/0x30 [ 142.927372] [] ? prepare_to_wait+0x6c/0x84 [ 142.927372] [] unix_stream_recvmsg+0x203/0x477 [ 142.927372] [] ? autoremove_wake_function+0x0/0x30 [ 142.927372] [] sock_aio_read+0xce/0xd8 [ 142.927372] [] do_sync_read+0xba/0xf8 [ 142.927372] [] ? autoremove_wake_function+0x0/0x30 [ 142.927372] [] vfs_read+0x9b/0x106 [ 142.927372] [] sys_read+0x3b/0x60 [ 142.927372] [] sysenter_past_esp+0x78/0xb1 [ 142.927372] [] ? packet_rcv+0x159/0x2c7 [ 142.927372] ======================= [ 142.927372] hald S ebcd9bec 0 2251 1 [ 142.927372] ebcd9be4 00000082 ef8c2b10 ebcd9bec ebcd9bec ef8c2c70 ef8c2c70 00000000 [ 142.927372] efb80c80 ebcd9bec ffff77a7 00001d4d ebcd9c24 c02d71bf c041f000 c03bc0c4 [ 142.927372] ffff77a7 c0121a6c ef8c2b10 c041e640 c02d71ba 646c6168 74732d00 642d706f [ 142.927372] Call Trace: [ 142.927372] [] schedule_timeout+0x6b/0x89 [ 142.927372] [] ? process_timeout+0x0/0xa [ 142.927372] [] ? schedule_timeout+0x66/0x89 [ 142.927372] [] do_sys_poll+0x27d/0x326 [ 142.927372] [] ? __pollwait+0x0/0xb0 [ 142.927372] [] ? default_wake_function+0x0/0xd [ 142.927372] [] ? default_wake_function+0x0/0xd [ 142.927372] [] ? default_wake_function+0x0/0xd [ 142.927372] [] ? default_wake_function+0x0/0xd [ 142.927372] [] ? default_wake_function+0x0/0xd [ 142.927372] [] ? default_wake_function+0x0/0xd [ 142.927372] [] ? default_wake_function+0x0/0xd [ 142.927372] [] ? default_wake_function+0x0/0xd [ 142.927372] [] ? default_wake_function+0x0/0xd [ 142.927372] [] ? default_wake_function+0x0/0xd [ 142.927372] [] ? default_wake_function+0x0/0xd [ 142.927372] [] ? sock_recvmsg+0xd0/0xe8 [ 142.927372] [] ? skb_dequeue+0x66/0x7f [ 142.927372] [] ? unix_stream_recvmsg+0x3f7/0x477 [ 142.927372] [] ? d_free+0x25/0x37 [ 142.927372] [] ? sock_aio_read+0xce/0xd8 [ 142.927372] [] ? autoremove_wake_function+0x0/0x30 [ 142.927372] [] ? sys_readlinkat+0x25/0x75 [ 142.927372] [] ? getnstimeofday+0x37/0xb7 [ 142.927372] [] ? copy_to_user+0x3d/0x46 [ 142.927372] [] sys_poll+0x3a/0x6b [ 142.927372] [] sysenter_past_esp+0x78/0xb1 [ 142.927372] ======================= [ 142.927372] hald-runner S ebcdbbec 0 2252 2251 [ 142.927372] ebcdbbe4 00000086 ef83e040 ebcdbbec ebcdbbec ef83e1a0 ef83e1a0 ebcdbbd8 [ 142.927372] eed439c0 7fffffff eece17c0 ffffffff ebcdbc24 c02d716a ebcdbc04 c016ed36 [ 142.927372] ef582b58 ef862900 ebcdbc48 ebcdbe90 ebcdbc18 c02cbeb6 0004e968 c02feba4 [ 142.927372] Call Trace: [ 142.927372] [] schedule_timeout+0x16/0x89 [ 142.927372] [] ? __pollwait+0xaa/0xb0 [ 142.927372] [] ? unix_poll+0x1a/0x8d [ 142.927372] [] do_sys_poll+0x27d/0x326 [ 142.927372] [] ? __pollwait+0x0/0xb0 [ 142.927372] [] ? default_wake_function+0x0/0xd [ 142.927372] [] ? getnstimeofday+0x37/0xb7 [ 142.927372] [] ? ktime_get_ts+0x40/0x44 [ 142.927372] [] ? ktime_get+0x13/0x2f [ 142.927372] [] ? hrtick_start_fair+0xd5/0x111 [ 142.927372] [] ? __dequeue_entity+0x73/0x7b [ 142.927372] [] ? hrtick_set+0x138/0x140 [ 142.927372] [] ? schedule+0x28b/0x2a4 [ 142.927372] [] ? preempt_schedule+0x38/0x47 [ 142.927372] [] ? sock_def_readable+0x65/0x68 [ 142.927372] [] ? unix_stream_sendmsg+0x201/0x2c4 [ 142.927372] [] ? sock_aio_write+0xc2/0xcb [ 142.927372] [] ? proc_delete_inode+0x0/0x46 [ 142.927372] [] ? destroy_inode+0x27/0x38 [ 142.927372] [] ? do_sync_readv_writev+0xa8/0xe6 [ 142.927372] [] ? d_lookup+0x22/0x33 [ 142.927372] [] ? autoremove_wake_function+0x0/0x30 [ 142.927372] [] ? copy_from_user+0x3b/0x5e [ 142.927372] [] ? rw_copy_check_uvector+0x58/0xbf [ 142.927372] [] ? do_readv_writev+0x12e/0x13c [ 142.927372] [] ? default_wake_function+0x0/0xd [ 142.927372] [] ? vfs_writev+0x39/0x49 [ 142.927372] [] sys_poll+0x3a/0x6b [ 142.927372] [] sysenter_past_esp+0x78/0xb1 [ 142.927372] [] ? packet_rcv+0x159/0x2c7 [ 142.927372] ======================= [ 142.927372] hald-addon-in R running 0 2271 2252 [ 142.927372] ec3ddbe4 00000082 ef89b4e0 c03a02e0 00000000 ef89b640 ef89b640 ec3ddbd8 [ 142.927372] eec49c80 7fffffff efb9c5c0 ffffffff ec3ddc24 c02d716a 00000000 ec3ddc48 [ 142.927372] efb9c5c0 ec3ddc10 c016ed36 ef90a440 ec3ddc48 ec38c800 ef90a400 ec3ddc24 [ 142.927372] Call Trace: [ 142.927372] [] schedule_timeout+0x16/0x89 [ 142.927372] [] ? __pollwait+0xaa/0xb0 [ 142.927372] [] ? evdev_poll+0x20/0x45 [ 142.927372] [] do_sys_poll+0x27d/0x326 [ 142.927372] [] ? __pollwait+0x0/0xb0 [ 142.927372] [] ? default_wake_function+0x0/0xd [ 142.927372] [] ? default_wake_function+0x0/0xd [ 142.927372] [] ? default_wake_function+0x0/0xd [ 142.927372] [] ? default_wake_function+0x0/0xd [ 142.927372] [] ? default_wake_function+0x0/0xd [ 142.927372] [] ? default_wake_function+0x0/0xd [ 142.927372] [] ? default_wake_function+0x0/0xd [ 142.927372] [] ? enqueue_task_fair+0x35/0x39 [ 142.927372] [] ? check_preempt_wakeup+0xb1/0xd0 [ 142.927372] [] ? try_to_wake_up+0x84/0xa0 [ 142.927372] [] ? default_wake_function+0xb/0xd [ 142.927372] [] ? __wake_up_common+0x2e/0x54 [ 142.927372] [] ? __wake_up_sync+0x62/0x7c [ 142.927372] [] ? sock_def_readable+0x53/0x68 [ 142.927372] [] ? [ 142.927372] [] sysenter_past_esp+0x78/0xb1 [ 142.927372] ======================= [ 142.927372] hald-addon-ac S 00000000 0 2279 2252 [ 142.927372] ec367db4 00000082 ef8523f0 00000000 00000000 ef852550 ef852550 ec367dbc [ 142.927372] efbfce40 7fffffff 00000000 ec367e40 ec367df4 c02d716a ec367dcc c012d810 [ 142.927372] 0032dcd5 00000000 ec367de8 ec367e2c ec367ddc ec367e2c ec367df4 c012a95b [ 142.927372] Call Trace: [ 142.927372] [] schedule_timeout+0x16/0x89 [ 142.927372] [] ? ktime_get_ts+0x40/0x44 [ 142.927372] [] ? prepare_to_wait+0x6c/0x84 [ 142.927372] [] unix_stream_recvmsg+0x203/0x477 [ 142.927372] [] ? autoremove_wake_function+0x0/0x30 [ 142.927372] [] sock_aio_read+0xce/0xd8 [ 142.927372] [] do_sync_read+0xba/0xf8 [ 142.927372] [] ? __vma_link+0x44/0x4c [ 142.927372] [] ? autoremove_wake_function+0x0/0x30 [ 142.927372] [] vfs_read+0x9b/0x106 ed5e1bec ed5e1bec eedd3da0 eedd3da0 00000000 [ 142.927372] eec85b40 ed5e1bec ffff66b6 000001f4 ed5e1c24 c02d71bf c041ebf8 c041ebf8 [ 142.927372] ffff66b6 c0121a6c eedd3c40 c041e640 c02d71ba 646c6168 6464612d 732d6e6f [ 142.927372] Call Trace: [ 142.927372] [] schedule_timeout+0x6b/0x89 [ 142.927372] [] ? process_timeout+0x0/0xa [ 142.927372] [] ? schedule_timeout+0x66/0x89 [ 142.927372] [] do_sys_poll+0x27d/0x326 [ 142.927372] [] ? __pollwait+0x0/0xb0 [ 142.927372] [] ? default_wake_function+0x0/0xd [ 142.927372] [] ? hrtick_set+0x138/0x140 [ 142.927372] [] ? schedule+0x28b/0x2a4 [ 142.927372] [] ? schedule_timeout+0x16/0x89 [ 142.927372] [] ? __blk_put_request+0x23/0x74 [ 142.927372] [] ? blk_put_request+0x4e/0x65 [ 142.927372] [] ? ide_do_drive_cmd+0x106/0x110 [ 142.927372] [] ? ide_cd_queue_pc+0x40/0xae [ 142.927372] [] ? cdrom_ioctl+0x6d3/0xb9a [ 142.927372] [] ? idecd_revalidate_disk+0x14/0x18 [ 142.927372] [] ? ide_init_drive_cmd+0xc/0xe [ 142.927372] [] ? ide_cd_lockdoor+0x5d/0xc7 [ 142.927372] [] ? blk_end_sync_rq+0x0/0x2a [ 142.927372] [] ? blkdev_open+0x3d/0x51 [ 142.927372] [] ? __dentry_open+0x156/0x21e [ 142.927372] [] ? ide_cdrom_lock_door+0xd/0xf [ 142.927372] [] ? cdrom_release+0x177/0x1ac [ 142.927372] [] ? do_filp_open+0x30b/0x643 [ 142.927372] [] ? _atomic_dec_and_lock+0x28/0x44 [ 142.927372] [] ? iput+0x24/0x4e [ 142.927372] [] ? bdput+0xb/0xd [ 142.927372] [] ? __blkdev_put+0xd7/0xf2 [ 142.927372] [] ? _atomic_dec_and_lock+0x28/0x44 [ 142.927372] [] ? mntput_no_expire+0x16/0xf0 [ 142.927372] [] ? getnstimeofday+0x37/0xb7 [ 142.927372] [] ? copy_to_user+0x3d/0x46 [ 142.927372] [] sys_poll+0x3a/0x6b [ 142.927372] [] sysenter_past_esp+0x78/0xb1 [ 142.927372] [] ? packet_rcv+0x159/0x2c7 [ 142.927372] ======================= [ 142.927372] sshd S f0818000 0 2324 1 [ 142.927372] ec3bbb3c 00000082 ef887c40 f0818000 0000000e ef887da0 ef887da0 ef687698 [ 142.927372] efb80980 7fffffff ec3bbf9c 00000008 ec3bbb7c c02d716a ec382340 ec3bbb60 [ 142.927372] c016ed36 ef687698 ec3bbbd8 ebd75b40 00000008 ec3bbb70 c02ac48d c02fe140 [ 142.927372] Call Trace: [ 142.927372] [] schedule_timeout+0x16/0x89 [ 142.927372] [] ? __pollwait+0xaa/0xb0 [ 142.927372] [] ? tcp_poll+0x17/0x10f [ 142.927372] [] do_select+0x478/0x4cd [ 142.927372] [] ? __pollwait+0x0/0xb0 [ 142.927372] [] ? default_wake_function+0x0/0xd [ 142.927372] [] ? wake_up_bit+0x17/0x1b [ 142.927372] [] ? unlock_buffer+0x11/0x13 [ 142.927372] [] ? ll_rw_block+0x97/0xb0 [ 142.927372] [] ? search_by_key+0x181/0xf0e [ 142.927372] [] ? inode_get_bytes+0x23/0x4b [ 142.927372] [] ? pathrelse+0x1b/0x2f [ 142.927372] [] ? reiserfs_update_sd_size+0x233/0x23b [ 142.927372] [] ? up+0x50/0x66 [ 142.927372] [] ? do_journal_end+0x27b/0xa8b [ 142.927372] [] core_sys_select+0x1e9/0x2c7 [ 142.927372] [] ? find_lock_page+0xa1/0xbb [ 142.927372] [] ? filemap_fault+0x21c/0x382 [ 142.927372] [] ? unlock_page+0x24/0x27 [ 142.927372] [] ? __do_fault+0x314/0x34c [ 142.927372] [] ? handle_mm_fault+0x291/0x65a [ 142.927372] [] ? free_pgtables+0x6b/0x79 [ 142.927372] [] sys_select+0x8f/0x143 [ 142.927372] [] ? do_page_fault+0x33c/0x616 [ 142.927372] [] sysenter_past_esp+0x78/0xb1 [ 142.927372] [] ? packet_rcv+0x159/0x2c7 [ 142.927372] ======================= [ 142.927372] login S ed5e3f74 0 2339 1 [ 142.927372] ed5e3f28 00000082 ef886430 ed5e3f74 ef822048 ef886590 ef886590 ed5e3f28 [ 142.927372] efbfcb40 00000000 ffffffea ef886428 ed5e3f90 c011c73f 00000010 00000000 [ 142.927372] 00000000 ef886524 00000004 00000000 00000003 ef886430 00000001 ed5e3f68 [ 142.927372] Call Trace: [ 142.927372] [] do_wait+0x952/0x9f6 [ 142.927372] [] ? wake_up_new_task+0xa5/0xaa [ 142.927372] [] ? default_wake_function+0x0/0xd [ 142.927372] [] sys_wait4+0x77/0x8d [ 142.927372] [] sysenter_past_esp+0x78/0xb1 [ 142.927372] [] ? packet_rcv+0x159/0x2c7 [ 142.927372] ======================= [ 142.927372] agetty S eef69336 0 2341 1 [ 142.927372] ed5e5ea8 00000086 eedd38d0 eef69336 00000020 eedd3a30 eedd3a30 00000000 [ 142.927372] efbfc0c0 7fffffff ebd66c00 ed5e5f38 ed5e5ee8 c02d716a c014b1cf 00000020 [ 142.927372] c03a7bcc ed5e5ecc c012e02c ebd66c00 ebd66d34 ed5e5ed4 ebd66d34 ed5e5ee8 [ 142.927372] Call Trace: [ 142.927372] [] schedule_timeout+0x16/0x89 [ 142.927372] [] ? free_hot_page+0xa/0xc [ 142.927372] [] ? up+0x50/0x66 [ 142.927372] [] ? add_wait_queue+0x4d/0x64 [ 142.927372] [] read_chan+0x35a/0x58b [ 142.927372] [] ? default_wake_function+0x0/0xd [ 142.927372] [] ? read_chan+0x0/0x58b [ 142.927372] [] tty_read+0x60/0x9d [ 142.927372] [] ? tty_read+0x0/0x9d [ 142.927372] [] vfs_read+0x8a/0x106 [ 142.927372] [] sys_read+0x3b/0x60 [ 142.927372] [] sysenter_past_esp+0x78/0xb1 [ 142.927372] [] ? packet_rcv+0x159/0x2c7 [ 142.927372] ======================= [ 142.927372] agetty S efbad336 0 2343 1 [ 142.927372] ed5efea8 00000082 ef89b850 efbad336 00000020 ef89b9b0 ef89b9b0 00000000 [ 142.927372] eec49680 7fffffff ebd66800 ed5eff38 ed5efee8 c02d716a c014b1cf 00000020 [ 142.927372] c03a7bcc ed5efecc c012e02c ebd66800 ebd66934 ed5efed4 ebd66934 ed5efee8 [ 142.927372] Call Trace: [ 142.927372] [] schedule_timeout+0x16/0x89 [ 142.927372] [] ? free_hot_page+0xa/0xc [ 142.927372] [] ? up+0x50/0x66 [ 142.927372] [] ? add_wait_queue+0x4d/0x64 [ 142.927372] [] read_chan+0x35a/0x58b [ 142.927372] [] ? default_wake_function+0x0/0xd [ 142.927372] [] ? read_chan+0x0/0x58b [ 142.927372] [] tty_read+0x60/0x9d [ 142.927372] [] ? tty_read+0x0/0x9d [ 142.927372] [] vfs_read+0x8a/0x106 [ 142.927373] [] sys_read+0x3b/0x60 [ 142.927373] [] sysenter_past_esp+0x78/0xb1 [ 142.927373] [] ? packet_rcv+0x159/0x2c7 [ 142.927373] ======================= [ 142.927373] agetty S eee69336 0 2345 1 [ 142.927373] ed413ea8 00000082 ef886e80 eee69336 00000020 ef886fe0 ef886fe0 00000000 [ 142.927373] efbfc240 7fffffff ed405400 ed413f38 ed413ee8 c02d716a c014b1cf 00000020 [ 142.927373] c03a7bcc ed413ecc c012e02c ed405400 ed405534 ed413ed4 ed405534 ed413ee8 [ 142.927373] Call Trace: [ 142.927373] [] schedule_timeout+0x16/0x89 [ 142.927373] [] ? free_hot_page+0xa/0xc [ 142.927373] [] ? up+0x50/0x66 [ 142.927373] [] ? add_wait_queue+0x4d/0x64 [ 142.927373] [] read_chan+0x35a/0x58b [ 142.927373] [] ? default_wake_function+0x0/0xd [ 142.927373] [] ? read_chan+0x0/0x58b [ 142.927373] [] tty_read+0x60/0x9d [ 142.927373] [] ? tty_read+0x0/0x9d [ 142.927373] [] vfs_read+0x8a/0x106 [ 142.927373] [] sys_read+0x3b/0x60 [ 142.927373] [] sysenter_past_esp+0x78/0xb1 [ 142.927373] [] ? packet_rcv+0x159/0x2c7 [ 142.927373] ======================= [ 142.927373] agetty S eeeb9336 0 2347 1 [ 142.927373] ed5d9ea8 00000086 ef89bbc0 eeeb9336 00000020 ef89bd20 ef89bd20 00000000 [ 142.927373] eec856c0 7fffffff ec39fc00 ed5d9f38 ed5d9ee8 c02d716a c014b1cf 00000020 [ 142.927373] c03a7bcc ed5d9ecc c012e02c ec39fc00 ec39fd34 ed5d9ed4 ec39fd34 ed5d9ee8 [ 142.927373] Call Trace: [ 142.927373] [] schedule_timeout+0x16/0x89 [ 142.927373] [] ? free_hot_page+0xa/0xc [ 142.927373] [] ? up+0x50/0x66 [ 142.927373] [] ? add_wait_queue+0x4d/0x64 [ 142.927373] [] read_chan+0x35a/0x58b [ 142.927373] [] ? default_wake_function+0x0/0xd [ 142.927373] [] ? read_chan+0x0/0x58b [ 142.927373] [] tty_read+0x60/0x9d [ 142.927373] [] ? tty_read+0x0/0x9d [ 142.927373] [] vfs_read+0x8a/0x106 [ 142.927373] [] sys_read+0x3b/0x60 [ 142.927373] [] sysenter_past_esp+0x78/0xb1 [ 142.927373] [] ? packet_rcv+0x159/0x2c7 [ 142.927373] ======================= [ 142.927373] agetty S eecaa336 0 2348 1 [ 142.927373] ed5dbea8 00000086 eedd3560 eecaa336 00000020 eedd36c0 eedd36c0 00000000 [ 142.927373] eed07800 7fffffff ed49f800 ed5dbf38 ed5dbee8 c02d716a c014b1cf 00000020 [ 142.927373] c03a7bcc ed5dbecc c012e02c ed49f800 ed49f934 ed5dbed4 ed49f934 ed5dbee8 [ 142.927373] Call Trace: [ 142.927373] [] schedule_timeout+0x16/0x89 [ 142.927373] [] ? free_hot_page+0xa/0xc [ 142.927373] [] ? up+0x50/0x66 [ 142.927373] [] ? add_wait_queue+0x4d/0x64 [ 142.927373] [] read_chan+0x35a/0x58b [ 142.927373] [] ? default_wake_function+0x0/0xd [ 142.927373] [] ? read_chan+0x0/0x58b [ 142.927373] [] tty_read+0x60/0x9d [ 142.927373] [] ? tty_read+0x0/0x9d [ 142.927373] [] vfs_read+0x8a/0x106 [ 142.927373] [] sys_read+0x3b/0x60 [ 142.927373] [] sysenter_past_esp+0x78/0xb1 [ 142.927373] [] ? packet_rcv+0x159/0x2c7 [ 142.927373] ======================= [ 142.927373] bash S c161a09c 0 2372 2339 [ 142.927373] ebd73ea8 00000082 ef920430 c161a09c 00000020 ef920590 ef920590 00000000 [ 142.927373] eed07680 7fffffff ef976800 ebd73f38 ebd73ee8 c02d716a 00000008 00000020 [ 142.927373] c03a7bcc ebd73ecc c012e02c ef976800 ef976934 ebd73ed4 ef976934 ebd73ee8 [ 142.927373] Call Trace: [ 142.927373] [] schedule_timeout+0x16/0x89 [ 142.927373] [] ? up+0x50/0x66 [ 142.927373] [] ? add_wait_queue+0x4d/0x64 [ 142.927373] [] read_chan+0x35a/0x58b [ 142.927373] [] ? default_wake_function+0x0/0xd [ 142.927373] [] ? read_chan+0x0/0x58b [ 142.927373] [] tty_read+0x60/0x9d [ 142.927373] [] ? tty_read+0x0/0x9d [ 142.927373] [] vfs_read+0x8a/0x106 [ 142.927373] [] sys_read+0x3b/0x60 [ 142.927373] [] sysenter_past_esp+0x78/0xb1 [ 142.927373] [] ? packet_rcv+0x159/0x2c7 [ 142.927373] ======================= [ 142.927373] Sched Debug Version: v0.07, 2.6.26-rc4-add-drm-bug_on-00103-g1beee8d-dirty #5 [ 142.927373] now at 143111.174723 msecs [ 142.927373] .sysctl_sched_latency : 20.000000 [ 142.927373] .sysctl_sched_min_granularity : 4.000000 [ 142.927373] .sysctl_sched_wakeup_granularity : 10.000000 [ 142.927373] .sysctl_sched_child_runs_first : 0.000001 [ 142.927373] .sysctl_sched_features : 895 [ 142.927373] [ 142.927373] cpu#0, 1495.175 MHz [ 142.927373] .nr_running : 3 [ 142.927373] .load : 5169 [ 142.927373] .nr_switches : 40086 [ 142.927373] .nr_load_updates : 3189 [ 142.927373] .nr_uninterruptible : 0 [ 142.927373] .jiffies : 4294928027 [ 142.927373] .next_balance : 0.000000 [ 142.927373] .curr->pid : 0 [ 142.927373] .clock : 142927.371694 [ 142.927373] .cpu_load[0] : 0 [ 142.927373] .cpu_load[1] : 0 [ 142.927373] .cpu_load[2] : 0 [ 142.927373] .cpu_load[3] : 0 [ 142.927373] .cpu_load[4] : 0 [ 142.927373] [ 142.927373] cfs_rq[0]: [ 142.927373] .exec_clock : 0.000000 [ 142.927373] .MIN_vruntime : 0.000001 [ 142.927373] .min_vruntime : 3892.956655 [ 142.927373] .max_vruntime : 0.000001 [ 142.927373] .spread : 0.000000 [ 142.927373] .spread0 : 0.000000 [ 142.927373] .nr_running : 0 [ 142.927373] .load : 0 [ 142.927373] .nr_spread_over : 0 [ 142.927373] [ 142.927373] cfs_rq[0]: [ 142.927373] .exec_clock : 0.000000 [ 142.927373] .MIN_vruntime : 0.000001 [ 142.927373] .min_vruntime : 3892.956655 [ 142.927373] .max_vruntime : 0.000001 [ 142.927373] .spread : 0.000000 [ 142.927373] .spread0 : 0.000000 [ 142.927373] .nr_running : 0 [ 142.927373] .load : 0 [ 142.927373] .nr_spread_over : 0 [ 142.927373] [ 142.927373] cfs_rq[0]: [ 142.927373] .exec_clock : 0.000000 [ 142.927373] .MIN_vruntime : 0.000001 [ 142.927373] .min_vruntime : 3892.956655 [ 142.927373] .max_vruntime : 0.000001 [ 142.927373] .spread : 0.000000 [ 142.927373] .spread0 : 0.000000 [ 142.927373] .nr_running : 0 [ 142.927373] .load : 0 [ 142.927373] .nr_spread_over : 0 [ 142.927373] [ 142.927373] cfs_rq[0]: [ 142.927373] .exec_clock : 0.000000 [ 142.927373] .MIN_vruntime : 0.000001 [ 142.927373] .min_vruntime : 3892.956655 [ 142.927373] .max_vruntime : 0.000001 [ 142.927373] .spread : 0.000000 [ 142.927373] .spread0 : 0.000000 [ 142.927373] .nr_running : 0 [ 142.927373] .load : 0 [ 142.927373] .nr_spread_over : 0 [ 142.927373] [ 142.927373] cfs_rq[0]: [ 142.927373] .exec_clock : 0.000000 [ 142.927373] .MIN_vruntime : 7544.315228 [ 142.927373] .min_vruntime : 3892.956655 [ 142.927373] .max_vruntime : 7562.765552 [ 142.927373] .spread : 18.450324 [ 142.927373] .spread0 : 0.000000 [ 142.927373] .nr_running : 3 [ 142.927373] .load : 5169 [ 142.927373] .nr_spread_over : 0 [ 142.927373] [ 142.927373] runnable tasks: [ 142.927373] task PID tree-key switches prio exec-runtime sum-exec sum-sleep [ 142.927373] ---------------------------------------------------------------------------------------------------------- [ 142.927373] events/0 5 7562.765552 698 115 0 0 0.000000 0.000000 0.000000 [ 142.927373] metalog 2176 7559.516284 12 120 0 0 0.000000 0.000000 0.000000 [ 142.927373] hald-addon-inpu 2271 7544.315228 531 120 0 0 0.000000 0.000000 0.000000 [ 142.927373] [ 143.119550] ipw2200: Firmware error detected. Restarting. [ 148.446057] SysRq : HELP : loglevel0-8 reBoot Crashdump tErm Full kIll saK showMem Nice powerOff showPc show-all-timers(Q) unRaw Sync showTasks Unmount shoW-blocked-tasks [ 160.820622] SysRq : Show Regs [ 160.820622] [ 160.820622] Pid: 0, comm: swapper Tainted: G D (2.6.26-rc4-add-drm-bug_on-00103-g1beee8d-dirty #5) [ 160.820622] EIP: 0060:[] EFLAGS: 00000246 CPU: 0 [ 160.820622] EIP is at acpi_processor_idle+0x2b9/0x458 [ 160.820622] EAX: 00000095 EBX: 0000d6b9 ECX: 00000025 EDX: 00000000 [ 160.820622] ESI: ef8d4c4c EDI: 00707bd2 EBP: c03c7fc8 ESP: c03c7fb0 [ 160.820622] DS: 007b ES: 007b FS: 0000 GS: 0000 SS: 0068 [ 160.820622] CR0: 8005003b CR2: 0804d08c CR3: 2bcdf000 CR4: 000006d0 [ 160.820622] DR0: 00000000 DR1: 00000000 DR2: 00000000 DR3: 00000000 [ 160.820622] DR6: ffff4ff0 DR7: 00000400 [ 160.820622] [] ? acpi_processor_idle+0x0/0x458 [ 160.820622] [] cpu_idle+0x65/0x92 [ 160.820622] [] rest_init+0x61/0x63 [ 160.820622] ======================= [ 174.875023] SysRq : Trigger a crashdump [ 181.276787] SysRq : HELP : loglevel0-8 reBoot Crashdump tErm Full kIll saK showMem Nice powerOff showPc show-all-timers(Q) unRaw Sync showTasks Unmount shoW-blocked-tasks [ 197.412932] SysRq : Manual OOM execution [ 197.412932] events/0 invoked oom-killer: gfp_mask=0xd0, order=0, oomkilladj=0 [ 197.412932] Pid: 5, comm: events/0 Tainted: G D 2.6.26-rc4-add-drm-bug_on-00103-g1beee8d-dirty #5 [ 197.412932] [] oom_kill_process+0x40/0x195 [ 197.412932] [] ? badness+0x183/0x1b9 [ 197.412932] [] out_of_memory+0x16a/0x1b0 [ 197.412932] [] moom_callback+0x14/0x16 [ 197.412932] [] run_workqueue+0xa5/0x156 [ 197.412932] [] ? moom_callback+0x0/0x16 [ 197.412932] [] worker_thread+0xae/0xba [ 197.412932] [] ? autoremove_wake_function+0x0/0x30 [ 197.412932] [] ? worker_thread+0x0/0xba [ 197.412932] [] kthread+0x39/0x61 [ 197.412932] [] ? kthread+0x0/0x61 [ 197.416052] [] kernel_thread_helper+0x7/0x10 [ 197.416194] ======================= [ 197.416263] Mem-info: [ 197.416359] DMA per-cpu: [ 197.416428] CPU 0: hi: 0, btch: 1 usd: 0 [ 197.416528] Normal per-cpu: [ 197.416597] CPU 0: hi: 186, btch: 31 usd: 111 [ 197.416699] Active:5477 inactive:8976 dirty:23 writeback:0 unstable:0 [ 197.416701] free:174595 slab:1409 mapped:1363 pagetables:81 bounce:0 [ 197.416879] DMA free:12848kB min:72kB low:88kB high:108kB active:0kB inactive:0kB present:16256kB pages_scanned:0 all_unreclaimable? no [ 197.416992] lowmem_reserve[]: 0 746 746 [ 197.417284] Normal free:685532kB min:3456kB low:4320kB high:5184kB active:21908kB inactive:35904kB present:763968kB pages_scanned:0 all_unreclaimable? no [ 197.417401] lowmem_reserve[]: 0 0 0 [ 197.417689] DMA: 4*4kB 2*8kB 3*16kB 5*32kB 5*64kB 2*128kB 1*256kB 1*512kB 1*1024kB 1*2048kB 2*4096kB = 12848kB [ 197.418374] Normal: 317*4kB 185*8kB 84*16kB 45*32kB 19*64kB 9*128kB 5*256kB 5*512kB 4*1024kB 1*2048kB 163*4096kB = 685532kB [ 197.419089] 13148 total pagecache pages [ 197.419160] Swap cache: add 0, delete 0, find 0/0 [ 197.419260] Free swap = 987956kB [ 197.419329] Total swap = 987956kB [ 197.424873] 196592 pages of RAM [ 197.424950] 0 pages of HIGHMEM [ 197.425052] 2655 reserved pages [ 197.425121] 8188 pages shared [ 197.425217] 0 pages swap cached [ 197.425286] 23 pages dirty [ 197.425382] 0 pages writeback [ 197.425451] 1363 pages mapped [ 197.425547] 1409 pages slab [ 197.425615] 81 pages pagetables [ 197.425713] Out of memory: kill process 2372 (bash) score 1768 or a child [ 197.425797] Killed process 2372 (bash) [ 202.964423] SysRq : HELP : loglevel0-8 reBoot Crashdump tErm Full kIll saK showMem Nice powerOff showPc show-all-timers(Q) unRaw Sync showTasks Unmount shoW-blocked-tasks [ 208.022496] SysRq : Emergency Sync [ 208.023114] Emergency Sync complete [ 229.903696] SysRq : Resetting --=-JqoNgtRIIRvG5CU8iE5R Content-Disposition: attachment; filename=lspci-vv Content-Type: text/plain; name=lspci-vv; charset=UTF-8 Content-Transfer-Encoding: 7bit 00:00.0 Host bridge: Intel Corporation 82855PM Processor to I/O Controller (rev 21) Subsystem: COMPAL Electronics Inc Device 0012 Control: I/O- Mem+ BusMaster+ SpecCycle- MemWINV- VGASnoop- ParErr- Stepping- SERR- FastB2B- DisINTx- Status: Cap+ 66MHz- UDF- FastB2B+ ParErr- DEVSEL=fast >TAbort- SERR- Capabilities: [a0] AGP version 2.0 Status: RQ=32 Iso- ArqSz=0 Cal=0 SBA+ ITACoh- GART64- HTrans- 64bit- FW+ AGP3- Rate=x1,x2,x4 Command: RQ=1 ArqSz=0 Cal=0 SBA- AGP- GART64- 64bit- FW- Rate=x2 Kernel driver in use: agpgart-intel Kernel modules: intel-agp 00:01.0 PCI bridge: Intel Corporation 82855PM Processor to AGP Controller (rev 21) (prog-if 00 [Normal decode]) Control: I/O+ Mem+ BusMaster+ SpecCycle- MemWINV- VGASnoop- ParErr- Stepping- SERR+ FastB2B- DisINTx- Status: Cap- 66MHz+ UDF- FastB2B+ ParErr- DEVSEL=fast >TAbort- SERR- TAbort- Reset- FastB2B- PriDiscTmr- SecDiscTmr- DiscTmrStat- DiscTmrSERREn- 00:1d.0 USB Controller: Intel Corporation 82801DB/DBL/DBM (ICH4/ICH4-L/ICH4-M) USB UHCI Controller #1 (rev 03) (prog-if 00 [UHCI]) Subsystem: COMPAL Electronics Inc Device 0012 Control: I/O+ Mem- BusMaster+ SpecCycle- MemWINV- VGASnoop- ParErr- Stepping- SERR- FastB2B- DisINTx- Status: Cap- 66MHz- UDF- FastB2B+ ParErr- DEVSEL=medium >TAbort- SERR- TAbort- SERR- TAbort- SERR- TAbort- SERR- TAbort- SERR- TAbort- Reset- FastB2B- PriDiscTmr- SecDiscTmr- DiscTmrStat- DiscTmrSERREn- 00:1f.0 ISA bridge: Intel Corporation 82801DBM (ICH4-M) LPC Interface Bridge (rev 03) Control: I/O+ Mem+ BusMaster+ SpecCycle+ MemWINV- VGASnoop- ParErr- Stepping- SERR- FastB2B- DisINTx- Status: Cap- 66MHz- UDF- FastB2B+ ParErr- DEVSEL=medium >TAbort- SERR- TAbort- SERR- TAbort- SERR- TAbort- SERR- TAbort- SERR- TAbort- SERR- Capabilities: [50] Power Management version 2 Flags: PMEClk- DSI- D1+ D2+ AuxCurrent=0mA PME(D0-,D1-,D2-,D3hot-,D3cold-) Status: D0 PME-Enable- DSel=0 DScale=0 PME- Kernel driver in use: radeonfb Kernel modules: radeonfb 02:00.0 FireWire (IEEE 1394): VIA Technologies, Inc. IEEE 1394 Host Controller (rev 80) (prog-if 10 [OHCI]) Subsystem: COMPAL Electronics Inc Device 0012 Control: I/O+ Mem+ BusMaster+ SpecCycle- MemWINV- VGASnoop- ParErr- Stepping+ SERR- FastB2B- DisINTx- Status: Cap+ 66MHz- UDF- FastB2B- ParErr- DEVSEL=medium >TAbort- SERR- TAbort- SERR- TAbort- SERR- TAbort- SERR- Reset+ 16bInt+ PostWrite- 16-bit legacy interface ports at 0001 --=-JqoNgtRIIRvG5CU8iE5R-- -- To unsubscribe from this list: send the line "unsubscribe linux-kernel" in the body of a message to majordomo@vger.kernel.org More majordomo info at http://vger.kernel.org/majordomo-info.html Please read the FAQ at http://www.tux.org/lkml/