* [git pull] drm fixes
@ 2010-02-01 2:20 Dave Airlie
2010-02-01 2:53 ` Dave Airlie
0 siblings, 1 reply; 64+ messages in thread
From: Dave Airlie @ 2010-02-01 2:20 UTC (permalink / raw)
To: torvalds; +Cc: dri-devel, linux-kernel
[-- Attachment #1: Type: TEXT/PLAIN, Size: 9189 bytes --]
Hi Linus,
Please pull the 'drm-linus' branch from
ssh://master.kernel.org/pub/scm/linux/kernel/git/airlied/drm-2.6.git drm-linus
Major change is to move the radeon KMS enable out of staging and into
normal Kconfig land, its not perfect but its as good as userspace was for
most people.
others:
drm core: just a bogus comment removal
ttm: a few changes one fixes an error printf in reserve_ram_pages_type,
radeon: Displayport fixes, tested on all the displayport machines I own
(i.e. 2) but they both now work, r600 blit mutex, AGP warning fix.
vmwgfx: 3 patches for older version of vmware workstation, I think vmware
have one more patch but since this driver is staging it can wait until
merge window anyways.
Dave.
drivers/gpu/drm/Kconfig | 2 +
drivers/gpu/drm/radeon/atombios_dp.c | 27 ++---
drivers/gpu/drm/radeon/r600.c | 54 +++++-----
drivers/gpu/drm/radeon/r600_blit_kms.c | 7 +-
drivers/gpu/drm/radeon/radeon.h | 1 +
drivers/gpu/drm/radeon/radeon_agp.c | 18 ++--
drivers/gpu/drm/radeon/radeon_encoders.c | 165 ++++++++++++++++-------------
drivers/gpu/drm/radeon/radeon_mode.h | 2 +-
drivers/gpu/drm/radeon/rv770.c | 31 +++---
drivers/gpu/drm/ttm/ttm_bo_util.c | 9 +--
drivers/gpu/drm/ttm/ttm_object.c | 2 +-
drivers/gpu/drm/ttm/ttm_tt.c | 23 +++--
drivers/gpu/drm/vmwgfx/vmwgfx_drv.c | 13 +++
drivers/gpu/drm/vmwgfx/vmwgfx_drv.h | 3 +
drivers/gpu/drm/vmwgfx/vmwgfx_fifo.c | 19 ++++
drivers/gpu/drm/vmwgfx/vmwgfx_ioctl.c | 2 +-
drivers/gpu/drm/vmwgfx/vmwgfx_kms.c | 10 ++
drivers/gpu/drm/vmwgfx/vmwgfx_resource.c | 16 +++-
drivers/staging/Kconfig | 2 -
include/drm/drm_mode.h | 2 +-
20 files changed, 244 insertions(+), 164 deletions(-)
commit f71d0187987e691516cd10c2702f002c0e2f0edc
Author: Dave Airlie <airlied@redhat.com>
Date: Mon Feb 1 11:35:47 2010 +1000
drm/radeon/kms: move radeon KMS on/off switch out of staging.
We are happy enough that the KMS driver is stable enough for enough people
for the kms enable/disable to leave staging. Distros can now contemplate
turning this on.
Signed-off-by: Dave Airlie <airlied@redhat.com>
commit ff82f052d2a187dd0fa0e431ba70eb457c71a40e
Author: Jerome Glisse <jglisse@redhat.com>
Date: Fri Jan 22 15:19:00 2010 +0100
drm/radeon/kms: Bailout of blit if error happen & protect with mutex V3
If an error happen in r600_blit_prepare_copy report it rather
than WARNING and keeping execution. For instance if ib allocation
failed we did just warn about but then latter tried to access
NULL ib ptr causing oops. This patch also protect r600_copy_blit
with a mutex as otherwise one process might overwrite blit temporary
data with new one possibly leading to GPU lockup.
Should partialy or totaly fix:
https://bugzilla.redhat.com/show_bug.cgi?id=553279
V2 failing blit initialization is not fatal, fallback to memcpy when
this happen
V3 init blit before startup as we pin in startup, remove duplicate
code (this one was actualy tested unlike V2)
Signed-off-by: Jerome Glisse <jglisse@redhat.com>
Signed-off-by: Dave Airlie <airlied@redhat.com>
commit 5ffdb658f605cbc420944e7c7eeec9fbb8a73772
Author: Jakob Bornecrantz <jakob@vmware.com>
Date: Sat Jan 30 03:38:08 2010 +0000
drm/vmwgfx: Don't send bad flags to the host
Signed-off-by: Jakob Bornecrantz <jakob@vmware.com>
Signed-off-by: Dave Airlie <airlied@redhat.com>
commit c188660f6dbb0df9febe1b841a16c66c28353c15
Author: Peter Hanzel <hanzelpeter@gmail.com>
Date: Sat Jan 30 03:38:07 2010 +0000
drm/vmwgfx: Request SVGA version 2 and bail if not found
This fixes the driver not loading on older versions of VMware.
Signed-off-by: Peter Hanzel <hanzelpeter@gmail.com>
Signed-off-by: Jakob Bornecrantz <jakob@vmware.com>
Signed-off-by: Dave Airlie <airlied@redhat.com>
commit 8e19a951774a16cf2626292ae06fd2b62630e67e
Author: Jakob Bornecrantz <jakob@vmware.com>
Date: Sat Jan 30 03:38:06 2010 +0000
drm/vmwgfx: Correctly detect 3D
Signed-off-by: Jakob Bornecrantz <jakob@vmware.com>
Signed-off-by: Dave Airlie <airlied@redhat.com>
commit 110b20c3ddcfa98cc932aef3af2d59b4e0841f08
Author: Austin Yuan <shengquan.yuan@gmail.com>
Date: Thu Jan 21 13:45:40 2010 +0800
drm/ttm: remove unnecessary save_flags and ttm_flag_masked in ttm_bo_util.c
Signed-off-by: Austin Yuan <shengquan.yuan@gmail.com>
Acked-by: Thomas Hellstrom <thellstrom@vmware.com>
Signed-off-by: Dave Airlie <airlied@redhat.com>
commit fa5829b36539067f3c675f5d437531dedcfc4ad8
Author: Marcin Kościelnicki <koriakin@0x04.net>
Date: Sat Jan 23 10:25:28 2010 +1000
drm/kms: Remove incorrect comment in struct drm_mode_modeinfo
Signed-off-by: Dave Airlie <airlied@redhat.com>
commit dd5fde6041d7ea30fcfedcc159a4cec8b01f73b2
Author: Richard Kennedy <richard@rsk.demon.co.uk>
Date: Tue Jan 26 17:10:48 2010 +0000
drm/ttm: remove padding from ttm_ref_object on 64bit builds
Re-order structure ttm_ref_object to remove 8 bytes of alignment padding
on 64 bit builds, so shrinking its size from 72 to 64 bytes allowing it
to fit into a smaller slab.
Signed-off-by: Richard Kennedy <richard@rsk.demon.co.uk>
Acked-by: Thomas Hellstrom <thellstrom@vmware.com>
Signed-off-by: Dave Airlie <airlied@redhat.com>
commit 4b866288be6ffaefaad9cec212cb09e3258a68ee
Author: Dave Airlie <airlied@redhat.com>
Date: Mon Feb 1 11:22:10 2010 +1000
drm/radeon/kms: release agp on error.
if we get an error, release the AGP if we've acquired it already.
Signed-off-by: Dave Airlie <airlied@redhat.com>
commit 2dea2e29b9fad48c759aa406b5ea426bff4339af
Author: John Kacur <jkacur@redhat.com>
Date: Sun Jan 31 20:38:03 2010 +0100
drm/kms/radeon/agp: Move the check of the aper_size after drm_acp_acquire and drm_agp_info
First call drm_agp_acquire to check if agp has been acquired.
Second call drm_agp_info to fill in the info data struct, including aper_size.
Finally do the check to see if the aper_size makes sense.
Signed-off-by: John Kacur <jkacur@redhat.com>
Signed-off-by: Dave Airlie <airlied@redhat.com>
commit cdb6e375c3c84558ed2c13c5461b22e8f7b7980e
Author: John Kacur <jkacur@redhat.com>
Date: Sun Jan 31 20:38:02 2010 +0100
drm/kms/radeon/agp: Fix warning, format ‘%d’ expects type ‘int’, but argument 4 has type ‘size_t’
- Fix warning by using %zu instead of %d for size_t
- Fix spelling mistake, "to" should be "too".
Signed-off-by: John Kacur <jkacur@redhat.com>
Signed-off-by: Dave Airlie <airlied@redhat.com>
commit db78e27de7e29a6db6be7caf607cf803d84094aa
Author: Francisco Jerez <currojerez@riseup.net>
Date: Tue Jan 12 18:49:43 2010 +0100
drm/ttm: Avoid conflicting reserve_memtype during ttm_tt_set_page_caching.
Fixes errors like:
> reserve_ram_pages_type failed 0x15b7a000-0x15b7b000, track 0x8, req 0x10
when a BO is moved between WC and UC areas.
Reported-by: Xavier Chantry <shiningxc@gmail.com>
Signed-off-by: Francisco Jerez <currojerez@riseup.net>
Acked-by: Thomas Hellstrom <thellstrom@vmware.com>
Signed-off-by: Dave Airlie <airlied@redhat.com>
commit f28cf33945cc112f8ee835512b7440905dc29ad2
Author: Dave Airlie <airlied@redhat.com>
Date: Thu Jan 28 17:15:25 2010 +1000
drm/kms/radeon: pick digitial encoders smarter. (v3)
booting a Lenovo W500 with LVDS + DP outputs showed up a TODO we had
on our list, to pick a correct digital encoder block. The LVTMA
encoder requires the second digital encoder, all others can use any
encoder at all.
This fixes the digital encoder selection logic to enable LVDS/DP combos
to work okay.
V2: fix silly addition of connector dig_block and cleanup the other
places in the code that pick the encoder.
V3: rename to dig_encoder and clean up further - also fix
the picking algorithm.
tested on Lenovo W500 + desktop 3650 cards.
Signed-off-by: Dave Airlie <airlied@redhat.com>
commit 43c33ed87d0f1b900a6a3014db556ecc7f4a989b
Author: Dave Airlie <airlied@linux.ie>
Date: Fri Jan 29 15:55:30 2010 +1000
drm/radeon/kms: use active device to pick connector for encoder
On the W500 we have UNIPHY routed to both DVI and DP, this seems
to always pick the DVI connector which means link training fails.
Switch to using active device to pick the connector, this seems
like it should be safe from a code review, and it fixes things
a bit more here.
Signed-off-by: Dave Airlie <airlied@redhat.com>
commit 97b94ccb9aa1b82ed7a9a045d0ae5b32c99b84a0
Author: Dave Airlie <airlied@redhat.com>
Date: Fri Jan 29 15:31:47 2010 +1000
drm/radeon/kms: fix incorrect logic in DP vs eDP connector checking.
This makes displayport work again here.
Signed-off-by: Dave Airlie <airlied@redhat.com>
^ permalink raw reply [flat|nested] 64+ messages in thread* Re: [git pull] drm fixes 2010-02-01 2:20 [git pull] drm fixes Dave Airlie @ 2010-02-01 2:53 ` Dave Airlie 2010-02-02 8:17 ` [crash, PATCH] Revert "drm/radeon/kms: move radeon KMS on/off switch out of staging." Ingo Molnar 0 siblings, 1 reply; 64+ messages in thread From: Dave Airlie @ 2010-02-01 2:53 UTC (permalink / raw) To: torvalds; +Cc: linux-kernel, dri-devel [-- Attachment #1: Type: TEXT/PLAIN, Size: 10327 bytes --] > Hi Linus, > > Please pull the 'drm-linus' branch from > ssh://master.kernel.org/pub/scm/linux/kernel/git/airlied/drm-2.6.git drm-linus > I've also added an oops fix I seem to lose off my radar to this tree. commit 17aafccab4352b422aa01fa6ebf82daff693a5b3 Author: Michel Dänzer <daenzer@vmware.com> Date: Fri Jan 22 09:20:00 2010 +0100 drm/radeon/kms: Fix oops after radeon_cs_parser_init() failure. If radeon_cs_parser_init() fails, radeon_cs_ioctl() calls radeon_cs_parser_fini() with the non-zero error value. The latter dereferenc parser->ib which hasn't been initialized yet -> boom. Add a test for parser- being non-NULL before dereferencing it. Signed-off-by: Michel Dänzer <daenzer@vmware.com> Signed-off-by: Dave Airlie <airlied@redhat.com> > Major change is to move the radeon KMS enable out of staging and into > normal Kconfig land, its not perfect but its as good as userspace was for > most people. > > others: > drm core: just a bogus comment removal > ttm: a few changes one fixes an error printf in reserve_ram_pages_type, > radeon: Displayport fixes, tested on all the displayport machines I own > (i.e. 2) but they both now work, r600 blit mutex, AGP warning fix. > > vmwgfx: 3 patches for older version of vmware workstation, I think vmware > have one more patch but since this driver is staging it can wait until > merge window anyways. > > Dave. > > drivers/gpu/drm/Kconfig | 2 + > drivers/gpu/drm/radeon/atombios_dp.c | 27 ++--- > drivers/gpu/drm/radeon/r600.c | 54 +++++----- > drivers/gpu/drm/radeon/r600_blit_kms.c | 7 +- > drivers/gpu/drm/radeon/radeon.h | 1 + > drivers/gpu/drm/radeon/radeon_agp.c | 18 ++-- > drivers/gpu/drm/radeon/radeon_encoders.c | 165 ++++++++++++++++------------- > drivers/gpu/drm/radeon/radeon_mode.h | 2 +- > drivers/gpu/drm/radeon/rv770.c | 31 +++--- > drivers/gpu/drm/ttm/ttm_bo_util.c | 9 +-- > drivers/gpu/drm/ttm/ttm_object.c | 2 +- > drivers/gpu/drm/ttm/ttm_tt.c | 23 +++-- > drivers/gpu/drm/vmwgfx/vmwgfx_drv.c | 13 +++ > drivers/gpu/drm/vmwgfx/vmwgfx_drv.h | 3 + > drivers/gpu/drm/vmwgfx/vmwgfx_fifo.c | 19 ++++ > drivers/gpu/drm/vmwgfx/vmwgfx_ioctl.c | 2 +- > drivers/gpu/drm/vmwgfx/vmwgfx_kms.c | 10 ++ > drivers/gpu/drm/vmwgfx/vmwgfx_resource.c | 16 +++- > drivers/staging/Kconfig | 2 - > include/drm/drm_mode.h | 2 +- > 20 files changed, 244 insertions(+), 164 deletions(-) > > commit f71d0187987e691516cd10c2702f002c0e2f0edc > Author: Dave Airlie <airlied@redhat.com> > Date: Mon Feb 1 11:35:47 2010 +1000 > > drm/radeon/kms: move radeon KMS on/off switch out of staging. > > We are happy enough that the KMS driver is stable enough for enough people > for the kms enable/disable to leave staging. Distros can now contemplate > turning this on. > > Signed-off-by: Dave Airlie <airlied@redhat.com> > > commit ff82f052d2a187dd0fa0e431ba70eb457c71a40e > Author: Jerome Glisse <jglisse@redhat.com> > Date: Fri Jan 22 15:19:00 2010 +0100 > > drm/radeon/kms: Bailout of blit if error happen & protect with mutex V3 > > If an error happen in r600_blit_prepare_copy report it rather > than WARNING and keeping execution. For instance if ib allocation > failed we did just warn about but then latter tried to access > NULL ib ptr causing oops. This patch also protect r600_copy_blit > with a mutex as otherwise one process might overwrite blit temporary > data with new one possibly leading to GPU lockup. > > Should partialy or totaly fix: > https://bugzilla.redhat.com/show_bug.cgi?id=553279 > > V2 failing blit initialization is not fatal, fallback to memcpy when > this happen > V3 init blit before startup as we pin in startup, remove duplicate > code (this one was actualy tested unlike V2) > > Signed-off-by: Jerome Glisse <jglisse@redhat.com> > Signed-off-by: Dave Airlie <airlied@redhat.com> > > commit 5ffdb658f605cbc420944e7c7eeec9fbb8a73772 > Author: Jakob Bornecrantz <jakob@vmware.com> > Date: Sat Jan 30 03:38:08 2010 +0000 > > drm/vmwgfx: Don't send bad flags to the host > > Signed-off-by: Jakob Bornecrantz <jakob@vmware.com> > Signed-off-by: Dave Airlie <airlied@redhat.com> > > commit c188660f6dbb0df9febe1b841a16c66c28353c15 > Author: Peter Hanzel <hanzelpeter@gmail.com> > Date: Sat Jan 30 03:38:07 2010 +0000 > > drm/vmwgfx: Request SVGA version 2 and bail if not found > > This fixes the driver not loading on older versions of VMware. > > Signed-off-by: Peter Hanzel <hanzelpeter@gmail.com> > Signed-off-by: Jakob Bornecrantz <jakob@vmware.com> > Signed-off-by: Dave Airlie <airlied@redhat.com> > > commit 8e19a951774a16cf2626292ae06fd2b62630e67e > Author: Jakob Bornecrantz <jakob@vmware.com> > Date: Sat Jan 30 03:38:06 2010 +0000 > > drm/vmwgfx: Correctly detect 3D > > Signed-off-by: Jakob Bornecrantz <jakob@vmware.com> > Signed-off-by: Dave Airlie <airlied@redhat.com> > > commit 110b20c3ddcfa98cc932aef3af2d59b4e0841f08 > Author: Austin Yuan <shengquan.yuan@gmail.com> > Date: Thu Jan 21 13:45:40 2010 +0800 > > drm/ttm: remove unnecessary save_flags and ttm_flag_masked in ttm_bo_util.c > > Signed-off-by: Austin Yuan <shengquan.yuan@gmail.com> > Acked-by: Thomas Hellstrom <thellstrom@vmware.com> > Signed-off-by: Dave Airlie <airlied@redhat.com> > > commit fa5829b36539067f3c675f5d437531dedcfc4ad8 > Author: Marcin Kościelnicki <koriakin@0x04.net> > Date: Sat Jan 23 10:25:28 2010 +1000 > > drm/kms: Remove incorrect comment in struct drm_mode_modeinfo > > Signed-off-by: Dave Airlie <airlied@redhat.com> > > commit dd5fde6041d7ea30fcfedcc159a4cec8b01f73b2 > Author: Richard Kennedy <richard@rsk.demon.co.uk> > Date: Tue Jan 26 17:10:48 2010 +0000 > > drm/ttm: remove padding from ttm_ref_object on 64bit builds > > Re-order structure ttm_ref_object to remove 8 bytes of alignment padding > on 64 bit builds, so shrinking its size from 72 to 64 bytes allowing it > to fit into a smaller slab. > > Signed-off-by: Richard Kennedy <richard@rsk.demon.co.uk> > Acked-by: Thomas Hellstrom <thellstrom@vmware.com> > Signed-off-by: Dave Airlie <airlied@redhat.com> > > commit 4b866288be6ffaefaad9cec212cb09e3258a68ee > Author: Dave Airlie <airlied@redhat.com> > Date: Mon Feb 1 11:22:10 2010 +1000 > > drm/radeon/kms: release agp on error. > > if we get an error, release the AGP if we've acquired it already. > > Signed-off-by: Dave Airlie <airlied@redhat.com> > > commit 2dea2e29b9fad48c759aa406b5ea426bff4339af > Author: John Kacur <jkacur@redhat.com> > Date: Sun Jan 31 20:38:03 2010 +0100 > > drm/kms/radeon/agp: Move the check of the aper_size after drm_acp_acquire and drm_agp_info > > First call drm_agp_acquire to check if agp has been acquired. > Second call drm_agp_info to fill in the info data struct, including aper_size. > Finally do the check to see if the aper_size makes sense. > > Signed-off-by: John Kacur <jkacur@redhat.com> > Signed-off-by: Dave Airlie <airlied@redhat.com> > > commit cdb6e375c3c84558ed2c13c5461b22e8f7b7980e > Author: John Kacur <jkacur@redhat.com> > Date: Sun Jan 31 20:38:02 2010 +0100 > > drm/kms/radeon/agp: Fix warning, format ‘%d’ expects type ‘int’, but argument 4 has type ‘size_t’ > > - Fix warning by using %zu instead of %d for size_t > - Fix spelling mistake, "to" should be "too". > > Signed-off-by: John Kacur <jkacur@redhat.com> > Signed-off-by: Dave Airlie <airlied@redhat.com> > > commit db78e27de7e29a6db6be7caf607cf803d84094aa > Author: Francisco Jerez <currojerez@riseup.net> > Date: Tue Jan 12 18:49:43 2010 +0100 > > drm/ttm: Avoid conflicting reserve_memtype during ttm_tt_set_page_caching. > > Fixes errors like: > > reserve_ram_pages_type failed 0x15b7a000-0x15b7b000, track 0x8, req 0x10 > when a BO is moved between WC and UC areas. > > Reported-by: Xavier Chantry <shiningxc@gmail.com> > Signed-off-by: Francisco Jerez <currojerez@riseup.net> > Acked-by: Thomas Hellstrom <thellstrom@vmware.com> > Signed-off-by: Dave Airlie <airlied@redhat.com> > > commit f28cf33945cc112f8ee835512b7440905dc29ad2 > Author: Dave Airlie <airlied@redhat.com> > Date: Thu Jan 28 17:15:25 2010 +1000 > > drm/kms/radeon: pick digitial encoders smarter. (v3) > > booting a Lenovo W500 with LVDS + DP outputs showed up a TODO we had > on our list, to pick a correct digital encoder block. The LVTMA > encoder requires the second digital encoder, all others can use any > encoder at all. > > This fixes the digital encoder selection logic to enable LVDS/DP combos > to work okay. > > V2: fix silly addition of connector dig_block and cleanup the other > places in the code that pick the encoder. > > V3: rename to dig_encoder and clean up further - also fix > the picking algorithm. > > tested on Lenovo W500 + desktop 3650 cards. > > Signed-off-by: Dave Airlie <airlied@redhat.com> > > commit 43c33ed87d0f1b900a6a3014db556ecc7f4a989b > Author: Dave Airlie <airlied@linux.ie> > Date: Fri Jan 29 15:55:30 2010 +1000 > > drm/radeon/kms: use active device to pick connector for encoder > > On the W500 we have UNIPHY routed to both DVI and DP, this seems > to always pick the DVI connector which means link training fails. > > Switch to using active device to pick the connector, this seems > like it should be safe from a code review, and it fixes things > a bit more here. > > Signed-off-by: Dave Airlie <airlied@redhat.com> > > commit 97b94ccb9aa1b82ed7a9a045d0ae5b32c99b84a0 > Author: Dave Airlie <airlied@redhat.com> > Date: Fri Jan 29 15:31:47 2010 +1000 > > drm/radeon/kms: fix incorrect logic in DP vs eDP connector checking. > > This makes displayport work again here. > > Signed-off-by: Dave Airlie <airlied@redhat.com> ^ permalink raw reply [flat|nested] 64+ messages in thread
* [crash, PATCH] Revert "drm/radeon/kms: move radeon KMS on/off switch out of staging." 2010-02-01 2:53 ` Dave Airlie @ 2010-02-02 8:17 ` Ingo Molnar 2010-02-02 8:25 ` Dave Airlie ` (3 more replies) 0 siblings, 4 replies; 64+ messages in thread From: Ingo Molnar @ 2010-02-02 8:17 UTC (permalink / raw) To: Dave Airlie; +Cc: torvalds, linux-kernel, dri-devel [-- Attachment #1: Type: text/plain, Size: 9775 bytes --] * Dave Airlie <airlied@linux.ie> wrote: > > Hi Linus, > > > > Please pull the 'drm-linus' branch from > > ssh://master.kernel.org/pub/scm/linux/kernel/git/airlied/drm-2.6.git drm-linus > > > > I've also added an oops fix I seem to lose off my radar to this tree. > > commit 17aafccab4352b422aa01fa6ebf82daff693a5b3 > Author: Michel D??nzer <daenzer@vmware.com> > Date: Fri Jan 22 09:20:00 2010 +0100 > > drm/radeon/kms: Fix oops after radeon_cs_parser_init() failure. FYI, this drm pull into mainline has triggered quick boot crashes in -tip testing (even with the above fix applied), on an Athlon64 whitebox PC with: 01:00.0 VGA compatible controller: ATI Technologies Inc RV370 5B60 [Radeon X300 (PCIE)] 01:00.1 Display controller: ATI Technologies Inc RV370 [Radeon X300SE] the crash is: [ 7.111003] radeon 0000:01:00.0: Disabling GPU acceleration [ 7.273547] Failed to wait GUI idle while programming pipes. Bad things might happen. [ 7.436296] [drm:r100_cp_fini] *ERROR* Wait for CP idle timeout, shutting down CP. [ 7.598755] Failed to wait GUI idle while programming pipes. Bad things might happen. [ 7.599306] BUG: unable to handle kernel paging request at f8380000 [ 7.599999] IP: [<c149f0de>] rv370_pcie_gart_set_page+0x2d/0x3c [ 7.599999] *pde = 36d44067 *pte = 00000000 [ 7.599999] Oops: 0002 [#1] SMP DEBUG_PAGEALLOC [ 7.599999] last sysfs file: i have bisected it back to: | 97b94ccb9aa1b82ed7a9a045d0ae5b32c99b84a0 is the first bad commit | commit 97b94ccb9aa1b82ed7a9a045d0ae5b32c99b84a0 | Author: Dave Airlie <airlied@redhat.com> | Date: Fri Jan 29 15:31:47 2010 +1000 | | drm/radeon/kms: fix incorrect logic in DP vs eDP connector checking. | | This makes displayport work again here. Unfortunately even with that patch reverted it still crashes. Config and bootlog attached. It's the moving of radeom KMS out of staging after -rc6 that causes it, because it brought it into the scope of my testing: f71d018: drm/radeon/kms: move radeon KMS on/off switch out of staging. So at least on this box it's clearly not ready for mainline enablement yet. I've attached the revert patch further below. Ingo --------------------> [ 6.864061] IOAPIC[0]: Set routing entry (2-5 -> 0x35 -> IRQ 5 Mode:1 Active:1) [ 6.871010] radeon 0000:01:00.0: PCI->APIC IRQ transform: INT A -> IRQ 5 [ 6.878014] radeon 0000:01:00.0: setting latency timer to 64 [ 6.885950] device: 'controlD64': device_add [ 6.890221] device: 'card0': device_add [ 6.894100] [drm] radeon: Initializing kernel modesetting. [ 6.900042] radeon 0000:01:00.0: using 40bit DMA mask [ 6.905018] [drm] register mmio base: 0xD9000000 [ 6.910004] [drm] register mmio size: 65536 [ 6.916147] [drm] GPU reset succeed (RBBM_STATUS=0x00000140) [ 6.917049] [drm] Generation 2 PCI interface, using max accessible memory [ 6.918004] [drm] radeon: VRAM 128M [ 6.919003] [drm] radeon: VRAM from 0x00000000 to 0x07FFFFFF [ 6.920005] [drm] radeon: GTT 512M [ 6.921003] [drm] radeon: GTT from 0x20000000 to 0x3FFFFFFF [ 6.922241] alloc irq_desc for 24 on node -1 [ 6.922999] alloc kstat_irqs on node -1 [ 6.923036] radeon 0000:01:00.0: irq 24 for MSI/MSI-X [ 6.924028] [drm] radeon: using MSI. [ 6.925133] [drm] radeon: irq initialized. [ 6.926009] [drm] Detected VRAM RAM=128M, BAR=128M [ 6.927003] [drm] RAM width 64bits DDR [ 6.929249] [TTM] Zone kernel: Available graphics memory: 434560 kiB. [ 6.930010] [TTM] Zone highmem: Available graphics memory: 506212 kiB. [ 6.931200] [drm] radeon: 128M of VRAM memory ready [ 6.932005] [drm] radeon: 512M of GTT memory ready. [ 6.933094] [drm] GART: num cpu pages 131072, num gpu pages 131072 [ 6.935508] [drm] radeon: 1 quad pipes, 1 Z pipes initialized. [ 6.936033] [drm] PCIE GART of 512M enabled (table at 0x00040000). [ 6.937068] [drm] radeon: cp idle (0x10000C03) [ 6.938011] Registering platform device 'radeon_cp.0'. Parent at platform [ 6.939005] device: 'radeon_cp.0': device_add [ 6.940018] bus: 'platform': add device radeon_cp.0 [ 6.941122] [drm] Loading R300 Microcode [ 6.942009] platform radeon_cp.0: firmware: using built-in firmware radeon/R300_cp.bin [ 6.943023] bus: 'platform': remove device radeon_cp.0 [ 6.945161] [drm] radeon: ring at 0x0000000020000000 [ 7.108115] [drm:r100_ring_test] *ERROR* radeon: ring test failed (sracth(0x15E4)=0xCAFEDEAD) [ 7.109004] [drm:r100_cp_init] *ERROR* radeon: cp isn't working (-22). [ 7.110003] radeon 0000:01:00.0: failled initializing CP (-22). [ 7.111003] radeon 0000:01:00.0: Disabling GPU acceleration [ 7.273547] Failed to wait GUI idle while programming pipes. Bad things might happen. [ 7.436296] [drm:r100_cp_fini] *ERROR* Wait for CP idle timeout, shutting down CP. [ 7.598755] Failed to wait GUI idle while programming pipes. Bad things might happen. [ 7.599306] BUG: unable to handle kernel paging request at f8380000 [ 7.599999] IP: [<c149f0de>] rv370_pcie_gart_set_page+0x2d/0x3c [ 7.599999] *pde = 36d44067 *pte = 00000000 [ 7.599999] Oops: 0002 [#1] SMP DEBUG_PAGEALLOC [ 7.599999] last sysfs file: [ 7.599999] [ 7.599999] Pid: 1, comm: swapper Not tainted 2.6.33-rc6-00066-g9ce9290-dirty #14391 A8N-E/System Product Name [ 7.599999] EIP: 0060:[<c149f0de>] EFLAGS: 00010206 CPU: 0 [ 7.599999] EIP is at rv370_pcie_gart_set_page+0x2d/0x3c [ 7.599999] EAX: 0000000c EBX: 00000000 ECX: f8380000 EDX: f8380000 [ 7.599999] ESI: 00000000 EDI: 00000001 EBP: f6c33d68 ESP: f6c33d60 [ 7.599999] DS: 007b ES: 007b FS: 00d8 GS: 0000 SS: 0068 [ 7.599999] Process swapper (pid: 1, ti=f6c32000 task=f6c30000 task.ti=f6c32000) [ 7.599999] Stack: [ 7.599999] f6a1f004 00000000 f6c33d90 c14899fb 00000000 00000000 00000100 00000000 [ 7.599999] <0> 00000000 f6a06538 00000000 00000002 f6c33d9c c1488467 f6a06500 f6c33da8 [ 7.599999] <0> c14628ad f6a12af0 f6c33dd0 c146413a 00000000 c20d0d00 f6a1f364 f6a1f364 [ 7.599999] Call Trace: [ 7.599999] [<c14899fb>] ? radeon_gart_unbind+0xb7/0xdf [ 7.599999] [<c1488467>] ? radeon_ttm_backend_unbind+0x14/0x1d [ 7.599999] [<c14628ad>] ? ttm_tt_unbind+0x15/0x27 [ 7.599999] [<c146413a>] ? ttm_bo_cleanup_refs+0xe0/0x1e8 [ 7.599999] [<c1465717>] ? ttm_bo_release+0x4c/0x65 [ 7.599999] [<c14656cb>] ? ttm_bo_release+0x0/0x65 [ 7.599999] [<c13bbda5>] ? kref_put+0x39/0x42 [ 7.599999] [<c1464357>] ? ttm_bo_unref+0x27/0x32 [ 7.599999] [<c148947f>] ? radeon_bo_unref+0x1d/0x2d [ 7.599999] [<c1495fd6>] ? radeon_ring_fini+0x55/0x74 [ 7.599999] [<c149d70d>] ? r100_cp_fini+0x5d/0x82 [ 7.599999] [<c14a1a03>] ? r300_init+0x1c5/0x20f [ 7.599999] [<c147d680>] ? radeon_device_init+0x227/0x29f [ 7.599999] [<c147df0a>] ? radeon_driver_load_kms+0x9d/0xff [ 7.599999] [<c145aa62>] ? drm_get_dev+0x28a/0x364 [ 7.599999] [<c1aabbe0>] ? radeon_pci_probe+0xd/0xf [ 7.599999] [<c13dc6a6>] ? local_pci_probe+0xe/0x10 [ 7.599999] [<c13dc86f>] ? pci_device_probe+0x43/0x66 [ 7.599999] [<c14cdaf8>] ? driver_probe_device+0xae/0x13e [ 7.599999] [<c14cdbcb>] ? __driver_attach+0x43/0x5f [ 7.599999] [<c14cd46e>] ? bus_for_each_dev+0x3d/0x67 [ 7.599999] [<c14cd954>] ? driver_attach+0x14/0x16 [ 7.599999] [<c14cdb88>] ? __driver_attach+0x0/0x5f [ 7.599999] [<c14cceb7>] ? bus_add_driver+0xab/0x1d1 [ 7.599999] [<c14cddf7>] ? driver_register+0x79/0xe0 [ 7.599999] [<c13ced32>] ? __raw_spin_lock_init+0x28/0x4e [ 7.599999] [<c13dca4a>] ? __pci_register_driver+0x4c/0xa9 [ 7.599999] [<c14570ad>] ? drm_init+0x5a/0xb2 [ 7.599999] [<c217d557>] ? radeon_init+0x0/0xae [ 7.599999] [<c217d603>] ? radeon_init+0xac/0xae [ 7.599999] [<c1001051>] ? do_one_initcall+0x4c/0x159 [ 7.599999] [<c215830a>] ? kernel_init+0x112/0x163 [ 7.599999] [<c21581f8>] ? kernel_init+0x0/0x163 [ 7.599999] [<c10210ba>] ? kernel_thread_helper+0x6/0x10 [ 7.599999] Code: d2 89 e5 56 8b 75 08 53 8b 5d 0c 8b 88 48 02 00 00 78 1e 3b 90 38 02 00 00 77 16 89 f0 c1 e8 08 83 c8 0c c1 e3 18 09 d8 8d 14 91 <89> 02 31 c0 eb 05 b8 ea ff ff ff 5b 5e 5d c3 83 78 50 09 55 89 [ 7.599999] EIP: [<c149f0de>] rv370_pcie_gart_set_page+0x2d/0x3c SS:ESP 0068:f6c33d60 [ 7.599999] CR2: 00000000f8380000 [ 7.599999] ---[ end trace 012a361324455360 ]--- [ 7.599999] Kernel panic - not syncing: Fatal exception [ 7.599999] Pid: 1, comm: swapper Tainted: G D 2.6.33-rc6-00066-g9ce9290-dirty #14391 >From 2f73a756d3603067c0dc618683f8515ef2fbae34 Mon Sep 17 00:00:00 2001 From: Ingo Molnar <mingo@elte.hu> Date: Tue, 2 Feb 2010 09:06:04 +0100 Subject: [PATCH] Revert "drm/radeon/kms: move radeon KMS on/off switch out of staging." This reverts commit f71d0187987e691516cd10c2702f002c0e2f0edc. Signed-off-by: Ingo Molnar <mingo@elte.hu> --- drivers/gpu/drm/Kconfig | 2 -- drivers/staging/Kconfig | 2 ++ 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/drivers/gpu/drm/Kconfig b/drivers/gpu/drm/Kconfig index 305c590..96eddd1 100644 --- a/drivers/gpu/drm/Kconfig +++ b/drivers/gpu/drm/Kconfig @@ -66,8 +66,6 @@ config DRM_RADEON If M is selected, the module will be called radeon. -source "drivers/gpu/drm/radeon/Kconfig" - config DRM_I810 tristate "Intel I810" depends on DRM && AGP && AGP_INTEL diff --git a/drivers/staging/Kconfig b/drivers/staging/Kconfig index fc2e963..94eb863 100644 --- a/drivers/staging/Kconfig +++ b/drivers/staging/Kconfig @@ -99,6 +99,8 @@ source "drivers/staging/line6/Kconfig" source "drivers/gpu/drm/vmwgfx/Kconfig" +source "drivers/gpu/drm/radeon/Kconfig" + source "drivers/gpu/drm/nouveau/Kconfig" source "drivers/staging/octeon/Kconfig" [-- Attachment #2: config --] [-- Type: text/plain, Size: 69897 bytes --] # # Automatically generated make config: don't edit # Linux kernel version: 2.6.33-rc6 # Tue Feb 2 11:05:37 2010 # # CONFIG_64BIT is not set CONFIG_X86_32=y # CONFIG_X86_64 is not set CONFIG_X86=y CONFIG_OUTPUT_FORMAT="elf32-i386" CONFIG_ARCH_DEFCONFIG="arch/x86/configs/i386_defconfig" CONFIG_GENERIC_TIME=y CONFIG_GENERIC_CMOS_UPDATE=y CONFIG_CLOCKSOURCE_WATCHDOG=y CONFIG_GENERIC_CLOCKEVENTS=y CONFIG_GENERIC_CLOCKEVENTS_BROADCAST=y CONFIG_LOCKDEP_SUPPORT=y CONFIG_STACKTRACE_SUPPORT=y CONFIG_HAVE_LATENCYTOP_SUPPORT=y CONFIG_MMU=y CONFIG_ZONE_DMA=y CONFIG_GENERIC_ISA_DMA=y CONFIG_GENERIC_IOMAP=y CONFIG_GENERIC_BUG=y CONFIG_GENERIC_HWEIGHT=y CONFIG_GENERIC_GPIO=y CONFIG_ARCH_MAY_HAVE_PC_FDC=y # CONFIG_RWSEM_GENERIC_SPINLOCK is not set CONFIG_RWSEM_XCHGADD_ALGORITHM=y CONFIG_ARCH_HAS_CPU_IDLE_WAIT=y CONFIG_GENERIC_CALIBRATE_DELAY=y # CONFIG_GENERIC_TIME_VSYSCALL is not set CONFIG_ARCH_HAS_CPU_RELAX=y CONFIG_ARCH_HAS_DEFAULT_IDLE=y CONFIG_ARCH_HAS_CACHE_LINE_SIZE=y CONFIG_HAVE_SETUP_PER_CPU_AREA=y CONFIG_NEED_PER_CPU_EMBED_FIRST_CHUNK=y CONFIG_NEED_PER_CPU_PAGE_FIRST_CHUNK=y # CONFIG_HAVE_CPUMASK_OF_CPU_MAP is not set CONFIG_ARCH_HIBERNATION_POSSIBLE=y CONFIG_ARCH_SUSPEND_POSSIBLE=y # CONFIG_ZONE_DMA32 is not set CONFIG_ARCH_POPULATES_NODE_MAP=y # CONFIG_AUDIT_ARCH is not set CONFIG_ARCH_SUPPORTS_OPTIMIZED_INLINING=y CONFIG_ARCH_SUPPORTS_DEBUG_PAGEALLOC=y CONFIG_GENERIC_HARDIRQS=y CONFIG_GENERIC_HARDIRQS_NO__DO_IRQ=y CONFIG_GENERIC_IRQ_PROBE=y CONFIG_GENERIC_PENDING_IRQ=y CONFIG_USE_GENERIC_SMP_HELPERS=y CONFIG_X86_32_SMP=y CONFIG_X86_HT=y CONFIG_X86_TRAMPOLINE=y CONFIG_X86_32_LAZY_GS=y CONFIG_KTIME_SCALAR=y CONFIG_DEFCONFIG_LIST="/lib/modules/$UNAME_RELEASE/.config" CONFIG_CONSTRUCTORS=y # # General setup # CONFIG_EXPERIMENTAL=y CONFIG_LOCK_KERNEL=y CONFIG_INIT_ENV_ARG_LIMIT=32 CONFIG_LOCALVERSION="" CONFIG_LOCALVERSION_AUTO=y CONFIG_HAVE_KERNEL_GZIP=y CONFIG_HAVE_KERNEL_BZIP2=y CONFIG_HAVE_KERNEL_LZMA=y CONFIG_HAVE_KERNEL_LZO=y CONFIG_KERNEL_GZIP=y # CONFIG_KERNEL_BZIP2 is not set # CONFIG_KERNEL_LZMA is not set # CONFIG_KERNEL_LZO is not set CONFIG_SWAP=y # CONFIG_SYSVIPC is not set CONFIG_POSIX_MQUEUE=y CONFIG_POSIX_MQUEUE_SYSCTL=y # CONFIG_BSD_PROCESS_ACCT is not set CONFIG_TASKSTATS=y CONFIG_TASK_DELAY_ACCT=y CONFIG_TASK_XACCT=y # CONFIG_TASK_IO_ACCOUNTING is not set CONFIG_AUDIT=y CONFIG_AUDITSYSCALL=y CONFIG_AUDIT_TREE=y # # RCU Subsystem # CONFIG_TREE_RCU=y # CONFIG_TREE_PREEMPT_RCU is not set # CONFIG_TINY_RCU is not set CONFIG_RCU_TRACE=y CONFIG_RCU_FANOUT=32 CONFIG_RCU_FANOUT_EXACT=y CONFIG_TREE_RCU_TRACE=y CONFIG_IKCONFIG=y CONFIG_IKCONFIG_PROC=y CONFIG_LOG_BUF_SHIFT=20 CONFIG_HAVE_UNSTABLE_SCHED_CLOCK=y CONFIG_CGROUPS=y CONFIG_CGROUP_DEBUG=y CONFIG_CGROUP_NS=y # CONFIG_CGROUP_FREEZER is not set # CONFIG_CGROUP_DEVICE is not set # CONFIG_CPUSETS is not set CONFIG_CGROUP_CPUACCT=y CONFIG_RESOURCE_COUNTERS=y # CONFIG_CGROUP_MEM_RES_CTLR is not set CONFIG_CGROUP_SCHED=y CONFIG_FAIR_GROUP_SCHED=y CONFIG_RT_GROUP_SCHED=y CONFIG_SYSFS_DEPRECATED=y CONFIG_SYSFS_DEPRECATED_V2=y CONFIG_RELAY=y # CONFIG_NAMESPACES is not set CONFIG_BLK_DEV_INITRD=y CONFIG_INITRAMFS_SOURCE="" # CONFIG_RD_GZIP is not set CONFIG_RD_BZIP2=y CONFIG_RD_LZMA=y CONFIG_RD_LZO=y CONFIG_CC_OPTIMIZE_FOR_SIZE=y CONFIG_SYSCTL=y CONFIG_ANON_INODES=y CONFIG_EMBEDDED=y CONFIG_UID16=y CONFIG_SYSCTL_SYSCALL=y CONFIG_KALLSYMS=y CONFIG_KALLSYMS_ALL=y CONFIG_KALLSYMS_EXTRA_PASS=y CONFIG_HOTPLUG=y CONFIG_PRINTK=y CONFIG_BUG=y # CONFIG_ELF_CORE is not set CONFIG_PCSPKR_PLATFORM=y CONFIG_BASE_FULL=y CONFIG_FUTEX=y CONFIG_EPOLL=y CONFIG_SIGNALFD=y # CONFIG_TIMERFD is not set CONFIG_EVENTFD=y # CONFIG_SHMEM is not set CONFIG_AIO=y CONFIG_HAVE_PERF_EVENTS=y CONFIG_PERF_USE_VMALLOC=y # # Kernel Performance Events And Counters # CONFIG_PERF_EVENTS=y CONFIG_PERF_COUNTERS=y CONFIG_DEBUG_PERF_USE_VMALLOC=y CONFIG_VM_EVENT_COUNTERS=y CONFIG_PCI_QUIRKS=y CONFIG_COMPAT_BRK=y # CONFIG_SLAB is not set # CONFIG_SLUB is not set CONFIG_SLOB=y # CONFIG_PROFILING is not set CONFIG_HAVE_OPROFILE=y CONFIG_HAVE_EFFICIENT_UNALIGNED_ACCESS=y CONFIG_USER_RETURN_NOTIFIER=y CONFIG_HAVE_IOREMAP_PROT=y CONFIG_HAVE_KPROBES=y CONFIG_HAVE_KRETPROBES=y CONFIG_HAVE_ARCH_TRACEHOOK=y CONFIG_HAVE_DMA_ATTRS=y CONFIG_HAVE_DMA_API_DEBUG=y CONFIG_HAVE_HW_BREAKPOINT=y CONFIG_HAVE_USER_RETURN_NOTIFIER=y # # GCOV-based kernel profiling # CONFIG_SLOW_WORK=y # CONFIG_SLOW_WORK_DEBUG is not set CONFIG_HAVE_GENERIC_DMA_COHERENT=y CONFIG_RT_MUTEXES=y CONFIG_BASE_SMALL=0 # CONFIG_MODULES is not set CONFIG_BLOCK=y CONFIG_LBDAF=y CONFIG_BLK_DEV_BSG=y CONFIG_BLK_DEV_INTEGRITY=y CONFIG_BLK_CGROUP=y CONFIG_DEBUG_BLK_CGROUP=y # # IO Schedulers # CONFIG_IOSCHED_NOOP=y # CONFIG_IOSCHED_DEADLINE is not set CONFIG_IOSCHED_CFQ=y CONFIG_CFQ_GROUP_IOSCHED=y CONFIG_DEBUG_CFQ_IOSCHED=y # CONFIG_DEFAULT_DEADLINE is not set CONFIG_DEFAULT_CFQ=y # CONFIG_DEFAULT_NOOP is not set CONFIG_DEFAULT_IOSCHED="cfq" CONFIG_PREEMPT_NOTIFIERS=y # CONFIG_INLINE_SPIN_TRYLOCK is not set # CONFIG_INLINE_SPIN_TRYLOCK_BH is not set # CONFIG_INLINE_SPIN_LOCK is not set # CONFIG_INLINE_SPIN_LOCK_BH is not set # CONFIG_INLINE_SPIN_LOCK_IRQ is not set # CONFIG_INLINE_SPIN_LOCK_IRQSAVE is not set # CONFIG_INLINE_SPIN_UNLOCK is not set # CONFIG_INLINE_SPIN_UNLOCK_BH is not set # CONFIG_INLINE_SPIN_UNLOCK_IRQ is not set # CONFIG_INLINE_SPIN_UNLOCK_IRQRESTORE is not set # CONFIG_INLINE_READ_TRYLOCK is not set # CONFIG_INLINE_READ_LOCK is not set # CONFIG_INLINE_READ_LOCK_BH is not set # CONFIG_INLINE_READ_LOCK_IRQ is not set # CONFIG_INLINE_READ_LOCK_IRQSAVE is not set # CONFIG_INLINE_READ_UNLOCK is not set # CONFIG_INLINE_READ_UNLOCK_BH is not set # CONFIG_INLINE_READ_UNLOCK_IRQ is not set # CONFIG_INLINE_READ_UNLOCK_IRQRESTORE is not set # CONFIG_INLINE_WRITE_TRYLOCK is not set # CONFIG_INLINE_WRITE_LOCK is not set # CONFIG_INLINE_WRITE_LOCK_BH is not set # CONFIG_INLINE_WRITE_LOCK_IRQ is not set # CONFIG_INLINE_WRITE_LOCK_IRQSAVE is not set # CONFIG_INLINE_WRITE_UNLOCK is not set # CONFIG_INLINE_WRITE_UNLOCK_BH is not set # CONFIG_INLINE_WRITE_UNLOCK_IRQ is not set # CONFIG_INLINE_WRITE_UNLOCK_IRQRESTORE is not set # CONFIG_MUTEX_SPIN_ON_OWNER is not set # CONFIG_FREEZER is not set # # Processor type and features # CONFIG_TICK_ONESHOT=y CONFIG_NO_HZ=y # CONFIG_HIGH_RES_TIMERS is not set CONFIG_GENERIC_CLOCKEVENTS_BUILD=y CONFIG_SMP=y CONFIG_SPARSE_IRQ=y CONFIG_X86_MPPARSE=y CONFIG_X86_BIGSMP=y # CONFIG_X86_EXTENDED_PLATFORM is not set CONFIG_X86_SUPPORTS_MEMORY_FAILURE=y CONFIG_SCHED_OMIT_FRAME_POINTER=y CONFIG_PARAVIRT_GUEST=y CONFIG_VMI=y # CONFIG_KVM_CLOCK is not set # CONFIG_KVM_GUEST is not set CONFIG_LGUEST_GUEST=y CONFIG_PARAVIRT=y CONFIG_PARAVIRT_SPINLOCKS=y # CONFIG_PARAVIRT_CLOCK is not set CONFIG_PARAVIRT_DEBUG=y # CONFIG_MEMTEST is not set # CONFIG_M386 is not set # CONFIG_M486 is not set # CONFIG_M586 is not set # CONFIG_M586TSC is not set # CONFIG_M586MMX is not set # CONFIG_M686 is not set # CONFIG_MPENTIUMII is not set # CONFIG_MPENTIUMIII is not set # CONFIG_MPENTIUMM is not set # CONFIG_MPENTIUM4 is not set # CONFIG_MK6 is not set # CONFIG_MK7 is not set # CONFIG_MK8 is not set # CONFIG_MCRUSOE is not set # CONFIG_MEFFICEON is not set # CONFIG_MWINCHIPC6 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=y # CONFIG_MPSC is not set # CONFIG_MCORE2 is not set # CONFIG_MATOM is not set # CONFIG_GENERIC_CPU is not set CONFIG_X86_GENERIC=y CONFIG_X86_CPU=y CONFIG_X86_INTERNODE_CACHE_SHIFT=6 CONFIG_X86_CMPXCHG=y CONFIG_X86_L1_CACHE_SHIFT=6 CONFIG_X86_XADD=y CONFIG_X86_WP_WORKS_OK=y CONFIG_X86_INVLPG=y CONFIG_X86_BSWAP=y CONFIG_X86_POPAD_OK=y CONFIG_X86_INTEL_USERCOPY=y CONFIG_X86_TSC=y CONFIG_X86_CMOV=y CONFIG_X86_MINIMUM_CPU_FAMILY=4 CONFIG_X86_DEBUGCTLMSR=y # CONFIG_PROCESSOR_SELECT is not set CONFIG_CPU_SUP_INTEL=y CONFIG_CPU_SUP_CYRIX_32=y CONFIG_CPU_SUP_AMD=y CONFIG_CPU_SUP_CENTAUR=y CONFIG_CPU_SUP_TRANSMETA_32=y CONFIG_CPU_SUP_UMC_32=y # CONFIG_X86_DS is not set CONFIG_HPET_TIMER=y CONFIG_HPET_EMULATE_RTC=y CONFIG_DMI=y # CONFIG_IOMMU_HELPER is not set # CONFIG_IOMMU_API is not set CONFIG_NR_CPUS=32 # CONFIG_SCHED_SMT is not set # CONFIG_SCHED_MC is not set # CONFIG_PREEMPT_NONE is not set CONFIG_PREEMPT_VOLUNTARY=y # CONFIG_PREEMPT is not set CONFIG_X86_LOCAL_APIC=y CONFIG_X86_IO_APIC=y CONFIG_X86_REROUTE_FOR_BROKEN_BOOT_IRQS=y CONFIG_X86_MCE=y # CONFIG_X86_MCE_INTEL is not set CONFIG_X86_MCE_AMD=y CONFIG_X86_ANCIENT_MCE=y CONFIG_X86_MCE_THRESHOLD=y CONFIG_X86_MCE_INJECT=y CONFIG_VM86=y # CONFIG_TOSHIBA is not set CONFIG_I8K=y CONFIG_X86_REBOOTFIXUPS=y # CONFIG_MICROCODE is not set # CONFIG_X86_MSR is not set # CONFIG_X86_CPUID is not set # CONFIG_NOHIGHMEM is not set CONFIG_HIGHMEM4G=y # CONFIG_HIGHMEM64G is not set CONFIG_VMSPLIT_3G=y # CONFIG_VMSPLIT_3G_OPT is not set # CONFIG_VMSPLIT_2G is not set # CONFIG_VMSPLIT_2G_OPT is not set # CONFIG_VMSPLIT_1G is not set CONFIG_PAGE_OFFSET=0xC0000000 CONFIG_HIGHMEM=y # CONFIG_ARCH_PHYS_ADDR_T_64BIT is not set CONFIG_ARCH_FLATMEM_ENABLE=y CONFIG_ARCH_SPARSEMEM_ENABLE=y CONFIG_ARCH_SELECT_MEMORY_MODEL=y CONFIG_ILLEGAL_POINTER_VALUE=0 CONFIG_SELECT_MEMORY_MODEL=y CONFIG_FLATMEM_MANUAL=y # CONFIG_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_PAGEFLAGS_EXTENDED=y CONFIG_SPLIT_PTLOCK_CPUS=999999 # CONFIG_PHYS_ADDR_T_64BIT is not set CONFIG_ZONE_DMA_FLAG=1 CONFIG_BOUNCE=y CONFIG_VIRT_TO_BUS=y CONFIG_MMU_NOTIFIER=y CONFIG_KSM=y CONFIG_DEFAULT_MMAP_MIN_ADDR=4096 CONFIG_ARCH_SUPPORTS_MEMORY_FAILURE=y CONFIG_MEMORY_FAILURE=y CONFIG_HWPOISON_INJECT=y CONFIG_HIGHPTE=y # CONFIG_X86_CHECK_BIOS_CORRUPTION is not set CONFIG_X86_RESERVE_LOW_64K=y CONFIG_MATH_EMULATION=y # CONFIG_MTRR is not set CONFIG_SECCOMP=y # CONFIG_CC_STACKPROTECTOR is not set # CONFIG_HZ_100 is not set # CONFIG_HZ_250 is not set # CONFIG_HZ_300 is not set CONFIG_HZ_1000=y CONFIG_HZ=1000 # CONFIG_SCHED_HRTICK is not set # CONFIG_KEXEC is not set # CONFIG_CRASH_DUMP is not set CONFIG_PHYSICAL_START=0x1000000 CONFIG_RELOCATABLE=y CONFIG_X86_NEED_RELOCS=y CONFIG_PHYSICAL_ALIGN=0x1000000 # CONFIG_HOTPLUG_CPU is not set CONFIG_COMPAT_VDSO=y CONFIG_CMDLINE_BOOL=y CONFIG_CMDLINE="" # CONFIG_CMDLINE_OVERRIDE is not set CONFIG_ARCH_ENABLE_MEMORY_HOTPLUG=y # # Power management and ACPI options # # CONFIG_PM is not set # CONFIG_SFI is not set # # CPU Frequency scaling # CONFIG_CPU_FREQ=y CONFIG_CPU_FREQ_TABLE=y CONFIG_CPU_FREQ_DEBUG=y CONFIG_CPU_FREQ_STAT=y CONFIG_CPU_FREQ_STAT_DETAILS=y CONFIG_CPU_FREQ_DEFAULT_GOV_PERFORMANCE=y # CONFIG_CPU_FREQ_DEFAULT_GOV_POWERSAVE is not set # CONFIG_CPU_FREQ_DEFAULT_GOV_USERSPACE is not set # CONFIG_CPU_FREQ_DEFAULT_GOV_ONDEMAND is not set # CONFIG_CPU_FREQ_DEFAULT_GOV_CONSERVATIVE is not set CONFIG_CPU_FREQ_GOV_PERFORMANCE=y CONFIG_CPU_FREQ_GOV_POWERSAVE=y # CONFIG_CPU_FREQ_GOV_USERSPACE is not set # CONFIG_CPU_FREQ_GOV_ONDEMAND is not set CONFIG_CPU_FREQ_GOV_CONSERVATIVE=y # # CPUFreq processor drivers # CONFIG_X86_POWERNOW_K6=y CONFIG_X86_POWERNOW_K7=y CONFIG_X86_GX_SUSPMOD=y CONFIG_X86_SPEEDSTEP_CENTRINO=y CONFIG_X86_SPEEDSTEP_CENTRINO_TABLE=y CONFIG_X86_SPEEDSTEP_ICH=y CONFIG_X86_SPEEDSTEP_SMI=y # CONFIG_X86_P4_CLOCKMOD is not set CONFIG_X86_CPUFREQ_NFORCE2=y # CONFIG_X86_LONGRUN is not set CONFIG_X86_E_POWERSAVER=y # # shared options # CONFIG_X86_SPEEDSTEP_LIB=y # CONFIG_X86_SPEEDSTEP_RELAXED_CAP_CHECK is not set CONFIG_CPU_IDLE=y CONFIG_CPU_IDLE_GOV_LADDER=y CONFIG_CPU_IDLE_GOV_MENU=y # # Bus options (PCI etc.) # CONFIG_PCI=y CONFIG_PCI_GOBIOS=y # CONFIG_PCI_GOMMCONFIG is not set # CONFIG_PCI_GODIRECT is not set # CONFIG_PCI_GOOLPC is not set # CONFIG_PCI_GOANY is not set CONFIG_PCI_BIOS=y CONFIG_PCI_DOMAINS=y # CONFIG_PCIEPORTBUS is not set CONFIG_ARCH_SUPPORTS_MSI=y CONFIG_PCI_MSI=y CONFIG_PCI_LEGACY=y CONFIG_PCI_DEBUG=y CONFIG_PCI_STUB=y # CONFIG_HT_IRQ is not set CONFIG_PCI_IOV=y CONFIG_ISA_DMA_API=y # CONFIG_ISA is not set CONFIG_MCA=y CONFIG_MCA_LEGACY=y CONFIG_MCA_PROC_FS=y CONFIG_SCx200=y CONFIG_SCx200HR_TIMER=y CONFIG_OLPC=y CONFIG_PCCARD=y # CONFIG_PCMCIA is not set CONFIG_CARDBUS=y # # PC-card bridges # CONFIG_YENTA=y CONFIG_YENTA_O2=y CONFIG_YENTA_RICOH=y CONFIG_YENTA_TI=y # CONFIG_YENTA_ENE_TUNE is not set CONFIG_YENTA_TOSHIBA=y CONFIG_PCCARD_NONSTATIC=y CONFIG_HOTPLUG_PCI=y CONFIG_HOTPLUG_PCI_FAKE=y # CONFIG_HOTPLUG_PCI_COMPAQ is not set CONFIG_HOTPLUG_PCI_IBM=y # CONFIG_HOTPLUG_PCI_CPCI is not set CONFIG_HOTPLUG_PCI_SHPC=y # # Executable file formats / Emulations # CONFIG_BINFMT_ELF=y CONFIG_HAVE_AOUT=y CONFIG_BINFMT_AOUT=y CONFIG_BINFMT_MISC=y CONFIG_HAVE_ATOMIC_IOMAP=y CONFIG_NET=y # # Networking options # CONFIG_PACKET=y # CONFIG_PACKET_MMAP is not set CONFIG_UNIX=y CONFIG_XFRM=y CONFIG_XFRM_USER=y CONFIG_XFRM_SUB_POLICY=y CONFIG_XFRM_MIGRATE=y # CONFIG_XFRM_STATISTICS is not set CONFIG_XFRM_IPCOMP=y CONFIG_NET_KEY=y # CONFIG_NET_KEY_MIGRATE is not set CONFIG_INET=y CONFIG_IP_MULTICAST=y CONFIG_IP_ADVANCED_ROUTER=y # CONFIG_ASK_IP_FIB_HASH is not set CONFIG_IP_FIB_TRIE=y # CONFIG_IP_FIB_HASH is not set CONFIG_IP_FIB_TRIE_STATS=y CONFIG_IP_MULTIPLE_TABLES=y CONFIG_IP_ROUTE_MULTIPATH=y CONFIG_IP_ROUTE_VERBOSE=y CONFIG_IP_PNP=y CONFIG_IP_PNP_DHCP=y CONFIG_IP_PNP_BOOTP=y CONFIG_IP_PNP_RARP=y CONFIG_NET_IPIP=y CONFIG_NET_IPGRE=y CONFIG_NET_IPGRE_BROADCAST=y CONFIG_IP_MROUTE=y CONFIG_IP_PIMSM_V1=y # CONFIG_IP_PIMSM_V2 is not set CONFIG_ARPD=y CONFIG_SYN_COOKIES=y # CONFIG_INET_AH is not set # CONFIG_INET_ESP is not set CONFIG_INET_IPCOMP=y CONFIG_INET_XFRM_TUNNEL=y CONFIG_INET_TUNNEL=y CONFIG_INET_XFRM_MODE_TRANSPORT=y # CONFIG_INET_XFRM_MODE_TUNNEL is not set CONFIG_INET_XFRM_MODE_BEET=y CONFIG_INET_LRO=y # CONFIG_INET_DIAG is not set # CONFIG_TCP_CONG_ADVANCED is not set CONFIG_TCP_CONG_CUBIC=y CONFIG_DEFAULT_TCP_CONG="cubic" # CONFIG_TCP_MD5SIG is not set CONFIG_IPV6=y CONFIG_IPV6_PRIVACY=y CONFIG_IPV6_ROUTER_PREF=y CONFIG_IPV6_ROUTE_INFO=y CONFIG_IPV6_OPTIMISTIC_DAD=y CONFIG_INET6_AH=y CONFIG_INET6_ESP=y CONFIG_INET6_IPCOMP=y CONFIG_IPV6_MIP6=y CONFIG_INET6_XFRM_TUNNEL=y CONFIG_INET6_TUNNEL=y # CONFIG_INET6_XFRM_MODE_TRANSPORT is not set # CONFIG_INET6_XFRM_MODE_TUNNEL is not set CONFIG_INET6_XFRM_MODE_BEET=y CONFIG_INET6_XFRM_MODE_ROUTEOPTIMIZATION=y # CONFIG_IPV6_SIT is not set CONFIG_IPV6_TUNNEL=y CONFIG_IPV6_MULTIPLE_TABLES=y CONFIG_IPV6_SUBTREES=y # CONFIG_IPV6_MROUTE is not set # CONFIG_NETLABEL is not set CONFIG_NETWORK_SECMARK=y # CONFIG_NETFILTER is not set CONFIG_IP_DCCP=y # # DCCP CCIDs Configuration (EXPERIMENTAL) # CONFIG_IP_DCCP_CCID2_DEBUG=y CONFIG_IP_DCCP_CCID3=y CONFIG_IP_DCCP_CCID3_DEBUG=y CONFIG_IP_DCCP_CCID3_RTO=100 CONFIG_IP_DCCP_TFRC_LIB=y CONFIG_IP_DCCP_TFRC_DEBUG=y # # DCCP Kernel Hacking # CONFIG_IP_DCCP_DEBUG=y CONFIG_IP_SCTP=y CONFIG_SCTP_DBG_MSG=y CONFIG_SCTP_DBG_OBJCNT=y # CONFIG_SCTP_HMAC_NONE is not set # CONFIG_SCTP_HMAC_SHA1 is not set CONFIG_SCTP_HMAC_MD5=y CONFIG_RDS=y CONFIG_RDS_RDMA=y CONFIG_RDS_TCP=y # CONFIG_RDS_DEBUG is not set CONFIG_TIPC=y CONFIG_TIPC_ADVANCED=y CONFIG_TIPC_ZONES=3 CONFIG_TIPC_CLUSTERS=1 CONFIG_TIPC_NODES=255 CONFIG_TIPC_SLAVE_NODES=0 CONFIG_TIPC_PORTS=8191 CONFIG_TIPC_LOG=0 CONFIG_TIPC_DEBUG=y CONFIG_ATM=y CONFIG_ATM_CLIP=y CONFIG_ATM_CLIP_NO_ICMP=y CONFIG_ATM_LANE=y # CONFIG_ATM_MPOA is not set CONFIG_ATM_BR2684=y # CONFIG_ATM_BR2684_IPFILTER is not set CONFIG_STP=y CONFIG_BRIDGE=y CONFIG_NET_DSA=y CONFIG_NET_DSA_TAG_DSA=y CONFIG_NET_DSA_TAG_EDSA=y CONFIG_NET_DSA_TAG_TRAILER=y CONFIG_NET_DSA_MV88E6XXX=y CONFIG_NET_DSA_MV88E6060=y CONFIG_NET_DSA_MV88E6XXX_NEED_PPU=y CONFIG_NET_DSA_MV88E6131=y CONFIG_NET_DSA_MV88E6123_61_65=y CONFIG_VLAN_8021Q=y # CONFIG_VLAN_8021Q_GVRP is not set # CONFIG_DECNET is not set CONFIG_LLC=y CONFIG_LLC2=y CONFIG_IPX=y CONFIG_IPX_INTERN=y # CONFIG_ATALK is not set # CONFIG_X25 is not set # CONFIG_LAPB is not set CONFIG_ECONET=y CONFIG_ECONET_AUNUDP=y CONFIG_ECONET_NATIVE=y CONFIG_WAN_ROUTER=y CONFIG_PHONET=y # CONFIG_IEEE802154 is not set CONFIG_NET_SCHED=y # # Queueing/Scheduling # CONFIG_NET_SCH_CBQ=y # CONFIG_NET_SCH_HTB is not set CONFIG_NET_SCH_HFSC=y # CONFIG_NET_SCH_ATM is not set CONFIG_NET_SCH_PRIO=y CONFIG_NET_SCH_MULTIQ=y CONFIG_NET_SCH_RED=y CONFIG_NET_SCH_SFQ=y CONFIG_NET_SCH_TEQL=y CONFIG_NET_SCH_TBF=y CONFIG_NET_SCH_GRED=y # CONFIG_NET_SCH_DSMARK is not set # CONFIG_NET_SCH_NETEM is not set CONFIG_NET_SCH_DRR=y CONFIG_NET_SCH_INGRESS=y # # Classification # CONFIG_NET_CLS=y CONFIG_NET_CLS_BASIC=y CONFIG_NET_CLS_TCINDEX=y CONFIG_NET_CLS_ROUTE4=y CONFIG_NET_CLS_ROUTE=y CONFIG_NET_CLS_FW=y CONFIG_NET_CLS_U32=y CONFIG_CLS_U32_PERF=y CONFIG_CLS_U32_MARK=y # CONFIG_NET_CLS_RSVP is not set # CONFIG_NET_CLS_RSVP6 is not set # CONFIG_NET_CLS_FLOW is not set CONFIG_NET_CLS_CGROUP=y CONFIG_NET_EMATCH=y CONFIG_NET_EMATCH_STACK=32 CONFIG_NET_EMATCH_CMP=y CONFIG_NET_EMATCH_NBYTE=y CONFIG_NET_EMATCH_U32=y CONFIG_NET_EMATCH_META=y # CONFIG_NET_EMATCH_TEXT is not set CONFIG_NET_CLS_ACT=y CONFIG_NET_ACT_POLICE=y # CONFIG_NET_ACT_GACT is not set CONFIG_NET_ACT_MIRRED=y CONFIG_NET_ACT_NAT=y # CONFIG_NET_ACT_PEDIT is not set CONFIG_NET_ACT_SIMP=y CONFIG_NET_ACT_SKBEDIT=y # CONFIG_NET_CLS_IND is not set CONFIG_NET_SCH_FIFO=y # CONFIG_DCB is not set # # Network testing # CONFIG_NET_PKTGEN=y CONFIG_HAMRADIO=y # # Packet Radio protocols # CONFIG_AX25=y # CONFIG_AX25_DAMA_SLAVE is not set CONFIG_NETROM=y CONFIG_ROSE=y # # AX.25 network device drivers # # CONFIG_MKISS is not set # CONFIG_6PACK is not set CONFIG_BPQETHER=y # CONFIG_BAYCOM_SER_FDX is not set CONFIG_BAYCOM_SER_HDX=y CONFIG_YAM=y CONFIG_CAN=y # CONFIG_CAN_RAW is not set CONFIG_CAN_BCM=y # # CAN Device Drivers # CONFIG_CAN_VCAN=y CONFIG_CAN_DEV=y # CONFIG_CAN_CALC_BITTIMING is not set CONFIG_CAN_MCP251X=y CONFIG_CAN_SJA1000=y CONFIG_CAN_SJA1000_PLATFORM=y CONFIG_CAN_EMS_PCI=y CONFIG_CAN_KVASER_PCI=y # # CAN USB interfaces # CONFIG_CAN_EMS_USB=y # CONFIG_CAN_DEBUG_DEVICES is not set CONFIG_IRDA=y # # IrDA protocols # CONFIG_IRLAN=y CONFIG_IRNET=y CONFIG_IRCOMM=y # CONFIG_IRDA_ULTRA is not set # # IrDA options # # CONFIG_IRDA_CACHE_LAST_LSAP is not set CONFIG_IRDA_FAST_RR=y CONFIG_IRDA_DEBUG=y # # Infrared-port device drivers # # # SIR device drivers # CONFIG_IRTTY_SIR=y # # Dongle support # CONFIG_DONGLE=y CONFIG_ESI_DONGLE=y # CONFIG_ACTISYS_DONGLE is not set # CONFIG_TEKRAM_DONGLE is not set CONFIG_TOIM3232_DONGLE=y CONFIG_LITELINK_DONGLE=y CONFIG_MA600_DONGLE=y # CONFIG_GIRBIL_DONGLE is not set CONFIG_MCP2120_DONGLE=y CONFIG_OLD_BELKIN_DONGLE=y CONFIG_ACT200L_DONGLE=y # CONFIG_KINGSUN_DONGLE is not set # CONFIG_KSDAZZLE_DONGLE is not set # CONFIG_KS959_DONGLE is not set # # FIR device drivers # # CONFIG_USB_IRDA is not set # CONFIG_SIGMATEL_FIR is not set CONFIG_NSC_FIR=y CONFIG_WINBOND_FIR=y # CONFIG_TOSHIBA_FIR is not set CONFIG_SMC_IRCC_FIR=y # CONFIG_ALI_FIR is not set # CONFIG_VLSI_FIR is not set CONFIG_VIA_FIR=y CONFIG_MCS_FIR=y CONFIG_BT=y CONFIG_BT_L2CAP=y CONFIG_BT_SCO=y CONFIG_BT_RFCOMM=y # CONFIG_BT_RFCOMM_TTY is not set CONFIG_BT_BNEP=y CONFIG_BT_BNEP_MC_FILTER=y CONFIG_BT_BNEP_PROTO_FILTER=y # CONFIG_BT_CMTP is not set # CONFIG_BT_HIDP is not set # # Bluetooth device drivers # CONFIG_BT_HCIBTUSB=y CONFIG_BT_HCIUART=y # CONFIG_BT_HCIUART_H4 is not set CONFIG_BT_HCIUART_BCSP=y CONFIG_BT_HCIUART_LL=y CONFIG_BT_HCIBCM203X=y CONFIG_BT_HCIBPA10X=y # CONFIG_BT_HCIBFUSB is not set # CONFIG_BT_HCIVHCI is not set CONFIG_BT_MRVL=y CONFIG_AF_RXRPC=y CONFIG_AF_RXRPC_DEBUG=y CONFIG_RXKAD=y CONFIG_FIB_RULES=y CONFIG_WIRELESS=y CONFIG_WIRELESS_EXT=y CONFIG_WEXT_CORE=y CONFIG_WEXT_PROC=y CONFIG_WEXT_SPY=y CONFIG_WEXT_PRIV=y CONFIG_CFG80211=y CONFIG_NL80211_TESTMODE=y CONFIG_CFG80211_DEVELOPER_WARNINGS=y # CONFIG_CFG80211_REG_DEBUG is not set CONFIG_CFG80211_DEFAULT_PS=y CONFIG_CFG80211_DEBUGFS=y # CONFIG_WIRELESS_OLD_REGULATORY is not set # CONFIG_CFG80211_WEXT is not set CONFIG_WIRELESS_EXT_SYSFS=y CONFIG_LIB80211=y CONFIG_LIB80211_CRYPT_WEP=y CONFIG_LIB80211_CRYPT_CCMP=y CONFIG_LIB80211_CRYPT_TKIP=y # CONFIG_LIB80211_DEBUG is not set # CONFIG_MAC80211 is not set CONFIG_WIMAX=y CONFIG_WIMAX_DEBUG_LEVEL=8 CONFIG_RFKILL=y CONFIG_RFKILL_LEDS=y CONFIG_RFKILL_INPUT=y # # Device Drivers # # # Generic Driver Options # CONFIG_UEVENT_HELPER_PATH="/sbin/hotplug" CONFIG_STANDALONE=y CONFIG_PREVENT_FIRMWARE_BUILD=y CONFIG_FW_LOADER=y CONFIG_FIRMWARE_IN_KERNEL=y CONFIG_EXTRA_FIRMWARE="" CONFIG_DEBUG_DRIVER=y CONFIG_DEBUG_DEVRES=y # CONFIG_SYS_HYPERVISOR is not set CONFIG_CONNECTOR=y # CONFIG_PROC_EVENTS is not set # CONFIG_MTD is not set # CONFIG_PARPORT is not set CONFIG_BLK_DEV=y CONFIG_BLK_DEV_FD=y CONFIG_BLK_CPQ_DA=y CONFIG_BLK_CPQ_CISS_DA=y CONFIG_CISS_SCSI_TAPE=y CONFIG_BLK_DEV_DAC960=y CONFIG_BLK_DEV_UMEM=y # CONFIG_BLK_DEV_COW_COMMON is not set # CONFIG_BLK_DEV_LOOP is not set # CONFIG_BLK_DEV_DRBD is not set CONFIG_BLK_DEV_NBD=y CONFIG_BLK_DEV_OSD=y CONFIG_BLK_DEV_SX8=y # 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=y CONFIG_CDROM_PKTCDVD_BUFFERS=8 CONFIG_CDROM_PKTCDVD_WCACHE=y CONFIG_ATA_OVER_ETH=y CONFIG_VIRTIO_BLK=y # CONFIG_BLK_DEV_HD is not set # CONFIG_MISC_DEVICES is not set CONFIG_TIFM_CORE=y CONFIG_HAVE_IDE=y # CONFIG_IDE is not set # # SCSI device support # CONFIG_RAID_ATTRS=y CONFIG_SCSI=y CONFIG_SCSI_DMA=y CONFIG_SCSI_TGT=y CONFIG_SCSI_NETLINK=y CONFIG_SCSI_PROC_FS=y # # SCSI support type (disk, tape, CD-ROM) # CONFIG_BLK_DEV_SD=y # CONFIG_CHR_DEV_ST is not set CONFIG_CHR_DEV_OSST=y CONFIG_BLK_DEV_SR=y CONFIG_BLK_DEV_SR_VENDOR=y CONFIG_CHR_DEV_SG=y CONFIG_CHR_DEV_SCH=y CONFIG_SCSI_MULTI_LUN=y CONFIG_SCSI_CONSTANTS=y CONFIG_SCSI_LOGGING=y CONFIG_SCSI_SCAN_ASYNC=y # # SCSI Transports # CONFIG_SCSI_SPI_ATTRS=y CONFIG_SCSI_FC_ATTRS=y # CONFIG_SCSI_FC_TGT_ATTRS is not set CONFIG_SCSI_ISCSI_ATTRS=y CONFIG_SCSI_SAS_ATTRS=y CONFIG_SCSI_SAS_LIBSAS=y CONFIG_SCSI_SAS_ATA=y CONFIG_SCSI_SAS_HOST_SMP=y # CONFIG_SCSI_SAS_LIBSAS_DEBUG is not set CONFIG_SCSI_SRP_ATTRS=y CONFIG_SCSI_SRP_TGT_ATTRS=y CONFIG_SCSI_LOWLEVEL=y # CONFIG_ISCSI_TCP is not set # CONFIG_SCSI_BNX2_ISCSI is not set CONFIG_BE2ISCSI=y CONFIG_BLK_DEV_3W_XXXX_RAID=y CONFIG_SCSI_HPSA=y CONFIG_SCSI_3W_9XXX=y CONFIG_SCSI_3W_SAS=y # CONFIG_SCSI_ACARD is not set # CONFIG_SCSI_AACRAID is not set CONFIG_SCSI_AIC7XXX=y CONFIG_AIC7XXX_CMDS_PER_DEVICE=32 CONFIG_AIC7XXX_RESET_DELAY_MS=5000 CONFIG_AIC7XXX_DEBUG_ENABLE=y CONFIG_AIC7XXX_DEBUG_MASK=0 CONFIG_AIC7XXX_REG_PRETTY_PRINT=y # CONFIG_SCSI_AIC7XXX_OLD is not set CONFIG_SCSI_AIC79XX=y CONFIG_AIC79XX_CMDS_PER_DEVICE=32 CONFIG_AIC79XX_RESET_DELAY_MS=5000 # CONFIG_AIC79XX_DEBUG_ENABLE is not set CONFIG_AIC79XX_DEBUG_MASK=0 # CONFIG_AIC79XX_REG_PRETTY_PRINT is not set # CONFIG_SCSI_AIC94XX is not set CONFIG_SCSI_MVSAS=y CONFIG_SCSI_MVSAS_DEBUG=y CONFIG_SCSI_DPT_I2O=y # CONFIG_SCSI_ADVANSYS is not set CONFIG_SCSI_ARCMSR=y # CONFIG_MEGARAID_NEWGEN is not set CONFIG_MEGARAID_LEGACY=y CONFIG_MEGARAID_SAS=y # CONFIG_SCSI_MPT2SAS is not set CONFIG_SCSI_HPTIOP=y # CONFIG_SCSI_BUSLOGIC is not set CONFIG_VMWARE_PVSCSI=y CONFIG_LIBFC=y CONFIG_LIBFCOE=y CONFIG_FCOE=y # CONFIG_FCOE_FNIC is not set CONFIG_SCSI_DMX3191D=y CONFIG_SCSI_EATA=y CONFIG_SCSI_EATA_TAGGED_QUEUE=y CONFIG_SCSI_EATA_LINKED_COMMANDS=y CONFIG_SCSI_EATA_MAX_TAGS=16 CONFIG_SCSI_FUTURE_DOMAIN=y # CONFIG_SCSI_FD_MCS is not set CONFIG_SCSI_GDTH=y CONFIG_SCSI_IBMMCA=y CONFIG_IBMMCA_SCSI_ORDER_STANDARD=y CONFIG_IBMMCA_SCSI_DEV_RESET=y CONFIG_SCSI_IPS=y CONFIG_SCSI_INITIO=y CONFIG_SCSI_INIA100=y # CONFIG_SCSI_NCR_D700 is not set CONFIG_SCSI_STEX=y # CONFIG_SCSI_SYM53C8XX_2 is not set CONFIG_SCSI_IPR=y CONFIG_SCSI_IPR_TRACE=y CONFIG_SCSI_IPR_DUMP=y CONFIG_SCSI_NCR_Q720=y CONFIG_SCSI_NCR53C8XX_DEFAULT_TAGS=8 CONFIG_SCSI_NCR53C8XX_MAX_TAGS=32 CONFIG_SCSI_NCR53C8XX_SYNC=20 CONFIG_SCSI_QLOGIC_1280=y CONFIG_SCSI_QLA_FC=y CONFIG_SCSI_QLA_ISCSI=y CONFIG_SCSI_LPFC=y # CONFIG_SCSI_LPFC_DEBUG_FS is not set CONFIG_SCSI_SIM710=y # CONFIG_SCSI_DC395x is not set CONFIG_SCSI_DC390T=y CONFIG_SCSI_NSP32=y CONFIG_SCSI_PMCRAID=y CONFIG_SCSI_PM8001=y # CONFIG_SCSI_SRP is not set CONFIG_SCSI_BFA_FC=y # CONFIG_SCSI_DH is not set CONFIG_SCSI_OSD_INITIATOR=y CONFIG_SCSI_OSD_ULD=y CONFIG_SCSI_OSD_DPRINT_SENSE=1 # CONFIG_SCSI_OSD_DEBUG is not set CONFIG_ATA=y # CONFIG_ATA_NONSTANDARD is not set # CONFIG_ATA_VERBOSE_ERROR is not set # CONFIG_SATA_PMP is not set CONFIG_SATA_AHCI=y CONFIG_SATA_SIL24=y CONFIG_ATA_SFF=y # CONFIG_SATA_SVW is not set CONFIG_ATA_PIIX=y # CONFIG_SATA_MV is not set CONFIG_SATA_NV=y CONFIG_PDC_ADMA=y CONFIG_SATA_QSTOR=y CONFIG_SATA_PROMISE=y CONFIG_SATA_SX4=y CONFIG_SATA_SIL=y # CONFIG_SATA_SIS is not set CONFIG_SATA_ULI=y CONFIG_SATA_VIA=y CONFIG_SATA_VITESSE=y CONFIG_SATA_INIC162X=y CONFIG_PATA_ALI=y CONFIG_PATA_AMD=y CONFIG_PATA_ARTOP=y # CONFIG_PATA_ATP867X is not set CONFIG_PATA_ATIIXP=y CONFIG_PATA_CMD640_PCI=y CONFIG_PATA_CMD64X=y # CONFIG_PATA_CS5520 is not set # CONFIG_PATA_CS5530 is not set CONFIG_PATA_CS5535=y CONFIG_PATA_CS5536=y CONFIG_PATA_CYPRESS=y CONFIG_PATA_EFAR=y # CONFIG_ATA_GENERIC is not set CONFIG_PATA_HPT366=y CONFIG_PATA_HPT37X=y # CONFIG_PATA_HPT3X2N is not set # CONFIG_PATA_HPT3X3 is not set # CONFIG_PATA_IT821X is not set # CONFIG_PATA_IT8213 is not set CONFIG_PATA_JMICRON=y CONFIG_PATA_TRIFLEX=y CONFIG_PATA_MARVELL=y CONFIG_PATA_MPIIX=y CONFIG_PATA_OLDPIIX=y CONFIG_PATA_NETCELL=y CONFIG_PATA_NINJA32=y CONFIG_PATA_NS87410=y CONFIG_PATA_NS87415=y # CONFIG_PATA_OPTI is not set # CONFIG_PATA_OPTIDMA is not set # CONFIG_PATA_PDC2027X is not set CONFIG_PATA_PDC_OLD=y # CONFIG_PATA_RADISYS is not set # CONFIG_PATA_RDC is not set CONFIG_PATA_RZ1000=y CONFIG_PATA_SC1200=y CONFIG_PATA_SERVERWORKS=y # CONFIG_PATA_SIL680 is not set # CONFIG_PATA_SIS is not set CONFIG_PATA_TOSHIBA=y CONFIG_PATA_VIA=y CONFIG_PATA_WINBOND=y CONFIG_PATA_PLATFORM=y CONFIG_PATA_SCH=y CONFIG_MD=y CONFIG_BLK_DEV_MD=y CONFIG_MD_AUTODETECT=y CONFIG_MD_LINEAR=y CONFIG_MD_RAID0=y # CONFIG_MD_RAID1 is not set CONFIG_MD_RAID10=y # CONFIG_MD_RAID456 is not set CONFIG_MD_MULTIPATH=y CONFIG_MD_FAULTY=y # CONFIG_BLK_DEV_DM is not set CONFIG_FUSION=y # CONFIG_FUSION_SPI is not set CONFIG_FUSION_FC=y # CONFIG_FUSION_SAS is not set CONFIG_FUSION_MAX_SGE=128 # CONFIG_FUSION_CTL is not set CONFIG_FUSION_LAN=y # CONFIG_FUSION_LOGGING is not set # # IEEE 1394 (FireWire) support # # # You can enable one or both FireWire driver stacks. # # # The newer stack is recommended. # # CONFIG_FIREWIRE is not set CONFIG_IEEE1394=y CONFIG_IEEE1394_OHCI1394=y CONFIG_IEEE1394_PCILYNX=y # CONFIG_IEEE1394_SBP2 is not set CONFIG_IEEE1394_ETH1394_ROM_ENTRY=y CONFIG_IEEE1394_ETH1394=y # CONFIG_IEEE1394_RAWIO is not set CONFIG_IEEE1394_VIDEO1394=y CONFIG_IEEE1394_DV1394=y CONFIG_IEEE1394_VERBOSEDEBUG=y CONFIG_I2O=y CONFIG_I2O_LCT_NOTIFY_ON_CHANGES=y # CONFIG_I2O_EXT_ADAPTEC is not set CONFIG_I2O_CONFIG=y CONFIG_I2O_CONFIG_OLD_IOCTL=y CONFIG_I2O_BUS=y # CONFIG_I2O_BLOCK is not set CONFIG_I2O_SCSI=y # CONFIG_I2O_PROC is not set CONFIG_MACINTOSH_DRIVERS=y # CONFIG_MAC_EMUMOUSEBTN is not set CONFIG_NETDEVICES=y CONFIG_IFB=y # CONFIG_DUMMY is not set CONFIG_BONDING=y CONFIG_MACVLAN=y CONFIG_EQUALIZER=y CONFIG_TUN=y CONFIG_VETH=y # CONFIG_ARCNET is not set CONFIG_PHYLIB=y # # MII PHY device drivers # # CONFIG_MARVELL_PHY is not set CONFIG_DAVICOM_PHY=y CONFIG_QSEMI_PHY=y CONFIG_LXT_PHY=y # CONFIG_CICADA_PHY is not set CONFIG_VITESSE_PHY=y CONFIG_SMSC_PHY=y CONFIG_BROADCOM_PHY=y CONFIG_ICPLUS_PHY=y CONFIG_REALTEK_PHY=y CONFIG_NATIONAL_PHY=y # CONFIG_STE10XP is not set # CONFIG_LSI_ET1011C_PHY is not set CONFIG_FIXED_PHY=y # CONFIG_MDIO_BITBANG is not set CONFIG_NET_ETHERNET=y CONFIG_MII=y CONFIG_HAPPYMEAL=y CONFIG_SUNGEM=y # CONFIG_CASSINI is not set CONFIG_NET_VENDOR_3COM=y # CONFIG_EL3 is not set CONFIG_ELMC=y CONFIG_ELMC_II=y CONFIG_VORTEX=y CONFIG_TYPHOON=y # CONFIG_NET_VENDOR_SMC is not set CONFIG_ENC28J60=y # CONFIG_ENC28J60_WRITEVERIFY is not set CONFIG_ETHOC=y CONFIG_DNET=y CONFIG_NET_TULIP=y CONFIG_DE2104X=y CONFIG_DE2104X_DSL=0 # CONFIG_TULIP is not set # CONFIG_DE4X5 is not set CONFIG_WINBOND_840=y CONFIG_DM9102=y # CONFIG_ULI526X is not set # CONFIG_PCMCIA_XIRCOM is not set # CONFIG_AT1700 is not set # CONFIG_DEPCA is not set CONFIG_HP100=y CONFIG_NE2_MCA=y CONFIG_IBMLANA=y # CONFIG_IBM_NEW_EMAC_ZMII is not set # CONFIG_IBM_NEW_EMAC_RGMII is not set # CONFIG_IBM_NEW_EMAC_TAH is not set # CONFIG_IBM_NEW_EMAC_EMAC4 is not set # CONFIG_IBM_NEW_EMAC_NO_FLOW_CTRL is not set # CONFIG_IBM_NEW_EMAC_MAL_CLR_ICINTSTAT is not set # CONFIG_IBM_NEW_EMAC_MAL_COMMON_ERR is not set CONFIG_NET_PCI=y CONFIG_PCNET32=y CONFIG_AMD8111_ETH=y CONFIG_ADAPTEC_STARFIRE=y # CONFIG_B44 is not set CONFIG_FORCEDETH=y CONFIG_FORCEDETH_NAPI=y CONFIG_E100=y CONFIG_FEALNX=y # CONFIG_NATSEMI is not set CONFIG_NE2K_PCI=y CONFIG_8139CP=y CONFIG_8139TOO=y CONFIG_8139TOO_PIO=y CONFIG_8139TOO_TUNE_TWISTER=y CONFIG_8139TOO_8129=y # CONFIG_8139_OLD_RX_RESET is not set CONFIG_R6040=y # CONFIG_SIS900 is not set CONFIG_EPIC100=y # CONFIG_SMSC9420 is not set CONFIG_SUNDANCE=y CONFIG_SUNDANCE_MMIO=y # CONFIG_TLAN is not set CONFIG_KS8842=y # CONFIG_KS8851 is not set # CONFIG_KS8851_MLL is not set # CONFIG_VIA_RHINE is not set CONFIG_SC92031=y CONFIG_ATL2=y CONFIG_NETDEV_1000=y CONFIG_ACENIC=y CONFIG_ACENIC_OMIT_TIGON_I=y CONFIG_DL2K=y CONFIG_E1000=y CONFIG_E1000E=y CONFIG_IP1000=y CONFIG_IGB=y CONFIG_IGBVF=y CONFIG_NS83820=y # CONFIG_HAMACHI is not set CONFIG_YELLOWFIN=y CONFIG_R8169=y # CONFIG_R8169_VLAN is not set # CONFIG_SIS190 is not set CONFIG_SKGE=y CONFIG_SKGE_DEBUG=y # CONFIG_SKY2 is not set CONFIG_VIA_VELOCITY=y CONFIG_TIGON3=y CONFIG_BNX2=y CONFIG_CNIC=y # CONFIG_QLA3XXX is not set CONFIG_ATL1=y CONFIG_ATL1E=y # CONFIG_ATL1C is not set CONFIG_JME=y # CONFIG_NETDEV_10000 is not set # CONFIG_TR is not set CONFIG_WLAN=y # CONFIG_AIRO is not set # CONFIG_ATMEL is not set # CONFIG_PRISM54 is not set # CONFIG_USB_ZD1201 is not set CONFIG_USB_NET_RNDIS_WLAN=y # CONFIG_ATH_COMMON is not set CONFIG_HOSTAP=y CONFIG_HOSTAP_FIRMWARE=y CONFIG_HOSTAP_FIRMWARE_NVRAM=y CONFIG_HOSTAP_PLX=y CONFIG_HOSTAP_PCI=y # CONFIG_IPW2100 is not set CONFIG_LIBERTAS=y # CONFIG_LIBERTAS_USB is not set CONFIG_LIBERTAS_SPI=y # CONFIG_LIBERTAS_DEBUG is not set # # WiMAX Wireless Broadband devices # # # Enable MMC support to see WiMAX SDIO drivers # # # USB Network Adapters # CONFIG_USB_CATC=y CONFIG_USB_KAWETH=y CONFIG_USB_PEGASUS=y CONFIG_USB_RTL8150=y CONFIG_USB_USBNET=y CONFIG_USB_NET_AX8817X=y CONFIG_USB_NET_CDCETHER=y # CONFIG_USB_NET_CDC_EEM is not set # CONFIG_USB_NET_DM9601 is not set CONFIG_USB_NET_SMSC95XX=y # CONFIG_USB_NET_GL620A is not set # CONFIG_USB_NET_NET1080 is not set CONFIG_USB_NET_PLUSB=y CONFIG_USB_NET_MCS7830=y CONFIG_USB_NET_RNDIS_HOST=y CONFIG_USB_NET_CDC_SUBSET=y CONFIG_USB_ALI_M5632=y # CONFIG_USB_AN2720 is not set # CONFIG_USB_BELKIN is not set CONFIG_USB_ARMLINUX=y CONFIG_USB_EPSON2888=y # CONFIG_USB_KC2190 is not set CONFIG_USB_NET_ZAURUS=y CONFIG_USB_HSO=y # CONFIG_USB_NET_INT51X1 is not set CONFIG_USB_CDC_PHONET=y CONFIG_WAN=y CONFIG_LANMEDIA=y CONFIG_HDLC=y # CONFIG_HDLC_RAW is not set CONFIG_HDLC_RAW_ETH=y CONFIG_HDLC_CISCO=y CONFIG_HDLC_FR=y CONFIG_HDLC_PPP=y # # X.25/LAPB support is disabled # CONFIG_PCI200SYN=y CONFIG_WANXL=y # CONFIG_PC300TOO is not set # CONFIG_FARSYNC is not set CONFIG_DLCI=y CONFIG_DLCI_MAX=8 CONFIG_WAN_ROUTER_DRIVERS=y CONFIG_CYCLADES_SYNC=y CONFIG_CYCLOMX_X25=y # CONFIG_SBNI is not set # CONFIG_ATM_DRIVERS is not set # CONFIG_FDDI is not set # CONFIG_HIPPI is not set CONFIG_PPP=y # CONFIG_PPP_MULTILINK is not set CONFIG_PPP_FILTER=y CONFIG_PPP_ASYNC=y CONFIG_PPP_SYNC_TTY=y # CONFIG_PPP_DEFLATE is not set CONFIG_PPP_BSDCOMP=y # CONFIG_PPP_MPPE is not set CONFIG_PPPOE=y # CONFIG_PPPOATM is not set # CONFIG_PPPOL2TP is not set CONFIG_SLIP=y # CONFIG_SLIP_COMPRESSED is not set CONFIG_SLHC=y # CONFIG_SLIP_SMART is not set CONFIG_SLIP_MODE_SLIP6=y CONFIG_NET_FC=y 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_VMXNET3 is not set CONFIG_ISDN=y CONFIG_ISDN_I4L=y CONFIG_ISDN_PPP=y CONFIG_ISDN_PPP_VJ=y CONFIG_ISDN_MPP=y CONFIG_IPPP_FILTER=y # CONFIG_ISDN_PPP_BSDCOMP is not set # CONFIG_ISDN_AUDIO is not set # # ISDN feature submodules # CONFIG_ISDN_DIVERSION=y # # ISDN4Linux hardware drivers # # # Passive cards # CONFIG_ISDN_DRV_HISAX=y # # D-channel protocol features # # CONFIG_HISAX_EURO is not set # CONFIG_HISAX_1TR6 is not set CONFIG_HISAX_NI1=y CONFIG_HISAX_MAX_CARDS=8 # # HiSax supported cards # CONFIG_HISAX_16_3=y CONFIG_HISAX_TELESPCI=y CONFIG_HISAX_S0BOX=y CONFIG_HISAX_FRITZPCI=y CONFIG_HISAX_AVM_A1_PCMCIA=y CONFIG_HISAX_ELSA=y CONFIG_HISAX_DIEHLDIVA=y # CONFIG_HISAX_SEDLBAUER is not set CONFIG_HISAX_NETJET=y CONFIG_HISAX_NETJET_U=y CONFIG_HISAX_NICCY=y # CONFIG_HISAX_BKM_A4T is not set CONFIG_HISAX_SCT_QUADRO=y # CONFIG_HISAX_GAZEL is not set CONFIG_HISAX_HFC_PCI=y # CONFIG_HISAX_W6692 is not set CONFIG_HISAX_HFC_SX=y CONFIG_HISAX_ENTERNOW_PCI=y CONFIG_HISAX_DEBUG=y # # HiSax PCMCIA card service modules # # # HiSax sub driver modules # # CONFIG_HISAX_ST5481 is not set CONFIG_HISAX_HFCUSB=y CONFIG_HISAX_HFC4S8S=y # CONFIG_HISAX_FRITZ_PCIPNP is not set # # Active cards # CONFIG_ISDN_CAPI=y CONFIG_ISDN_DRV_AVMB1_VERBOSE_REASON=y # CONFIG_CAPI_TRACE is not set CONFIG_ISDN_CAPI_MIDDLEWARE=y CONFIG_ISDN_CAPI_CAPI20=y # CONFIG_ISDN_CAPI_CAPIFS_BOOL is not set # CONFIG_ISDN_CAPI_CAPIDRV is not set # # CAPI hardware drivers # CONFIG_CAPI_AVM=y # CONFIG_ISDN_DRV_AVMB1_B1PCI is not set CONFIG_ISDN_DRV_AVMB1_B1PCMCIA=y # CONFIG_ISDN_DRV_AVMB1_T1PCI is not set CONFIG_ISDN_DRV_AVMB1_C4=y CONFIG_CAPI_EICON=y CONFIG_ISDN_DIVAS=y # CONFIG_ISDN_DIVAS_BRIPCI is not set CONFIG_ISDN_DIVAS_PRIPCI=y # CONFIG_ISDN_DIVAS_DIVACAPI is not set CONFIG_ISDN_DIVAS_USERIDI=y # CONFIG_ISDN_DRV_GIGASET is not set # CONFIG_PHONE is not set # # Input device support # CONFIG_INPUT=y CONFIG_INPUT_FF_MEMLESS=y CONFIG_INPUT_POLLDEV=y CONFIG_INPUT_SPARSEKMAP=y # # Userland interfaces # CONFIG_INPUT_MOUSEDEV=y CONFIG_INPUT_MOUSEDEV_PSAUX=y CONFIG_INPUT_MOUSEDEV_SCREEN_X=1024 CONFIG_INPUT_MOUSEDEV_SCREEN_Y=768 CONFIG_INPUT_JOYDEV=y CONFIG_INPUT_EVDEV=y CONFIG_INPUT_EVBUG=y # # Input Device Drivers # CONFIG_INPUT_KEYBOARD=y # CONFIG_KEYBOARD_ADP5520 is not set # CONFIG_KEYBOARD_ADP5588 is not set CONFIG_KEYBOARD_ATKBD=y CONFIG_QT2160=y CONFIG_KEYBOARD_LKKBD=y CONFIG_KEYBOARD_GPIO=y CONFIG_KEYBOARD_MATRIX=y CONFIG_KEYBOARD_LM8323=y CONFIG_KEYBOARD_MAX7359=y CONFIG_KEYBOARD_NEWTON=y CONFIG_KEYBOARD_OPENCORES=y CONFIG_KEYBOARD_STOWAWAY=y CONFIG_KEYBOARD_SUNKBD=y CONFIG_KEYBOARD_XTKBD=y # CONFIG_INPUT_MOUSE is not set # CONFIG_INPUT_JOYSTICK is not set CONFIG_INPUT_TABLET=y CONFIG_TABLET_USB_ACECAD=y # CONFIG_TABLET_USB_AIPTEK is not set CONFIG_TABLET_USB_GTCO=y CONFIG_TABLET_USB_KBTAB=y CONFIG_TABLET_USB_WACOM=y CONFIG_INPUT_TOUCHSCREEN=y CONFIG_TOUCHSCREEN_ADS7846=y CONFIG_TOUCHSCREEN_AD7877=y CONFIG_TOUCHSCREEN_AD7879_I2C=y CONFIG_TOUCHSCREEN_AD7879=y CONFIG_TOUCHSCREEN_DYNAPRO=y # CONFIG_TOUCHSCREEN_EETI is not set # CONFIG_TOUCHSCREEN_FUJITSU is not set CONFIG_TOUCHSCREEN_GUNZE=y # CONFIG_TOUCHSCREEN_ELO is not set # CONFIG_TOUCHSCREEN_WACOM_W8001 is not set CONFIG_TOUCHSCREEN_MCS5000=y CONFIG_TOUCHSCREEN_MTOUCH=y CONFIG_TOUCHSCREEN_INEXIO=y CONFIG_TOUCHSCREEN_MK712=y CONFIG_TOUCHSCREEN_PENMOUNT=y CONFIG_TOUCHSCREEN_TOUCHRIGHT=y CONFIG_TOUCHSCREEN_TOUCHWIN=y CONFIG_TOUCHSCREEN_USB_COMPOSITE=y CONFIG_TOUCHSCREEN_MC13783=y # CONFIG_TOUCHSCREEN_USB_EGALAX is not set # CONFIG_TOUCHSCREEN_USB_PANJIT is not set CONFIG_TOUCHSCREEN_USB_3M=y # CONFIG_TOUCHSCREEN_USB_ITM is not set CONFIG_TOUCHSCREEN_USB_ETURBO=y CONFIG_TOUCHSCREEN_USB_GUNZE=y CONFIG_TOUCHSCREEN_USB_DMC_TSC10=y # CONFIG_TOUCHSCREEN_USB_IRTOUCH is not set CONFIG_TOUCHSCREEN_USB_IDEALTEK=y # CONFIG_TOUCHSCREEN_USB_GENERAL_TOUCH is not set CONFIG_TOUCHSCREEN_USB_GOTOP=y CONFIG_TOUCHSCREEN_USB_JASTEC=y CONFIG_TOUCHSCREEN_USB_E2I=y CONFIG_TOUCHSCREEN_USB_ZYTRONIC=y # CONFIG_TOUCHSCREEN_USB_ETT_TC5UH is not set CONFIG_TOUCHSCREEN_TOUCHIT213=y CONFIG_TOUCHSCREEN_TSC2007=y CONFIG_TOUCHSCREEN_PCAP=y # CONFIG_INPUT_MISC is not set # # Hardware I/O ports # CONFIG_SERIO=y CONFIG_SERIO_I8042=y CONFIG_SERIO_SERPORT=y CONFIG_SERIO_CT82C710=y # CONFIG_SERIO_PCIPS2 is not set CONFIG_SERIO_LIBPS2=y # CONFIG_SERIO_RAW is not set CONFIG_SERIO_ALTERA_PS2=y # CONFIG_GAMEPORT is not set # # Character devices # CONFIG_VT=y # CONFIG_CONSOLE_TRANSLATIONS is not set CONFIG_VT_CONSOLE=y CONFIG_HW_CONSOLE=y # CONFIG_VT_HW_CONSOLE_BINDING is not set CONFIG_DEVKMEM=y # 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_NR_UARTS=4 CONFIG_SERIAL_8250_RUNTIME_UARTS=4 CONFIG_SERIAL_8250_EXTENDED=y # CONFIG_SERIAL_8250_MANY_PORTS is not set # CONFIG_SERIAL_8250_SHARE_IRQ is not set CONFIG_SERIAL_8250_DETECT_IRQ=y CONFIG_SERIAL_8250_RSA=y CONFIG_SERIAL_8250_MCA=y # # Non-8250 serial port support # # CONFIG_SERIAL_MAX3100 is not set CONFIG_SERIAL_CORE=y CONFIG_SERIAL_CORE_CONSOLE=y # CONFIG_SERIAL_JSM is not set CONFIG_UNIX98_PTYS=y CONFIG_DEVPTS_MULTIPLE_INSTANCES=y # CONFIG_LEGACY_PTYS is not set CONFIG_HVC_DRIVER=y CONFIG_VIRTIO_CONSOLE=y # CONFIG_IPMI_HANDLER is not set CONFIG_HW_RANDOM=y CONFIG_HW_RANDOM_TIMERIOMEM=y CONFIG_HW_RANDOM_INTEL=y CONFIG_HW_RANDOM_AMD=y CONFIG_HW_RANDOM_GEODE=y # CONFIG_HW_RANDOM_VIA is not set CONFIG_HW_RANDOM_VIRTIO=y CONFIG_NVRAM=y CONFIG_R3964=y # CONFIG_APPLICOM is not set CONFIG_SONYPI=y CONFIG_MWAVE=y CONFIG_SCx200_GPIO=y CONFIG_PC8736x_GPIO=y CONFIG_NSC_GPIO=y CONFIG_CS5535_GPIO=y CONFIG_RAW_DRIVER=y CONFIG_MAX_RAW_DEVS=256 # CONFIG_HANGCHECK_TIMER is not set CONFIG_TCG_TPM=y # CONFIG_TCG_NSC is not set CONFIG_TCG_ATMEL=y CONFIG_TELCLOCK=y CONFIG_DEVPORT=y CONFIG_I2C=y CONFIG_I2C_BOARDINFO=y CONFIG_I2C_COMPAT=y CONFIG_I2C_CHARDEV=y CONFIG_I2C_HELPER_AUTO=y CONFIG_I2C_ALGOBIT=y CONFIG_I2C_ALGOPCA=y # # I2C Hardware Bus support # # # PC SMBus host controller drivers # # CONFIG_I2C_ALI1535 is not set # CONFIG_I2C_ALI1563 is not set CONFIG_I2C_ALI15X3=y CONFIG_I2C_AMD756=y # CONFIG_I2C_AMD8111 is not set CONFIG_I2C_I801=y CONFIG_I2C_ISCH=y CONFIG_I2C_PIIX4=y # CONFIG_I2C_NFORCE2 is not set CONFIG_I2C_SIS5595=y # CONFIG_I2C_SIS630 is not set CONFIG_I2C_SIS96X=y CONFIG_I2C_VIA=y CONFIG_I2C_VIAPRO=y # # I2C system bus drivers (mostly embedded / system-on-chip) # # CONFIG_I2C_GPIO is not set CONFIG_I2C_OCORES=y CONFIG_I2C_SIMTEC=y # # External I2C/SMBus adapter drivers # CONFIG_I2C_PARPORT_LIGHT=y CONFIG_I2C_TAOS_EVM=y CONFIG_I2C_TINY_USB=y # # Other I2C/SMBus bus drivers # CONFIG_I2C_PCA_PLATFORM=y CONFIG_SCx200_I2C=y CONFIG_SCx200_I2C_SCL=12 CONFIG_SCx200_I2C_SDA=13 CONFIG_SCx200_ACB=y # # Miscellaneous I2C Chip support # # CONFIG_SENSORS_TSL2550 is not set CONFIG_I2C_DEBUG_CORE=y CONFIG_I2C_DEBUG_ALGO=y CONFIG_I2C_DEBUG_BUS=y CONFIG_I2C_DEBUG_CHIP=y CONFIG_SPI=y # CONFIG_SPI_DEBUG is not set CONFIG_SPI_MASTER=y # # SPI Master Controller Drivers # CONFIG_SPI_BITBANG=y # CONFIG_SPI_GPIO is not set # CONFIG_SPI_XILINX is not set CONFIG_SPI_DESIGNWARE=y CONFIG_SPI_DW_PCI=y # # SPI Protocol Masters # CONFIG_SPI_SPIDEV=y CONFIG_SPI_TLE62X0=y # # PPS support # CONFIG_PPS=y CONFIG_PPS_DEBUG=y CONFIG_ARCH_WANT_OPTIONAL_GPIOLIB=y CONFIG_GPIOLIB=y CONFIG_DEBUG_GPIO=y # CONFIG_GPIO_SYSFS is not set # # Memory mapped GPIO expanders: # # # I2C GPIO expanders: # # CONFIG_GPIO_MAX732X is not set CONFIG_GPIO_PCA953X=y # CONFIG_GPIO_PCF857X is not set CONFIG_GPIO_WM831X=y # CONFIG_GPIO_ADP5520 is not set CONFIG_GPIO_ADP5588=y # # PCI GPIO expanders: # CONFIG_GPIO_BT8XX=y CONFIG_GPIO_LANGWELL=y # # SPI GPIO expanders: # CONFIG_GPIO_MAX7301=y CONFIG_GPIO_MCP23S08=y CONFIG_GPIO_MC33880=y # # AC97 GPIO expanders: # CONFIG_W1=y # CONFIG_W1_CON is not set # # 1-wire Bus Masters # CONFIG_W1_MASTER_MATROX=y # CONFIG_W1_MASTER_DS2490 is not set # CONFIG_W1_MASTER_DS2482 is not set # CONFIG_W1_MASTER_GPIO is not set # # 1-wire Slaves # CONFIG_W1_SLAVE_THERM=y # CONFIG_W1_SLAVE_SMEM is not set CONFIG_W1_SLAVE_DS2431=y # CONFIG_W1_SLAVE_DS2433 is not set CONFIG_W1_SLAVE_DS2760=y CONFIG_W1_SLAVE_BQ27000=y CONFIG_POWER_SUPPLY=y CONFIG_POWER_SUPPLY_DEBUG=y CONFIG_PDA_POWER=y # CONFIG_WM831X_BACKUP is not set CONFIG_WM831X_POWER=y # CONFIG_BATTERY_DS2760 is not set CONFIG_BATTERY_DS2782=y # CONFIG_BATTERY_OLPC is not set CONFIG_BATTERY_BQ27x00=y # CONFIG_BATTERY_MAX17040 is not set CONFIG_CHARGER_PCF50633=y CONFIG_HWMON=y CONFIG_HWMON_VID=y CONFIG_HWMON_DEBUG_CHIP=y # # Native drivers # CONFIG_SENSORS_ABITUGURU=y CONFIG_SENSORS_ABITUGURU3=y CONFIG_SENSORS_AD7414=y # CONFIG_SENSORS_AD7418 is not set CONFIG_SENSORS_ADCXX=y # CONFIG_SENSORS_ADM1021 is not set CONFIG_SENSORS_ADM1025=y CONFIG_SENSORS_ADM1026=y # CONFIG_SENSORS_ADM1029 is not set CONFIG_SENSORS_ADM1031=y CONFIG_SENSORS_ADM9240=y # CONFIG_SENSORS_ADT7462 is not set CONFIG_SENSORS_ADT7470=y CONFIG_SENSORS_ADT7473=y CONFIG_SENSORS_ADT7475=y # CONFIG_SENSORS_K8TEMP is not set CONFIG_SENSORS_K10TEMP=y CONFIG_SENSORS_ASB100=y CONFIG_SENSORS_ATXP1=y CONFIG_SENSORS_DS1621=y # CONFIG_SENSORS_I5K_AMB is not set # CONFIG_SENSORS_F71805F is not set # CONFIG_SENSORS_F71882FG is not set # CONFIG_SENSORS_F75375S is not set CONFIG_SENSORS_FSCHMD=y CONFIG_SENSORS_G760A=y # CONFIG_SENSORS_GL518SM is not set # CONFIG_SENSORS_GL520SM is not set CONFIG_SENSORS_CORETEMP=y # CONFIG_SENSORS_IT87 is not set CONFIG_SENSORS_LM63=y CONFIG_SENSORS_LM70=y CONFIG_SENSORS_LM73=y # CONFIG_SENSORS_LM75 is not set # CONFIG_SENSORS_LM77 is not set CONFIG_SENSORS_LM78=y CONFIG_SENSORS_LM80=y CONFIG_SENSORS_LM83=y CONFIG_SENSORS_LM85=y # CONFIG_SENSORS_LM87 is not set # CONFIG_SENSORS_LM90 is not set # CONFIG_SENSORS_LM92 is not set # CONFIG_SENSORS_LM93 is not set CONFIG_SENSORS_LTC4215=y CONFIG_SENSORS_LTC4245=y # CONFIG_SENSORS_LM95241 is not set CONFIG_SENSORS_MAX1111=y # CONFIG_SENSORS_MAX1619 is not set CONFIG_SENSORS_MAX6650=y CONFIG_SENSORS_PC87360=y CONFIG_SENSORS_PC87427=y CONFIG_SENSORS_PCF8591=y CONFIG_SENSORS_SHT15=y CONFIG_SENSORS_SIS5595=y CONFIG_SENSORS_DME1737=y CONFIG_SENSORS_SMSC47M1=y # CONFIG_SENSORS_SMSC47M192 is not set # CONFIG_SENSORS_SMSC47B397 is not set CONFIG_SENSORS_ADS7828=y # CONFIG_SENSORS_AMC6821 is not set CONFIG_SENSORS_THMC50=y CONFIG_SENSORS_TMP401=y CONFIG_SENSORS_TMP421=y CONFIG_SENSORS_VIA_CPUTEMP=y CONFIG_SENSORS_VIA686A=y CONFIG_SENSORS_VT1211=y CONFIG_SENSORS_VT8231=y CONFIG_SENSORS_W83781D=y CONFIG_SENSORS_W83791D=y CONFIG_SENSORS_W83792D=y CONFIG_SENSORS_W83793=y CONFIG_SENSORS_W83L785TS=y CONFIG_SENSORS_W83L786NG=y # CONFIG_SENSORS_W83627HF is not set # CONFIG_SENSORS_W83627EHF is not set CONFIG_SENSORS_WM831X=y # CONFIG_SENSORS_HDAPS is not set CONFIG_SENSORS_LIS3_SPI=y CONFIG_SENSORS_LIS3_I2C=y CONFIG_SENSORS_APPLESMC=y CONFIG_SENSORS_MC13783_ADC=y # CONFIG_THERMAL is not set # CONFIG_WATCHDOG is not set CONFIG_SSB_POSSIBLE=y # # Sonics Silicon Backplane # CONFIG_SSB=y CONFIG_SSB_SPROM=y CONFIG_SSB_PCIHOST_POSSIBLE=y CONFIG_SSB_PCIHOST=y # CONFIG_SSB_B43_PCI_BRIDGE is not set CONFIG_SSB_SILENT=y CONFIG_SSB_DRIVER_PCICORE_POSSIBLE=y CONFIG_SSB_DRIVER_PCICORE=y # # Multifunction device drivers # CONFIG_MFD_CORE=y CONFIG_MFD_SM501=y CONFIG_MFD_SM501_GPIO=y # CONFIG_HTC_PASIC3 is not set # CONFIG_TPS65010 is not set # CONFIG_TWL4030_CORE is not set # CONFIG_MFD_TMIO is not set # CONFIG_PMIC_DA903X is not set CONFIG_PMIC_ADP5520=y CONFIG_MFD_WM8400=y CONFIG_MFD_WM831X=y CONFIG_MFD_PCF50633=y CONFIG_MFD_MC13783=y CONFIG_PCF50633_ADC=y # CONFIG_PCF50633_GPIO is not set CONFIG_AB3100_CORE=y CONFIG_AB3100_OTP=y CONFIG_EZX_PCAP=y CONFIG_MFD_88PM8607=y CONFIG_AB4500_CORE=y CONFIG_REGULATOR=y # CONFIG_REGULATOR_DEBUG is not set # CONFIG_REGULATOR_FIXED_VOLTAGE is not set CONFIG_REGULATOR_VIRTUAL_CONSUMER=y # CONFIG_REGULATOR_USERSPACE_CONSUMER is not set CONFIG_REGULATOR_BQ24022=y CONFIG_REGULATOR_MAX1586=y # CONFIG_REGULATOR_MAX8660 is not set # CONFIG_REGULATOR_WM831X is not set CONFIG_REGULATOR_WM8400=y CONFIG_REGULATOR_PCF50633=y # CONFIG_REGULATOR_LP3971 is not set # CONFIG_REGULATOR_PCAP is not set CONFIG_REGULATOR_MC13783=y # CONFIG_REGULATOR_AB3100 is not set CONFIG_REGULATOR_TPS65023=y CONFIG_REGULATOR_TPS6507X=y CONFIG_REGULATOR_88PM8607=y CONFIG_MEDIA_SUPPORT=y # # Multimedia core support # CONFIG_VIDEO_DEV=y CONFIG_VIDEO_V4L2_COMMON=y # CONFIG_VIDEO_ALLOW_V4L1 is not set CONFIG_VIDEO_V4L1_COMPAT=y # CONFIG_DVB_CORE is not set CONFIG_VIDEO_MEDIA=y # # Multimedia drivers # CONFIG_IR_CORE=y CONFIG_VIDEO_IR=y CONFIG_MEDIA_TUNER=y CONFIG_MEDIA_TUNER_CUSTOMISE=y CONFIG_MEDIA_TUNER_SIMPLE=y CONFIG_MEDIA_TUNER_TDA8290=y CONFIG_MEDIA_TUNER_TDA827X=y CONFIG_MEDIA_TUNER_TDA18271=y CONFIG_MEDIA_TUNER_TDA9887=y CONFIG_MEDIA_TUNER_TEA5761=y # CONFIG_MEDIA_TUNER_TEA5767 is not set CONFIG_MEDIA_TUNER_MT20XX=y # CONFIG_MEDIA_TUNER_MT2060 is not set CONFIG_MEDIA_TUNER_MT2266=y CONFIG_MEDIA_TUNER_MT2131=y # CONFIG_MEDIA_TUNER_QT1010 is not set CONFIG_MEDIA_TUNER_XC2028=y # CONFIG_MEDIA_TUNER_XC5000 is not set # CONFIG_MEDIA_TUNER_MXL5005S is not set CONFIG_MEDIA_TUNER_MXL5007T=y CONFIG_MEDIA_TUNER_MC44S803=y CONFIG_VIDEO_V4L2=y # CONFIG_VIDEO_CAPTURE_DRIVERS is not set CONFIG_RADIO_ADAPTERS=y CONFIG_RADIO_GEMTEK_PCI=y CONFIG_RADIO_MAXIRADIO=y # CONFIG_RADIO_MAESTRO is not set CONFIG_I2C_SI4713=y # CONFIG_RADIO_SI4713 is not set # CONFIG_USB_DSBR is not set CONFIG_RADIO_SI470X=y CONFIG_USB_SI470X=y CONFIG_USB_MR800=y CONFIG_RADIO_TEA5764=y CONFIG_RADIO_TEA5764_XTAL=y # CONFIG_RADIO_TEF6862 is not set CONFIG_DAB=y CONFIG_USB_DABUSB=y # # Graphics support # # CONFIG_AGP is not set # CONFIG_VGA_ARB is not set CONFIG_DRM=y CONFIG_DRM_KMS_HELPER=y CONFIG_DRM_TTM=y CONFIG_DRM_TDFX=y CONFIG_DRM_R128=y CONFIG_DRM_RADEON=y CONFIG_DRM_RADEON_KMS=y CONFIG_DRM_MGA=y CONFIG_DRM_VIA=y # CONFIG_DRM_SAVAGE is not set CONFIG_VGASTATE=y CONFIG_VIDEO_OUTPUT_CONTROL=y CONFIG_FB=y # CONFIG_FIRMWARE_EDID is not set # CONFIG_FB_DDC is not set CONFIG_FB_BOOT_VESA_SUPPORT=y CONFIG_FB_CFB_FILLRECT=y CONFIG_FB_CFB_COPYAREA=y CONFIG_FB_CFB_IMAGEBLIT=y # CONFIG_FB_CFB_REV_PIXELS_IN_BYTE is not set CONFIG_FB_SYS_FILLRECT=y CONFIG_FB_SYS_COPYAREA=y CONFIG_FB_SYS_IMAGEBLIT=y # CONFIG_FB_FOREIGN_ENDIAN is not set CONFIG_FB_SYS_FOPS=y CONFIG_FB_DEFERRED_IO=y CONFIG_FB_SVGALIB=y # CONFIG_FB_MACMODES is not set CONFIG_FB_BACKLIGHT=y CONFIG_FB_MODE_HELPERS=y CONFIG_FB_TILEBLITTING=y # # Frame buffer hardware drivers # # CONFIG_FB_CIRRUS is not set # CONFIG_FB_PM2 is not set CONFIG_FB_CYBER2000=y CONFIG_FB_ARC=y # CONFIG_FB_ASILIANT is not set # CONFIG_FB_IMSTT is not set # CONFIG_FB_VGA16 is not set CONFIG_FB_UVESA=y # CONFIG_FB_VESA is not set # CONFIG_FB_N411 is not set # CONFIG_FB_HGA is not set CONFIG_FB_S1D13XXX=y # CONFIG_FB_NVIDIA is not set CONFIG_FB_RIVA=y # CONFIG_FB_RIVA_I2C is not set CONFIG_FB_RIVA_DEBUG=y CONFIG_FB_RIVA_BACKLIGHT=y # CONFIG_FB_LE80578 is not set CONFIG_FB_MATROX=y CONFIG_FB_MATROX_MILLENIUM=y CONFIG_FB_MATROX_MYSTIQUE=y # CONFIG_FB_MATROX_G is not set # CONFIG_FB_MATROX_I2C is not set # CONFIG_FB_RADEON is not set CONFIG_FB_ATY128=y CONFIG_FB_ATY128_BACKLIGHT=y CONFIG_FB_ATY=y CONFIG_FB_ATY_CT=y CONFIG_FB_ATY_GENERIC_LCD=y # CONFIG_FB_ATY_GX is not set CONFIG_FB_ATY_BACKLIGHT=y # CONFIG_FB_S3 is not set CONFIG_FB_SAVAGE=y # CONFIG_FB_SAVAGE_I2C is not set # CONFIG_FB_SAVAGE_ACCEL is not set CONFIG_FB_SIS=y CONFIG_FB_SIS_300=y # CONFIG_FB_SIS_315 is not set CONFIG_FB_VIA=y # CONFIG_FB_NEOMAGIC is not set CONFIG_FB_KYRO=y # CONFIG_FB_3DFX is not set CONFIG_FB_VOODOO1=y CONFIG_FB_VT8623=y CONFIG_FB_TRIDENT=y # CONFIG_FB_ARK is not set CONFIG_FB_PM3=y CONFIG_FB_CARMINE=y # CONFIG_FB_CARMINE_DRAM_EVAL is not set CONFIG_CARMINE_DRAM_CUSTOM=y # CONFIG_FB_GEODE is not set CONFIG_FB_TMIO=y CONFIG_FB_TMIO_ACCELL=y # CONFIG_FB_SM501 is not set # CONFIG_FB_VIRTUAL is not set CONFIG_FB_METRONOME=y CONFIG_FB_MB862XX=y CONFIG_FB_MB862XX_PCI_GDC=y CONFIG_FB_BROADSHEET=y CONFIG_BACKLIGHT_LCD_SUPPORT=y CONFIG_LCD_CLASS_DEVICE=y CONFIG_LCD_LMS283GF05=y # CONFIG_LCD_LTV350QV is not set # CONFIG_LCD_ILI9320 is not set CONFIG_LCD_TDO24M=y # CONFIG_LCD_VGG2432A4 is not set CONFIG_LCD_PLATFORM=y CONFIG_BACKLIGHT_CLASS_DEVICE=y CONFIG_BACKLIGHT_GENERIC=y CONFIG_BACKLIGHT_PROGEAR=y CONFIG_BACKLIGHT_MBP_NVIDIA=y CONFIG_BACKLIGHT_SAHARA=y # CONFIG_BACKLIGHT_WM831X is not set # CONFIG_BACKLIGHT_ADP5520 is not set # # Display device support # CONFIG_DISPLAY_SUPPORT=y # # Display hardware drivers # # # Console display driver support # CONFIG_VGA_CONSOLE=y CONFIG_VGACON_SOFT_SCROLLBACK=y CONFIG_VGACON_SOFT_SCROLLBACK_SIZE=64 CONFIG_DUMMY_CONSOLE=y # CONFIG_FRAMEBUFFER_CONSOLE is not set CONFIG_LOGO=y # CONFIG_LOGO_LINUX_MONO is not set CONFIG_LOGO_LINUX_VGA16=y # CONFIG_LOGO_LINUX_CLUT224 is not set # CONFIG_SOUND is not set CONFIG_HID_SUPPORT=y CONFIG_HID=y CONFIG_HIDRAW=y # # USB Input Devices # CONFIG_USB_HID=y CONFIG_HID_PID=y CONFIG_USB_HIDDEV=y # # Special HID drivers # CONFIG_HID_A4TECH=y CONFIG_HID_APPLE=y # CONFIG_HID_BELKIN is not set CONFIG_HID_CHERRY=y CONFIG_HID_CHICONY=y CONFIG_HID_CYPRESS=y # CONFIG_HID_DRAGONRISE is not set # CONFIG_HID_EZKEY is not set # CONFIG_HID_KYE is not set CONFIG_HID_GYRATION=y # CONFIG_HID_TWINHAN is not set # CONFIG_HID_KENSINGTON is not set CONFIG_HID_LOGITECH=y CONFIG_LOGITECH_FF=y CONFIG_LOGIRUMBLEPAD2_FF=y # CONFIG_HID_MICROSOFT is not set CONFIG_HID_MONTEREY=y # CONFIG_HID_NTRIG is not set CONFIG_HID_PANTHERLORD=y # CONFIG_PANTHERLORD_FF is not set CONFIG_HID_PETALYNX=y CONFIG_HID_SAMSUNG=y CONFIG_HID_SONY=y CONFIG_HID_SUNPLUS=y # CONFIG_HID_GREENASIA is not set # CONFIG_HID_SMARTJOYPLUS is not set # CONFIG_HID_TOPSEED is not set CONFIG_HID_THRUSTMASTER=y CONFIG_THRUSTMASTER_FF=y # CONFIG_HID_ZEROPLUS is not set CONFIG_USB_SUPPORT=y CONFIG_USB_ARCH_HAS_HCD=y CONFIG_USB_ARCH_HAS_OHCI=y CONFIG_USB_ARCH_HAS_EHCI=y CONFIG_USB=y CONFIG_USB_DEBUG=y CONFIG_USB_ANNOUNCE_NEW_DEVICES=y # # Miscellaneous USB options # # CONFIG_USB_DEVICEFS is not set CONFIG_USB_DEVICE_CLASS=y # CONFIG_USB_DYNAMIC_MINORS is not set # CONFIG_USB_OTG is not set CONFIG_USB_OTG_WHITELIST=y CONFIG_USB_OTG_BLACKLIST_HUB=y CONFIG_USB_MON=y CONFIG_USB_WUSB=y # CONFIG_USB_WUSB_CBAF is not set # # USB Host Controller Drivers # # CONFIG_USB_C67X00_HCD is not set CONFIG_USB_XHCI_HCD=y # CONFIG_USB_XHCI_HCD_DEBUGGING is not set CONFIG_USB_EHCI_HCD=y CONFIG_USB_EHCI_ROOT_HUB_TT=y # CONFIG_USB_EHCI_TT_NEWSCHED is not set # CONFIG_USB_OXU210HP_HCD is not set # CONFIG_USB_ISP116X_HCD is not set # CONFIG_USB_ISP1760_HCD is not set # CONFIG_USB_ISP1362_HCD is not set CONFIG_USB_OHCI_HCD=y # CONFIG_USB_OHCI_HCD_SSB is not set # CONFIG_USB_OHCI_BIG_ENDIAN_DESC is not set # CONFIG_USB_OHCI_BIG_ENDIAN_MMIO is not set CONFIG_USB_OHCI_LITTLE_ENDIAN=y CONFIG_USB_UHCI_HCD=y CONFIG_USB_SL811_HCD=y # CONFIG_USB_R8A66597_HCD is not set CONFIG_USB_HWA_HCD=y # # USB Device Class drivers # CONFIG_USB_ACM=y # CONFIG_USB_PRINTER is not set CONFIG_USB_WDM=y CONFIG_USB_TMC=y # # NOTE: USB_STORAGE depends on SCSI but BLK_DEV_SD may # # # also be needed; see USB_STORAGE Help for more info # CONFIG_USB_STORAGE=y CONFIG_USB_STORAGE_DEBUG=y CONFIG_USB_STORAGE_DATAFAB=y CONFIG_USB_STORAGE_FREECOM=y # CONFIG_USB_STORAGE_ISD200 is not set CONFIG_USB_STORAGE_USBAT=y CONFIG_USB_STORAGE_SDDR09=y # CONFIG_USB_STORAGE_SDDR55 is not set # CONFIG_USB_STORAGE_JUMPSHOT is not set CONFIG_USB_STORAGE_ALAUDA=y CONFIG_USB_STORAGE_ONETOUCH=y CONFIG_USB_STORAGE_KARMA=y CONFIG_USB_STORAGE_CYPRESS_ATACB=y CONFIG_USB_LIBUSUAL=y # # USB Imaging devices # # CONFIG_USB_MDC800 is not set CONFIG_USB_MICROTEK=y # # USB port drivers # CONFIG_USB_SERIAL=y CONFIG_USB_SERIAL_CONSOLE=y CONFIG_USB_EZUSB=y CONFIG_USB_SERIAL_GENERIC=y # CONFIG_USB_SERIAL_AIRCABLE is not set # CONFIG_USB_SERIAL_ARK3116 is not set CONFIG_USB_SERIAL_BELKIN=y # CONFIG_USB_SERIAL_CH341 is not set # CONFIG_USB_SERIAL_WHITEHEAT is not set # CONFIG_USB_SERIAL_DIGI_ACCELEPORT is not set CONFIG_USB_SERIAL_CP210X=y # CONFIG_USB_SERIAL_CYPRESS_M8 is not set CONFIG_USB_SERIAL_EMPEG=y CONFIG_USB_SERIAL_FTDI_SIO=y # CONFIG_USB_SERIAL_FUNSOFT is not set # CONFIG_USB_SERIAL_VISOR is not set CONFIG_USB_SERIAL_IPAQ=y CONFIG_USB_SERIAL_IR=y CONFIG_USB_SERIAL_EDGEPORT=y CONFIG_USB_SERIAL_EDGEPORT_TI=y CONFIG_USB_SERIAL_GARMIN=y CONFIG_USB_SERIAL_IPW=y # CONFIG_USB_SERIAL_IUU is not set CONFIG_USB_SERIAL_KEYSPAN_PDA=y # 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=y # CONFIG_USB_SERIAL_MOS7720 is not set CONFIG_USB_SERIAL_MOS7840=y # CONFIG_USB_SERIAL_MOTOROLA is not set CONFIG_USB_SERIAL_NAVMAN=y CONFIG_USB_SERIAL_PL2303=y CONFIG_USB_SERIAL_OTI6858=y # CONFIG_USB_SERIAL_QUALCOMM is not set CONFIG_USB_SERIAL_SPCP8X5=y CONFIG_USB_SERIAL_HP4X=y CONFIG_USB_SERIAL_SAFE=y CONFIG_USB_SERIAL_SAFE_PADDED=y CONFIG_USB_SERIAL_SIEMENS_MPI=y # CONFIG_USB_SERIAL_SIERRAWIRELESS is not set CONFIG_USB_SERIAL_SYMBOL=y # 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=y CONFIG_USB_SERIAL_OMNINET=y # CONFIG_USB_SERIAL_OPTICON is not set # CONFIG_USB_SERIAL_DEBUG is not set # # USB Miscellaneous drivers # CONFIG_USB_EMI62=y CONFIG_USB_EMI26=y CONFIG_USB_ADUTUX=y CONFIG_USB_SEVSEG=y # CONFIG_USB_RIO500 is not set CONFIG_USB_LEGOTOWER=y # CONFIG_USB_LCD is not set CONFIG_USB_BERRY_CHARGE=y CONFIG_USB_LED=y CONFIG_USB_CYPRESS_CY7C63=y CONFIG_USB_CYTHERM=y CONFIG_USB_IDMOUSE=y # CONFIG_USB_FTDI_ELAN is not set CONFIG_USB_APPLEDISPLAY=y CONFIG_USB_SISUSBVGA=y # CONFIG_USB_SISUSBVGA_CON is not set CONFIG_USB_LD=y # CONFIG_USB_TRANCEVIBRATOR is not set # CONFIG_USB_IOWARRIOR is not set CONFIG_USB_TEST=y CONFIG_USB_ISIGHTFW=y CONFIG_USB_VST=y # CONFIG_USB_ATM is not set # # OTG and related infrastructure # CONFIG_USB_OTG_UTILS=y CONFIG_USB_GPIO_VBUS=y # CONFIG_NOP_USB_XCEIV is not set CONFIG_UWB=y CONFIG_UWB_HWA=y # CONFIG_UWB_WHCI is not set CONFIG_UWB_WLP=y # CONFIG_UWB_I1480U is not set # CONFIG_MMC is not set CONFIG_MEMSTICK=y CONFIG_MEMSTICK_DEBUG=y # # MemoryStick drivers # CONFIG_MEMSTICK_UNSAFE_RESUME=y # CONFIG_MSPRO_BLOCK is not set # # MemoryStick Host Controller Drivers # CONFIG_MEMSTICK_TIFM_MS=y CONFIG_MEMSTICK_JMICRON_38X=y CONFIG_NEW_LEDS=y CONFIG_LEDS_CLASS=y # # LED drivers # CONFIG_LEDS_NET48XX=y CONFIG_LEDS_WRAP=y CONFIG_LEDS_ALIX2=y # CONFIG_LEDS_PCA9532 is not set CONFIG_LEDS_GPIO=y # CONFIG_LEDS_GPIO_PLATFORM is not set # CONFIG_LEDS_LP3944 is not set CONFIG_LEDS_CLEVO_MAIL=y CONFIG_LEDS_PCA955X=y CONFIG_LEDS_WM831X_STATUS=y CONFIG_LEDS_DAC124S085=y CONFIG_LEDS_REGULATOR=y CONFIG_LEDS_BD2802=y CONFIG_LEDS_LT3593=y CONFIG_LEDS_ADP5520=y # # LED Triggers # CONFIG_LEDS_TRIGGERS=y # CONFIG_LEDS_TRIGGER_TIMER is not set CONFIG_LEDS_TRIGGER_HEARTBEAT=y CONFIG_LEDS_TRIGGER_BACKLIGHT=y # CONFIG_LEDS_TRIGGER_GPIO is not set # CONFIG_LEDS_TRIGGER_DEFAULT_ON is not set # # iptables trigger is under Netfilter config (LED target) # CONFIG_ACCESSIBILITY=y CONFIG_A11Y_BRAILLE_CONSOLE=y CONFIG_INFINIBAND=y # CONFIG_INFINIBAND_USER_MAD is not set CONFIG_INFINIBAND_USER_ACCESS=y CONFIG_INFINIBAND_USER_MEM=y CONFIG_INFINIBAND_ADDR_TRANS=y # CONFIG_INFINIBAND_MTHCA is not set CONFIG_INFINIBAND_AMSO1100=y CONFIG_INFINIBAND_AMSO1100_DEBUG=y # CONFIG_MLX4_INFINIBAND is not set # CONFIG_INFINIBAND_NES is not set CONFIG_INFINIBAND_IPOIB=y CONFIG_INFINIBAND_IPOIB_CM=y CONFIG_INFINIBAND_IPOIB_DEBUG=y CONFIG_INFINIBAND_IPOIB_DEBUG_DATA=y CONFIG_INFINIBAND_SRP=y CONFIG_INFINIBAND_ISER=y CONFIG_EDAC=y # # Reporting subsystems # CONFIG_EDAC_DEBUG=y CONFIG_EDAC_DEBUG_VERBOSE=y CONFIG_EDAC_DECODE_MCE=y # CONFIG_EDAC_MM_EDAC is not set CONFIG_RTC_LIB=y CONFIG_RTC_CLASS=y CONFIG_RTC_HCTOSYS=y CONFIG_RTC_HCTOSYS_DEVICE="rtc0" CONFIG_RTC_DEBUG=y # # RTC interfaces # # CONFIG_RTC_INTF_SYSFS is not set CONFIG_RTC_INTF_PROC=y # CONFIG_RTC_INTF_DEV is not set CONFIG_RTC_DRV_TEST=y # # I2C RTC drivers # CONFIG_RTC_DRV_DS1307=y CONFIG_RTC_DRV_DS1374=y CONFIG_RTC_DRV_DS1672=y CONFIG_RTC_DRV_MAX6900=y CONFIG_RTC_DRV_RS5C372=y CONFIG_RTC_DRV_ISL1208=y # CONFIG_RTC_DRV_X1205 is not set # CONFIG_RTC_DRV_PCF8563 is not set # CONFIG_RTC_DRV_PCF8583 is not set CONFIG_RTC_DRV_M41T80=y # CONFIG_RTC_DRV_M41T80_WDT is not set # CONFIG_RTC_DRV_BQ32K is not set # CONFIG_RTC_DRV_S35390A is not set CONFIG_RTC_DRV_FM3130=y CONFIG_RTC_DRV_RX8581=y CONFIG_RTC_DRV_RX8025=y # # SPI RTC drivers # CONFIG_RTC_DRV_M41T94=y CONFIG_RTC_DRV_DS1305=y CONFIG_RTC_DRV_DS1390=y CONFIG_RTC_DRV_MAX6902=y CONFIG_RTC_DRV_R9701=y CONFIG_RTC_DRV_RS5C348=y CONFIG_RTC_DRV_DS3234=y CONFIG_RTC_DRV_PCF2123=y # # Platform RTC drivers # CONFIG_RTC_DRV_CMOS=y # CONFIG_RTC_DRV_DS1286 is not set CONFIG_RTC_DRV_DS1511=y # CONFIG_RTC_DRV_DS1553 is not set CONFIG_RTC_DRV_DS1742=y # CONFIG_RTC_DRV_STK17TA8 is not set CONFIG_RTC_DRV_M48T86=y CONFIG_RTC_DRV_M48T35=y CONFIG_RTC_DRV_M48T59=y CONFIG_RTC_DRV_MSM6242=y CONFIG_RTC_DRV_BQ4802=y # CONFIG_RTC_DRV_RP5C01 is not set CONFIG_RTC_DRV_V3020=y # CONFIG_RTC_DRV_WM831X is not set CONFIG_RTC_DRV_PCF50633=y CONFIG_RTC_DRV_AB3100=y # # on-CPU RTC drivers # CONFIG_RTC_DRV_PCAP=y # CONFIG_RTC_DRV_MC13783 is not set # CONFIG_DMADEVICES is not set CONFIG_AUXDISPLAY=y CONFIG_UIO=y CONFIG_UIO_CIF=y # CONFIG_UIO_PDRV is not set CONFIG_UIO_PDRV_GENIRQ=y CONFIG_UIO_SMX=y # CONFIG_UIO_AEC is not set CONFIG_UIO_SERCOS3=y CONFIG_UIO_PCI_GENERIC=y # # TI VLYNQ # # CONFIG_STAGING is not set CONFIG_X86_PLATFORM_DEVICES=y CONFIG_DELL_LAPTOP=y # # Firmware Drivers # # CONFIG_EDD is not set # CONFIG_FIRMWARE_MEMMAP is not set CONFIG_DELL_RBU=y CONFIG_DCDBAS=y # CONFIG_DMIID is not set CONFIG_ISCSI_IBFT_FIND=y # CONFIG_ISCSI_IBFT is not set # # File systems # # CONFIG_EXT2_FS is not set CONFIG_EXT3_FS=y CONFIG_EXT3_DEFAULTS_TO_ORDERED=y CONFIG_EXT3_FS_XATTR=y CONFIG_EXT3_FS_POSIX_ACL=y CONFIG_EXT3_FS_SECURITY=y CONFIG_EXT4_FS=y CONFIG_EXT4_USE_FOR_EXT23=y # CONFIG_EXT4_FS_XATTR is not set # CONFIG_EXT4_DEBUG is not set CONFIG_JBD=y # CONFIG_JBD_DEBUG is not set CONFIG_JBD2=y # CONFIG_JBD2_DEBUG is not set CONFIG_FS_MBCACHE=y # CONFIG_REISERFS_FS is not set CONFIG_JFS_FS=y # CONFIG_JFS_POSIX_ACL is not set CONFIG_JFS_SECURITY=y CONFIG_JFS_DEBUG=y CONFIG_JFS_STATISTICS=y CONFIG_FS_POSIX_ACL=y CONFIG_XFS_FS=y # CONFIG_XFS_QUOTA is not set CONFIG_XFS_POSIX_ACL=y CONFIG_XFS_RT=y CONFIG_XFS_DEBUG=y CONFIG_GFS2_FS=y CONFIG_GFS2_FS_LOCKING_DLM=y CONFIG_OCFS2_FS=y CONFIG_OCFS2_FS_O2CB=y # CONFIG_OCFS2_FS_USERSPACE_CLUSTER is not set CONFIG_OCFS2_FS_STATS=y # CONFIG_OCFS2_DEBUG_MASKLOG is not set # CONFIG_OCFS2_DEBUG_FS is not set CONFIG_BTRFS_FS=y # CONFIG_BTRFS_FS_POSIX_ACL is not set CONFIG_NILFS2_FS=y CONFIG_FILE_LOCKING=y CONFIG_FSNOTIFY=y CONFIG_DNOTIFY=y CONFIG_INOTIFY=y CONFIG_INOTIFY_USER=y CONFIG_QUOTA=y # CONFIG_QUOTA_NETLINK_INTERFACE is not set CONFIG_PRINT_QUOTA_WARNING=y CONFIG_QUOTA_TREE=y CONFIG_QFMT_V1=y CONFIG_QFMT_V2=y CONFIG_QUOTACTL=y # CONFIG_AUTOFS_FS is not set # CONFIG_AUTOFS4_FS is not set CONFIG_FUSE_FS=y CONFIG_CUSE=y # # Caches # CONFIG_FSCACHE=y CONFIG_FSCACHE_STATS=y CONFIG_FSCACHE_HISTOGRAM=y CONFIG_FSCACHE_DEBUG=y CONFIG_FSCACHE_OBJECT_LIST=y CONFIG_CACHEFILES=y # CONFIG_CACHEFILES_DEBUG is not set CONFIG_CACHEFILES_HISTOGRAM=y # # CD-ROM/DVD Filesystems # CONFIG_ISO9660_FS=y # CONFIG_JOLIET is not set CONFIG_ZISOFS=y # CONFIG_UDF_FS is not set # # DOS/FAT/NT Filesystems # CONFIG_FAT_FS=y CONFIG_MSDOS_FS=y # CONFIG_VFAT_FS is not set CONFIG_FAT_DEFAULT_CODEPAGE=437 CONFIG_NTFS_FS=y CONFIG_NTFS_DEBUG=y # CONFIG_NTFS_RW is not set # # Pseudo filesystems # CONFIG_PROC_FS=y # CONFIG_PROC_KCORE is not set CONFIG_PROC_SYSCTL=y CONFIG_PROC_PAGE_MONITOR=y CONFIG_SYSFS=y CONFIG_HUGETLBFS=y CONFIG_HUGETLB_PAGE=y CONFIG_CONFIGFS_FS=y CONFIG_MISC_FILESYSTEMS=y CONFIG_ADFS_FS=y CONFIG_ADFS_FS_RW=y # CONFIG_AFFS_FS is not set # CONFIG_ECRYPT_FS is not set CONFIG_HFS_FS=y # CONFIG_HFSPLUS_FS is not set CONFIG_BEFS_FS=y CONFIG_BEFS_DEBUG=y CONFIG_BFS_FS=y CONFIG_EFS_FS=y CONFIG_CRAMFS=y CONFIG_SQUASHFS=y CONFIG_SQUASHFS_EMBEDDED=y CONFIG_SQUASHFS_FRAGMENT_CACHE_SIZE=3 CONFIG_VXFS_FS=y # CONFIG_MINIX_FS is not set CONFIG_OMFS_FS=y CONFIG_HPFS_FS=y CONFIG_QNX4FS_FS=y CONFIG_ROMFS_FS=y CONFIG_ROMFS_BACKED_BY_BLOCK=y # CONFIG_ROMFS_BACKED_BY_MTD is not set # CONFIG_ROMFS_BACKED_BY_BOTH is not set CONFIG_ROMFS_ON_BLOCK=y # CONFIG_SYSV_FS is not set CONFIG_UFS_FS=y # CONFIG_UFS_FS_WRITE is not set CONFIG_UFS_DEBUG=y CONFIG_EXOFS_FS=y # CONFIG_EXOFS_DEBUG is not set CONFIG_NETWORK_FILESYSTEMS=y CONFIG_NFS_FS=y # CONFIG_NFS_V3 is not set CONFIG_NFS_V4=y # CONFIG_NFS_V4_1 is not set CONFIG_ROOT_NFS=y CONFIG_NFS_FSCACHE=y # CONFIG_NFSD is not set CONFIG_LOCKD=y CONFIG_EXPORTFS=y CONFIG_NFS_COMMON=y CONFIG_SUNRPC=y CONFIG_SUNRPC_GSS=y CONFIG_SUNRPC_XPRT_RDMA=y CONFIG_RPCSEC_GSS_KRB5=y CONFIG_RPCSEC_GSS_SPKM3=y CONFIG_SMB_FS=y CONFIG_SMB_NLS_DEFAULT=y CONFIG_SMB_NLS_REMOTE="cp437" CONFIG_CIFS=y # CONFIG_CIFS_STATS is not set CONFIG_CIFS_WEAK_PW_HASH=y CONFIG_CIFS_UPCALL=y CONFIG_CIFS_XATTR=y CONFIG_CIFS_POSIX=y CONFIG_CIFS_DEBUG2=y CONFIG_CIFS_DFS_UPCALL=y CONFIG_CIFS_EXPERIMENTAL=y CONFIG_NCP_FS=y CONFIG_NCPFS_PACKET_SIGNING=y # CONFIG_NCPFS_IOCTL_LOCKING is not set CONFIG_NCPFS_STRONG=y CONFIG_NCPFS_NFS_NS=y # CONFIG_NCPFS_OS2_NS is not set # CONFIG_NCPFS_SMALLDOS is not set CONFIG_NCPFS_NLS=y CONFIG_NCPFS_EXTRAS=y # CONFIG_CODA_FS is not set CONFIG_AFS_FS=y CONFIG_AFS_DEBUG=y # CONFIG_AFS_FSCACHE is not set # # Partition Types # CONFIG_PARTITION_ADVANCED=y # CONFIG_ACORN_PARTITION is not set CONFIG_OSF_PARTITION=y CONFIG_AMIGA_PARTITION=y CONFIG_ATARI_PARTITION=y CONFIG_MAC_PARTITION=y CONFIG_MSDOS_PARTITION=y CONFIG_BSD_DISKLABEL=y # CONFIG_MINIX_SUBPARTITION is not set CONFIG_SOLARIS_X86_PARTITION=y CONFIG_UNIXWARE_DISKLABEL=y CONFIG_LDM_PARTITION=y CONFIG_LDM_DEBUG=y # CONFIG_SGI_PARTITION is not set CONFIG_ULTRIX_PARTITION=y CONFIG_SUN_PARTITION=y CONFIG_KARMA_PARTITION=y CONFIG_EFI_PARTITION=y CONFIG_SYSV68_PARTITION=y CONFIG_NLS=y CONFIG_NLS_DEFAULT="iso8859-1" CONFIG_NLS_CODEPAGE_437=y # CONFIG_NLS_CODEPAGE_737 is not set CONFIG_NLS_CODEPAGE_775=y CONFIG_NLS_CODEPAGE_850=y CONFIG_NLS_CODEPAGE_852=y CONFIG_NLS_CODEPAGE_855=y CONFIG_NLS_CODEPAGE_857=y CONFIG_NLS_CODEPAGE_860=y CONFIG_NLS_CODEPAGE_861=y CONFIG_NLS_CODEPAGE_862=y CONFIG_NLS_CODEPAGE_863=y CONFIG_NLS_CODEPAGE_864=y CONFIG_NLS_CODEPAGE_865=y # CONFIG_NLS_CODEPAGE_866 is not set CONFIG_NLS_CODEPAGE_869=y CONFIG_NLS_CODEPAGE_936=y CONFIG_NLS_CODEPAGE_950=y CONFIG_NLS_CODEPAGE_932=y # CONFIG_NLS_CODEPAGE_949 is not set CONFIG_NLS_CODEPAGE_874=y # CONFIG_NLS_ISO8859_8 is not set CONFIG_NLS_CODEPAGE_1250=y # CONFIG_NLS_CODEPAGE_1251 is not set CONFIG_NLS_ASCII=y # CONFIG_NLS_ISO8859_1 is not set # CONFIG_NLS_ISO8859_2 is not set CONFIG_NLS_ISO8859_3=y CONFIG_NLS_ISO8859_4=y CONFIG_NLS_ISO8859_5=y CONFIG_NLS_ISO8859_6=y CONFIG_NLS_ISO8859_7=y CONFIG_NLS_ISO8859_9=y CONFIG_NLS_ISO8859_13=y CONFIG_NLS_ISO8859_14=y 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=y CONFIG_DLM_DEBUG=y # # Kernel hacking # CONFIG_TRACE_IRQFLAGS_SUPPORT=y CONFIG_PRINTK_TIME=y CONFIG_ENABLE_WARN_DEPRECATED=y # CONFIG_ENABLE_MUST_CHECK is not set CONFIG_FRAME_WARN=1024 CONFIG_MAGIC_SYSRQ=y CONFIG_STRIP_ASM_SYMS=y CONFIG_UNUSED_SYMBOLS=y CONFIG_DEBUG_FS=y # CONFIG_HEADERS_CHECK is not set # CONFIG_DEBUG_SECTION_MISMATCH is not set CONFIG_DEBUG_KERNEL=y CONFIG_DEBUG_SHIRQ=y # CONFIG_DETECT_SOFTLOCKUP is not set CONFIG_DETECT_HUNG_TASK=y CONFIG_BOOTPARAM_HUNG_TASK_PANIC=y CONFIG_BOOTPARAM_HUNG_TASK_PANIC_VALUE=1 CONFIG_SCHED_DEBUG=y CONFIG_SCHEDSTATS=y CONFIG_TIMER_STATS=y CONFIG_DEBUG_OBJECTS=y CONFIG_DEBUG_OBJECTS_SELFTEST=y CONFIG_DEBUG_OBJECTS_FREE=y CONFIG_DEBUG_OBJECTS_TIMERS=y CONFIG_DEBUG_OBJECTS_WORK=y CONFIG_DEBUG_OBJECTS_ENABLE_DEFAULT=1 CONFIG_DEBUG_RT_MUTEXES=y CONFIG_DEBUG_PI_LIST=y CONFIG_RT_MUTEX_TESTER=y CONFIG_DEBUG_SPINLOCK=y CONFIG_DEBUG_MUTEXES=y CONFIG_DEBUG_LOCK_ALLOC=y CONFIG_PROVE_LOCKING=y CONFIG_LOCKDEP=y # CONFIG_LOCK_STAT is not set CONFIG_DEBUG_LOCKDEP=y CONFIG_TRACE_IRQFLAGS=y CONFIG_DEBUG_SPINLOCK_SLEEP=y CONFIG_DEBUG_LOCKING_API_SELFTESTS=y CONFIG_STACKTRACE=y # CONFIG_DEBUG_KOBJECT is not set # CONFIG_DEBUG_HIGHMEM is not set CONFIG_DEBUG_BUGVERBOSE=y # CONFIG_DEBUG_INFO is not set CONFIG_DEBUG_VM=y # CONFIG_DEBUG_VIRTUAL is not set # CONFIG_DEBUG_WRITECOUNT is not set CONFIG_DEBUG_MEMORY_INIT=y CONFIG_DEBUG_LIST=y CONFIG_DEBUG_SG=y CONFIG_DEBUG_NOTIFIERS=y CONFIG_DEBUG_CREDENTIALS=y CONFIG_ARCH_WANT_FRAME_POINTERS=y CONFIG_FRAME_POINTER=y # CONFIG_BOOT_PRINTK_DELAY is not set # CONFIG_RCU_TORTURE_TEST is not set CONFIG_RCU_CPU_STALL_DETECTOR=y CONFIG_BACKTRACE_SELF_TEST=y # CONFIG_DEBUG_BLOCK_EXT_DEVT is not set CONFIG_DEBUG_FORCE_WEAK_PER_CPU=y # CONFIG_FAULT_INJECTION is not set CONFIG_LATENCYTOP=y CONFIG_SYSCTL_SYSCALL_CHECK=y CONFIG_DEBUG_PAGEALLOC=y CONFIG_USER_STACKTRACE_SUPPORT=y CONFIG_HAVE_FUNCTION_TRACER=y CONFIG_HAVE_FUNCTION_GRAPH_TRACER=y CONFIG_HAVE_FUNCTION_GRAPH_FP_TEST=y CONFIG_HAVE_FUNCTION_TRACE_MCOUNT_TEST=y CONFIG_HAVE_DYNAMIC_FTRACE=y CONFIG_HAVE_FTRACE_MCOUNT_RECORD=y CONFIG_HAVE_SYSCALL_TRACEPOINTS=y CONFIG_TRACING_SUPPORT=y # CONFIG_FTRACE is not set # CONFIG_PROVIDE_OHCI1394_DMA_INIT is not set # CONFIG_DYNAMIC_DEBUG is not set # CONFIG_DMA_API_DEBUG is not set CONFIG_SAMPLES=y CONFIG_HAVE_ARCH_KGDB=y # CONFIG_KGDB is not set CONFIG_HAVE_ARCH_KMEMCHECK=y CONFIG_STRICT_DEVMEM=y CONFIG_X86_VERBOSE_BOOTUP=y CONFIG_EARLY_PRINTK=y CONFIG_EARLY_PRINTK_DBGP=y CONFIG_DEBUG_STACKOVERFLOW=y # CONFIG_DEBUG_STACK_USAGE is not set # CONFIG_DEBUG_PER_CPU_MAPS is not set CONFIG_X86_PTDUMP=y CONFIG_DEBUG_RODATA=y CONFIG_DEBUG_RODATA_TEST=y # CONFIG_4KSTACKS is not set CONFIG_DOUBLEFAULT=y CONFIG_IOMMU_STRESS=y CONFIG_HAVE_MMIOTRACE_SUPPORT=y CONFIG_IO_DELAY_TYPE_0X80=0 CONFIG_IO_DELAY_TYPE_0XED=1 CONFIG_IO_DELAY_TYPE_UDELAY=2 CONFIG_IO_DELAY_TYPE_NONE=3 # CONFIG_IO_DELAY_0X80 is not set # CONFIG_IO_DELAY_0XED is not set # CONFIG_IO_DELAY_UDELAY is not set CONFIG_IO_DELAY_NONE=y CONFIG_DEFAULT_IO_DELAY_TYPE=3 # CONFIG_DEBUG_BOOT_PARAMS is not set # CONFIG_CPA_DEBUG is not set CONFIG_OPTIMIZE_INLINING=y # # Security options # CONFIG_KEYS=y CONFIG_KEYS_DEBUG_PROC_KEYS=y CONFIG_SECURITY=y CONFIG_SECURITYFS=y CONFIG_SECURITY_NETWORK=y # CONFIG_SECURITY_NETWORK_XFRM is not set CONFIG_SECURITY_PATH=y CONFIG_LSM_MMAP_MIN_ADDR=65536 CONFIG_SECURITY_SELINUX=y # CONFIG_SECURITY_SELINUX_BOOTPARAM is not set # CONFIG_SECURITY_SELINUX_DISABLE is not set CONFIG_SECURITY_SELINUX_DEVELOP=y CONFIG_SECURITY_SELINUX_AVC_STATS=y CONFIG_SECURITY_SELINUX_CHECKREQPROT_VALUE=1 # CONFIG_SECURITY_SELINUX_POLICYDB_VERSION_MAX is not set CONFIG_SECURITY_TOMOYO=y CONFIG_DEFAULT_SECURITY_SELINUX=y # CONFIG_DEFAULT_SECURITY_SMACK is not set # CONFIG_DEFAULT_SECURITY_TOMOYO is not set # CONFIG_DEFAULT_SECURITY_DAC is not set CONFIG_DEFAULT_SECURITY="selinux" CONFIG_CRYPTO=y # # Crypto core or helper # # CONFIG_CRYPTO_FIPS is not set CONFIG_CRYPTO_ALGAPI=y CONFIG_CRYPTO_ALGAPI2=y CONFIG_CRYPTO_AEAD=y CONFIG_CRYPTO_AEAD2=y CONFIG_CRYPTO_BLKCIPHER=y CONFIG_CRYPTO_BLKCIPHER2=y CONFIG_CRYPTO_HASH=y CONFIG_CRYPTO_HASH2=y CONFIG_CRYPTO_RNG=y CONFIG_CRYPTO_RNG2=y CONFIG_CRYPTO_PCOMP=y CONFIG_CRYPTO_MANAGER=y CONFIG_CRYPTO_MANAGER2=y CONFIG_CRYPTO_GF128MUL=y # CONFIG_CRYPTO_NULL is not set CONFIG_CRYPTO_WORKQUEUE=y CONFIG_CRYPTO_CRYPTD=y CONFIG_CRYPTO_AUTHENC=y # # Authenticated Encryption with Associated Data # CONFIG_CRYPTO_CCM=y # CONFIG_CRYPTO_GCM is not set CONFIG_CRYPTO_SEQIV=y # # Block modes # CONFIG_CRYPTO_CBC=y CONFIG_CRYPTO_CTR=y CONFIG_CRYPTO_CTS=y CONFIG_CRYPTO_ECB=y # CONFIG_CRYPTO_LRW is not set CONFIG_CRYPTO_PCBC=y CONFIG_CRYPTO_XTS=y # # Hash modes # CONFIG_CRYPTO_HMAC=y CONFIG_CRYPTO_XCBC=y # CONFIG_CRYPTO_VMAC is not set # # Digest # CONFIG_CRYPTO_CRC32C=y CONFIG_CRYPTO_CRC32C_INTEL=y # CONFIG_CRYPTO_GHASH is not set CONFIG_CRYPTO_MD4=y CONFIG_CRYPTO_MD5=y CONFIG_CRYPTO_MICHAEL_MIC=y CONFIG_CRYPTO_RMD128=y CONFIG_CRYPTO_RMD160=y # CONFIG_CRYPTO_RMD256 is not set CONFIG_CRYPTO_RMD320=y CONFIG_CRYPTO_SHA1=y CONFIG_CRYPTO_SHA256=y CONFIG_CRYPTO_SHA512=y # CONFIG_CRYPTO_TGR192 is not set CONFIG_CRYPTO_WP512=y # # Ciphers # CONFIG_CRYPTO_AES=y CONFIG_CRYPTO_AES_586=y # CONFIG_CRYPTO_ANUBIS is not set CONFIG_CRYPTO_ARC4=y # CONFIG_CRYPTO_BLOWFISH is not set CONFIG_CRYPTO_CAMELLIA=y CONFIG_CRYPTO_CAST5=y # CONFIG_CRYPTO_CAST6 is not set CONFIG_CRYPTO_DES=y CONFIG_CRYPTO_FCRYPT=y CONFIG_CRYPTO_KHAZAD=y CONFIG_CRYPTO_SALSA20=y CONFIG_CRYPTO_SALSA20_586=y CONFIG_CRYPTO_SEED=y # CONFIG_CRYPTO_SERPENT is not set # CONFIG_CRYPTO_TEA is not set # CONFIG_CRYPTO_TWOFISH is not set CONFIG_CRYPTO_TWOFISH_COMMON=y CONFIG_CRYPTO_TWOFISH_586=y # # Compression # CONFIG_CRYPTO_DEFLATE=y CONFIG_CRYPTO_ZLIB=y CONFIG_CRYPTO_LZO=y # # Random Number Generation # CONFIG_CRYPTO_ANSI_CPRNG=y # CONFIG_CRYPTO_HW is not set CONFIG_HAVE_KVM=y CONFIG_HAVE_KVM_IRQCHIP=y CONFIG_HAVE_KVM_EVENTFD=y CONFIG_KVM_APIC_ARCHITECTURE=y CONFIG_VIRTUALIZATION=y CONFIG_KVM=y CONFIG_KVM_INTEL=y CONFIG_KVM_AMD=y CONFIG_LGUEST=y CONFIG_VIRTIO=y CONFIG_VIRTIO_RING=y CONFIG_VIRTIO_PCI=y CONFIG_VIRTIO_BALLOON=y # CONFIG_BINARY_PRINTF is not set # # Library routines # CONFIG_BITREVERSE=y CONFIG_GENERIC_FIND_FIRST_BIT=y CONFIG_GENERIC_FIND_NEXT_BIT=y CONFIG_GENERIC_FIND_LAST_BIT=y CONFIG_CRC_CCITT=y CONFIG_CRC16=y CONFIG_CRC_T10DIF=y CONFIG_CRC_ITU_T=y CONFIG_CRC32=y # CONFIG_CRC7 is not set CONFIG_LIBCRC32C=y CONFIG_AUDIT_GENERIC=y CONFIG_ZLIB_INFLATE=y CONFIG_ZLIB_DEFLATE=y CONFIG_LZO_COMPRESS=y CONFIG_LZO_DECOMPRESS=y CONFIG_DECOMPRESS_BZIP2=y CONFIG_DECOMPRESS_LZMA=y CONFIG_DECOMPRESS_LZO=y CONFIG_HAS_IOMEM=y CONFIG_HAS_IOPORT=y CONFIG_HAS_DMA=y CONFIG_CHECK_SIGNATURE=y CONFIG_NLATTR=y ^ permalink raw reply related [flat|nested] 64+ messages in thread
* Re: [crash, PATCH] Revert "drm/radeon/kms: move radeon KMS on/off switch out of staging." 2010-02-02 8:17 ` [crash, PATCH] Revert "drm/radeon/kms: move radeon KMS on/off switch out of staging." Ingo Molnar @ 2010-02-02 8:25 ` Dave Airlie 2010-02-02 15:44 ` Ingo Molnar 2010-02-02 8:35 ` Dave Airlie ` (2 subsequent siblings) 3 siblings, 1 reply; 64+ messages in thread From: Dave Airlie @ 2010-02-02 8:25 UTC (permalink / raw) To: Ingo Molnar; +Cc: torvalds, linux-kernel, dri-devel > > > It's the moving of radeom KMS out of staging after -rc6 that causes it, > because it brought it into the scope of my testing: > > f71d018: drm/radeon/kms: move radeon KMS on/off switch out of staging. > > So at least on this box it's clearly not ready for mainline enablement yet. > I've attached the revert patch further below. > Its not enabled by default so reverting this doesn't make much sense. We can just treat this as a normal driver bugreport. Dave. > Ingo > > --------------------> > [ 6.864061] IOAPIC[0]: Set routing entry (2-5 -> 0x35 -> IRQ 5 Mode:1 Active:1) > [ 6.871010] radeon 0000:01:00.0: PCI->APIC IRQ transform: INT A -> IRQ 5 > [ 6.878014] radeon 0000:01:00.0: setting latency timer to 64 > [ 6.885950] device: 'controlD64': device_add > [ 6.890221] device: 'card0': device_add > [ 6.894100] [drm] radeon: Initializing kernel modesetting. > [ 6.900042] radeon 0000:01:00.0: using 40bit DMA mask > [ 6.905018] [drm] register mmio base: 0xD9000000 > [ 6.910004] [drm] register mmio size: 65536 > [ 6.916147] [drm] GPU reset succeed (RBBM_STATUS=0x00000140) > [ 6.917049] [drm] Generation 2 PCI interface, using max accessible memory > [ 6.918004] [drm] radeon: VRAM 128M > [ 6.919003] [drm] radeon: VRAM from 0x00000000 to 0x07FFFFFF > [ 6.920005] [drm] radeon: GTT 512M > [ 6.921003] [drm] radeon: GTT from 0x20000000 to 0x3FFFFFFF > [ 6.922241] alloc irq_desc for 24 on node -1 > [ 6.922999] alloc kstat_irqs on node -1 > [ 6.923036] radeon 0000:01:00.0: irq 24 for MSI/MSI-X > [ 6.924028] [drm] radeon: using MSI. > [ 6.925133] [drm] radeon: irq initialized. > [ 6.926009] [drm] Detected VRAM RAM=128M, BAR=128M > [ 6.927003] [drm] RAM width 64bits DDR > [ 6.929249] [TTM] Zone kernel: Available graphics memory: 434560 kiB. > [ 6.930010] [TTM] Zone highmem: Available graphics memory: 506212 kiB. > [ 6.931200] [drm] radeon: 128M of VRAM memory ready > [ 6.932005] [drm] radeon: 512M of GTT memory ready. > [ 6.933094] [drm] GART: num cpu pages 131072, num gpu pages 131072 > [ 6.935508] [drm] radeon: 1 quad pipes, 1 Z pipes initialized. > [ 6.936033] [drm] PCIE GART of 512M enabled (table at 0x00040000). > [ 6.937068] [drm] radeon: cp idle (0x10000C03) > [ 6.938011] Registering platform device 'radeon_cp.0'. Parent at platform > [ 6.939005] device: 'radeon_cp.0': device_add > [ 6.940018] bus: 'platform': add device radeon_cp.0 > [ 6.941122] [drm] Loading R300 Microcode > [ 6.942009] platform radeon_cp.0: firmware: using built-in firmware radeon/R300_cp.bin > [ 6.943023] bus: 'platform': remove device radeon_cp.0 > [ 6.945161] [drm] radeon: ring at 0x0000000020000000 > [ 7.108115] [drm:r100_ring_test] *ERROR* radeon: ring test failed (sracth(0x15E4)=0xCAFEDEAD) > [ 7.109004] [drm:r100_cp_init] *ERROR* radeon: cp isn't working (-22). > [ 7.110003] radeon 0000:01:00.0: failled initializing CP (-22). > [ 7.111003] radeon 0000:01:00.0: Disabling GPU acceleration > [ 7.273547] Failed to wait GUI idle while programming pipes. Bad things might happen. > [ 7.436296] [drm:r100_cp_fini] *ERROR* Wait for CP idle timeout, shutting down CP. > [ 7.598755] Failed to wait GUI idle while programming pipes. Bad things might happen. > [ 7.599306] BUG: unable to handle kernel paging request at f8380000 > [ 7.599999] IP: [<c149f0de>] rv370_pcie_gart_set_page+0x2d/0x3c > [ 7.599999] *pde = 36d44067 *pte = 00000000 > [ 7.599999] Oops: 0002 [#1] SMP DEBUG_PAGEALLOC > [ 7.599999] last sysfs file: > [ 7.599999] > [ 7.599999] Pid: 1, comm: swapper Not tainted 2.6.33-rc6-00066-g9ce9290-dirty #14391 A8N-E/System Product Name > [ 7.599999] EIP: 0060:[<c149f0de>] EFLAGS: 00010206 CPU: 0 > [ 7.599999] EIP is at rv370_pcie_gart_set_page+0x2d/0x3c > [ 7.599999] EAX: 0000000c EBX: 00000000 ECX: f8380000 EDX: f8380000 > [ 7.599999] ESI: 00000000 EDI: 00000001 EBP: f6c33d68 ESP: f6c33d60 > [ 7.599999] DS: 007b ES: 007b FS: 00d8 GS: 0000 SS: 0068 > [ 7.599999] Process swapper (pid: 1, ti=f6c32000 task=f6c30000 task.ti=f6c32000) > [ 7.599999] Stack: > [ 7.599999] f6a1f004 00000000 f6c33d90 c14899fb 00000000 00000000 00000100 00000000 > [ 7.599999] <0> 00000000 f6a06538 00000000 00000002 f6c33d9c c1488467 f6a06500 f6c33da8 > [ 7.599999] <0> c14628ad f6a12af0 f6c33dd0 c146413a 00000000 c20d0d00 f6a1f364 f6a1f364 > [ 7.599999] Call Trace: > [ 7.599999] [<c14899fb>] ? radeon_gart_unbind+0xb7/0xdf > [ 7.599999] [<c1488467>] ? radeon_ttm_backend_unbind+0x14/0x1d > [ 7.599999] [<c14628ad>] ? ttm_tt_unbind+0x15/0x27 > [ 7.599999] [<c146413a>] ? ttm_bo_cleanup_refs+0xe0/0x1e8 > [ 7.599999] [<c1465717>] ? ttm_bo_release+0x4c/0x65 > [ 7.599999] [<c14656cb>] ? ttm_bo_release+0x0/0x65 > [ 7.599999] [<c13bbda5>] ? kref_put+0x39/0x42 > [ 7.599999] [<c1464357>] ? ttm_bo_unref+0x27/0x32 > [ 7.599999] [<c148947f>] ? radeon_bo_unref+0x1d/0x2d > [ 7.599999] [<c1495fd6>] ? radeon_ring_fini+0x55/0x74 > [ 7.599999] [<c149d70d>] ? r100_cp_fini+0x5d/0x82 > [ 7.599999] [<c14a1a03>] ? r300_init+0x1c5/0x20f > [ 7.599999] [<c147d680>] ? radeon_device_init+0x227/0x29f > [ 7.599999] [<c147df0a>] ? radeon_driver_load_kms+0x9d/0xff > [ 7.599999] [<c145aa62>] ? drm_get_dev+0x28a/0x364 > [ 7.599999] [<c1aabbe0>] ? radeon_pci_probe+0xd/0xf > [ 7.599999] [<c13dc6a6>] ? local_pci_probe+0xe/0x10 > [ 7.599999] [<c13dc86f>] ? pci_device_probe+0x43/0x66 > [ 7.599999] [<c14cdaf8>] ? driver_probe_device+0xae/0x13e > [ 7.599999] [<c14cdbcb>] ? __driver_attach+0x43/0x5f > [ 7.599999] [<c14cd46e>] ? bus_for_each_dev+0x3d/0x67 > [ 7.599999] [<c14cd954>] ? driver_attach+0x14/0x16 > [ 7.599999] [<c14cdb88>] ? __driver_attach+0x0/0x5f > [ 7.599999] [<c14cceb7>] ? bus_add_driver+0xab/0x1d1 > [ 7.599999] [<c14cddf7>] ? driver_register+0x79/0xe0 > [ 7.599999] [<c13ced32>] ? __raw_spin_lock_init+0x28/0x4e > [ 7.599999] [<c13dca4a>] ? __pci_register_driver+0x4c/0xa9 > [ 7.599999] [<c14570ad>] ? drm_init+0x5a/0xb2 > [ 7.599999] [<c217d557>] ? radeon_init+0x0/0xae > [ 7.599999] [<c217d603>] ? radeon_init+0xac/0xae > [ 7.599999] [<c1001051>] ? do_one_initcall+0x4c/0x159 > [ 7.599999] [<c215830a>] ? kernel_init+0x112/0x163 > [ 7.599999] [<c21581f8>] ? kernel_init+0x0/0x163 > [ 7.599999] [<c10210ba>] ? kernel_thread_helper+0x6/0x10 > [ 7.599999] Code: d2 89 e5 56 8b 75 08 53 8b 5d 0c 8b 88 48 02 00 00 78 1e 3b 90 38 02 00 00 77 16 89 f0 c1 e8 08 83 c8 0c c1 e3 18 09 d8 8d 14 91 <89> 02 31 c0 eb 05 b8 ea ff ff ff 5b 5e 5d c3 83 78 50 09 55 89 > [ 7.599999] EIP: [<c149f0de>] rv370_pcie_gart_set_page+0x2d/0x3c SS:ESP 0068:f6c33d60 > [ 7.599999] CR2: 00000000f8380000 > [ 7.599999] ---[ end trace 012a361324455360 ]--- > [ 7.599999] Kernel panic - not syncing: Fatal exception > [ 7.599999] Pid: 1, comm: swapper Tainted: G D 2.6.33-rc6-00066-g9ce9290-dirty #14391 > > >From 2f73a756d3603067c0dc618683f8515ef2fbae34 Mon Sep 17 00:00:00 2001 > From: Ingo Molnar <mingo@elte.hu> > Date: Tue, 2 Feb 2010 09:06:04 +0100 > Subject: [PATCH] Revert "drm/radeon/kms: move radeon KMS on/off switch out of staging." > > This reverts commit f71d0187987e691516cd10c2702f002c0e2f0edc. > > Signed-off-by: Ingo Molnar <mingo@elte.hu> > --- > drivers/gpu/drm/Kconfig | 2 -- > drivers/staging/Kconfig | 2 ++ > 2 files changed, 2 insertions(+), 2 deletions(-) > > diff --git a/drivers/gpu/drm/Kconfig b/drivers/gpu/drm/Kconfig > index 305c590..96eddd1 100644 > --- a/drivers/gpu/drm/Kconfig > +++ b/drivers/gpu/drm/Kconfig > @@ -66,8 +66,6 @@ config DRM_RADEON > > If M is selected, the module will be called radeon. > > -source "drivers/gpu/drm/radeon/Kconfig" > - > config DRM_I810 > tristate "Intel I810" > depends on DRM && AGP && AGP_INTEL > diff --git a/drivers/staging/Kconfig b/drivers/staging/Kconfig > index fc2e963..94eb863 100644 > --- a/drivers/staging/Kconfig > +++ b/drivers/staging/Kconfig > @@ -99,6 +99,8 @@ source "drivers/staging/line6/Kconfig" > > source "drivers/gpu/drm/vmwgfx/Kconfig" > > +source "drivers/gpu/drm/radeon/Kconfig" > + > source "drivers/gpu/drm/nouveau/Kconfig" > > source "drivers/staging/octeon/Kconfig" > ^ permalink raw reply [flat|nested] 64+ messages in thread
* Re: [crash, PATCH] Revert "drm/radeon/kms: move radeon KMS on/off switch out of staging." 2010-02-02 8:25 ` Dave Airlie @ 2010-02-02 15:44 ` Ingo Molnar 2010-02-04 20:39 ` Dave Airlie 0 siblings, 1 reply; 64+ messages in thread From: Ingo Molnar @ 2010-02-02 15:44 UTC (permalink / raw) To: Dave Airlie; +Cc: torvalds, linux-kernel, dri-devel * Dave Airlie <airlied@linux.ie> wrote: > > It's the moving of radeom KMS out of staging after -rc6 that causes it, > > because it brought it into the scope of my testing: > > > > f71d018: drm/radeon/kms: move radeon KMS on/off switch out of staging. > > > > So at least on this box it's clearly not ready for mainline enablement > > yet. I've attached the revert patch further below. > > Its not enabled by default so reverting this doesn't make much sense. I boot allyesconfig kernels regularly, which testing method works fine with another 2000+ upstream drivers. (including the dozens of drivers which match to active hardware components on that box) > We can just treat this as a normal driver bugreport. Commit f71d0187 is post-rc6, so i'm not sure it fits your "this is business as usual, lets move on" characterisation. Thanks, Ingo ^ permalink raw reply [flat|nested] 64+ messages in thread
* Re: [crash, PATCH] Revert "drm/radeon/kms: move radeon KMS on/off switch out of staging." 2010-02-02 15:44 ` Ingo Molnar @ 2010-02-04 20:39 ` Dave Airlie 2010-02-04 20:46 ` Ingo Molnar 0 siblings, 1 reply; 64+ messages in thread From: Dave Airlie @ 2010-02-04 20:39 UTC (permalink / raw) To: Ingo Molnar; +Cc: Dave Airlie, torvalds, linux-kernel, dri-devel On Wed, Feb 3, 2010 at 1:44 AM, Ingo Molnar <mingo@elte.hu> wrote: > > * Dave Airlie <airlied@linux.ie> wrote: > >> > It's the moving of radeom KMS out of staging after -rc6 that causes it, >> > because it brought it into the scope of my testing: >> > >> > f71d018: drm/radeon/kms: move radeon KMS on/off switch out of staging. >> > >> > So at least on this box it's clearly not ready for mainline enablement >> > yet. I've attached the revert patch further below. >> >> Its not enabled by default so reverting this doesn't make much sense. > > I boot allyesconfig kernels regularly, which testing method works fine with > another 2000+ upstream drivers. (including the dozens of drivers which match > to active hardware components on that box) Okay this was something I wondered about, since these are *not* allyesconfig .configs, I've generated some and CONFIG_FB_RADEON is always on here, and you seem to not have that enabled (not that enabling it is a good idea it is in fact a really bad idea). So do you have something you are running after allyesconfig to fix things? or have you just got a config that is close enough to allyesconfig. I'm building kernels with your .config now and boot testing them on the full range of hardware I have/ Dave. ^ permalink raw reply [flat|nested] 64+ messages in thread
* Re: [crash, PATCH] Revert "drm/radeon/kms: move radeon KMS on/off switch out of staging." 2010-02-04 20:39 ` Dave Airlie @ 2010-02-04 20:46 ` Ingo Molnar 2010-02-04 21:14 ` Dave Airlie 0 siblings, 1 reply; 64+ messages in thread From: Ingo Molnar @ 2010-02-04 20:46 UTC (permalink / raw) To: Dave Airlie; +Cc: Dave Airlie, torvalds, linux-kernel, dri-devel * Dave Airlie <airlied@gmail.com> wrote: > On Wed, Feb 3, 2010 at 1:44 AM, Ingo Molnar <mingo@elte.hu> wrote: > > > > * Dave Airlie <airlied@linux.ie> wrote: > > > >> > It's the moving of radeom KMS out of staging after -rc6 that causes it, > >> > because it brought it into the scope of my testing: > >> > > >> > ?f71d018: drm/radeon/kms: move radeon KMS on/off switch out of staging. > >> > > >> > So at least on this box it's clearly not ready for mainline enablement > >> > yet. I've attached the revert patch further below. > >> > >> Its not enabled by default so reverting this doesn't make much sense. > > > > I boot allyesconfig kernels regularly, which testing method works fine > > with another 2000+ upstream drivers. (including the dozens of drivers > > which match to active hardware components on that box) > > Okay this was something I wondered about, since these are *not* > allyesconfig .configs, I've generated some and CONFIG_FB_RADEON is always > on here, and you seem to not have that enabled (not that enabling it is a > good idea it is in fact a really bad idea). These were random configs - the size doesnt match an allyesconfig, those are way bigger. My above comment related to the first crash, and to my argument that all other drivers are fine during bootup - and there's a lot of them. > So do you have something you are running after allyesconfig to fix things? > or have you just got a config that is close enough to allyesconfig. > > I'm building kernels with your .config now and boot testing them on the > full range of hardware I have/ Thanks. Is there something i can enable to get a better log for you to find out where (and why) it's hanging? It's still early during bootup so the box is not particularly debuggable - so i'm not sure i can get a task list dump, etc., unfortunately. Ingo ^ permalink raw reply [flat|nested] 64+ messages in thread
* Re: [crash, PATCH] Revert "drm/radeon/kms: move radeon KMS on/off switch out of staging." 2010-02-04 20:46 ` Ingo Molnar @ 2010-02-04 21:14 ` Dave Airlie 2010-02-05 0:43 ` Dave Airlie 0 siblings, 1 reply; 64+ messages in thread From: Dave Airlie @ 2010-02-04 21:14 UTC (permalink / raw) To: Ingo Molnar; +Cc: Dave Airlie, torvalds, linux-kernel, dri-devel On Fri, Feb 5, 2010 at 6:46 AM, Ingo Molnar <mingo@elte.hu> wrote: > > * Dave Airlie <airlied@gmail.com> wrote: > >> On Wed, Feb 3, 2010 at 1:44 AM, Ingo Molnar <mingo@elte.hu> wrote: >> > >> > * Dave Airlie <airlied@linux.ie> wrote: >> > >> >> > It's the moving of radeom KMS out of staging after -rc6 that causes it, >> >> > because it brought it into the scope of my testing: >> >> > >> >> > ?f71d018: drm/radeon/kms: move radeon KMS on/off switch out of staging. >> >> > >> >> > So at least on this box it's clearly not ready for mainline enablement >> >> > yet. I've attached the revert patch further below. >> >> >> >> Its not enabled by default so reverting this doesn't make much sense. >> > >> > I boot allyesconfig kernels regularly, which testing method works fine >> > with another 2000+ upstream drivers. (including the dozens of drivers >> > which match to active hardware components on that box) >> >> Okay this was something I wondered about, since these are *not* >> allyesconfig .configs, I've generated some and CONFIG_FB_RADEON is always >> on here, and you seem to not have that enabled (not that enabling it is a >> good idea it is in fact a really bad idea). > > These were random configs - the size doesnt match an allyesconfig, those are > way bigger. My above comment related to the first crash, and to my argument > that all other drivers are fine during bootup - and there's a lot of them. > >> So do you have something you are running after allyesconfig to fix things? >> or have you just got a config that is close enough to allyesconfig. >> >> I'm building kernels with your .config now and boot testing them on the >> full range of hardware I have/ > > Thanks. Is there something i can enable to get a better log for you to find > out where (and why) it's hanging? It's still early during bootup so the box > is not particularly debuggable - so i'm not sure i can get a task list dump, > etc., unfortunately. > Do you have NMI watchdog enabled? (does it work that early) a backtrace of where it hangs would be nice, Also a dmesg from booting with drm.debug=15 might help narrow it down also. Dave. > Ingo > ^ permalink raw reply [flat|nested] 64+ messages in thread
* Re: [crash, PATCH] Revert "drm/radeon/kms: move radeon KMS on/off switch out of staging." 2010-02-04 21:14 ` Dave Airlie @ 2010-02-05 0:43 ` Dave Airlie 2010-02-05 7:32 ` Ingo Molnar 0 siblings, 1 reply; 64+ messages in thread From: Dave Airlie @ 2010-02-05 0:43 UTC (permalink / raw) To: Ingo Molnar; +Cc: Dave Airlie, torvalds, linux-kernel, dri-devel >> >> These were random configs - the size doesnt match an allyesconfig, those are >> way bigger. My above comment related to the first crash, and to my argument >> that all other drivers are fine during bootup - and there's a lot of them. >> >>> So do you have something you are running after allyesconfig to fix things? >>> or have you just got a config that is close enough to allyesconfig. >>> >>> I'm building kernels with your .config now and boot testing them on the >>> full range of hardware I have/ >> >> Thanks. Is there something i can enable to get a better log for you to find >> out where (and why) it's hanging? It's still early during bootup so the box >> is not particularly debuggable - so i'm not sure i can get a task list dump, >> etc., unfortunately. >> > Do you have NMI watchdog enabled? (does it work that early) > > a backtrace of where it hangs would be nice, > > Also a dmesg from booting with drm.debug=15 might help narrow it down > also. > Okay I've booted this on the rv370 + rv380 machines I have, I've no old Athlon's though so I'm trying to get RHTS to give me access to one or two internally, Another question, that came to mind, what is there any monitors plugged in? or a KVM or something? if yes can you try without and if no can you try with? Also can you add CONFIG_FRAMEBUFFER_CONSOLE as well since I don't think we test often without it. Dave. ^ permalink raw reply [flat|nested] 64+ messages in thread
* Re: [crash, PATCH] Revert "drm/radeon/kms: move radeon KMS on/off switch out of staging." 2010-02-05 0:43 ` Dave Airlie @ 2010-02-05 7:32 ` Ingo Molnar 0 siblings, 0 replies; 64+ messages in thread From: Ingo Molnar @ 2010-02-05 7:32 UTC (permalink / raw) To: Dave Airlie; +Cc: Dave Airlie, torvalds, linux-kernel, dri-devel * Dave Airlie <airlied@gmail.com> wrote: > >> > >> These were random configs - the size doesnt match an allyesconfig, those are > >> way bigger. My above comment related to the first crash, and to my argument > >> that all other drivers are fine during bootup - and there's a lot of them. > >> > >>> So do you have something you are running after allyesconfig to fix things? > >>> or have you just got a config that is close enough to allyesconfig. > >>> > >>> I'm building kernels with your .config now and boot testing them on the > >>> full range of hardware I have/ > >> > >> Thanks. Is there something i can enable to get a better log for you to find > >> out where (and why) it's hanging? It's still early during bootup so the box > >> is not particularly debuggable - so i'm not sure i can get a task list dump, > >> etc., unfortunately. > >> > > Do you have NMI watchdog enabled? (does it work that early) > > > > a backtrace of where it hangs would be nice, > > > > Also a dmesg from booting with drm.debug=15 might help narrow it down > > also. > > > > Okay I've booted this on the rv370 + rv380 machines I have, I've no old > Athlon's though so I'm trying to get RHTS to give me access to one or two > internally, > > Another question, that came to mind, what is there any monitors plugged in? > or a KVM or something? if yes can you try without and if no can you try > with? > > Also can you add CONFIG_FRAMEBUFFER_CONSOLE as well since I don't think we > test often without it. ok - i'll try your suggestions and send an update - will probably have to wait until next week. Feel free to deprioritize the bug until then (i have my revert as a short-term band-aid), unless others report similar problems too. Thanks, Ingo ^ permalink raw reply [flat|nested] 64+ messages in thread
* Re: [crash, PATCH] Revert "drm/radeon/kms: move radeon KMS on/off switch out of staging." 2010-02-02 8:17 ` [crash, PATCH] Revert "drm/radeon/kms: move radeon KMS on/off switch out of staging." Ingo Molnar 2010-02-02 8:25 ` Dave Airlie @ 2010-02-02 8:35 ` Dave Airlie 2010-02-02 8:37 ` Dave Airlie 2010-02-02 15:46 ` Ingo Molnar 2010-02-02 8:58 ` [crash, PATCH] Revert " Domenico Andreoli 2010-02-02 11:56 ` Jerome Glisse 3 siblings, 2 replies; 64+ messages in thread From: Dave Airlie @ 2010-02-02 8:35 UTC (permalink / raw) To: Ingo Molnar; +Cc: Dave Airlie, torvalds, linux-kernel, dri-devel On Tue, Feb 2, 2010 at 6:17 PM, Ingo Molnar <mingo@elte.hu> wrote: > > * Dave Airlie <airlied@linux.ie> wrote: > >> > Hi Linus, >> > >> > Please pull the 'drm-linus' branch from >> > ssh://master.kernel.org/pub/scm/linux/kernel/git/airlied/drm-2.6.git drm-linus >> > >> >> I've also added an oops fix I seem to lose off my radar to this tree. >> >> commit 17aafccab4352b422aa01fa6ebf82daff693a5b3 >> Author: Michel D??nzer <daenzer@vmware.com> >> Date: Fri Jan 22 09:20:00 2010 +0100 >> >> drm/radeon/kms: Fix oops after radeon_cs_parser_init() failure. > Wierd this suggests something else is wrong on that machine can you get me the whole dmesg? I'm guessing some iommu or swiotlb issue. I've asked Jerome to fix the oops, but really anyone with an old .config won't get hit by this, and we've booted this on quite a lot of machines at this point. Dave. ^ permalink raw reply [flat|nested] 64+ messages in thread
* Re: [crash, PATCH] Revert "drm/radeon/kms: move radeon KMS on/off switch out of staging." 2010-02-02 8:35 ` Dave Airlie @ 2010-02-02 8:37 ` Dave Airlie 2010-02-02 15:42 ` Ingo Molnar 2010-02-02 15:46 ` Ingo Molnar 1 sibling, 1 reply; 64+ messages in thread From: Dave Airlie @ 2010-02-02 8:37 UTC (permalink / raw) To: Ingo Molnar; +Cc: Dave Airlie, torvalds, linux-kernel, dri-devel On Tue, Feb 2, 2010 at 6:35 PM, Dave Airlie <airlied@gmail.com> wrote: > On Tue, Feb 2, 2010 at 6:17 PM, Ingo Molnar <mingo@elte.hu> wrote: >> >> * Dave Airlie <airlied@linux.ie> wrote: >> >>> > Hi Linus, >>> > >>> > Please pull the 'drm-linus' branch from >>> > ssh://master.kernel.org/pub/scm/linux/kernel/git/airlied/drm-2.6.git drm-linus >>> > >>> >>> I've also added an oops fix I seem to lose off my radar to this tree. >>> >>> commit 17aafccab4352b422aa01fa6ebf82daff693a5b3 >>> Author: Michel D??nzer <daenzer@vmware.com> >>> Date: Fri Jan 22 09:20:00 2010 +0100 >>> >>> drm/radeon/kms: Fix oops after radeon_cs_parser_init() failure. >> > > Wierd this suggests something else is wrong on that machine can you get me > the whole dmesg? I'm guessing some iommu or swiotlb issue. > > I've asked Jerome to fix the oops, but really anyone with an old > .config won't get > hit by this, and we've booted this on quite a lot of machines at this point. > Ideas keep flooding in here, did you softboot from the old UMS driver? or coldboot? does coldbooting help? Dave. ^ permalink raw reply [flat|nested] 64+ messages in thread
* Re: [crash, PATCH] Revert "drm/radeon/kms: move radeon KMS on/off switch out of staging." 2010-02-02 8:37 ` Dave Airlie @ 2010-02-02 15:42 ` Ingo Molnar 0 siblings, 0 replies; 64+ messages in thread From: Ingo Molnar @ 2010-02-02 15:42 UTC (permalink / raw) To: Dave Airlie; +Cc: Dave Airlie, torvalds, linux-kernel, dri-devel * Dave Airlie <airlied@gmail.com> wrote: > On Tue, Feb 2, 2010 at 6:35 PM, Dave Airlie <airlied@gmail.com> wrote: > > On Tue, Feb 2, 2010 at 6:17 PM, Ingo Molnar <mingo@elte.hu> wrote: > >> > >> * Dave Airlie <airlied@linux.ie> wrote: > >> > >>> > Hi Linus, > >>> > > >>> > Please pull the 'drm-linus' branch from > >>> > ssh://master.kernel.org/pub/scm/linux/kernel/git/airlied/drm-2.6.git drm-linus > >>> > > >>> > >>> I've also added an oops fix I seem to lose off my radar to this tree. > >>> > >>> commit 17aafccab4352b422aa01fa6ebf82daff693a5b3 > >>> Author: Michel D??nzer <daenzer@vmware.com> > >>> Date: ? Fri Jan 22 09:20:00 2010 +0100 > >>> > >>> ? ? drm/radeon/kms: Fix oops after radeon_cs_parser_init() failure. > >> > > > > Wierd this suggests something else is wrong on that machine can you get me > > the whole dmesg? I'm guessing some iommu or swiotlb issue. > > > > I've asked Jerome to fix the oops, but really anyone with an old .config > > won't get hit by this, and we've booted this on quite a lot of machines > > at this point. > > Ideas keep flooding in here, did you softboot from the old UMS driver? or > coldboot? does coldbooting help? Btw., i have cold booted it after full poweroff, and it crashed in the same way. Ingo ^ permalink raw reply [flat|nested] 64+ messages in thread
* Re: [crash, PATCH] Revert "drm/radeon/kms: move radeon KMS on/off switch out of staging." 2010-02-02 8:35 ` Dave Airlie 2010-02-02 8:37 ` Dave Airlie @ 2010-02-02 15:46 ` Ingo Molnar 2010-02-02 20:34 ` Dave Airlie 1 sibling, 1 reply; 64+ messages in thread From: Ingo Molnar @ 2010-02-02 15:46 UTC (permalink / raw) To: Dave Airlie; +Cc: Dave Airlie, torvalds, linux-kernel, dri-devel [-- Attachment #1: Type: text/plain, Size: 1849 bytes --] * Dave Airlie <airlied@gmail.com> wrote: > On Tue, Feb 2, 2010 at 6:17 PM, Ingo Molnar <mingo@elte.hu> wrote: > > > > * Dave Airlie <airlied@linux.ie> wrote: > > > >> > Hi Linus, > >> > > >> > Please pull the 'drm-linus' branch from > >> > ssh://master.kernel.org/pub/scm/linux/kernel/git/airlied/drm-2.6.git drm-linus > >> > > >> > >> I've also added an oops fix I seem to lose off my radar to this tree. > >> > >> commit 17aafccab4352b422aa01fa6ebf82daff693a5b3 > >> Author: Michel D??nzer <daenzer@vmware.com> > >> Date: ? Fri Jan 22 09:20:00 2010 +0100 > >> > >> ? ? drm/radeon/kms: Fix oops after radeon_cs_parser_init() failure. > > > > Wierd this suggests something else is wrong on that machine can you get me > the whole dmesg? I'm guessing some iommu or swiotlb issue. This box has no known hardware or software problems, just this week it booted in excess of 1000 kernels so i'd exclude that angle for now. I have bisected the crash back to the DRM tree and the crash went away with the Kconfig revert i applied - and it got fixed by Jerome's patch. I posted my config and i posted the relevant boot log as well. Find below the full bootlog as well with vanilla -git (ab65832) and the config. (i dont think it matters) > I've asked Jerome to fix the oops, but really anyone with an old .config > won't get hit by this, and we've booted this on quite a lot of machines at > this point. I dont see the commit in yesterday's linux-next. It has very fresh timestamps: commit f71d0187987e691516cd10c2702f002c0e2f0edc Author: Dave Airlie <airlied@redhat.com> AuthorDate: Mon Feb 1 11:35:47 2010 +1000 Commit: Dave Airlie <airlied@redhat.com> CommitDate: Mon Feb 1 11:35:47 2010 +1000 What kind of widespread testing could this commit have gotten in the less than 24 hours before it hit mainline? Thanks, Ingo [-- Attachment #2: config --] [-- Type: text/plain, Size: 70242 bytes --] # # Automatically generated make config: don't edit # Linux kernel version: 2.6.33-rc6 # Tue Feb 2 11:47:53 2010 # # CONFIG_64BIT is not set CONFIG_X86_32=y # CONFIG_X86_64 is not set CONFIG_X86=y CONFIG_OUTPUT_FORMAT="elf32-i386" CONFIG_ARCH_DEFCONFIG="arch/x86/configs/i386_defconfig" CONFIG_GENERIC_TIME=y CONFIG_GENERIC_CMOS_UPDATE=y CONFIG_CLOCKSOURCE_WATCHDOG=y CONFIG_GENERIC_CLOCKEVENTS=y CONFIG_GENERIC_CLOCKEVENTS_BROADCAST=y CONFIG_LOCKDEP_SUPPORT=y CONFIG_STACKTRACE_SUPPORT=y CONFIG_HAVE_LATENCYTOP_SUPPORT=y CONFIG_MMU=y CONFIG_ZONE_DMA=y CONFIG_GENERIC_ISA_DMA=y CONFIG_GENERIC_IOMAP=y CONFIG_GENERIC_BUG=y CONFIG_GENERIC_HWEIGHT=y CONFIG_GENERIC_GPIO=y CONFIG_ARCH_MAY_HAVE_PC_FDC=y # CONFIG_RWSEM_GENERIC_SPINLOCK is not set CONFIG_RWSEM_XCHGADD_ALGORITHM=y CONFIG_ARCH_HAS_CPU_IDLE_WAIT=y CONFIG_GENERIC_CALIBRATE_DELAY=y # CONFIG_GENERIC_TIME_VSYSCALL is not set CONFIG_ARCH_HAS_CPU_RELAX=y CONFIG_ARCH_HAS_DEFAULT_IDLE=y CONFIG_ARCH_HAS_CACHE_LINE_SIZE=y CONFIG_HAVE_SETUP_PER_CPU_AREA=y CONFIG_NEED_PER_CPU_EMBED_FIRST_CHUNK=y CONFIG_NEED_PER_CPU_PAGE_FIRST_CHUNK=y # CONFIG_HAVE_CPUMASK_OF_CPU_MAP is not set CONFIG_ARCH_HIBERNATION_POSSIBLE=y CONFIG_ARCH_SUSPEND_POSSIBLE=y # CONFIG_ZONE_DMA32 is not set CONFIG_ARCH_POPULATES_NODE_MAP=y # CONFIG_AUDIT_ARCH is not set CONFIG_ARCH_SUPPORTS_OPTIMIZED_INLINING=y CONFIG_ARCH_SUPPORTS_DEBUG_PAGEALLOC=y CONFIG_GENERIC_HARDIRQS=y CONFIG_GENERIC_HARDIRQS_NO__DO_IRQ=y CONFIG_GENERIC_IRQ_PROBE=y CONFIG_GENERIC_PENDING_IRQ=y CONFIG_USE_GENERIC_SMP_HELPERS=y CONFIG_X86_32_SMP=y CONFIG_X86_HT=y CONFIG_X86_TRAMPOLINE=y CONFIG_X86_32_LAZY_GS=y CONFIG_KTIME_SCALAR=y CONFIG_DEFCONFIG_LIST="/lib/modules/$UNAME_RELEASE/.config" CONFIG_CONSTRUCTORS=y # # General setup # CONFIG_EXPERIMENTAL=y CONFIG_LOCK_KERNEL=y CONFIG_INIT_ENV_ARG_LIMIT=32 CONFIG_LOCALVERSION="" CONFIG_LOCALVERSION_AUTO=y CONFIG_HAVE_KERNEL_GZIP=y CONFIG_HAVE_KERNEL_BZIP2=y CONFIG_HAVE_KERNEL_LZMA=y CONFIG_HAVE_KERNEL_LZO=y CONFIG_KERNEL_GZIP=y # CONFIG_KERNEL_BZIP2 is not set # CONFIG_KERNEL_LZMA is not set # CONFIG_KERNEL_LZO is not set CONFIG_SWAP=y # CONFIG_SYSVIPC is not set CONFIG_POSIX_MQUEUE=y CONFIG_POSIX_MQUEUE_SYSCTL=y # CONFIG_BSD_PROCESS_ACCT is not set CONFIG_TASKSTATS=y CONFIG_TASK_DELAY_ACCT=y CONFIG_TASK_XACCT=y # CONFIG_TASK_IO_ACCOUNTING is not set CONFIG_AUDIT=y CONFIG_AUDITSYSCALL=y CONFIG_AUDIT_TREE=y # # RCU Subsystem # CONFIG_TREE_RCU=y # CONFIG_TREE_PREEMPT_RCU is not set # CONFIG_TINY_RCU is not set CONFIG_RCU_TRACE=y CONFIG_RCU_FANOUT=32 CONFIG_RCU_FANOUT_EXACT=y CONFIG_TREE_RCU_TRACE=y CONFIG_IKCONFIG=y CONFIG_IKCONFIG_PROC=y CONFIG_LOG_BUF_SHIFT=20 CONFIG_HAVE_UNSTABLE_SCHED_CLOCK=y # CONFIG_GROUP_SCHED is not set CONFIG_CGROUPS=y CONFIG_CGROUP_DEBUG=y CONFIG_CGROUP_NS=y # CONFIG_CGROUP_FREEZER is not set # CONFIG_CGROUP_DEVICE is not set # CONFIG_CPUSETS is not set CONFIG_CGROUP_CPUACCT=y CONFIG_RESOURCE_COUNTERS=y # CONFIG_CGROUP_MEM_RES_CTLR is not set CONFIG_SYSFS_DEPRECATED=y CONFIG_SYSFS_DEPRECATED_V2=y CONFIG_RELAY=y # CONFIG_NAMESPACES is not set CONFIG_BLK_DEV_INITRD=y CONFIG_INITRAMFS_SOURCE="" # CONFIG_RD_GZIP is not set CONFIG_RD_BZIP2=y CONFIG_RD_LZMA=y CONFIG_RD_LZO=y CONFIG_CC_OPTIMIZE_FOR_SIZE=y CONFIG_SYSCTL=y CONFIG_ANON_INODES=y CONFIG_EMBEDDED=y CONFIG_UID16=y CONFIG_SYSCTL_SYSCALL=y CONFIG_KALLSYMS=y CONFIG_KALLSYMS_ALL=y CONFIG_KALLSYMS_EXTRA_PASS=y CONFIG_HOTPLUG=y CONFIG_PRINTK=y CONFIG_BUG=y # CONFIG_ELF_CORE is not set CONFIG_PCSPKR_PLATFORM=y CONFIG_BASE_FULL=y CONFIG_FUTEX=y CONFIG_EPOLL=y CONFIG_SIGNALFD=y # CONFIG_TIMERFD is not set CONFIG_EVENTFD=y # CONFIG_SHMEM is not set CONFIG_AIO=y CONFIG_HAVE_PERF_EVENTS=y CONFIG_PERF_USE_VMALLOC=y # # Kernel Performance Events And Counters # CONFIG_PERF_EVENTS=y CONFIG_PERF_COUNTERS=y CONFIG_DEBUG_PERF_USE_VMALLOC=y CONFIG_VM_EVENT_COUNTERS=y CONFIG_PCI_QUIRKS=y CONFIG_COMPAT_BRK=y # CONFIG_SLAB is not set # CONFIG_SLUB is not set CONFIG_SLOB=y # CONFIG_PROFILING is not set CONFIG_HAVE_OPROFILE=y CONFIG_HAVE_EFFICIENT_UNALIGNED_ACCESS=y CONFIG_USER_RETURN_NOTIFIER=y CONFIG_HAVE_IOREMAP_PROT=y CONFIG_HAVE_KPROBES=y CONFIG_HAVE_KRETPROBES=y CONFIG_HAVE_ARCH_TRACEHOOK=y CONFIG_HAVE_DMA_ATTRS=y CONFIG_HAVE_DMA_API_DEBUG=y CONFIG_HAVE_HW_BREAKPOINT=y CONFIG_HAVE_USER_RETURN_NOTIFIER=y # # GCOV-based kernel profiling # # CONFIG_GCOV_KERNEL is not set CONFIG_SLOW_WORK=y # CONFIG_SLOW_WORK_DEBUG is not set CONFIG_HAVE_GENERIC_DMA_COHERENT=y CONFIG_RT_MUTEXES=y CONFIG_BASE_SMALL=0 # CONFIG_MODULES is not set CONFIG_BLOCK=y CONFIG_LBDAF=y CONFIG_BLK_DEV_BSG=y CONFIG_BLK_DEV_INTEGRITY=y CONFIG_BLK_CGROUP=y CONFIG_DEBUG_BLK_CGROUP=y # # IO Schedulers # CONFIG_IOSCHED_NOOP=y # CONFIG_IOSCHED_DEADLINE is not set CONFIG_IOSCHED_CFQ=y CONFIG_CFQ_GROUP_IOSCHED=y CONFIG_DEBUG_CFQ_IOSCHED=y # CONFIG_DEFAULT_DEADLINE is not set CONFIG_DEFAULT_CFQ=y # CONFIG_DEFAULT_NOOP is not set CONFIG_DEFAULT_IOSCHED="cfq" CONFIG_PREEMPT_NOTIFIERS=y # CONFIG_INLINE_SPIN_TRYLOCK is not set # CONFIG_INLINE_SPIN_TRYLOCK_BH is not set # CONFIG_INLINE_SPIN_LOCK is not set # CONFIG_INLINE_SPIN_LOCK_BH is not set # CONFIG_INLINE_SPIN_LOCK_IRQ is not set # CONFIG_INLINE_SPIN_LOCK_IRQSAVE is not set # CONFIG_INLINE_SPIN_UNLOCK is not set # CONFIG_INLINE_SPIN_UNLOCK_BH is not set # CONFIG_INLINE_SPIN_UNLOCK_IRQ is not set # CONFIG_INLINE_SPIN_UNLOCK_IRQRESTORE is not set # CONFIG_INLINE_READ_TRYLOCK is not set # CONFIG_INLINE_READ_LOCK is not set # CONFIG_INLINE_READ_LOCK_BH is not set # CONFIG_INLINE_READ_LOCK_IRQ is not set # CONFIG_INLINE_READ_LOCK_IRQSAVE is not set # CONFIG_INLINE_READ_UNLOCK is not set # CONFIG_INLINE_READ_UNLOCK_BH is not set # CONFIG_INLINE_READ_UNLOCK_IRQ is not set # CONFIG_INLINE_READ_UNLOCK_IRQRESTORE is not set # CONFIG_INLINE_WRITE_TRYLOCK is not set # CONFIG_INLINE_WRITE_LOCK is not set # CONFIG_INLINE_WRITE_LOCK_BH is not set # CONFIG_INLINE_WRITE_LOCK_IRQ is not set # CONFIG_INLINE_WRITE_LOCK_IRQSAVE is not set # CONFIG_INLINE_WRITE_UNLOCK is not set # CONFIG_INLINE_WRITE_UNLOCK_BH is not set # CONFIG_INLINE_WRITE_UNLOCK_IRQ is not set # CONFIG_INLINE_WRITE_UNLOCK_IRQRESTORE is not set # CONFIG_MUTEX_SPIN_ON_OWNER is not set # CONFIG_FREEZER is not set # # Processor type and features # CONFIG_TICK_ONESHOT=y CONFIG_NO_HZ=y # CONFIG_HIGH_RES_TIMERS is not set CONFIG_GENERIC_CLOCKEVENTS_BUILD=y CONFIG_SMP=y CONFIG_SPARSE_IRQ=y CONFIG_X86_MPPARSE=y CONFIG_X86_BIGSMP=y # CONFIG_X86_EXTENDED_PLATFORM is not set CONFIG_X86_SUPPORTS_MEMORY_FAILURE=y CONFIG_SCHED_OMIT_FRAME_POINTER=y CONFIG_PARAVIRT_GUEST=y CONFIG_VMI=y # CONFIG_KVM_CLOCK is not set # CONFIG_KVM_GUEST is not set CONFIG_LGUEST_GUEST=y CONFIG_PARAVIRT=y CONFIG_PARAVIRT_SPINLOCKS=y # CONFIG_PARAVIRT_CLOCK is not set CONFIG_PARAVIRT_DEBUG=y # CONFIG_MEMTEST is not set # CONFIG_M386 is not set # CONFIG_M486 is not set # CONFIG_M586 is not set # CONFIG_M586TSC is not set # CONFIG_M586MMX is not set # CONFIG_M686 is not set # CONFIG_MPENTIUMII is not set # CONFIG_MPENTIUMIII is not set # CONFIG_MPENTIUMM is not set # CONFIG_MPENTIUM4 is not set # CONFIG_MK6 is not set # CONFIG_MK7 is not set # CONFIG_MK8 is not set # CONFIG_MCRUSOE is not set # CONFIG_MEFFICEON is not set # CONFIG_MWINCHIPC6 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=y # CONFIG_MPSC is not set # CONFIG_MCORE2 is not set # CONFIG_MATOM is not set # CONFIG_GENERIC_CPU is not set CONFIG_X86_GENERIC=y CONFIG_X86_CPU=y CONFIG_X86_INTERNODE_CACHE_SHIFT=6 CONFIG_X86_CMPXCHG=y CONFIG_X86_L1_CACHE_SHIFT=6 CONFIG_X86_XADD=y CONFIG_X86_WP_WORKS_OK=y CONFIG_X86_INVLPG=y CONFIG_X86_BSWAP=y CONFIG_X86_POPAD_OK=y CONFIG_X86_INTEL_USERCOPY=y CONFIG_X86_TSC=y CONFIG_X86_CMOV=y CONFIG_X86_MINIMUM_CPU_FAMILY=4 CONFIG_X86_DEBUGCTLMSR=y # CONFIG_PROCESSOR_SELECT is not set CONFIG_CPU_SUP_INTEL=y CONFIG_CPU_SUP_CYRIX_32=y CONFIG_CPU_SUP_AMD=y CONFIG_CPU_SUP_CENTAUR=y CONFIG_CPU_SUP_TRANSMETA_32=y CONFIG_CPU_SUP_UMC_32=y # CONFIG_X86_DS is not set CONFIG_HPET_TIMER=y CONFIG_HPET_EMULATE_RTC=y CONFIG_DMI=y # CONFIG_IOMMU_HELPER is not set # CONFIG_IOMMU_API is not set CONFIG_NR_CPUS=32 # CONFIG_SCHED_SMT is not set # CONFIG_SCHED_MC is not set # CONFIG_PREEMPT_NONE is not set CONFIG_PREEMPT_VOLUNTARY=y # CONFIG_PREEMPT is not set CONFIG_X86_LOCAL_APIC=y CONFIG_X86_IO_APIC=y CONFIG_X86_REROUTE_FOR_BROKEN_BOOT_IRQS=y CONFIG_X86_MCE=y # CONFIG_X86_MCE_INTEL is not set CONFIG_X86_MCE_AMD=y CONFIG_X86_ANCIENT_MCE=y CONFIG_X86_MCE_THRESHOLD=y CONFIG_X86_MCE_INJECT=y CONFIG_VM86=y # CONFIG_TOSHIBA is not set CONFIG_I8K=y CONFIG_X86_REBOOTFIXUPS=y # CONFIG_MICROCODE is not set # CONFIG_X86_MSR is not set # CONFIG_X86_CPUID is not set # CONFIG_NOHIGHMEM is not set CONFIG_HIGHMEM4G=y # CONFIG_HIGHMEM64G is not set CONFIG_VMSPLIT_3G=y # CONFIG_VMSPLIT_3G_OPT is not set # CONFIG_VMSPLIT_2G is not set # CONFIG_VMSPLIT_2G_OPT is not set # CONFIG_VMSPLIT_1G is not set CONFIG_PAGE_OFFSET=0xC0000000 CONFIG_HIGHMEM=y # CONFIG_ARCH_PHYS_ADDR_T_64BIT is not set CONFIG_ARCH_FLATMEM_ENABLE=y CONFIG_ARCH_SPARSEMEM_ENABLE=y CONFIG_ARCH_SELECT_MEMORY_MODEL=y CONFIG_ILLEGAL_POINTER_VALUE=0 CONFIG_SELECT_MEMORY_MODEL=y CONFIG_FLATMEM_MANUAL=y # CONFIG_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_PAGEFLAGS_EXTENDED=y CONFIG_SPLIT_PTLOCK_CPUS=999999 # CONFIG_PHYS_ADDR_T_64BIT is not set CONFIG_ZONE_DMA_FLAG=1 CONFIG_BOUNCE=y CONFIG_VIRT_TO_BUS=y CONFIG_MMU_NOTIFIER=y CONFIG_KSM=y CONFIG_DEFAULT_MMAP_MIN_ADDR=4096 CONFIG_ARCH_SUPPORTS_MEMORY_FAILURE=y CONFIG_MEMORY_FAILURE=y CONFIG_HWPOISON_INJECT=y CONFIG_HIGHPTE=y # CONFIG_X86_CHECK_BIOS_CORRUPTION is not set CONFIG_X86_RESERVE_LOW_64K=y CONFIG_MATH_EMULATION=y # CONFIG_MTRR is not set CONFIG_SECCOMP=y # CONFIG_CC_STACKPROTECTOR is not set # CONFIG_HZ_100 is not set # CONFIG_HZ_250 is not set # CONFIG_HZ_300 is not set CONFIG_HZ_1000=y CONFIG_HZ=1000 # CONFIG_SCHED_HRTICK is not set # CONFIG_KEXEC is not set # CONFIG_CRASH_DUMP is not set CONFIG_PHYSICAL_START=0x1000000 CONFIG_RELOCATABLE=y CONFIG_X86_NEED_RELOCS=y CONFIG_PHYSICAL_ALIGN=0x1000000 # CONFIG_HOTPLUG_CPU is not set CONFIG_COMPAT_VDSO=y CONFIG_CMDLINE_BOOL=y CONFIG_CMDLINE="" # CONFIG_CMDLINE_OVERRIDE is not set CONFIG_ARCH_ENABLE_MEMORY_HOTPLUG=y # # Power management and ACPI options # # CONFIG_PM is not set # CONFIG_SFI is not set # # CPU Frequency scaling # CONFIG_CPU_FREQ=y CONFIG_CPU_FREQ_TABLE=y CONFIG_CPU_FREQ_DEBUG=y CONFIG_CPU_FREQ_STAT=y CONFIG_CPU_FREQ_STAT_DETAILS=y CONFIG_CPU_FREQ_DEFAULT_GOV_PERFORMANCE=y # CONFIG_CPU_FREQ_DEFAULT_GOV_POWERSAVE is not set # CONFIG_CPU_FREQ_DEFAULT_GOV_USERSPACE is not set # CONFIG_CPU_FREQ_DEFAULT_GOV_ONDEMAND is not set # CONFIG_CPU_FREQ_DEFAULT_GOV_CONSERVATIVE is not set CONFIG_CPU_FREQ_GOV_PERFORMANCE=y CONFIG_CPU_FREQ_GOV_POWERSAVE=y # CONFIG_CPU_FREQ_GOV_USERSPACE is not set # CONFIG_CPU_FREQ_GOV_ONDEMAND is not set CONFIG_CPU_FREQ_GOV_CONSERVATIVE=y # # CPUFreq processor drivers # CONFIG_X86_POWERNOW_K6=y CONFIG_X86_POWERNOW_K7=y CONFIG_X86_GX_SUSPMOD=y CONFIG_X86_SPEEDSTEP_CENTRINO=y CONFIG_X86_SPEEDSTEP_CENTRINO_TABLE=y CONFIG_X86_SPEEDSTEP_ICH=y CONFIG_X86_SPEEDSTEP_SMI=y # CONFIG_X86_P4_CLOCKMOD is not set CONFIG_X86_CPUFREQ_NFORCE2=y # CONFIG_X86_LONGRUN is not set CONFIG_X86_E_POWERSAVER=y # # shared options # CONFIG_X86_SPEEDSTEP_LIB=y # CONFIG_X86_SPEEDSTEP_RELAXED_CAP_CHECK is not set CONFIG_CPU_IDLE=y CONFIG_CPU_IDLE_GOV_LADDER=y CONFIG_CPU_IDLE_GOV_MENU=y # # Bus options (PCI etc.) # CONFIG_PCI=y CONFIG_PCI_GOBIOS=y # CONFIG_PCI_GOMMCONFIG is not set # CONFIG_PCI_GODIRECT is not set # CONFIG_PCI_GOOLPC is not set # CONFIG_PCI_GOANY is not set CONFIG_PCI_BIOS=y CONFIG_PCI_DOMAINS=y # CONFIG_PCIEPORTBUS is not set CONFIG_ARCH_SUPPORTS_MSI=y CONFIG_PCI_MSI=y CONFIG_PCI_LEGACY=y CONFIG_PCI_DEBUG=y CONFIG_PCI_STUB=y # CONFIG_HT_IRQ is not set CONFIG_PCI_IOV=y CONFIG_ISA_DMA_API=y # CONFIG_ISA is not set CONFIG_MCA=y CONFIG_MCA_LEGACY=y CONFIG_MCA_PROC_FS=y CONFIG_SCx200=y CONFIG_SCx200HR_TIMER=y CONFIG_OLPC=y CONFIG_PCCARD=y # CONFIG_PCMCIA is not set CONFIG_CARDBUS=y # # PC-card bridges # CONFIG_YENTA=y CONFIG_YENTA_O2=y CONFIG_YENTA_RICOH=y CONFIG_YENTA_TI=y # CONFIG_YENTA_ENE_TUNE is not set CONFIG_YENTA_TOSHIBA=y CONFIG_PCCARD_NONSTATIC=y CONFIG_HOTPLUG_PCI=y CONFIG_HOTPLUG_PCI_FAKE=y # CONFIG_HOTPLUG_PCI_COMPAQ is not set CONFIG_HOTPLUG_PCI_IBM=y # CONFIG_HOTPLUG_PCI_CPCI is not set CONFIG_HOTPLUG_PCI_SHPC=y # # Executable file formats / Emulations # CONFIG_BINFMT_ELF=y CONFIG_HAVE_AOUT=y CONFIG_BINFMT_AOUT=y CONFIG_BINFMT_MISC=y CONFIG_HAVE_ATOMIC_IOMAP=y CONFIG_NET=y # # Networking options # CONFIG_PACKET=y # CONFIG_PACKET_MMAP is not set CONFIG_UNIX=y CONFIG_XFRM=y CONFIG_XFRM_USER=y CONFIG_XFRM_SUB_POLICY=y CONFIG_XFRM_MIGRATE=y # CONFIG_XFRM_STATISTICS is not set CONFIG_XFRM_IPCOMP=y CONFIG_NET_KEY=y # CONFIG_NET_KEY_MIGRATE is not set CONFIG_INET=y CONFIG_IP_MULTICAST=y CONFIG_IP_ADVANCED_ROUTER=y # CONFIG_ASK_IP_FIB_HASH is not set CONFIG_IP_FIB_TRIE=y # CONFIG_IP_FIB_HASH is not set CONFIG_IP_FIB_TRIE_STATS=y CONFIG_IP_MULTIPLE_TABLES=y CONFIG_IP_ROUTE_MULTIPATH=y CONFIG_IP_ROUTE_VERBOSE=y CONFIG_IP_PNP=y CONFIG_IP_PNP_DHCP=y CONFIG_IP_PNP_BOOTP=y CONFIG_IP_PNP_RARP=y CONFIG_NET_IPIP=y CONFIG_NET_IPGRE=y CONFIG_NET_IPGRE_BROADCAST=y CONFIG_IP_MROUTE=y CONFIG_IP_PIMSM_V1=y # CONFIG_IP_PIMSM_V2 is not set CONFIG_ARPD=y CONFIG_SYN_COOKIES=y # CONFIG_INET_AH is not set # CONFIG_INET_ESP is not set CONFIG_INET_IPCOMP=y CONFIG_INET_XFRM_TUNNEL=y CONFIG_INET_TUNNEL=y CONFIG_INET_XFRM_MODE_TRANSPORT=y # CONFIG_INET_XFRM_MODE_TUNNEL is not set CONFIG_INET_XFRM_MODE_BEET=y CONFIG_INET_LRO=y # CONFIG_INET_DIAG is not set # CONFIG_TCP_CONG_ADVANCED is not set CONFIG_TCP_CONG_CUBIC=y CONFIG_DEFAULT_TCP_CONG="cubic" # CONFIG_TCP_MD5SIG is not set CONFIG_IPV6=y CONFIG_IPV6_PRIVACY=y CONFIG_IPV6_ROUTER_PREF=y CONFIG_IPV6_ROUTE_INFO=y CONFIG_IPV6_OPTIMISTIC_DAD=y CONFIG_INET6_AH=y CONFIG_INET6_ESP=y CONFIG_INET6_IPCOMP=y CONFIG_IPV6_MIP6=y CONFIG_INET6_XFRM_TUNNEL=y CONFIG_INET6_TUNNEL=y # CONFIG_INET6_XFRM_MODE_TRANSPORT is not set # CONFIG_INET6_XFRM_MODE_TUNNEL is not set CONFIG_INET6_XFRM_MODE_BEET=y CONFIG_INET6_XFRM_MODE_ROUTEOPTIMIZATION=y # CONFIG_IPV6_SIT is not set CONFIG_IPV6_TUNNEL=y CONFIG_IPV6_MULTIPLE_TABLES=y CONFIG_IPV6_SUBTREES=y # CONFIG_IPV6_MROUTE is not set # CONFIG_NETLABEL is not set CONFIG_NETWORK_SECMARK=y # CONFIG_NETFILTER is not set CONFIG_IP_DCCP=y # # DCCP CCIDs Configuration (EXPERIMENTAL) # CONFIG_IP_DCCP_CCID2_DEBUG=y CONFIG_IP_DCCP_CCID3=y CONFIG_IP_DCCP_CCID3_DEBUG=y CONFIG_IP_DCCP_CCID3_RTO=100 CONFIG_IP_DCCP_TFRC_LIB=y CONFIG_IP_DCCP_TFRC_DEBUG=y # # DCCP Kernel Hacking # CONFIG_IP_DCCP_DEBUG=y CONFIG_IP_SCTP=y CONFIG_SCTP_DBG_MSG=y CONFIG_SCTP_DBG_OBJCNT=y # CONFIG_SCTP_HMAC_NONE is not set # CONFIG_SCTP_HMAC_SHA1 is not set CONFIG_SCTP_HMAC_MD5=y CONFIG_RDS=y CONFIG_RDS_RDMA=y CONFIG_RDS_TCP=y # CONFIG_RDS_DEBUG is not set CONFIG_TIPC=y CONFIG_TIPC_ADVANCED=y CONFIG_TIPC_ZONES=3 CONFIG_TIPC_CLUSTERS=1 CONFIG_TIPC_NODES=255 CONFIG_TIPC_SLAVE_NODES=0 CONFIG_TIPC_PORTS=8191 CONFIG_TIPC_LOG=0 CONFIG_TIPC_DEBUG=y CONFIG_ATM=y CONFIG_ATM_CLIP=y CONFIG_ATM_CLIP_NO_ICMP=y CONFIG_ATM_LANE=y # CONFIG_ATM_MPOA is not set CONFIG_ATM_BR2684=y # CONFIG_ATM_BR2684_IPFILTER is not set CONFIG_STP=y CONFIG_BRIDGE=y CONFIG_NET_DSA=y CONFIG_NET_DSA_TAG_DSA=y CONFIG_NET_DSA_TAG_EDSA=y CONFIG_NET_DSA_TAG_TRAILER=y CONFIG_NET_DSA_MV88E6XXX=y CONFIG_NET_DSA_MV88E6060=y CONFIG_NET_DSA_MV88E6XXX_NEED_PPU=y CONFIG_NET_DSA_MV88E6131=y CONFIG_NET_DSA_MV88E6123_61_65=y CONFIG_VLAN_8021Q=y # CONFIG_VLAN_8021Q_GVRP is not set # CONFIG_DECNET is not set CONFIG_LLC=y CONFIG_LLC2=y CONFIG_IPX=y CONFIG_IPX_INTERN=y # CONFIG_ATALK is not set # CONFIG_X25 is not set # CONFIG_LAPB is not set CONFIG_ECONET=y CONFIG_ECONET_AUNUDP=y CONFIG_ECONET_NATIVE=y CONFIG_WAN_ROUTER=y CONFIG_PHONET=y # CONFIG_IEEE802154 is not set CONFIG_NET_SCHED=y # # Queueing/Scheduling # CONFIG_NET_SCH_CBQ=y # CONFIG_NET_SCH_HTB is not set CONFIG_NET_SCH_HFSC=y # CONFIG_NET_SCH_ATM is not set CONFIG_NET_SCH_PRIO=y CONFIG_NET_SCH_MULTIQ=y CONFIG_NET_SCH_RED=y CONFIG_NET_SCH_SFQ=y CONFIG_NET_SCH_TEQL=y CONFIG_NET_SCH_TBF=y CONFIG_NET_SCH_GRED=y # CONFIG_NET_SCH_DSMARK is not set # CONFIG_NET_SCH_NETEM is not set CONFIG_NET_SCH_DRR=y CONFIG_NET_SCH_INGRESS=y # # Classification # CONFIG_NET_CLS=y CONFIG_NET_CLS_BASIC=y CONFIG_NET_CLS_TCINDEX=y CONFIG_NET_CLS_ROUTE4=y CONFIG_NET_CLS_ROUTE=y CONFIG_NET_CLS_FW=y CONFIG_NET_CLS_U32=y CONFIG_CLS_U32_PERF=y CONFIG_CLS_U32_MARK=y # CONFIG_NET_CLS_RSVP is not set # CONFIG_NET_CLS_RSVP6 is not set # CONFIG_NET_CLS_FLOW is not set CONFIG_NET_CLS_CGROUP=y CONFIG_NET_EMATCH=y CONFIG_NET_EMATCH_STACK=32 CONFIG_NET_EMATCH_CMP=y CONFIG_NET_EMATCH_NBYTE=y CONFIG_NET_EMATCH_U32=y CONFIG_NET_EMATCH_META=y # CONFIG_NET_EMATCH_TEXT is not set CONFIG_NET_CLS_ACT=y CONFIG_NET_ACT_POLICE=y # CONFIG_NET_ACT_GACT is not set CONFIG_NET_ACT_MIRRED=y CONFIG_NET_ACT_NAT=y # CONFIG_NET_ACT_PEDIT is not set CONFIG_NET_ACT_SIMP=y CONFIG_NET_ACT_SKBEDIT=y # CONFIG_NET_CLS_IND is not set CONFIG_NET_SCH_FIFO=y # CONFIG_DCB is not set # # Network testing # CONFIG_NET_PKTGEN=y CONFIG_HAMRADIO=y # # Packet Radio protocols # CONFIG_AX25=y # CONFIG_AX25_DAMA_SLAVE is not set CONFIG_NETROM=y CONFIG_ROSE=y # # AX.25 network device drivers # # CONFIG_MKISS is not set # CONFIG_6PACK is not set CONFIG_BPQETHER=y # CONFIG_BAYCOM_SER_FDX is not set CONFIG_BAYCOM_SER_HDX=y CONFIG_YAM=y CONFIG_CAN=y # CONFIG_CAN_RAW is not set CONFIG_CAN_BCM=y # # CAN Device Drivers # CONFIG_CAN_VCAN=y CONFIG_CAN_DEV=y # CONFIG_CAN_CALC_BITTIMING is not set CONFIG_CAN_MCP251X=y CONFIG_CAN_SJA1000=y CONFIG_CAN_SJA1000_PLATFORM=y CONFIG_CAN_EMS_PCI=y CONFIG_CAN_KVASER_PCI=y # # CAN USB interfaces # CONFIG_CAN_EMS_USB=y # CONFIG_CAN_DEBUG_DEVICES is not set CONFIG_IRDA=y # # IrDA protocols # CONFIG_IRLAN=y CONFIG_IRNET=y CONFIG_IRCOMM=y # CONFIG_IRDA_ULTRA is not set # # IrDA options # # CONFIG_IRDA_CACHE_LAST_LSAP is not set CONFIG_IRDA_FAST_RR=y CONFIG_IRDA_DEBUG=y # # Infrared-port device drivers # # # SIR device drivers # CONFIG_IRTTY_SIR=y # # Dongle support # CONFIG_DONGLE=y CONFIG_ESI_DONGLE=y # CONFIG_ACTISYS_DONGLE is not set # CONFIG_TEKRAM_DONGLE is not set CONFIG_TOIM3232_DONGLE=y CONFIG_LITELINK_DONGLE=y CONFIG_MA600_DONGLE=y # CONFIG_GIRBIL_DONGLE is not set CONFIG_MCP2120_DONGLE=y CONFIG_OLD_BELKIN_DONGLE=y CONFIG_ACT200L_DONGLE=y # CONFIG_KINGSUN_DONGLE is not set # CONFIG_KSDAZZLE_DONGLE is not set # CONFIG_KS959_DONGLE is not set # # FIR device drivers # # CONFIG_USB_IRDA is not set # CONFIG_SIGMATEL_FIR is not set CONFIG_NSC_FIR=y CONFIG_WINBOND_FIR=y # CONFIG_TOSHIBA_FIR is not set CONFIG_SMC_IRCC_FIR=y # CONFIG_ALI_FIR is not set # CONFIG_VLSI_FIR is not set CONFIG_VIA_FIR=y CONFIG_MCS_FIR=y CONFIG_BT=y CONFIG_BT_L2CAP=y CONFIG_BT_SCO=y CONFIG_BT_RFCOMM=y # CONFIG_BT_RFCOMM_TTY is not set CONFIG_BT_BNEP=y CONFIG_BT_BNEP_MC_FILTER=y CONFIG_BT_BNEP_PROTO_FILTER=y # CONFIG_BT_CMTP is not set # CONFIG_BT_HIDP is not set # # Bluetooth device drivers # CONFIG_BT_HCIBTUSB=y CONFIG_BT_HCIUART=y # CONFIG_BT_HCIUART_H4 is not set CONFIG_BT_HCIUART_BCSP=y CONFIG_BT_HCIUART_LL=y CONFIG_BT_HCIBCM203X=y CONFIG_BT_HCIBPA10X=y # CONFIG_BT_HCIBFUSB is not set # CONFIG_BT_HCIVHCI is not set CONFIG_BT_MRVL=y CONFIG_AF_RXRPC=y CONFIG_AF_RXRPC_DEBUG=y CONFIG_RXKAD=y CONFIG_FIB_RULES=y CONFIG_WIRELESS=y CONFIG_WIRELESS_EXT=y CONFIG_WEXT_CORE=y CONFIG_WEXT_PROC=y CONFIG_WEXT_SPY=y CONFIG_WEXT_PRIV=y CONFIG_CFG80211=y CONFIG_NL80211_TESTMODE=y CONFIG_CFG80211_DEVELOPER_WARNINGS=y # CONFIG_CFG80211_REG_DEBUG is not set CONFIG_CFG80211_DEFAULT_PS=y CONFIG_CFG80211_DEBUGFS=y # CONFIG_WIRELESS_OLD_REGULATORY is not set # CONFIG_CFG80211_WEXT is not set CONFIG_WIRELESS_EXT_SYSFS=y CONFIG_LIB80211=y CONFIG_LIB80211_CRYPT_WEP=y CONFIG_LIB80211_CRYPT_CCMP=y CONFIG_LIB80211_CRYPT_TKIP=y # CONFIG_LIB80211_DEBUG is not set # CONFIG_MAC80211 is not set CONFIG_WIMAX=y CONFIG_WIMAX_DEBUG_LEVEL=8 CONFIG_RFKILL=y CONFIG_RFKILL_LEDS=y CONFIG_RFKILL_INPUT=y # 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=y CONFIG_FIRMWARE_IN_KERNEL=y CONFIG_EXTRA_FIRMWARE="" CONFIG_DEBUG_DRIVER=y CONFIG_DEBUG_DEVRES=y # CONFIG_SYS_HYPERVISOR is not set CONFIG_CONNECTOR=y # CONFIG_PROC_EVENTS is not set # CONFIG_MTD is not set # CONFIG_PARPORT is not set CONFIG_BLK_DEV=y CONFIG_BLK_DEV_FD=y CONFIG_BLK_CPQ_DA=y CONFIG_BLK_CPQ_CISS_DA=y CONFIG_CISS_SCSI_TAPE=y CONFIG_BLK_DEV_DAC960=y CONFIG_BLK_DEV_UMEM=y # CONFIG_BLK_DEV_COW_COMMON is not set # CONFIG_BLK_DEV_LOOP is not set # CONFIG_BLK_DEV_DRBD is not set CONFIG_BLK_DEV_NBD=y CONFIG_BLK_DEV_OSD=y CONFIG_BLK_DEV_SX8=y # 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=y CONFIG_CDROM_PKTCDVD_BUFFERS=8 CONFIG_CDROM_PKTCDVD_WCACHE=y CONFIG_ATA_OVER_ETH=y CONFIG_VIRTIO_BLK=y # CONFIG_BLK_DEV_HD is not set # CONFIG_MISC_DEVICES is not set CONFIG_TIFM_CORE=y CONFIG_HAVE_IDE=y # CONFIG_IDE is not set # # SCSI device support # CONFIG_RAID_ATTRS=y CONFIG_SCSI=y CONFIG_SCSI_DMA=y CONFIG_SCSI_TGT=y CONFIG_SCSI_NETLINK=y CONFIG_SCSI_PROC_FS=y # # SCSI support type (disk, tape, CD-ROM) # CONFIG_BLK_DEV_SD=y # CONFIG_CHR_DEV_ST is not set CONFIG_CHR_DEV_OSST=y CONFIG_BLK_DEV_SR=y CONFIG_BLK_DEV_SR_VENDOR=y CONFIG_CHR_DEV_SG=y CONFIG_CHR_DEV_SCH=y CONFIG_SCSI_MULTI_LUN=y CONFIG_SCSI_CONSTANTS=y CONFIG_SCSI_LOGGING=y CONFIG_SCSI_SCAN_ASYNC=y # # SCSI Transports # CONFIG_SCSI_SPI_ATTRS=y CONFIG_SCSI_FC_ATTRS=y # CONFIG_SCSI_FC_TGT_ATTRS is not set CONFIG_SCSI_ISCSI_ATTRS=y CONFIG_SCSI_SAS_ATTRS=y CONFIG_SCSI_SAS_LIBSAS=y CONFIG_SCSI_SAS_ATA=y CONFIG_SCSI_SAS_HOST_SMP=y # CONFIG_SCSI_SAS_LIBSAS_DEBUG is not set CONFIG_SCSI_SRP_ATTRS=y CONFIG_SCSI_SRP_TGT_ATTRS=y CONFIG_SCSI_LOWLEVEL=y # CONFIG_ISCSI_TCP is not set # CONFIG_SCSI_BNX2_ISCSI is not set CONFIG_BE2ISCSI=y CONFIG_BLK_DEV_3W_XXXX_RAID=y CONFIG_SCSI_HPSA=y CONFIG_SCSI_3W_9XXX=y CONFIG_SCSI_3W_SAS=y # CONFIG_SCSI_ACARD is not set # CONFIG_SCSI_AACRAID is not set CONFIG_SCSI_AIC7XXX=y CONFIG_AIC7XXX_CMDS_PER_DEVICE=32 CONFIG_AIC7XXX_RESET_DELAY_MS=5000 CONFIG_AIC7XXX_DEBUG_ENABLE=y CONFIG_AIC7XXX_DEBUG_MASK=0 CONFIG_AIC7XXX_REG_PRETTY_PRINT=y # CONFIG_SCSI_AIC7XXX_OLD is not set CONFIG_SCSI_AIC79XX=y CONFIG_AIC79XX_CMDS_PER_DEVICE=32 CONFIG_AIC79XX_RESET_DELAY_MS=5000 # CONFIG_AIC79XX_DEBUG_ENABLE is not set CONFIG_AIC79XX_DEBUG_MASK=0 # CONFIG_AIC79XX_REG_PRETTY_PRINT is not set # CONFIG_SCSI_AIC94XX is not set CONFIG_SCSI_MVSAS=y CONFIG_SCSI_MVSAS_DEBUG=y CONFIG_SCSI_DPT_I2O=y # CONFIG_SCSI_ADVANSYS is not set CONFIG_SCSI_ARCMSR=y # CONFIG_MEGARAID_NEWGEN is not set CONFIG_MEGARAID_LEGACY=y CONFIG_MEGARAID_SAS=y # CONFIG_SCSI_MPT2SAS is not set CONFIG_SCSI_HPTIOP=y # CONFIG_SCSI_BUSLOGIC is not set CONFIG_VMWARE_PVSCSI=y CONFIG_LIBFC=y CONFIG_LIBFCOE=y CONFIG_FCOE=y # CONFIG_FCOE_FNIC is not set CONFIG_SCSI_DMX3191D=y CONFIG_SCSI_EATA=y CONFIG_SCSI_EATA_TAGGED_QUEUE=y CONFIG_SCSI_EATA_LINKED_COMMANDS=y CONFIG_SCSI_EATA_MAX_TAGS=16 CONFIG_SCSI_FUTURE_DOMAIN=y # CONFIG_SCSI_FD_MCS is not set CONFIG_SCSI_GDTH=y CONFIG_SCSI_IBMMCA=y CONFIG_IBMMCA_SCSI_ORDER_STANDARD=y CONFIG_IBMMCA_SCSI_DEV_RESET=y CONFIG_SCSI_IPS=y CONFIG_SCSI_INITIO=y CONFIG_SCSI_INIA100=y # CONFIG_SCSI_NCR_D700 is not set CONFIG_SCSI_STEX=y # CONFIG_SCSI_SYM53C8XX_2 is not set CONFIG_SCSI_IPR=y CONFIG_SCSI_IPR_TRACE=y CONFIG_SCSI_IPR_DUMP=y CONFIG_SCSI_NCR_Q720=y CONFIG_SCSI_NCR53C8XX_DEFAULT_TAGS=8 CONFIG_SCSI_NCR53C8XX_MAX_TAGS=32 CONFIG_SCSI_NCR53C8XX_SYNC=20 CONFIG_SCSI_QLOGIC_1280=y CONFIG_SCSI_QLA_FC=y CONFIG_SCSI_QLA_ISCSI=y CONFIG_SCSI_LPFC=y # CONFIG_SCSI_LPFC_DEBUG_FS is not set CONFIG_SCSI_SIM710=y # CONFIG_SCSI_DC395x is not set CONFIG_SCSI_DC390T=y CONFIG_SCSI_NSP32=y # CONFIG_SCSI_DEBUG is not set CONFIG_SCSI_PMCRAID=y CONFIG_SCSI_PM8001=y # CONFIG_SCSI_SRP is not set CONFIG_SCSI_BFA_FC=y # CONFIG_SCSI_DH is not set CONFIG_SCSI_OSD_INITIATOR=y CONFIG_SCSI_OSD_ULD=y CONFIG_SCSI_OSD_DPRINT_SENSE=1 # CONFIG_SCSI_OSD_DEBUG is not set CONFIG_ATA=y # CONFIG_ATA_NONSTANDARD is not set # CONFIG_ATA_VERBOSE_ERROR is not set # CONFIG_SATA_PMP is not set CONFIG_SATA_AHCI=y CONFIG_SATA_SIL24=y CONFIG_ATA_SFF=y # CONFIG_SATA_SVW is not set CONFIG_ATA_PIIX=y # CONFIG_SATA_MV is not set CONFIG_SATA_NV=y CONFIG_PDC_ADMA=y CONFIG_SATA_QSTOR=y CONFIG_SATA_PROMISE=y CONFIG_SATA_SX4=y CONFIG_SATA_SIL=y # CONFIG_SATA_SIS is not set CONFIG_SATA_ULI=y CONFIG_SATA_VIA=y CONFIG_SATA_VITESSE=y CONFIG_SATA_INIC162X=y CONFIG_PATA_ALI=y CONFIG_PATA_AMD=y CONFIG_PATA_ARTOP=y # CONFIG_PATA_ATP867X is not set CONFIG_PATA_ATIIXP=y CONFIG_PATA_CMD640_PCI=y CONFIG_PATA_CMD64X=y # CONFIG_PATA_CS5520 is not set # CONFIG_PATA_CS5530 is not set CONFIG_PATA_CS5535=y CONFIG_PATA_CS5536=y CONFIG_PATA_CYPRESS=y CONFIG_PATA_EFAR=y # CONFIG_ATA_GENERIC is not set CONFIG_PATA_HPT366=y CONFIG_PATA_HPT37X=y # CONFIG_PATA_HPT3X2N is not set # CONFIG_PATA_HPT3X3 is not set # CONFIG_PATA_IT821X is not set # CONFIG_PATA_IT8213 is not set CONFIG_PATA_JMICRON=y CONFIG_PATA_TRIFLEX=y CONFIG_PATA_MARVELL=y CONFIG_PATA_MPIIX=y CONFIG_PATA_OLDPIIX=y CONFIG_PATA_NETCELL=y CONFIG_PATA_NINJA32=y CONFIG_PATA_NS87410=y CONFIG_PATA_NS87415=y # CONFIG_PATA_OPTI is not set # CONFIG_PATA_OPTIDMA is not set # CONFIG_PATA_PDC2027X is not set CONFIG_PATA_PDC_OLD=y # CONFIG_PATA_RADISYS is not set # CONFIG_PATA_RDC is not set CONFIG_PATA_RZ1000=y CONFIG_PATA_SC1200=y CONFIG_PATA_SERVERWORKS=y # CONFIG_PATA_SIL680 is not set # CONFIG_PATA_SIS is not set CONFIG_PATA_TOSHIBA=y CONFIG_PATA_VIA=y CONFIG_PATA_WINBOND=y CONFIG_PATA_PLATFORM=y CONFIG_PATA_SCH=y CONFIG_MD=y CONFIG_BLK_DEV_MD=y CONFIG_MD_AUTODETECT=y CONFIG_MD_LINEAR=y CONFIG_MD_RAID0=y # CONFIG_MD_RAID1 is not set CONFIG_MD_RAID10=y # CONFIG_MD_RAID456 is not set CONFIG_MD_MULTIPATH=y CONFIG_MD_FAULTY=y # CONFIG_BLK_DEV_DM is not set CONFIG_FUSION=y # CONFIG_FUSION_SPI is not set CONFIG_FUSION_FC=y # CONFIG_FUSION_SAS is not set CONFIG_FUSION_MAX_SGE=128 # CONFIG_FUSION_CTL is not set CONFIG_FUSION_LAN=y # CONFIG_FUSION_LOGGING is not set # # IEEE 1394 (FireWire) support # # # You can enable one or both FireWire driver stacks. # # # The newer stack is recommended. # # CONFIG_FIREWIRE is not set CONFIG_IEEE1394=y CONFIG_IEEE1394_OHCI1394=y CONFIG_IEEE1394_PCILYNX=y # CONFIG_IEEE1394_SBP2 is not set CONFIG_IEEE1394_ETH1394_ROM_ENTRY=y CONFIG_IEEE1394_ETH1394=y # CONFIG_IEEE1394_RAWIO is not set CONFIG_IEEE1394_VIDEO1394=y CONFIG_IEEE1394_DV1394=y CONFIG_IEEE1394_VERBOSEDEBUG=y CONFIG_I2O=y CONFIG_I2O_LCT_NOTIFY_ON_CHANGES=y # CONFIG_I2O_EXT_ADAPTEC is not set CONFIG_I2O_CONFIG=y CONFIG_I2O_CONFIG_OLD_IOCTL=y CONFIG_I2O_BUS=y # CONFIG_I2O_BLOCK is not set CONFIG_I2O_SCSI=y # CONFIG_I2O_PROC is not set CONFIG_MACINTOSH_DRIVERS=y # CONFIG_MAC_EMUMOUSEBTN is not set CONFIG_NETDEVICES=y CONFIG_IFB=y # CONFIG_DUMMY is not set CONFIG_BONDING=y CONFIG_MACVLAN=y CONFIG_EQUALIZER=y CONFIG_TUN=y CONFIG_VETH=y # CONFIG_ARCNET is not set CONFIG_PHYLIB=y # # MII PHY device drivers # # CONFIG_MARVELL_PHY is not set CONFIG_DAVICOM_PHY=y CONFIG_QSEMI_PHY=y CONFIG_LXT_PHY=y # CONFIG_CICADA_PHY is not set CONFIG_VITESSE_PHY=y CONFIG_SMSC_PHY=y CONFIG_BROADCOM_PHY=y CONFIG_ICPLUS_PHY=y CONFIG_REALTEK_PHY=y CONFIG_NATIONAL_PHY=y # CONFIG_STE10XP is not set # CONFIG_LSI_ET1011C_PHY is not set CONFIG_FIXED_PHY=y # CONFIG_MDIO_BITBANG is not set CONFIG_NET_ETHERNET=y CONFIG_MII=y CONFIG_HAPPYMEAL=y CONFIG_SUNGEM=y # CONFIG_CASSINI is not set CONFIG_NET_VENDOR_3COM=y # CONFIG_EL3 is not set CONFIG_ELMC=y CONFIG_ELMC_II=y CONFIG_VORTEX=y CONFIG_TYPHOON=y # CONFIG_NET_VENDOR_SMC is not set CONFIG_ENC28J60=y # CONFIG_ENC28J60_WRITEVERIFY is not set CONFIG_ETHOC=y CONFIG_DNET=y CONFIG_NET_TULIP=y CONFIG_DE2104X=y CONFIG_DE2104X_DSL=0 # CONFIG_TULIP is not set # CONFIG_DE4X5 is not set CONFIG_WINBOND_840=y CONFIG_DM9102=y # CONFIG_ULI526X is not set # CONFIG_PCMCIA_XIRCOM is not set # CONFIG_AT1700 is not set # CONFIG_DEPCA is not set CONFIG_HP100=y CONFIG_NE2_MCA=y CONFIG_IBMLANA=y # CONFIG_IBM_NEW_EMAC_ZMII is not set # CONFIG_IBM_NEW_EMAC_RGMII is not set # CONFIG_IBM_NEW_EMAC_TAH is not set # CONFIG_IBM_NEW_EMAC_EMAC4 is not set # CONFIG_IBM_NEW_EMAC_NO_FLOW_CTRL is not set # CONFIG_IBM_NEW_EMAC_MAL_CLR_ICINTSTAT is not set # CONFIG_IBM_NEW_EMAC_MAL_COMMON_ERR is not set CONFIG_NET_PCI=y CONFIG_PCNET32=y CONFIG_AMD8111_ETH=y CONFIG_ADAPTEC_STARFIRE=y # CONFIG_B44 is not set CONFIG_FORCEDETH=y CONFIG_FORCEDETH_NAPI=y CONFIG_E100=y CONFIG_FEALNX=y # CONFIG_NATSEMI is not set CONFIG_NE2K_PCI=y CONFIG_8139CP=y CONFIG_8139TOO=y CONFIG_8139TOO_PIO=y CONFIG_8139TOO_TUNE_TWISTER=y CONFIG_8139TOO_8129=y # CONFIG_8139_OLD_RX_RESET is not set CONFIG_R6040=y # CONFIG_SIS900 is not set CONFIG_EPIC100=y # CONFIG_SMSC9420 is not set CONFIG_SUNDANCE=y CONFIG_SUNDANCE_MMIO=y # CONFIG_TLAN is not set CONFIG_KS8842=y # CONFIG_KS8851 is not set # CONFIG_KS8851_MLL is not set # CONFIG_VIA_RHINE is not set CONFIG_SC92031=y CONFIG_ATL2=y CONFIG_NETDEV_1000=y CONFIG_ACENIC=y CONFIG_ACENIC_OMIT_TIGON_I=y CONFIG_DL2K=y CONFIG_E1000=y CONFIG_E1000E=y CONFIG_IP1000=y CONFIG_IGB=y CONFIG_IGBVF=y CONFIG_NS83820=y # CONFIG_HAMACHI is not set CONFIG_YELLOWFIN=y CONFIG_R8169=y # CONFIG_R8169_VLAN is not set # CONFIG_SIS190 is not set CONFIG_SKGE=y CONFIG_SKGE_DEBUG=y # CONFIG_SKY2 is not set CONFIG_VIA_VELOCITY=y CONFIG_TIGON3=y CONFIG_BNX2=y CONFIG_CNIC=y # CONFIG_QLA3XXX is not set CONFIG_ATL1=y CONFIG_ATL1E=y # CONFIG_ATL1C is not set CONFIG_JME=y # CONFIG_NETDEV_10000 is not set # CONFIG_TR is not set CONFIG_WLAN=y # CONFIG_AIRO is not set # CONFIG_ATMEL is not set # CONFIG_PRISM54 is not set # CONFIG_USB_ZD1201 is not set CONFIG_USB_NET_RNDIS_WLAN=y # CONFIG_ATH_COMMON is not set CONFIG_HOSTAP=y CONFIG_HOSTAP_FIRMWARE=y CONFIG_HOSTAP_FIRMWARE_NVRAM=y CONFIG_HOSTAP_PLX=y CONFIG_HOSTAP_PCI=y # CONFIG_IPW2100 is not set CONFIG_LIBERTAS=y # CONFIG_LIBERTAS_USB is not set CONFIG_LIBERTAS_SPI=y # CONFIG_LIBERTAS_DEBUG is not set # # WiMAX Wireless Broadband devices # # # Enable MMC support to see WiMAX SDIO drivers # # CONFIG_WIMAX_I2400M_USB is not set # # USB Network Adapters # CONFIG_USB_CATC=y CONFIG_USB_KAWETH=y CONFIG_USB_PEGASUS=y CONFIG_USB_RTL8150=y CONFIG_USB_USBNET=y CONFIG_USB_NET_AX8817X=y CONFIG_USB_NET_CDCETHER=y # CONFIG_USB_NET_CDC_EEM is not set # CONFIG_USB_NET_DM9601 is not set CONFIG_USB_NET_SMSC95XX=y # CONFIG_USB_NET_GL620A is not set # CONFIG_USB_NET_NET1080 is not set CONFIG_USB_NET_PLUSB=y CONFIG_USB_NET_MCS7830=y CONFIG_USB_NET_RNDIS_HOST=y CONFIG_USB_NET_CDC_SUBSET=y CONFIG_USB_ALI_M5632=y # CONFIG_USB_AN2720 is not set # CONFIG_USB_BELKIN is not set CONFIG_USB_ARMLINUX=y CONFIG_USB_EPSON2888=y # CONFIG_USB_KC2190 is not set CONFIG_USB_NET_ZAURUS=y CONFIG_USB_HSO=y # CONFIG_USB_NET_INT51X1 is not set CONFIG_USB_CDC_PHONET=y CONFIG_WAN=y CONFIG_LANMEDIA=y CONFIG_HDLC=y # CONFIG_HDLC_RAW is not set CONFIG_HDLC_RAW_ETH=y CONFIG_HDLC_CISCO=y CONFIG_HDLC_FR=y CONFIG_HDLC_PPP=y # # X.25/LAPB support is disabled # CONFIG_PCI200SYN=y CONFIG_WANXL=y # CONFIG_PC300TOO is not set # CONFIG_FARSYNC is not set CONFIG_DLCI=y CONFIG_DLCI_MAX=8 CONFIG_WAN_ROUTER_DRIVERS=y CONFIG_CYCLADES_SYNC=y CONFIG_CYCLOMX_X25=y # CONFIG_SBNI is not set # CONFIG_ATM_DRIVERS is not set # CONFIG_FDDI is not set # CONFIG_HIPPI is not set CONFIG_PPP=y # CONFIG_PPP_MULTILINK is not set CONFIG_PPP_FILTER=y CONFIG_PPP_ASYNC=y CONFIG_PPP_SYNC_TTY=y # CONFIG_PPP_DEFLATE is not set CONFIG_PPP_BSDCOMP=y # CONFIG_PPP_MPPE is not set CONFIG_PPPOE=y # CONFIG_PPPOATM is not set # CONFIG_PPPOL2TP is not set CONFIG_SLIP=y # CONFIG_SLIP_COMPRESSED is not set CONFIG_SLHC=y # CONFIG_SLIP_SMART is not set CONFIG_SLIP_MODE_SLIP6=y CONFIG_NET_FC=y 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_VMXNET3 is not set CONFIG_ISDN=y CONFIG_ISDN_I4L=y # CONFIG_MISDN is not set CONFIG_ISDN_PPP=y CONFIG_ISDN_PPP_VJ=y CONFIG_ISDN_MPP=y CONFIG_IPPP_FILTER=y # CONFIG_ISDN_PPP_BSDCOMP is not set # CONFIG_ISDN_AUDIO is not set # # ISDN feature submodules # CONFIG_ISDN_DIVERSION=y # # ISDN4Linux hardware drivers # # # Passive cards # CONFIG_ISDN_DRV_HISAX=y # # D-channel protocol features # # CONFIG_HISAX_EURO is not set # CONFIG_HISAX_1TR6 is not set CONFIG_HISAX_NI1=y CONFIG_HISAX_MAX_CARDS=8 # # HiSax supported cards # CONFIG_HISAX_16_3=y CONFIG_HISAX_TELESPCI=y CONFIG_HISAX_S0BOX=y CONFIG_HISAX_FRITZPCI=y CONFIG_HISAX_AVM_A1_PCMCIA=y CONFIG_HISAX_ELSA=y CONFIG_HISAX_DIEHLDIVA=y # CONFIG_HISAX_SEDLBAUER is not set CONFIG_HISAX_NETJET=y CONFIG_HISAX_NETJET_U=y CONFIG_HISAX_NICCY=y # CONFIG_HISAX_BKM_A4T is not set CONFIG_HISAX_SCT_QUADRO=y # CONFIG_HISAX_GAZEL is not set CONFIG_HISAX_HFC_PCI=y # CONFIG_HISAX_W6692 is not set CONFIG_HISAX_HFC_SX=y CONFIG_HISAX_ENTERNOW_PCI=y CONFIG_HISAX_DEBUG=y # # HiSax PCMCIA card service modules # # # HiSax sub driver modules # # CONFIG_HISAX_ST5481 is not set CONFIG_HISAX_HFCUSB=y CONFIG_HISAX_HFC4S8S=y # CONFIG_HISAX_FRITZ_PCIPNP is not set # # Active cards # CONFIG_ISDN_CAPI=y CONFIG_ISDN_DRV_AVMB1_VERBOSE_REASON=y # CONFIG_CAPI_TRACE is not set CONFIG_ISDN_CAPI_MIDDLEWARE=y CONFIG_ISDN_CAPI_CAPI20=y # CONFIG_ISDN_CAPI_CAPIFS_BOOL is not set # CONFIG_ISDN_CAPI_CAPIDRV is not set # # CAPI hardware drivers # CONFIG_CAPI_AVM=y # CONFIG_ISDN_DRV_AVMB1_B1PCI is not set CONFIG_ISDN_DRV_AVMB1_B1PCMCIA=y # CONFIG_ISDN_DRV_AVMB1_T1PCI is not set CONFIG_ISDN_DRV_AVMB1_C4=y CONFIG_CAPI_EICON=y CONFIG_ISDN_DIVAS=y # CONFIG_ISDN_DIVAS_BRIPCI is not set CONFIG_ISDN_DIVAS_PRIPCI=y # CONFIG_ISDN_DIVAS_DIVACAPI is not set CONFIG_ISDN_DIVAS_USERIDI=y # CONFIG_ISDN_DRV_GIGASET is not set # CONFIG_PHONE is not set # # Input device support # CONFIG_INPUT=y CONFIG_INPUT_FF_MEMLESS=y CONFIG_INPUT_POLLDEV=y CONFIG_INPUT_SPARSEKMAP=y # # Userland interfaces # CONFIG_INPUT_MOUSEDEV=y CONFIG_INPUT_MOUSEDEV_PSAUX=y CONFIG_INPUT_MOUSEDEV_SCREEN_X=1024 CONFIG_INPUT_MOUSEDEV_SCREEN_Y=768 CONFIG_INPUT_JOYDEV=y CONFIG_INPUT_EVDEV=y CONFIG_INPUT_EVBUG=y # # Input Device Drivers # CONFIG_INPUT_KEYBOARD=y # CONFIG_KEYBOARD_ADP5520 is not set # CONFIG_KEYBOARD_ADP5588 is not set CONFIG_KEYBOARD_ATKBD=y CONFIG_QT2160=y CONFIG_KEYBOARD_LKKBD=y CONFIG_KEYBOARD_GPIO=y CONFIG_KEYBOARD_MATRIX=y CONFIG_KEYBOARD_LM8323=y CONFIG_KEYBOARD_MAX7359=y CONFIG_KEYBOARD_NEWTON=y CONFIG_KEYBOARD_OPENCORES=y CONFIG_KEYBOARD_STOWAWAY=y CONFIG_KEYBOARD_SUNKBD=y CONFIG_KEYBOARD_XTKBD=y # CONFIG_INPUT_MOUSE is not set # CONFIG_INPUT_JOYSTICK is not set CONFIG_INPUT_TABLET=y CONFIG_TABLET_USB_ACECAD=y # CONFIG_TABLET_USB_AIPTEK is not set CONFIG_TABLET_USB_GTCO=y CONFIG_TABLET_USB_KBTAB=y CONFIG_TABLET_USB_WACOM=y CONFIG_INPUT_TOUCHSCREEN=y CONFIG_TOUCHSCREEN_ADS7846=y CONFIG_TOUCHSCREEN_AD7877=y CONFIG_TOUCHSCREEN_AD7879_I2C=y CONFIG_TOUCHSCREEN_AD7879=y CONFIG_TOUCHSCREEN_DYNAPRO=y # CONFIG_TOUCHSCREEN_EETI is not set # CONFIG_TOUCHSCREEN_FUJITSU is not set CONFIG_TOUCHSCREEN_GUNZE=y # CONFIG_TOUCHSCREEN_ELO is not set # CONFIG_TOUCHSCREEN_WACOM_W8001 is not set CONFIG_TOUCHSCREEN_MCS5000=y CONFIG_TOUCHSCREEN_MTOUCH=y CONFIG_TOUCHSCREEN_INEXIO=y CONFIG_TOUCHSCREEN_MK712=y CONFIG_TOUCHSCREEN_PENMOUNT=y CONFIG_TOUCHSCREEN_TOUCHRIGHT=y CONFIG_TOUCHSCREEN_TOUCHWIN=y CONFIG_TOUCHSCREEN_USB_COMPOSITE=y CONFIG_TOUCHSCREEN_MC13783=y # CONFIG_TOUCHSCREEN_USB_EGALAX is not set # CONFIG_TOUCHSCREEN_USB_PANJIT is not set CONFIG_TOUCHSCREEN_USB_3M=y # CONFIG_TOUCHSCREEN_USB_ITM is not set CONFIG_TOUCHSCREEN_USB_ETURBO=y CONFIG_TOUCHSCREEN_USB_GUNZE=y CONFIG_TOUCHSCREEN_USB_DMC_TSC10=y # CONFIG_TOUCHSCREEN_USB_IRTOUCH is not set CONFIG_TOUCHSCREEN_USB_IDEALTEK=y # CONFIG_TOUCHSCREEN_USB_GENERAL_TOUCH is not set CONFIG_TOUCHSCREEN_USB_GOTOP=y CONFIG_TOUCHSCREEN_USB_JASTEC=y CONFIG_TOUCHSCREEN_USB_E2I=y CONFIG_TOUCHSCREEN_USB_ZYTRONIC=y # CONFIG_TOUCHSCREEN_USB_ETT_TC5UH is not set CONFIG_TOUCHSCREEN_TOUCHIT213=y CONFIG_TOUCHSCREEN_TSC2007=y CONFIG_TOUCHSCREEN_PCAP=y # CONFIG_INPUT_MISC is not set # # Hardware I/O ports # CONFIG_SERIO=y CONFIG_SERIO_I8042=y CONFIG_SERIO_SERPORT=y CONFIG_SERIO_CT82C710=y # CONFIG_SERIO_PCIPS2 is not set CONFIG_SERIO_LIBPS2=y # CONFIG_SERIO_RAW is not set CONFIG_SERIO_ALTERA_PS2=y # CONFIG_GAMEPORT is not set # # Character devices # CONFIG_VT=y # CONFIG_CONSOLE_TRANSLATIONS is not set CONFIG_VT_CONSOLE=y CONFIG_HW_CONSOLE=y # CONFIG_VT_HW_CONSOLE_BINDING is not set CONFIG_DEVKMEM=y # 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_NR_UARTS=4 CONFIG_SERIAL_8250_RUNTIME_UARTS=4 CONFIG_SERIAL_8250_EXTENDED=y # CONFIG_SERIAL_8250_MANY_PORTS is not set # CONFIG_SERIAL_8250_SHARE_IRQ is not set CONFIG_SERIAL_8250_DETECT_IRQ=y CONFIG_SERIAL_8250_RSA=y CONFIG_SERIAL_8250_MCA=y # # Non-8250 serial port support # # CONFIG_SERIAL_MAX3100 is not set CONFIG_SERIAL_CORE=y CONFIG_SERIAL_CORE_CONSOLE=y # CONFIG_SERIAL_JSM is not set CONFIG_UNIX98_PTYS=y CONFIG_DEVPTS_MULTIPLE_INSTANCES=y # CONFIG_LEGACY_PTYS is not set CONFIG_HVC_DRIVER=y CONFIG_VIRTIO_CONSOLE=y # CONFIG_IPMI_HANDLER is not set CONFIG_HW_RANDOM=y CONFIG_HW_RANDOM_TIMERIOMEM=y CONFIG_HW_RANDOM_INTEL=y CONFIG_HW_RANDOM_AMD=y CONFIG_HW_RANDOM_GEODE=y # CONFIG_HW_RANDOM_VIA is not set CONFIG_HW_RANDOM_VIRTIO=y CONFIG_NVRAM=y CONFIG_R3964=y # CONFIG_APPLICOM is not set CONFIG_SONYPI=y CONFIG_MWAVE=y CONFIG_SCx200_GPIO=y CONFIG_PC8736x_GPIO=y CONFIG_NSC_GPIO=y CONFIG_CS5535_GPIO=y CONFIG_RAW_DRIVER=y CONFIG_MAX_RAW_DEVS=256 # CONFIG_HANGCHECK_TIMER is not set CONFIG_TCG_TPM=y # CONFIG_TCG_NSC is not set CONFIG_TCG_ATMEL=y CONFIG_TELCLOCK=y CONFIG_DEVPORT=y CONFIG_I2C=y CONFIG_I2C_BOARDINFO=y CONFIG_I2C_COMPAT=y CONFIG_I2C_CHARDEV=y CONFIG_I2C_HELPER_AUTO=y CONFIG_I2C_ALGOBIT=y CONFIG_I2C_ALGOPCA=y # # I2C Hardware Bus support # # # PC SMBus host controller drivers # # CONFIG_I2C_ALI1535 is not set # CONFIG_I2C_ALI1563 is not set CONFIG_I2C_ALI15X3=y CONFIG_I2C_AMD756=y # CONFIG_I2C_AMD756_S4882 is not set # CONFIG_I2C_AMD8111 is not set CONFIG_I2C_I801=y CONFIG_I2C_ISCH=y CONFIG_I2C_PIIX4=y # CONFIG_I2C_NFORCE2 is not set CONFIG_I2C_SIS5595=y # CONFIG_I2C_SIS630 is not set CONFIG_I2C_SIS96X=y CONFIG_I2C_VIA=y CONFIG_I2C_VIAPRO=y # # I2C system bus drivers (mostly embedded / system-on-chip) # # CONFIG_I2C_GPIO is not set CONFIG_I2C_OCORES=y CONFIG_I2C_SIMTEC=y # # External I2C/SMBus adapter drivers # CONFIG_I2C_PARPORT_LIGHT=y CONFIG_I2C_TAOS_EVM=y CONFIG_I2C_TINY_USB=y # # Other I2C/SMBus bus drivers # CONFIG_I2C_PCA_PLATFORM=y CONFIG_SCx200_I2C=y CONFIG_SCx200_I2C_SCL=12 CONFIG_SCx200_I2C_SDA=13 CONFIG_SCx200_ACB=y # # Miscellaneous I2C Chip support # # CONFIG_SENSORS_TSL2550 is not set CONFIG_I2C_DEBUG_CORE=y CONFIG_I2C_DEBUG_ALGO=y CONFIG_I2C_DEBUG_BUS=y CONFIG_I2C_DEBUG_CHIP=y CONFIG_SPI=y # CONFIG_SPI_DEBUG is not set CONFIG_SPI_MASTER=y # # SPI Master Controller Drivers # CONFIG_SPI_BITBANG=y # CONFIG_SPI_GPIO is not set # CONFIG_SPI_XILINX is not set CONFIG_SPI_DESIGNWARE=y CONFIG_SPI_DW_PCI=y # # SPI Protocol Masters # CONFIG_SPI_SPIDEV=y CONFIG_SPI_TLE62X0=y # # PPS support # CONFIG_PPS=y CONFIG_PPS_DEBUG=y CONFIG_ARCH_WANT_OPTIONAL_GPIOLIB=y CONFIG_GPIOLIB=y CONFIG_DEBUG_GPIO=y # CONFIG_GPIO_SYSFS is not set # # Memory mapped GPIO expanders: # # # I2C GPIO expanders: # # CONFIG_GPIO_MAX732X is not set CONFIG_GPIO_PCA953X=y # CONFIG_GPIO_PCF857X is not set CONFIG_GPIO_WM831X=y # CONFIG_GPIO_ADP5520 is not set CONFIG_GPIO_ADP5588=y # # PCI GPIO expanders: # CONFIG_GPIO_BT8XX=y CONFIG_GPIO_LANGWELL=y # # SPI GPIO expanders: # CONFIG_GPIO_MAX7301=y CONFIG_GPIO_MCP23S08=y CONFIG_GPIO_MC33880=y # # AC97 GPIO expanders: # CONFIG_W1=y # CONFIG_W1_CON is not set # # 1-wire Bus Masters # CONFIG_W1_MASTER_MATROX=y # CONFIG_W1_MASTER_DS2490 is not set # CONFIG_W1_MASTER_DS2482 is not set # CONFIG_W1_MASTER_GPIO is not set # # 1-wire Slaves # CONFIG_W1_SLAVE_THERM=y # CONFIG_W1_SLAVE_SMEM is not set CONFIG_W1_SLAVE_DS2431=y # CONFIG_W1_SLAVE_DS2433 is not set CONFIG_W1_SLAVE_DS2760=y CONFIG_W1_SLAVE_BQ27000=y CONFIG_POWER_SUPPLY=y CONFIG_POWER_SUPPLY_DEBUG=y CONFIG_PDA_POWER=y # CONFIG_WM831X_BACKUP is not set CONFIG_WM831X_POWER=y # CONFIG_BATTERY_DS2760 is not set CONFIG_BATTERY_DS2782=y # CONFIG_BATTERY_OLPC is not set CONFIG_BATTERY_BQ27x00=y # CONFIG_BATTERY_MAX17040 is not set CONFIG_CHARGER_PCF50633=y CONFIG_HWMON=y CONFIG_HWMON_VID=y CONFIG_HWMON_DEBUG_CHIP=y # # Native drivers # CONFIG_SENSORS_ABITUGURU=y CONFIG_SENSORS_ABITUGURU3=y CONFIG_SENSORS_AD7414=y # CONFIG_SENSORS_AD7418 is not set CONFIG_SENSORS_ADCXX=y # CONFIG_SENSORS_ADM1021 is not set CONFIG_SENSORS_ADM1025=y CONFIG_SENSORS_ADM1026=y # CONFIG_SENSORS_ADM1029 is not set CONFIG_SENSORS_ADM1031=y CONFIG_SENSORS_ADM9240=y # CONFIG_SENSORS_ADT7462 is not set CONFIG_SENSORS_ADT7470=y CONFIG_SENSORS_ADT7473=y CONFIG_SENSORS_ADT7475=y # CONFIG_SENSORS_K8TEMP is not set CONFIG_SENSORS_K10TEMP=y CONFIG_SENSORS_ASB100=y CONFIG_SENSORS_ATXP1=y CONFIG_SENSORS_DS1621=y # CONFIG_SENSORS_I5K_AMB is not set # CONFIG_SENSORS_F71805F is not set # CONFIG_SENSORS_F71882FG is not set # CONFIG_SENSORS_F75375S is not set CONFIG_SENSORS_FSCHMD=y CONFIG_SENSORS_G760A=y # CONFIG_SENSORS_GL518SM is not set # CONFIG_SENSORS_GL520SM is not set CONFIG_SENSORS_CORETEMP=y # CONFIG_SENSORS_IT87 is not set CONFIG_SENSORS_LM63=y CONFIG_SENSORS_LM70=y CONFIG_SENSORS_LM73=y # CONFIG_SENSORS_LM75 is not set # CONFIG_SENSORS_LM77 is not set CONFIG_SENSORS_LM78=y CONFIG_SENSORS_LM80=y CONFIG_SENSORS_LM83=y CONFIG_SENSORS_LM85=y # CONFIG_SENSORS_LM87 is not set # CONFIG_SENSORS_LM90 is not set # CONFIG_SENSORS_LM92 is not set # CONFIG_SENSORS_LM93 is not set CONFIG_SENSORS_LTC4215=y CONFIG_SENSORS_LTC4245=y # CONFIG_SENSORS_LM95241 is not set CONFIG_SENSORS_MAX1111=y # CONFIG_SENSORS_MAX1619 is not set CONFIG_SENSORS_MAX6650=y CONFIG_SENSORS_PC87360=y CONFIG_SENSORS_PC87427=y CONFIG_SENSORS_PCF8591=y CONFIG_SENSORS_SHT15=y CONFIG_SENSORS_SIS5595=y CONFIG_SENSORS_DME1737=y CONFIG_SENSORS_SMSC47M1=y # CONFIG_SENSORS_SMSC47M192 is not set # CONFIG_SENSORS_SMSC47B397 is not set CONFIG_SENSORS_ADS7828=y # CONFIG_SENSORS_AMC6821 is not set CONFIG_SENSORS_THMC50=y CONFIG_SENSORS_TMP401=y CONFIG_SENSORS_TMP421=y CONFIG_SENSORS_VIA_CPUTEMP=y CONFIG_SENSORS_VIA686A=y CONFIG_SENSORS_VT1211=y CONFIG_SENSORS_VT8231=y CONFIG_SENSORS_W83781D=y CONFIG_SENSORS_W83791D=y CONFIG_SENSORS_W83792D=y CONFIG_SENSORS_W83793=y CONFIG_SENSORS_W83L785TS=y CONFIG_SENSORS_W83L786NG=y # CONFIG_SENSORS_W83627HF is not set # CONFIG_SENSORS_W83627EHF is not set CONFIG_SENSORS_WM831X=y # CONFIG_SENSORS_HDAPS is not set CONFIG_SENSORS_LIS3_SPI=y CONFIG_SENSORS_LIS3_I2C=y CONFIG_SENSORS_APPLESMC=y CONFIG_SENSORS_MC13783_ADC=y # CONFIG_THERMAL is not set # CONFIG_WATCHDOG is not set CONFIG_SSB_POSSIBLE=y # # Sonics Silicon Backplane # CONFIG_SSB=y CONFIG_SSB_SPROM=y CONFIG_SSB_PCIHOST_POSSIBLE=y CONFIG_SSB_PCIHOST=y # CONFIG_SSB_B43_PCI_BRIDGE is not set CONFIG_SSB_SILENT=y CONFIG_SSB_DRIVER_PCICORE_POSSIBLE=y CONFIG_SSB_DRIVER_PCICORE=y # # Multifunction device drivers # CONFIG_MFD_CORE=y CONFIG_MFD_SM501=y CONFIG_MFD_SM501_GPIO=y # CONFIG_HTC_PASIC3 is not set # CONFIG_TPS65010 is not set # CONFIG_TWL4030_CORE is not set # CONFIG_MFD_TMIO is not set # CONFIG_PMIC_DA903X is not set CONFIG_PMIC_ADP5520=y CONFIG_MFD_WM8400=y CONFIG_MFD_WM831X=y # CONFIG_MFD_WM8350_I2C is not set CONFIG_MFD_PCF50633=y CONFIG_MFD_MC13783=y CONFIG_PCF50633_ADC=y # CONFIG_PCF50633_GPIO is not set CONFIG_AB3100_CORE=y CONFIG_AB3100_OTP=y CONFIG_EZX_PCAP=y CONFIG_MFD_88PM8607=y CONFIG_AB4500_CORE=y CONFIG_REGULATOR=y # CONFIG_REGULATOR_DEBUG is not set # CONFIG_REGULATOR_FIXED_VOLTAGE is not set CONFIG_REGULATOR_VIRTUAL_CONSUMER=y # CONFIG_REGULATOR_USERSPACE_CONSUMER is not set CONFIG_REGULATOR_BQ24022=y CONFIG_REGULATOR_MAX1586=y # CONFIG_REGULATOR_MAX8660 is not set # CONFIG_REGULATOR_WM831X is not set CONFIG_REGULATOR_WM8400=y CONFIG_REGULATOR_PCF50633=y # CONFIG_REGULATOR_LP3971 is not set # CONFIG_REGULATOR_PCAP is not set CONFIG_REGULATOR_MC13783=y # CONFIG_REGULATOR_AB3100 is not set CONFIG_REGULATOR_TPS65023=y CONFIG_REGULATOR_TPS6507X=y CONFIG_REGULATOR_88PM8607=y CONFIG_MEDIA_SUPPORT=y # # Multimedia core support # CONFIG_VIDEO_DEV=y CONFIG_VIDEO_V4L2_COMMON=y # CONFIG_VIDEO_ALLOW_V4L1 is not set CONFIG_VIDEO_V4L1_COMPAT=y # CONFIG_DVB_CORE is not set CONFIG_VIDEO_MEDIA=y # # Multimedia drivers # CONFIG_IR_CORE=y CONFIG_VIDEO_IR=y CONFIG_MEDIA_TUNER=y CONFIG_MEDIA_TUNER_CUSTOMISE=y CONFIG_MEDIA_TUNER_SIMPLE=y CONFIG_MEDIA_TUNER_TDA8290=y CONFIG_MEDIA_TUNER_TDA827X=y CONFIG_MEDIA_TUNER_TDA18271=y CONFIG_MEDIA_TUNER_TDA9887=y CONFIG_MEDIA_TUNER_TEA5761=y # CONFIG_MEDIA_TUNER_TEA5767 is not set CONFIG_MEDIA_TUNER_MT20XX=y # CONFIG_MEDIA_TUNER_MT2060 is not set CONFIG_MEDIA_TUNER_MT2266=y CONFIG_MEDIA_TUNER_MT2131=y # CONFIG_MEDIA_TUNER_QT1010 is not set CONFIG_MEDIA_TUNER_XC2028=y # CONFIG_MEDIA_TUNER_XC5000 is not set # CONFIG_MEDIA_TUNER_MXL5005S is not set CONFIG_MEDIA_TUNER_MXL5007T=y CONFIG_MEDIA_TUNER_MC44S803=y CONFIG_MEDIA_TUNER_MAX2165=y CONFIG_VIDEO_V4L2=y # CONFIG_VIDEO_CAPTURE_DRIVERS is not set CONFIG_RADIO_ADAPTERS=y CONFIG_RADIO_GEMTEK_PCI=y CONFIG_RADIO_MAXIRADIO=y # CONFIG_RADIO_MAESTRO is not set CONFIG_I2C_SI4713=y # CONFIG_RADIO_SI4713 is not set # CONFIG_USB_DSBR is not set CONFIG_RADIO_SI470X=y CONFIG_USB_SI470X=y CONFIG_USB_MR800=y CONFIG_RADIO_TEA5764=y CONFIG_RADIO_TEA5764_XTAL=y # CONFIG_RADIO_TEF6862 is not set CONFIG_DAB=y CONFIG_USB_DABUSB=y # # Graphics support # # CONFIG_AGP is not set # CONFIG_VGA_ARB is not set CONFIG_DRM=y CONFIG_DRM_KMS_HELPER=y CONFIG_DRM_TTM=y CONFIG_DRM_TDFX=y CONFIG_DRM_R128=y CONFIG_DRM_RADEON=y CONFIG_DRM_RADEON_KMS=y CONFIG_DRM_MGA=y CONFIG_DRM_VIA=y # CONFIG_DRM_SAVAGE is not set CONFIG_VGASTATE=y CONFIG_VIDEO_OUTPUT_CONTROL=y CONFIG_FB=y # CONFIG_FIRMWARE_EDID is not set # CONFIG_FB_DDC is not set CONFIG_FB_BOOT_VESA_SUPPORT=y CONFIG_FB_CFB_FILLRECT=y CONFIG_FB_CFB_COPYAREA=y CONFIG_FB_CFB_IMAGEBLIT=y # CONFIG_FB_CFB_REV_PIXELS_IN_BYTE is not set CONFIG_FB_SYS_FILLRECT=y CONFIG_FB_SYS_COPYAREA=y CONFIG_FB_SYS_IMAGEBLIT=y # CONFIG_FB_FOREIGN_ENDIAN is not set CONFIG_FB_SYS_FOPS=y CONFIG_FB_DEFERRED_IO=y CONFIG_FB_SVGALIB=y # CONFIG_FB_MACMODES is not set CONFIG_FB_BACKLIGHT=y CONFIG_FB_MODE_HELPERS=y CONFIG_FB_TILEBLITTING=y # # Frame buffer hardware drivers # # CONFIG_FB_CIRRUS is not set # CONFIG_FB_PM2 is not set CONFIG_FB_CYBER2000=y CONFIG_FB_ARC=y # CONFIG_FB_ASILIANT is not set # CONFIG_FB_IMSTT is not set # CONFIG_FB_VGA16 is not set CONFIG_FB_UVESA=y # CONFIG_FB_VESA is not set # CONFIG_FB_N411 is not set # CONFIG_FB_HGA is not set CONFIG_FB_S1D13XXX=y # CONFIG_FB_NVIDIA is not set CONFIG_FB_RIVA=y # CONFIG_FB_RIVA_I2C is not set CONFIG_FB_RIVA_DEBUG=y CONFIG_FB_RIVA_BACKLIGHT=y # CONFIG_FB_LE80578 is not set CONFIG_FB_MATROX=y CONFIG_FB_MATROX_MILLENIUM=y CONFIG_FB_MATROX_MYSTIQUE=y # CONFIG_FB_MATROX_G is not set # CONFIG_FB_MATROX_I2C is not set # CONFIG_FB_RADEON is not set CONFIG_FB_ATY128=y CONFIG_FB_ATY128_BACKLIGHT=y CONFIG_FB_ATY=y CONFIG_FB_ATY_CT=y CONFIG_FB_ATY_GENERIC_LCD=y # CONFIG_FB_ATY_GX is not set CONFIG_FB_ATY_BACKLIGHT=y # CONFIG_FB_S3 is not set CONFIG_FB_SAVAGE=y # CONFIG_FB_SAVAGE_I2C is not set # CONFIG_FB_SAVAGE_ACCEL is not set CONFIG_FB_SIS=y CONFIG_FB_SIS_300=y # CONFIG_FB_SIS_315 is not set CONFIG_FB_VIA=y # CONFIG_FB_NEOMAGIC is not set CONFIG_FB_KYRO=y # CONFIG_FB_3DFX is not set CONFIG_FB_VOODOO1=y CONFIG_FB_VT8623=y CONFIG_FB_TRIDENT=y # CONFIG_FB_ARK is not set CONFIG_FB_PM3=y CONFIG_FB_CARMINE=y # CONFIG_FB_CARMINE_DRAM_EVAL is not set CONFIG_CARMINE_DRAM_CUSTOM=y # CONFIG_FB_GEODE is not set CONFIG_FB_TMIO=y CONFIG_FB_TMIO_ACCELL=y # CONFIG_FB_SM501 is not set # CONFIG_FB_VIRTUAL is not set CONFIG_FB_METRONOME=y CONFIG_FB_MB862XX=y CONFIG_FB_MB862XX_PCI_GDC=y CONFIG_FB_BROADSHEET=y CONFIG_BACKLIGHT_LCD_SUPPORT=y CONFIG_LCD_CLASS_DEVICE=y CONFIG_LCD_LMS283GF05=y # CONFIG_LCD_LTV350QV is not set # CONFIG_LCD_ILI9320 is not set CONFIG_LCD_TDO24M=y # CONFIG_LCD_VGG2432A4 is not set CONFIG_LCD_PLATFORM=y CONFIG_BACKLIGHT_CLASS_DEVICE=y CONFIG_BACKLIGHT_GENERIC=y CONFIG_BACKLIGHT_PROGEAR=y CONFIG_BACKLIGHT_MBP_NVIDIA=y CONFIG_BACKLIGHT_SAHARA=y # CONFIG_BACKLIGHT_WM831X is not set # CONFIG_BACKLIGHT_ADP5520 is not set # # Display device support # CONFIG_DISPLAY_SUPPORT=y # # Display hardware drivers # # # Console display driver support # CONFIG_VGA_CONSOLE=y CONFIG_VGACON_SOFT_SCROLLBACK=y CONFIG_VGACON_SOFT_SCROLLBACK_SIZE=64 CONFIG_DUMMY_CONSOLE=y # CONFIG_FRAMEBUFFER_CONSOLE is not set CONFIG_LOGO=y # CONFIG_LOGO_LINUX_MONO is not set CONFIG_LOGO_LINUX_VGA16=y # CONFIG_LOGO_LINUX_CLUT224 is not set # CONFIG_SOUND is not set CONFIG_HID_SUPPORT=y CONFIG_HID=y CONFIG_HIDRAW=y # # USB Input Devices # CONFIG_USB_HID=y CONFIG_HID_PID=y CONFIG_USB_HIDDEV=y # # Special HID drivers # CONFIG_HID_A4TECH=y CONFIG_HID_APPLE=y # CONFIG_HID_BELKIN is not set CONFIG_HID_CHERRY=y CONFIG_HID_CHICONY=y CONFIG_HID_CYPRESS=y # CONFIG_HID_DRAGONRISE is not set # CONFIG_HID_EZKEY is not set # CONFIG_HID_KYE is not set CONFIG_HID_GYRATION=y # CONFIG_HID_TWINHAN is not set # CONFIG_HID_KENSINGTON is not set CONFIG_HID_LOGITECH=y CONFIG_LOGITECH_FF=y CONFIG_LOGIRUMBLEPAD2_FF=y # CONFIG_HID_MICROSOFT is not set CONFIG_HID_MONTEREY=y # CONFIG_HID_NTRIG is not set CONFIG_HID_PANTHERLORD=y # CONFIG_PANTHERLORD_FF is not set CONFIG_HID_PETALYNX=y CONFIG_HID_SAMSUNG=y CONFIG_HID_SONY=y CONFIG_HID_SUNPLUS=y # CONFIG_HID_GREENASIA is not set # CONFIG_HID_SMARTJOYPLUS is not set # CONFIG_HID_TOPSEED is not set CONFIG_HID_THRUSTMASTER=y CONFIG_THRUSTMASTER_FF=y # CONFIG_HID_ZEROPLUS is not set CONFIG_USB_SUPPORT=y CONFIG_USB_ARCH_HAS_HCD=y CONFIG_USB_ARCH_HAS_OHCI=y CONFIG_USB_ARCH_HAS_EHCI=y CONFIG_USB=y CONFIG_USB_DEBUG=y CONFIG_USB_ANNOUNCE_NEW_DEVICES=y # # Miscellaneous USB options # # CONFIG_USB_DEVICEFS is not set CONFIG_USB_DEVICE_CLASS=y # CONFIG_USB_DYNAMIC_MINORS is not set # CONFIG_USB_OTG is not set CONFIG_USB_OTG_WHITELIST=y CONFIG_USB_OTG_BLACKLIST_HUB=y CONFIG_USB_MON=y CONFIG_USB_WUSB=y # CONFIG_USB_WUSB_CBAF is not set # # USB Host Controller Drivers # # CONFIG_USB_C67X00_HCD is not set CONFIG_USB_XHCI_HCD=y # CONFIG_USB_XHCI_HCD_DEBUGGING is not set CONFIG_USB_EHCI_HCD=y CONFIG_USB_EHCI_ROOT_HUB_TT=y # CONFIG_USB_EHCI_TT_NEWSCHED is not set # CONFIG_USB_OXU210HP_HCD is not set # CONFIG_USB_ISP116X_HCD is not set # CONFIG_USB_ISP1760_HCD is not set # CONFIG_USB_ISP1362_HCD is not set CONFIG_USB_OHCI_HCD=y # CONFIG_USB_OHCI_HCD_SSB is not set # CONFIG_USB_OHCI_BIG_ENDIAN_DESC is not set # CONFIG_USB_OHCI_BIG_ENDIAN_MMIO is not set CONFIG_USB_OHCI_LITTLE_ENDIAN=y CONFIG_USB_UHCI_HCD=y CONFIG_USB_SL811_HCD=y # CONFIG_USB_R8A66597_HCD is not set # CONFIG_USB_WHCI_HCD is not set CONFIG_USB_HWA_HCD=y # # USB Device Class drivers # CONFIG_USB_ACM=y # CONFIG_USB_PRINTER is not set CONFIG_USB_WDM=y CONFIG_USB_TMC=y # # NOTE: USB_STORAGE depends on SCSI but BLK_DEV_SD may # # # also be needed; see USB_STORAGE Help for more info # CONFIG_USB_STORAGE=y CONFIG_USB_STORAGE_DEBUG=y CONFIG_USB_STORAGE_DATAFAB=y CONFIG_USB_STORAGE_FREECOM=y # CONFIG_USB_STORAGE_ISD200 is not set CONFIG_USB_STORAGE_USBAT=y CONFIG_USB_STORAGE_SDDR09=y # CONFIG_USB_STORAGE_SDDR55 is not set # CONFIG_USB_STORAGE_JUMPSHOT is not set CONFIG_USB_STORAGE_ALAUDA=y CONFIG_USB_STORAGE_ONETOUCH=y CONFIG_USB_STORAGE_KARMA=y CONFIG_USB_STORAGE_CYPRESS_ATACB=y CONFIG_USB_LIBUSUAL=y # # USB Imaging devices # # CONFIG_USB_MDC800 is not set CONFIG_USB_MICROTEK=y # # USB port drivers # CONFIG_USB_SERIAL=y CONFIG_USB_SERIAL_CONSOLE=y CONFIG_USB_EZUSB=y CONFIG_USB_SERIAL_GENERIC=y # CONFIG_USB_SERIAL_AIRCABLE is not set # CONFIG_USB_SERIAL_ARK3116 is not set CONFIG_USB_SERIAL_BELKIN=y # CONFIG_USB_SERIAL_CH341 is not set # CONFIG_USB_SERIAL_WHITEHEAT is not set # CONFIG_USB_SERIAL_DIGI_ACCELEPORT is not set CONFIG_USB_SERIAL_CP210X=y # CONFIG_USB_SERIAL_CYPRESS_M8 is not set CONFIG_USB_SERIAL_EMPEG=y CONFIG_USB_SERIAL_FTDI_SIO=y # CONFIG_USB_SERIAL_FUNSOFT is not set # CONFIG_USB_SERIAL_VISOR is not set CONFIG_USB_SERIAL_IPAQ=y CONFIG_USB_SERIAL_IR=y CONFIG_USB_SERIAL_EDGEPORT=y CONFIG_USB_SERIAL_EDGEPORT_TI=y CONFIG_USB_SERIAL_GARMIN=y CONFIG_USB_SERIAL_IPW=y # CONFIG_USB_SERIAL_IUU is not set CONFIG_USB_SERIAL_KEYSPAN_PDA=y # 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=y # CONFIG_USB_SERIAL_MOS7720 is not set CONFIG_USB_SERIAL_MOS7840=y # CONFIG_USB_SERIAL_MOTOROLA is not set CONFIG_USB_SERIAL_NAVMAN=y CONFIG_USB_SERIAL_PL2303=y CONFIG_USB_SERIAL_OTI6858=y # CONFIG_USB_SERIAL_QUALCOMM is not set CONFIG_USB_SERIAL_SPCP8X5=y CONFIG_USB_SERIAL_HP4X=y CONFIG_USB_SERIAL_SAFE=y CONFIG_USB_SERIAL_SAFE_PADDED=y CONFIG_USB_SERIAL_SIEMENS_MPI=y # CONFIG_USB_SERIAL_SIERRAWIRELESS is not set CONFIG_USB_SERIAL_SYMBOL=y # 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=y CONFIG_USB_SERIAL_OMNINET=y # CONFIG_USB_SERIAL_OPTICON is not set # CONFIG_USB_SERIAL_DEBUG is not set # # USB Miscellaneous drivers # CONFIG_USB_EMI62=y CONFIG_USB_EMI26=y CONFIG_USB_ADUTUX=y CONFIG_USB_SEVSEG=y # CONFIG_USB_RIO500 is not set CONFIG_USB_LEGOTOWER=y # CONFIG_USB_LCD is not set CONFIG_USB_BERRY_CHARGE=y CONFIG_USB_LED=y CONFIG_USB_CYPRESS_CY7C63=y CONFIG_USB_CYTHERM=y CONFIG_USB_IDMOUSE=y # CONFIG_USB_FTDI_ELAN is not set CONFIG_USB_APPLEDISPLAY=y CONFIG_USB_SISUSBVGA=y # CONFIG_USB_SISUSBVGA_CON is not set CONFIG_USB_LD=y # CONFIG_USB_TRANCEVIBRATOR is not set # CONFIG_USB_IOWARRIOR is not set CONFIG_USB_TEST=y CONFIG_USB_ISIGHTFW=y CONFIG_USB_VST=y # CONFIG_USB_ATM is not set # CONFIG_USB_GADGET is not set # # OTG and related infrastructure # CONFIG_USB_OTG_UTILS=y CONFIG_USB_GPIO_VBUS=y # CONFIG_NOP_USB_XCEIV is not set CONFIG_UWB=y CONFIG_UWB_HWA=y # CONFIG_UWB_WHCI is not set CONFIG_UWB_WLP=y # CONFIG_UWB_I1480U is not set # CONFIG_MMC is not set CONFIG_MEMSTICK=y CONFIG_MEMSTICK_DEBUG=y # # MemoryStick drivers # CONFIG_MEMSTICK_UNSAFE_RESUME=y # CONFIG_MSPRO_BLOCK is not set # # MemoryStick Host Controller Drivers # CONFIG_MEMSTICK_TIFM_MS=y CONFIG_MEMSTICK_JMICRON_38X=y CONFIG_NEW_LEDS=y CONFIG_LEDS_CLASS=y # # LED drivers # CONFIG_LEDS_NET48XX=y CONFIG_LEDS_WRAP=y CONFIG_LEDS_ALIX2=y # CONFIG_LEDS_PCA9532 is not set CONFIG_LEDS_GPIO=y # CONFIG_LEDS_GPIO_PLATFORM is not set # CONFIG_LEDS_LP3944 is not set CONFIG_LEDS_CLEVO_MAIL=y CONFIG_LEDS_PCA955X=y CONFIG_LEDS_WM831X_STATUS=y CONFIG_LEDS_DAC124S085=y CONFIG_LEDS_REGULATOR=y CONFIG_LEDS_BD2802=y # CONFIG_LEDS_INTEL_SS4200 is not set CONFIG_LEDS_LT3593=y CONFIG_LEDS_ADP5520=y # # LED Triggers # CONFIG_LEDS_TRIGGERS=y # CONFIG_LEDS_TRIGGER_TIMER is not set CONFIG_LEDS_TRIGGER_HEARTBEAT=y CONFIG_LEDS_TRIGGER_BACKLIGHT=y # CONFIG_LEDS_TRIGGER_GPIO is not set # CONFIG_LEDS_TRIGGER_DEFAULT_ON is not set # # iptables trigger is under Netfilter config (LED target) # CONFIG_ACCESSIBILITY=y CONFIG_A11Y_BRAILLE_CONSOLE=y CONFIG_INFINIBAND=y # CONFIG_INFINIBAND_USER_MAD is not set CONFIG_INFINIBAND_USER_ACCESS=y CONFIG_INFINIBAND_USER_MEM=y CONFIG_INFINIBAND_ADDR_TRANS=y # CONFIG_INFINIBAND_MTHCA is not set CONFIG_INFINIBAND_AMSO1100=y CONFIG_INFINIBAND_AMSO1100_DEBUG=y # CONFIG_MLX4_INFINIBAND is not set # CONFIG_INFINIBAND_NES is not set CONFIG_INFINIBAND_IPOIB=y CONFIG_INFINIBAND_IPOIB_CM=y CONFIG_INFINIBAND_IPOIB_DEBUG=y CONFIG_INFINIBAND_IPOIB_DEBUG_DATA=y CONFIG_INFINIBAND_SRP=y CONFIG_INFINIBAND_ISER=y CONFIG_EDAC=y # # Reporting subsystems # CONFIG_EDAC_DEBUG=y CONFIG_EDAC_DEBUG_VERBOSE=y CONFIG_EDAC_DECODE_MCE=y # CONFIG_EDAC_MM_EDAC is not set CONFIG_RTC_LIB=y CONFIG_RTC_CLASS=y CONFIG_RTC_HCTOSYS=y CONFIG_RTC_HCTOSYS_DEVICE="rtc0" CONFIG_RTC_DEBUG=y # # RTC interfaces # # CONFIG_RTC_INTF_SYSFS is not set CONFIG_RTC_INTF_PROC=y # CONFIG_RTC_INTF_DEV is not set CONFIG_RTC_DRV_TEST=y # # I2C RTC drivers # CONFIG_RTC_DRV_DS1307=y CONFIG_RTC_DRV_DS1374=y CONFIG_RTC_DRV_DS1672=y CONFIG_RTC_DRV_MAX6900=y CONFIG_RTC_DRV_RS5C372=y CONFIG_RTC_DRV_ISL1208=y # CONFIG_RTC_DRV_X1205 is not set # CONFIG_RTC_DRV_PCF8563 is not set # CONFIG_RTC_DRV_PCF8583 is not set CONFIG_RTC_DRV_M41T80=y # CONFIG_RTC_DRV_M41T80_WDT is not set # CONFIG_RTC_DRV_BQ32K is not set # CONFIG_RTC_DRV_S35390A is not set CONFIG_RTC_DRV_FM3130=y CONFIG_RTC_DRV_RX8581=y CONFIG_RTC_DRV_RX8025=y # # SPI RTC drivers # CONFIG_RTC_DRV_M41T94=y CONFIG_RTC_DRV_DS1305=y CONFIG_RTC_DRV_DS1390=y CONFIG_RTC_DRV_MAX6902=y CONFIG_RTC_DRV_R9701=y CONFIG_RTC_DRV_RS5C348=y CONFIG_RTC_DRV_DS3234=y CONFIG_RTC_DRV_PCF2123=y # # Platform RTC drivers # CONFIG_RTC_DRV_CMOS=y # CONFIG_RTC_DRV_DS1286 is not set CONFIG_RTC_DRV_DS1511=y # CONFIG_RTC_DRV_DS1553 is not set CONFIG_RTC_DRV_DS1742=y # CONFIG_RTC_DRV_STK17TA8 is not set CONFIG_RTC_DRV_M48T86=y CONFIG_RTC_DRV_M48T35=y CONFIG_RTC_DRV_M48T59=y CONFIG_RTC_DRV_MSM6242=y CONFIG_RTC_DRV_BQ4802=y # CONFIG_RTC_DRV_RP5C01 is not set CONFIG_RTC_DRV_V3020=y # CONFIG_RTC_DRV_WM831X is not set CONFIG_RTC_DRV_PCF50633=y CONFIG_RTC_DRV_AB3100=y # # on-CPU RTC drivers # CONFIG_RTC_DRV_PCAP=y # CONFIG_RTC_DRV_MC13783 is not set # CONFIG_DMADEVICES is not set CONFIG_AUXDISPLAY=y CONFIG_UIO=y CONFIG_UIO_CIF=y # CONFIG_UIO_PDRV is not set CONFIG_UIO_PDRV_GENIRQ=y CONFIG_UIO_SMX=y # CONFIG_UIO_AEC is not set CONFIG_UIO_SERCOS3=y CONFIG_UIO_PCI_GENERIC=y # # TI VLYNQ # # CONFIG_STAGING is not set CONFIG_X86_PLATFORM_DEVICES=y CONFIG_DELL_LAPTOP=y # # Firmware Drivers # # CONFIG_EDD is not set # CONFIG_FIRMWARE_MEMMAP is not set CONFIG_DELL_RBU=y CONFIG_DCDBAS=y # CONFIG_DMIID is not set CONFIG_ISCSI_IBFT_FIND=y # CONFIG_ISCSI_IBFT is not set # # File systems # # CONFIG_EXT2_FS is not set CONFIG_EXT3_FS=y CONFIG_EXT3_DEFAULTS_TO_ORDERED=y CONFIG_EXT3_FS_XATTR=y CONFIG_EXT3_FS_POSIX_ACL=y CONFIG_EXT3_FS_SECURITY=y CONFIG_EXT4_FS=y CONFIG_EXT4_USE_FOR_EXT23=y # CONFIG_EXT4_FS_XATTR is not set # CONFIG_EXT4_DEBUG is not set CONFIG_JBD=y # CONFIG_JBD_DEBUG is not set CONFIG_JBD2=y # CONFIG_JBD2_DEBUG is not set CONFIG_FS_MBCACHE=y # CONFIG_REISERFS_FS is not set CONFIG_JFS_FS=y # CONFIG_JFS_POSIX_ACL is not set CONFIG_JFS_SECURITY=y CONFIG_JFS_DEBUG=y CONFIG_JFS_STATISTICS=y CONFIG_FS_POSIX_ACL=y CONFIG_XFS_FS=y # CONFIG_XFS_QUOTA is not set CONFIG_XFS_POSIX_ACL=y CONFIG_XFS_RT=y CONFIG_XFS_DEBUG=y CONFIG_GFS2_FS=y CONFIG_GFS2_FS_LOCKING_DLM=y CONFIG_OCFS2_FS=y CONFIG_OCFS2_FS_O2CB=y # CONFIG_OCFS2_FS_USERSPACE_CLUSTER is not set CONFIG_OCFS2_FS_STATS=y # CONFIG_OCFS2_DEBUG_MASKLOG is not set # CONFIG_OCFS2_DEBUG_FS is not set CONFIG_BTRFS_FS=y # CONFIG_BTRFS_FS_POSIX_ACL is not set CONFIG_NILFS2_FS=y CONFIG_FILE_LOCKING=y CONFIG_FSNOTIFY=y CONFIG_DNOTIFY=y CONFIG_INOTIFY=y CONFIG_INOTIFY_USER=y CONFIG_QUOTA=y # CONFIG_QUOTA_NETLINK_INTERFACE is not set CONFIG_PRINT_QUOTA_WARNING=y CONFIG_QUOTA_TREE=y CONFIG_QFMT_V1=y CONFIG_QFMT_V2=y CONFIG_QUOTACTL=y # CONFIG_AUTOFS_FS is not set # CONFIG_AUTOFS4_FS is not set CONFIG_FUSE_FS=y CONFIG_CUSE=y # # Caches # CONFIG_FSCACHE=y CONFIG_FSCACHE_STATS=y CONFIG_FSCACHE_HISTOGRAM=y CONFIG_FSCACHE_DEBUG=y CONFIG_FSCACHE_OBJECT_LIST=y CONFIG_CACHEFILES=y # CONFIG_CACHEFILES_DEBUG is not set CONFIG_CACHEFILES_HISTOGRAM=y # # CD-ROM/DVD Filesystems # CONFIG_ISO9660_FS=y # CONFIG_JOLIET is not set CONFIG_ZISOFS=y # CONFIG_UDF_FS is not set # # DOS/FAT/NT Filesystems # CONFIG_FAT_FS=y CONFIG_MSDOS_FS=y # CONFIG_VFAT_FS is not set CONFIG_FAT_DEFAULT_CODEPAGE=437 CONFIG_NTFS_FS=y CONFIG_NTFS_DEBUG=y # CONFIG_NTFS_RW is not set # # Pseudo filesystems # CONFIG_PROC_FS=y # CONFIG_PROC_KCORE is not set CONFIG_PROC_SYSCTL=y CONFIG_PROC_PAGE_MONITOR=y CONFIG_SYSFS=y CONFIG_HUGETLBFS=y CONFIG_HUGETLB_PAGE=y CONFIG_CONFIGFS_FS=y CONFIG_MISC_FILESYSTEMS=y CONFIG_ADFS_FS=y CONFIG_ADFS_FS_RW=y # CONFIG_AFFS_FS is not set # CONFIG_ECRYPT_FS is not set CONFIG_HFS_FS=y # CONFIG_HFSPLUS_FS is not set CONFIG_BEFS_FS=y CONFIG_BEFS_DEBUG=y CONFIG_BFS_FS=y CONFIG_EFS_FS=y CONFIG_CRAMFS=y CONFIG_SQUASHFS=y CONFIG_SQUASHFS_EMBEDDED=y CONFIG_SQUASHFS_FRAGMENT_CACHE_SIZE=3 CONFIG_VXFS_FS=y # CONFIG_MINIX_FS is not set CONFIG_OMFS_FS=y CONFIG_HPFS_FS=y CONFIG_QNX4FS_FS=y CONFIG_ROMFS_FS=y CONFIG_ROMFS_BACKED_BY_BLOCK=y # CONFIG_ROMFS_BACKED_BY_MTD is not set # CONFIG_ROMFS_BACKED_BY_BOTH is not set CONFIG_ROMFS_ON_BLOCK=y # CONFIG_SYSV_FS is not set CONFIG_UFS_FS=y # CONFIG_UFS_FS_WRITE is not set CONFIG_UFS_DEBUG=y CONFIG_EXOFS_FS=y # CONFIG_EXOFS_DEBUG is not set CONFIG_NETWORK_FILESYSTEMS=y CONFIG_NFS_FS=y # CONFIG_NFS_V3 is not set CONFIG_NFS_V4=y # CONFIG_NFS_V4_1 is not set CONFIG_ROOT_NFS=y CONFIG_NFS_FSCACHE=y # CONFIG_NFSD is not set CONFIG_LOCKD=y CONFIG_EXPORTFS=y CONFIG_NFS_COMMON=y CONFIG_SUNRPC=y CONFIG_SUNRPC_GSS=y CONFIG_SUNRPC_XPRT_RDMA=y CONFIG_RPCSEC_GSS_KRB5=y CONFIG_RPCSEC_GSS_SPKM3=y CONFIG_SMB_FS=y CONFIG_SMB_NLS_DEFAULT=y CONFIG_SMB_NLS_REMOTE="cp437" CONFIG_CIFS=y # CONFIG_CIFS_STATS is not set CONFIG_CIFS_WEAK_PW_HASH=y CONFIG_CIFS_UPCALL=y CONFIG_CIFS_XATTR=y CONFIG_CIFS_POSIX=y CONFIG_CIFS_DEBUG2=y CONFIG_CIFS_DFS_UPCALL=y CONFIG_CIFS_EXPERIMENTAL=y CONFIG_NCP_FS=y CONFIG_NCPFS_PACKET_SIGNING=y # CONFIG_NCPFS_IOCTL_LOCKING is not set CONFIG_NCPFS_STRONG=y CONFIG_NCPFS_NFS_NS=y # CONFIG_NCPFS_OS2_NS is not set # CONFIG_NCPFS_SMALLDOS is not set CONFIG_NCPFS_NLS=y CONFIG_NCPFS_EXTRAS=y # CONFIG_CODA_FS is not set CONFIG_AFS_FS=y CONFIG_AFS_DEBUG=y # CONFIG_AFS_FSCACHE is not set # # Partition Types # CONFIG_PARTITION_ADVANCED=y # CONFIG_ACORN_PARTITION is not set CONFIG_OSF_PARTITION=y CONFIG_AMIGA_PARTITION=y CONFIG_ATARI_PARTITION=y CONFIG_MAC_PARTITION=y CONFIG_MSDOS_PARTITION=y CONFIG_BSD_DISKLABEL=y # CONFIG_MINIX_SUBPARTITION is not set CONFIG_SOLARIS_X86_PARTITION=y CONFIG_UNIXWARE_DISKLABEL=y CONFIG_LDM_PARTITION=y CONFIG_LDM_DEBUG=y # CONFIG_SGI_PARTITION is not set CONFIG_ULTRIX_PARTITION=y CONFIG_SUN_PARTITION=y CONFIG_KARMA_PARTITION=y CONFIG_EFI_PARTITION=y CONFIG_SYSV68_PARTITION=y CONFIG_NLS=y CONFIG_NLS_DEFAULT="iso8859-1" CONFIG_NLS_CODEPAGE_437=y # CONFIG_NLS_CODEPAGE_737 is not set CONFIG_NLS_CODEPAGE_775=y CONFIG_NLS_CODEPAGE_850=y CONFIG_NLS_CODEPAGE_852=y CONFIG_NLS_CODEPAGE_855=y CONFIG_NLS_CODEPAGE_857=y CONFIG_NLS_CODEPAGE_860=y CONFIG_NLS_CODEPAGE_861=y CONFIG_NLS_CODEPAGE_862=y CONFIG_NLS_CODEPAGE_863=y CONFIG_NLS_CODEPAGE_864=y CONFIG_NLS_CODEPAGE_865=y # CONFIG_NLS_CODEPAGE_866 is not set CONFIG_NLS_CODEPAGE_869=y CONFIG_NLS_CODEPAGE_936=y CONFIG_NLS_CODEPAGE_950=y CONFIG_NLS_CODEPAGE_932=y # CONFIG_NLS_CODEPAGE_949 is not set CONFIG_NLS_CODEPAGE_874=y # CONFIG_NLS_ISO8859_8 is not set CONFIG_NLS_CODEPAGE_1250=y # CONFIG_NLS_CODEPAGE_1251 is not set CONFIG_NLS_ASCII=y # CONFIG_NLS_ISO8859_1 is not set # CONFIG_NLS_ISO8859_2 is not set CONFIG_NLS_ISO8859_3=y CONFIG_NLS_ISO8859_4=y CONFIG_NLS_ISO8859_5=y CONFIG_NLS_ISO8859_6=y CONFIG_NLS_ISO8859_7=y CONFIG_NLS_ISO8859_9=y CONFIG_NLS_ISO8859_13=y CONFIG_NLS_ISO8859_14=y 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=y CONFIG_DLM_DEBUG=y # # Kernel hacking # CONFIG_TRACE_IRQFLAGS_SUPPORT=y CONFIG_PRINTK_TIME=y CONFIG_ENABLE_WARN_DEPRECATED=y # CONFIG_ENABLE_MUST_CHECK is not set CONFIG_FRAME_WARN=1024 CONFIG_MAGIC_SYSRQ=y CONFIG_STRIP_ASM_SYMS=y CONFIG_UNUSED_SYMBOLS=y CONFIG_DEBUG_FS=y # CONFIG_HEADERS_CHECK is not set CONFIG_DEBUG_KERNEL=y CONFIG_DEBUG_SHIRQ=y # CONFIG_DETECT_SOFTLOCKUP is not set CONFIG_DETECT_HUNG_TASK=y CONFIG_BOOTPARAM_HUNG_TASK_PANIC=y CONFIG_BOOTPARAM_HUNG_TASK_PANIC_VALUE=1 CONFIG_SCHED_DEBUG=y CONFIG_SCHEDSTATS=y CONFIG_TIMER_STATS=y CONFIG_DEBUG_OBJECTS=y CONFIG_DEBUG_OBJECTS_SELFTEST=y CONFIG_DEBUG_OBJECTS_FREE=y CONFIG_DEBUG_OBJECTS_TIMERS=y CONFIG_DEBUG_OBJECTS_WORK=y CONFIG_DEBUG_OBJECTS_ENABLE_DEFAULT=1 # CONFIG_DEBUG_KMEMLEAK is not set CONFIG_DEBUG_RT_MUTEXES=y CONFIG_DEBUG_PI_LIST=y CONFIG_RT_MUTEX_TESTER=y CONFIG_DEBUG_SPINLOCK=y CONFIG_DEBUG_MUTEXES=y CONFIG_DEBUG_LOCK_ALLOC=y # CONFIG_PROVE_LOCKING is not set CONFIG_LOCKDEP=y # CONFIG_LOCK_STAT is not set CONFIG_DEBUG_LOCKDEP=y CONFIG_DEBUG_SPINLOCK_SLEEP=y CONFIG_DEBUG_LOCKING_API_SELFTESTS=y CONFIG_STACKTRACE=y # CONFIG_DEBUG_KOBJECT is not set # CONFIG_DEBUG_HIGHMEM is not set CONFIG_DEBUG_BUGVERBOSE=y # CONFIG_DEBUG_INFO is not set CONFIG_DEBUG_VM=y # CONFIG_DEBUG_VIRTUAL is not set # CONFIG_DEBUG_WRITECOUNT is not set CONFIG_DEBUG_MEMORY_INIT=y CONFIG_DEBUG_LIST=y CONFIG_DEBUG_SG=y CONFIG_DEBUG_NOTIFIERS=y CONFIG_DEBUG_CREDENTIALS=y CONFIG_ARCH_WANT_FRAME_POINTERS=y CONFIG_FRAME_POINTER=y # CONFIG_BOOT_PRINTK_DELAY is not set # CONFIG_RCU_TORTURE_TEST is not set CONFIG_RCU_CPU_STALL_DETECTOR=y CONFIG_BACKTRACE_SELF_TEST=y # CONFIG_DEBUG_BLOCK_EXT_DEVT is not set CONFIG_DEBUG_FORCE_WEAK_PER_CPU=y # CONFIG_FAULT_INJECTION is not set CONFIG_LATENCYTOP=y CONFIG_SYSCTL_SYSCALL_CHECK=y CONFIG_DEBUG_PAGEALLOC=y CONFIG_USER_STACKTRACE_SUPPORT=y CONFIG_HAVE_FUNCTION_TRACER=y CONFIG_HAVE_FUNCTION_GRAPH_TRACER=y CONFIG_HAVE_FUNCTION_GRAPH_FP_TEST=y CONFIG_HAVE_FUNCTION_TRACE_MCOUNT_TEST=y CONFIG_HAVE_DYNAMIC_FTRACE=y CONFIG_HAVE_FTRACE_MCOUNT_RECORD=y CONFIG_HAVE_SYSCALL_TRACEPOINTS=y CONFIG_TRACING_SUPPORT=y # CONFIG_FTRACE is not set # CONFIG_PROVIDE_OHCI1394_DMA_INIT is not set # CONFIG_DYNAMIC_DEBUG is not set # CONFIG_DMA_API_DEBUG is not set CONFIG_SAMPLES=y CONFIG_HAVE_ARCH_KGDB=y # CONFIG_KGDB is not set CONFIG_HAVE_ARCH_KMEMCHECK=y CONFIG_STRICT_DEVMEM=y CONFIG_X86_VERBOSE_BOOTUP=y CONFIG_EARLY_PRINTK=y CONFIG_EARLY_PRINTK_DBGP=y CONFIG_DEBUG_STACKOVERFLOW=y # CONFIG_DEBUG_STACK_USAGE is not set # CONFIG_DEBUG_PER_CPU_MAPS is not set CONFIG_X86_PTDUMP=y CONFIG_DEBUG_RODATA=y CONFIG_DEBUG_RODATA_TEST=y # CONFIG_4KSTACKS is not set CONFIG_DOUBLEFAULT=y CONFIG_IOMMU_STRESS=y CONFIG_HAVE_MMIOTRACE_SUPPORT=y CONFIG_IO_DELAY_TYPE_0X80=0 CONFIG_IO_DELAY_TYPE_0XED=1 CONFIG_IO_DELAY_TYPE_UDELAY=2 CONFIG_IO_DELAY_TYPE_NONE=3 # CONFIG_IO_DELAY_0X80 is not set # CONFIG_IO_DELAY_0XED is not set # CONFIG_IO_DELAY_UDELAY is not set CONFIG_IO_DELAY_NONE=y CONFIG_DEFAULT_IO_DELAY_TYPE=3 # CONFIG_DEBUG_BOOT_PARAMS is not set # CONFIG_CPA_DEBUG is not set CONFIG_OPTIMIZE_INLINING=y # CONFIG_DEBUG_STRICT_USER_COPY_CHECKS is not set # # Security options # CONFIG_KEYS=y CONFIG_KEYS_DEBUG_PROC_KEYS=y CONFIG_SECURITY=y CONFIG_SECURITYFS=y CONFIG_SECURITY_NETWORK=y # CONFIG_SECURITY_NETWORK_XFRM is not set CONFIG_SECURITY_PATH=y CONFIG_LSM_MMAP_MIN_ADDR=65536 CONFIG_SECURITY_SELINUX=y # CONFIG_SECURITY_SELINUX_BOOTPARAM is not set # CONFIG_SECURITY_SELINUX_DISABLE is not set CONFIG_SECURITY_SELINUX_DEVELOP=y CONFIG_SECURITY_SELINUX_AVC_STATS=y CONFIG_SECURITY_SELINUX_CHECKREQPROT_VALUE=1 # CONFIG_SECURITY_SELINUX_POLICYDB_VERSION_MAX is not set CONFIG_SECURITY_TOMOYO=y CONFIG_DEFAULT_SECURITY_SELINUX=y # CONFIG_DEFAULT_SECURITY_SMACK is not set # CONFIG_DEFAULT_SECURITY_TOMOYO is not set # CONFIG_DEFAULT_SECURITY_DAC is not set CONFIG_DEFAULT_SECURITY="selinux" CONFIG_CRYPTO=y # # Crypto core or helper # # CONFIG_CRYPTO_FIPS is not set CONFIG_CRYPTO_ALGAPI=y CONFIG_CRYPTO_ALGAPI2=y CONFIG_CRYPTO_AEAD=y CONFIG_CRYPTO_AEAD2=y CONFIG_CRYPTO_BLKCIPHER=y CONFIG_CRYPTO_BLKCIPHER2=y CONFIG_CRYPTO_HASH=y CONFIG_CRYPTO_HASH2=y CONFIG_CRYPTO_RNG=y CONFIG_CRYPTO_RNG2=y CONFIG_CRYPTO_PCOMP=y CONFIG_CRYPTO_MANAGER=y CONFIG_CRYPTO_MANAGER2=y CONFIG_CRYPTO_GF128MUL=y # CONFIG_CRYPTO_NULL is not set CONFIG_CRYPTO_WORKQUEUE=y CONFIG_CRYPTO_CRYPTD=y CONFIG_CRYPTO_AUTHENC=y # # Authenticated Encryption with Associated Data # CONFIG_CRYPTO_CCM=y # CONFIG_CRYPTO_GCM is not set CONFIG_CRYPTO_SEQIV=y # # Block modes # CONFIG_CRYPTO_CBC=y CONFIG_CRYPTO_CTR=y CONFIG_CRYPTO_CTS=y CONFIG_CRYPTO_ECB=y # CONFIG_CRYPTO_LRW is not set CONFIG_CRYPTO_PCBC=y CONFIG_CRYPTO_XTS=y # # Hash modes # CONFIG_CRYPTO_HMAC=y CONFIG_CRYPTO_XCBC=y # CONFIG_CRYPTO_VMAC is not set # # Digest # CONFIG_CRYPTO_CRC32C=y CONFIG_CRYPTO_CRC32C_INTEL=y # CONFIG_CRYPTO_GHASH is not set CONFIG_CRYPTO_MD4=y CONFIG_CRYPTO_MD5=y CONFIG_CRYPTO_MICHAEL_MIC=y CONFIG_CRYPTO_RMD128=y CONFIG_CRYPTO_RMD160=y # CONFIG_CRYPTO_RMD256 is not set CONFIG_CRYPTO_RMD320=y CONFIG_CRYPTO_SHA1=y CONFIG_CRYPTO_SHA256=y CONFIG_CRYPTO_SHA512=y # CONFIG_CRYPTO_TGR192 is not set CONFIG_CRYPTO_WP512=y # # Ciphers # CONFIG_CRYPTO_AES=y CONFIG_CRYPTO_AES_586=y # CONFIG_CRYPTO_ANUBIS is not set CONFIG_CRYPTO_ARC4=y # CONFIG_CRYPTO_BLOWFISH is not set CONFIG_CRYPTO_CAMELLIA=y CONFIG_CRYPTO_CAST5=y # CONFIG_CRYPTO_CAST6 is not set CONFIG_CRYPTO_DES=y CONFIG_CRYPTO_FCRYPT=y CONFIG_CRYPTO_KHAZAD=y CONFIG_CRYPTO_SALSA20=y CONFIG_CRYPTO_SALSA20_586=y CONFIG_CRYPTO_SEED=y # CONFIG_CRYPTO_SERPENT is not set # CONFIG_CRYPTO_TEA is not set # CONFIG_CRYPTO_TWOFISH is not set CONFIG_CRYPTO_TWOFISH_COMMON=y CONFIG_CRYPTO_TWOFISH_586=y # # Compression # CONFIG_CRYPTO_DEFLATE=y CONFIG_CRYPTO_ZLIB=y CONFIG_CRYPTO_LZO=y # # Random Number Generation # CONFIG_CRYPTO_ANSI_CPRNG=y # CONFIG_CRYPTO_HW is not set CONFIG_HAVE_KVM=y CONFIG_HAVE_KVM_IRQCHIP=y CONFIG_HAVE_KVM_EVENTFD=y CONFIG_KVM_APIC_ARCHITECTURE=y CONFIG_VIRTUALIZATION=y CONFIG_KVM=y CONFIG_KVM_INTEL=y CONFIG_KVM_AMD=y CONFIG_LGUEST=y CONFIG_VIRTIO=y CONFIG_VIRTIO_RING=y CONFIG_VIRTIO_PCI=y CONFIG_VIRTIO_BALLOON=y # CONFIG_BINARY_PRINTF is not set # # Library routines # CONFIG_BITREVERSE=y CONFIG_GENERIC_FIND_FIRST_BIT=y CONFIG_GENERIC_FIND_NEXT_BIT=y CONFIG_GENERIC_FIND_LAST_BIT=y CONFIG_CRC_CCITT=y CONFIG_CRC16=y CONFIG_CRC_T10DIF=y CONFIG_CRC_ITU_T=y CONFIG_CRC32=y # CONFIG_CRC7 is not set CONFIG_LIBCRC32C=y CONFIG_AUDIT_GENERIC=y CONFIG_ZLIB_INFLATE=y CONFIG_ZLIB_DEFLATE=y CONFIG_LZO_COMPRESS=y CONFIG_LZO_DECOMPRESS=y CONFIG_DECOMPRESS_BZIP2=y CONFIG_DECOMPRESS_LZMA=y CONFIG_DECOMPRESS_LZO=y CONFIG_HAS_IOMEM=y CONFIG_HAS_IOPORT=y CONFIG_HAS_DMA=y CONFIG_CHECK_SIGNATURE=y CONFIG_NLATTR=y [-- Attachment #3: crash.log --] [-- Type: text/plain, Size: 130894 bytes --] [ 0.000000] Linux version 2.6.33-rc6-00072-gab65832 (mingo@sirius) (gcc version 4.4.1 20091008 (Red Hat 4.4.1-20) (GCC) ) #14406 SMP Tue Feb 2 11:51:39 CET 2010 [ 0.000000] BIOS-provided physical RAM map: [ 0.000000] BIOS-e820: 0000000000000000 - 000000000009f800 (usable) [ 0.000000] BIOS-e820: 000000000009f800 - 00000000000a0000 (reserved) [ 0.000000] BIOS-e820: 00000000000f0000 - 0000000000100000 (reserved) [ 0.000000] BIOS-e820: 0000000000100000 - 000000003fff0000 (usable) [ 0.000000] BIOS-e820: 000000003fff0000 - 000000003fff3000 (ACPI NVS) [ 0.000000] BIOS-e820: 000000003fff3000 - 0000000040000000 (ACPI data) [ 0.000000] BIOS-e820: 00000000e0000000 - 00000000f0000000 (reserved) [ 0.000000] BIOS-e820: 00000000fec00000 - 0000000100000000 (reserved) [ 0.000000] bootconsole [earlyser0] enabled [ 0.000000] debug: ignoring loglevel setting. [ 0.000000] Notice: NX (Execute Disable) protection cannot be enabled: non-PAE kernel! [ 0.000000] DMI 2.3 present. [ 0.000000] Phoenix BIOS detected: BIOS may corrupt low RAM, working around it. [ 0.000000] e820 update range: 0000000000000000 - 0000000000010000 (usable) ==> (reserved) [ 0.000000] last_pfn = 0x3fff0 max_arch_pfn = 0x100000 [ 0.000000] initial memory mapped : 0 - 02c00000 [ 0.000000] Scan SMP from c0000000 for 1024 bytes. [ 0.000000] Scan SMP from c009fc00 for 1024 bytes. [ 0.000000] Scan SMP from c00f0000 for 65536 bytes. [ 0.000000] found SMP MP-table at [c00f5680] f5680 [ 0.000000] mpc: f1400-f152c [ 0.000000] init_memory_mapping: 0000000000000000-00000000373fe000 [ 0.000000] 0000000000 - 00373fe000 page 4k [ 0.000000] kernel direct mapping tables up to 373fe000 @ 100000-1e1000 [ 0.000000] 139MB HIGHMEM available. [ 0.000000] 883MB LOWMEM available. [ 0.000000] mapped low ram: 0 - 373fe000 [ 0.000000] low ram: 0 - 373fe000 [ 0.000000] node 0 low ram: 00000000 - 373fe000 [ 0.000000] node 0 bootmap 00011000 - 00017e80 [ 0.000000] (12 early reservations) ==> bootmem [0000000000 - 00373fe000] [ 0.000000] #0 [0000000000 - 0000001000] BIOS data page ==> [0000000000 - 0000001000] [ 0.000000] #1 [0000001000 - 0000002000] EX TRAMPOLINE ==> [0000001000 - 0000002000] [ 0.000000] #2 [0001000000 - 0002808da4] TEXT DATA BSS ==> [0001000000 - 0002808da4] [ 0.000000] #3 [0002809000 - 0002814149] BRK ==> [0002809000 - 0002814149] [ 0.000000] #4 [00000f5690 - 0000100000] BIOS reserved ==> [00000f5690 - 0000100000] [ 0.000000] #5 [00000f5680 - 00000f5690] MP-table mpf ==> [00000f5680 - 00000f5690] [ 0.000000] #6 [000009f800 - 00000f1400] BIOS reserved ==> [000009f800 - 00000f1400] [ 0.000000] #7 [00000f152c - 00000f5680] BIOS reserved ==> [00000f152c - 00000f5680] [ 0.000000] #8 [00000f1400 - 00000f152c] MP-table mpc ==> [00000f1400 - 00000f152c] [ 0.000000] #9 [0000010000 - 0000011000] TRAMPOLINE ==> [0000010000 - 0000011000] [ 0.000000] #10 [0000100000 - 00001d3000] PGTABLE ==> [0000100000 - 00001d3000] [ 0.000000] #11 [0000011000 - 0000018000] BOOTMAP ==> [0000011000 - 0000018000] [ 0.000000] Zone PFN ranges: [ 0.000000] DMA 0x00000010 -> 0x00001000 [ 0.000000] Normal 0x00001000 -> 0x000373fe [ 0.000000] HighMem 0x000373fe -> 0x0003fff0 [ 0.000000] Movable zone start PFN for each node [ 0.000000] early_node_map[2] active PFN ranges [ 0.000000] 0: 0x00000010 -> 0x0000009f [ 0.000000] 0: 0x00000100 -> 0x0003fff0 [ 0.000000] On node 0 totalpages: 262015 [ 0.000000] free_area_init_node: node 0, pgdat c2147b40, node_mem_map c2816200 [ 0.000000] DMA zone: 32 pages used for memmap [ 0.000000] DMA zone: 0 pages reserved [ 0.000000] DMA zone: 3951 pages, LIFO batch:0 [ 0.000000] Normal zone: 1736 pages used for memmap [ 0.000000] Normal zone: 220470 pages, LIFO batch:31 [ 0.000000] HighMem zone: 280 pages used for memmap [ 0.000000] HighMem zone: 35546 pages, LIFO batch:7 [ 0.000000] Using APIC driver default [ 0.000000] Intel MultiProcessor Specification v1.4 [ 0.000000] Virtual Wire compatibility mode. [ 0.000000] mpc: f1400-f152c [ 0.000000] MPTABLE: OEM ID: OEM00000 [ 0.000000] MPTABLE: Product ID: PROD00000000 [ 0.000000] MPTABLE: APIC at: 0xFEE00000 [ 0.000000] Processor #0 (Bootup-CPU) [ 0.000000] Processor #1 [ 0.000000] Bus #0 is PCI [ 0.000000] Bus #1 is PCI [ 0.000000] Bus #2 is PCI [ 0.000000] Bus #3 is PCI [ 0.000000] Bus #4 is PCI [ 0.000000] Bus #5 is PCI [ 0.000000] Bus #6 is ISA [ 0.000000] I/O APIC #2 Version 17 at 0xFEC00000. [ 0.000000] Int: type 0, pol 3, trig 3, bus 00, IRQ 28, APIC ID 2, APIC INT 0b [ 0.000000] Int: type 0, pol 3, trig 3, bus 00, IRQ 10, APIC ID 2, APIC INT 03 [ 0.000000] Int: type 0, pol 3, trig 3, bus 01, IRQ 00, APIC ID 2, APIC INT 05 [ 0.000000] Int: type 0, pol 3, trig 3, bus 05, IRQ 1c, APIC ID 2, APIC INT 0b [ 0.000000] Int: type 3, pol 0, trig 0, bus 06, IRQ 00, APIC ID 2, APIC INT 00 [ 0.000000] Int: type 0, pol 0, trig 0, bus 06, IRQ 01, APIC ID 2, APIC INT 01 [ 0.000000] Int: type 0, pol 0, trig 0, bus 06, IRQ 00, APIC ID 2, APIC INT 02 [ 0.000000] Int: type 0, pol 0, trig 0, bus 06, IRQ 04, APIC ID 2, APIC INT 04 [ 0.000000] Int: type 0, pol 0, trig 0, bus 06, IRQ 06, APIC ID 2, APIC INT 06 [ 0.000000] Int: type 0, pol 0, trig 0, bus 06, IRQ 07, APIC ID 2, APIC INT 07 [ 0.000000] Int: type 0, pol 1, trig 1, bus 06, IRQ 08, APIC ID 2, APIC INT 08 [ 0.000000] Int: type 0, pol 0, trig 0, bus 06, IRQ 09, APIC ID 2, APIC INT 09 [ 0.000000] Int: type 0, pol 0, trig 0, bus 06, IRQ 0a, APIC ID 2, APIC INT 0a [ 0.000000] Int: type 0, pol 0, trig 0, bus 06, IRQ 0c, APIC ID 2, APIC INT 0c [ 0.000000] Int: type 0, pol 0, trig 0, bus 06, IRQ 0d, APIC ID 2, APIC INT 0d [ 0.000000] Int: type 0, pol 0, trig 0, bus 06, IRQ 0e, APIC ID 2, APIC INT 0e [ 0.000000] Int: type 0, pol 0, trig 0, bus 06, IRQ 0f, APIC ID 2, APIC INT 0f [ 0.000000] Lint: type 3, pol 0, trig 0, bus 00, IRQ 00, APIC ID ff, APIC LINT 00 [ 0.000000] Lint: type 1, pol 0, trig 0, bus 00, IRQ 00, APIC ID ff, APIC LINT 01 [ 0.000000] Enabling APIC mode: Flat. Using 1 I/O APICs [ 0.000000] Processors: 2 [ 0.000000] SMP: Allowing 2 CPUs, 0 hotplug CPUs [ 0.000000] mapped APIC to ffffb000 (fee00000) [ 0.000000] mapped IOAPIC to ffffa000 (fec00000) [ 0.000000] nr_irqs_gsi: 24 [ 0.000000] Allocating PCI resources starting at 40000000 (gap: 40000000:a0000000) [ 0.000000] Booting paravirtualized kernel on bare hardware [ 0.000000] setup_percpu: NR_CPUS:32 nr_cpumask_bits:32 nr_cpu_ids:2 nr_node_ids:1 [ 0.000000] PERCPU: Embedded 11 pages/cpu @c3400000 s29848 r0 d15208 u2097152 [ 0.000000] pcpu-alloc: s29848 r0 d15208 u2097152 alloc=1*4194304 [ 0.000000] pcpu-alloc: [0] 0 1 [ 0.000000] Built 1 zonelists in Zone order, mobility grouping on. Total pages: 259967 [ 0.000000] Kernel command line: root=/dev/sda1 earlyprintk=ttyS0,115200 console=ttyS0,115200 debug initcall_debug enforcing=0 apic=verbose ignore_loglevel sysrq_always_enabled selinux=0 nmi_watchdog=0 3 panic=1 3 [ 0.000000] debug: sysrq always enabled. [ 0.000000] PID hash table entries: 4096 (order: 2, 16384 bytes) [ 0.000000] Dentry cache hash table entries: 131072 (order: 7, 524288 bytes) [ 0.000000] Inode-cache hash table entries: 65536 (order: 6, 262144 bytes) [ 0.000000] Enabling fast FPU save and restore... done. [ 0.000000] Enabling unmasked SIMD FPU exception support... done. [ 0.000000] Initializing CPU#0 [ 0.000000] Initializing HighMem for node 0 (000373fe:0003fff0) [ 0.000000] Memory: 1012904k/1048512k available (11223k kernel code, 34636k reserved, 6517k data, 600k init, 143304k highmem) [ 0.000000] virtual kernel memory layout: [ 0.000000] fixmap : 0xffd57000 - 0xfffff000 (2720 kB) [ 0.000000] pkmap : 0xff400000 - 0xff800000 (4096 kB) [ 0.000000] vmalloc : 0xf7bfe000 - 0xff3fe000 ( 120 MB) [ 0.000000] lowmem : 0xc0000000 - 0xf73fe000 ( 883 MB) [ 0.000000] .init : 0xc2154000 - 0xc21ea000 ( 600 kB) [ 0.000000] .data : 0xc1af5d99 - 0xc21534c0 (6517 kB) [ 0.000000] .text : 0xc1000000 - 0xc1af5d99 (11223 kB) [ 0.000000] Checking if this processor honours the WP bit even in supervisor mode...Ok. [ 0.000000] Hierarchical RCU implementation. [ 0.000000] RCU-based detection of stalled CPUs is enabled. [ 0.000000] NR_IRQS:2304 nr_irqs:424 [ 0.000000] spurious 8259A interrupt: IRQ7. [ 0.000000] Console: colour VGA+ 80x25 [ 0.000000] console [ttyS0] enabled, bootconsole disabled [ 0.000000] console [ttyS0] enabled, bootconsole disabled [ 0.000000] Lock dependency validator: Copyright (c) 2006 Red Hat, Inc., Ingo Molnar [ 0.000000] ... MAX_LOCKDEP_SUBCLASSES: 8 [ 0.000000] ... MAX_LOCK_DEPTH: 48 [ 0.000000] ... MAX_LOCKDEP_KEYS: 8191 [ 0.000000] ... CLASSHASH_SIZE: 4096 [ 0.000000] ... MAX_LOCKDEP_ENTRIES: 16384 [ 0.000000] ... MAX_LOCKDEP_CHAINS: 32768 [ 0.000000] ... CHAINHASH_SIZE: 16384 [ 0.000000] memory used by lock dependency info: 3551 kB [ 0.000000] per task-struct memory footprint: 1152 bytes [ 0.000000] ------------------------ [ 0.000000] | Locking API testsuite: [ 0.000000] ---------------------------------------------------------------------------- [ 0.000000] | spin |wlock |rlock |mutex | wsem | rsem | [ 0.000000] -------------------------------------------------------------------------- [ 0.000000] A-A deadlock:failed|failed| ok |failed|failed|failed| [ 0.000000] A-B-B-A deadlock:failed|failed| ok |failed|failed|failed| [ 0.000000] A-B-B-C-C-A deadlock:failed|failed| ok |failed|failed|failed| [ 0.000000] A-B-C-A-B-C deadlock:failed|failed| ok |failed|failed|failed| [ 0.000000] A-B-B-C-C-D-D-A deadlock:failed|failed| ok |failed|failed|failed| [ 0.000000] A-B-C-D-B-D-D-A deadlock:failed|failed| ok |failed|failed|failed| [ 0.000000] A-B-C-D-B-C-D-A deadlock:failed|failed| ok |failed|failed|failed| [ 0.000000] double unlock: ok | ok | ok | ok | ok | ok | [ 0.000000] initialize held: ok | ok | ok | ok | ok | ok | [ 0.000000] bad unlock order: ok | ok | ok | ok | ok | ok | [ 0.000000] -------------------------------------------------------------------------- [ 0.000000] recursive read-lock: | ok | |failed| [ 0.000000] recursive read-lock #2: | ok | |failed| [ 0.000000] mixed read-write-lock: |failed| |failed| [ 0.000000] mixed write-read-lock: |failed| |failed| [ 0.000000] -------------------------------------------------------------------------- [ 0.000000] hard-irqs-on + irq-safe-A/12:failed|failed| ok | [ 0.000000] soft-irqs-on + irq-safe-A/12:failed|failed| ok | [ 0.000000] hard-irqs-on + irq-safe-A/21:failed|failed| ok | [ 0.000000] soft-irqs-on + irq-safe-A/21:failed|failed| ok | [ 0.000000] sirq-safe-A => hirqs-on/12:failed|failed| ok | [ 0.000000] sirq-safe-A => hirqs-on/21:failed|failed| ok | [ 0.000000] hard-safe-A + irqs-on/12:failed|failed| ok | [ 0.000000] soft-safe-A + irqs-on/12:failed|failed| ok | [ 0.000000] hard-safe-A + irqs-on/21:failed|failed| ok | [ 0.000000] soft-safe-A + irqs-on/21:failed|failed| ok | [ 0.000000] hard-safe-A + unsafe-B #1/123:failed|failed| ok | [ 0.000000] soft-safe-A + unsafe-B #1/123:failed|failed| ok | [ 0.000000] hard-safe-A + unsafe-B #1/132:failed|failed| ok | [ 0.000000] soft-safe-A + unsafe-B #1/132:failed|failed| ok | [ 0.000000] hard-safe-A + unsafe-B #1/213:failed|failed| ok | [ 0.000000] soft-safe-A + unsafe-B #1/213:failed|failed| ok | [ 0.000000] hard-safe-A + unsafe-B #1/231:failed|failed| ok | [ 0.000000] soft-safe-A + unsafe-B #1/231:failed|failed| ok | [ 0.000000] hard-safe-A + unsafe-B #1/312:failed|failed| ok | [ 0.000000] soft-safe-A + unsafe-B #1/312:failed|failed| ok | [ 0.000000] hard-safe-A + unsafe-B #1/321:failed|failed| ok | [ 0.000000] soft-safe-A + unsafe-B #1/321:failed|failed| ok | [ 0.000000] hard-safe-A + unsafe-B #2/123:failed|failed| ok | [ 0.000000] soft-safe-A + unsafe-B #2/123:failed|failed| ok | [ 0.000000] hard-safe-A + unsafe-B #2/132:failed|failed| ok | [ 0.000000] soft-safe-A + unsafe-B #2/132:failed|failed| ok | [ 0.000000] hard-safe-A + unsafe-B #2/213:failed|failed| ok | [ 0.000000] soft-safe-A + unsafe-B #2/213:failed|failed| ok | [ 0.000000] hard-safe-A + unsafe-B #2/231:failed|failed| ok | [ 0.000000] soft-safe-A + unsafe-B #2/231:failed|failed| ok | [ 0.000000] hard-safe-A + unsafe-B #2/312:failed|failed| ok | [ 0.000000] soft-safe-A + unsafe-B #2/312:failed|failed| ok | [ 0.000000] hard-safe-A + unsafe-B #2/321:failed|failed| ok | [ 0.000000] soft-safe-A + unsafe-B #2/321:failed|failed| ok | [ 0.000000] hard-irq lock-inversion/123:failed|failed| ok | [ 0.000000] soft-irq lock-inversion/123:failed|failed| ok | [ 0.000000] hard-irq lock-inversion/132:failed|failed| ok | [ 0.000000] soft-irq lock-inversion/132:failed|failed| ok | [ 0.000000] hard-irq lock-inversion/213:failed|failed| ok | [ 0.000000] soft-irq lock-inversion/213:failed|failed| ok | [ 0.000000] hard-irq lock-inversion/231:failed|failed| ok | [ 0.000000] soft-irq lock-inversion/231:failed|failed| ok | [ 0.000000] hard-irq lock-inversion/312:failed|failed| ok | [ 0.000000] soft-irq lock-inversion/312:failed|failed| ok | [ 0.000000] hard-irq lock-inversion/321:failed|failed| ok | [ 0.000000] soft-irq lock-inversion/321:failed|failed| ok | [ 0.000000] hard-irq read-recursion/123: ok | [ 0.000000] soft-irq read-recursion/123: ok | [ 0.000000] hard-irq read-recursion/132: ok | [ 0.000000] soft-irq read-recursion/132: ok | [ 0.000000] hard-irq read-recursion/213: ok | [ 0.000000] soft-irq read-recursion/213: ok | [ 0.000000] hard-irq read-recursion/231: ok | [ 0.000000] soft-irq read-recursion/231: ok | [ 0.000000] hard-irq read-recursion/312: ok | [ 0.000000] soft-irq read-recursion/312: ok | [ 0.000000] hard-irq read-recursion/321: ok | [ 0.000000] soft-irq read-recursion/321: ok | [ 0.000000] -------------------------------------------------------- [ 0.000000] 133 out of 218 testcases failed, as expected. | [ 0.000000] ---------------------------------------------------- [ 0.000000] ODEBUG: 8 of 8 active objects replaced [ 0.000000] ODEBUG: selftest passed [ 0.000000] Fast TSC calibration using PIT [ 0.000000] Detected 2010.464 MHz processor. [ 0.003011] Calibrating delay loop (skipped), value calculated using timer frequency.. 4020.92 BogoMIPS (lpj=2010464) [ 0.005028] Security Framework initialized [ 0.006007] SELinux: Initializing. [ 0.007034] SELinux: Starting in permissive mode [ 0.008015] Mount-cache hash table entries: 512 [ 0.010366] Initializing cgroup subsys debug [ 0.011004] Initializing cgroup subsys ns [ 0.012007] Initializing cgroup subsys cpuacct [ 0.013007] Initializing cgroup subsys net_cls [ 0.014003] Initializing cgroup subsys blkio [ 0.015053] CPU: Physical Processor ID: 0 [ 0.016003] CPU: Processor Core ID: 0 [ 0.017005] mce: CPU supports 5 MCE banks [ 0.018022] Performance Events: AMD PMU driver. [ 0.020015] ... version: 0 [ 0.021002] ... bit width: 48 [ 0.022002] ... generic registers: 4 [ 0.023003] ... value mask: 0000ffffffffffff [ 0.024002] ... max period: 00007fffffffffff [ 0.025002] ... fixed-purpose events: 0 [ 0.026002] ... event mask: 000000000000000f [ 0.027004] Checking 'hlt' instruction... OK. [ 0.033801] debug: unmapping init memory c21ea000..c21f4000 [ 0.034160] enabled ExtINT on CPU#0 [ 0.035054] ExtINT not setup in hardware but reported by MP table [ 0.036093] ENABLING IO-APIC IRQs [ 0.037002] init IO_APIC IRQs [ 0.038003] 2-0 (apicid-pin) not connected [ 0.040012] IOAPIC[0]: Set routing entry (2-1 -> 0x31 -> IRQ 1 Mode:0 Active:0) [ 0.041009] IOAPIC[0]: Set routing entry (2-2 -> 0x30 -> IRQ 0 Mode:0 Active:0) [ 0.042007] IOAPIC[0]: Set routing entry (2-3 -> 0x33 -> IRQ 3 Mode:1 Active:1) [ 0.042999] IOAPIC[0]: Set routing entry (2-4 -> 0x34 -> IRQ 4 Mode:0 Active:0) [ 0.042999] IOAPIC[0]: Set routing entry (2-5 -> 0x35 -> IRQ 5 Mode:1 Active:1) [ 0.042999] IOAPIC[0]: Set routing entry (2-6 -> 0x36 -> IRQ 6 Mode:0 Active:0) [ 0.042999] IOAPIC[0]: Set routing entry (2-7 -> 0x37 -> IRQ 7 Mode:0 Active:0) [ 0.042999] IOAPIC[0]: Set routing entry (2-8 -> 0x38 -> IRQ 8 Mode:0 Active:0) [ 0.042999] IOAPIC[0]: Set routing entry (2-9 -> 0x39 -> IRQ 9 Mode:0 Active:0) [ 0.042999] IOAPIC[0]: Set routing entry (2-10 -> 0x3a -> IRQ 10 Mode:0 Active:0) [ 0.042999] IOAPIC[0]: Set routing entry (2-11 -> 0x3b -> IRQ 11 Mode:1 Active:1) [ 0.042999] IOAPIC[0]: Set routing entry (2-12 -> 0x3c -> IRQ 12 Mode:0 Active:0) [ 0.042999] IOAPIC[0]: Set routing entry (2-13 -> 0x3d -> IRQ 13 Mode:0 Active:0) [ 0.042999] IOAPIC[0]: Set routing entry (2-14 -> 0x3e -> IRQ 14 Mode:0 Active:0) [ 0.042999] IOAPIC[0]: Set routing entry (2-15 -> 0x3f -> IRQ 15 Mode:0 Active:0) [ 0.042999] 2-16 2-17 2-18 2-19 2-20 2-21 2-22 2-23 (apicid-pin) not connected [ 0.042999] ..TIMER: vector=0x30 apic1=0 pin1=2 apic2=0 pin2=0 [ 0.042999] ..MP-BIOS bug: 8254 timer not connected to IO-APIC [ 0.042999] ...trying to set up timer (IRQ0) through the 8259A ... [ 0.042999] ..... (found apic 0 pin 0) ... [ 0.053967] ....... works. [ 0.054002] CPU0: AMD Athlon(tm) 64 X2 Dual Core Processor 3800+ stepping 02 [ 0.057002] Using local APIC timer interrupts. [ 0.057003] calibrating APIC timer ... [ 0.058999] ... lapic delta = 1256244 [ 0.058999] ..... delta 1256244 [ 0.058999] ..... mult: 53963471 [ 0.058999] ..... calibration result: 200999 [ 0.058999] ..... CPU clock speed is 2009.0990 MHz. [ 0.058999] ..... host bus clock speed is 200.0999 MHz. [ 0.058999] ... verify APIC timer [ 0.161683] ... jiffies delta = 100 [ 0.162001] ... jiffies result ok [ 0.163017] calling migration_init+0x0/0x47 @ 1 [ 0.164087] initcall migration_init+0x0/0x47 returned 0 after 0 usecs [ 0.165003] calling spawn_ksoftirqd+0x0/0x47 @ 1 [ 0.166042] initcall spawn_ksoftirqd+0x0/0x47 returned 0 after 0 usecs [ 0.167005] calling init_call_single_data+0x0/0x81 @ 1 [ 0.168005] initcall init_call_single_data+0x0/0x81 returned 0 after 0 usecs [ 0.169003] calling relay_init+0x0/0x7 @ 1 [ 0.170003] initcall relay_init+0x0/0x7 returned 0 after 0 usecs [ 0.171004] calling mce_amd_init+0x0/0x28 @ 1 [ 0.172004] initcall mce_amd_init+0x0/0x28 returned 0 after 0 usecs [ 0.173103] lockdep: fixing up alternatives. [ 0.175033] Booting Node 0, Processors #1 Ok. [ 0.003999] Initializing CPU#1 [ 0.003999] masked ExtINT on CPU#1 [ 0.248077] Brought up 2 CPUs [ 0.249003] Total of 2 processors activated (8040.83 BogoMIPS). [ 0.250167] device: 'platform': device_add [ 0.252044] bus: 'platform': registered [ 0.255007] Registering sysdev class 'cpu' [ 0.260189] calling init_mmap_min_addr+0x0/0x20 @ 1 [ 0.265005] initcall init_mmap_min_addr+0x0/0x20 returned 0 after 0 usecs [ 0.272005] calling init_cpufreq_transition_notifier_list+0x0/0x18 @ 1 [ 0.278010] initcall init_cpufreq_transition_notifier_list+0x0/0x18 returned 0 after 0 usecs [ 0.287004] calling net_ns_init+0x0/0x14d @ 1 [ 0.291015] initcall net_ns_init+0x0/0x14d returned 0 after 0 usecs [ 0.297004] calling cpufreq_tsc+0x0/0x25 @ 1 [ 0.302004] initcall cpufreq_tsc+0x0/0x25 returned 0 after 0 usecs [ 0.308003] calling pci_reboot_init+0x0/0x11 @ 1 [ 0.313005] initcall pci_reboot_init+0x0/0x11 returned 0 after 0 usecs [ 0.319004] calling reboot_init+0x0/0x11 @ 1 [ 0.323010] initcall reboot_init+0x0/0x11 returned 0 after 0 usecs [ 0.330004] calling init_smp_flush+0x0/0x2a @ 1 [ 0.334004] initcall init_smp_flush+0x0/0x2a returned 0 after 0 usecs [ 0.341003] calling sysctl_init+0x0/0x29 @ 1 [ 0.345115] initcall sysctl_init+0x0/0x29 returned 0 after 0 usecs [ 0.351003] calling ksysfs_init+0x0/0x96 @ 1 [ 0.356013] initcall ksysfs_init+0x0/0x96 returned 0 after 0 usecs [ 0.362003] calling async_init+0x0/0x50 @ 1 [ 0.366028] initcall async_init+0x0/0x50 returned 0 after 0 usecs [ 0.372005] calling init_jiffies_clocksource+0x0/0xf @ 1 [ 0.378010] initcall init_jiffies_clocksource+0x0/0xf returned 0 after 0 usecs [ 0.385004] calling init_hw_breakpoint+0x0/0xf @ 1 [ 0.390012] initcall init_hw_breakpoint+0x0/0xf returned 0 after 0 usecs [ 0.397004] calling init_zero_pfn+0x0/0x14 @ 1 [ 0.401004] initcall init_zero_pfn+0x0/0x14 returned 0 after 0 usecs [ 0.407004] calling filelock_init+0x0/0x27 @ 1 [ 0.412005] initcall filelock_init+0x0/0x27 returned 0 after 0 usecs [ 0.418003] calling init_aout_binfmt+0x0/0x11 @ 1 [ 0.423011] initcall init_aout_binfmt+0x0/0x11 returned 0 after 0 usecs [ 0.430003] calling init_misc_binfmt+0x0/0x35 @ 1 [ 0.435006] initcall init_misc_binfmt+0x0/0x35 returned 0 after 0 usecs [ 0.441003] calling init_script_binfmt+0x0/0x11 @ 1 [ 0.446004] initcall init_script_binfmt+0x0/0x11 returned 0 after 0 usecs [ 0.453004] calling init_elf_binfmt+0x0/0x11 @ 1 [ 0.458004] initcall init_elf_binfmt+0x0/0x11 returned 0 after 0 usecs [ 0.464003] calling debugfs_init+0x0/0x4a @ 1 [ 0.469008] initcall debugfs_init+0x0/0x4a returned 0 after 0 usecs [ 0.475003] calling securityfs_init+0x0/0x41 @ 1 [ 0.480008] initcall securityfs_init+0x0/0x41 returned 0 after 0 usecs [ 0.486004] calling random32_init+0x0/0xa8 @ 1 [ 0.491004] initcall random32_init+0x0/0xa8 returned 0 after 0 usecs [ 0.497003] calling regulator_init+0x0/0x23 @ 1 [ 0.502002] regulator: core version 0.5 [ 0.505002] device class 'regulator': registering [ 0.510058] initcall regulator_init+0x0/0x23 returned 0 after 7812 usecs [ 0.517005] calling cpufreq_core_init+0x0/0x75 @ 1 [ 0.522009] initcall cpufreq_core_init+0x0/0x75 returned 0 after 0 usecs [ 0.529004] calling cpuidle_init+0x0/0x32 @ 1 [ 0.533010] initcall cpuidle_init+0x0/0x32 returned 0 after 0 usecs [ 0.539005] calling virtio_init+0x0/0x1f @ 1 [ 0.544049] bus: 'virtio': registered [ 0.547005] initcall virtio_init+0x0/0x1f returned 0 after 2929 usecs [ 0.554004] calling sock_init+0x0/0x4c @ 1 [ 0.558048] initcall sock_init+0x0/0x4c returned 0 after 0 usecs [ 0.564004] calling netpoll_init+0x0/0x11 @ 1 [ 0.569004] initcall netpoll_init+0x0/0x11 returned 0 after 0 usecs [ 0.575004] calling netlink_proto_init+0x0/0x10f @ 1 [ 0.580026] NET: Registered protocol family 16 [ 0.584035] initcall netlink_proto_init+0x0/0x10f returned 0 after 3906 usecs [ 0.591004] calling olpc_init+0x0/0x196 @ 1 [ 0.596004] initcall olpc_init+0x0/0x196 returned 0 after 0 usecs [ 0.602003] calling bdi_class_init+0x0/0x35 @ 1 [ 0.606002] device class 'bdi': registering [ 0.611071] initcall bdi_class_init+0x0/0x35 returned 0 after 4882 usecs [ 0.618005] calling kobject_uevent_init+0x0/0x4e @ 1 [ 0.623013] initcall kobject_uevent_init+0x0/0x4e returned 0 after 0 usecs [ 0.629004] calling pcibus_class_init+0x0/0x14 @ 1 [ 0.634002] device class 'pci_bus': registering [ 0.639054] initcall pcibus_class_init+0x0/0x14 returned 0 after 4882 usecs [ 0.646005] calling pci_driver_init+0x0/0xf @ 1 [ 0.651029] bus: 'pci': registered [ 0.654005] initcall pci_driver_init+0x0/0xf returned 0 after 2929 usecs [ 0.661004] calling lcd_class_init+0x0/0x3f @ 1 [ 0.665003] device class 'lcd': registering [ 0.670038] initcall lcd_class_init+0x0/0x3f returned 0 after 4882 usecs [ 0.676004] calling backlight_class_init+0x0/0x4d @ 1 [ 0.681004] device class 'backlight': registering [ 0.686060] initcall backlight_class_init+0x0/0x4d returned 0 after 4882 usecs [ 0.694004] calling video_output_class_init+0x0/0x14 @ 1 [ 0.699002] device class 'video_output': registering [ 0.704054] initcall video_output_class_init+0x0/0x14 returned 0 after 4882 usecs [ 0.711005] calling tty_class_init+0x0/0x2f @ 1 [ 0.716004] device class 'tty': registering [ 0.720058] initcall tty_class_init+0x0/0x2f returned 0 after 3906 usecs [ 0.727004] calling vtconsole_class_init+0x0/0xa1 @ 1 [ 0.732004] device class 'vtconsole': registering [ 0.737053] device: 'vtcon0': device_add [ 0.741070] initcall vtconsole_class_init+0x0/0xa1 returned 0 after 8789 usecs [ 0.748005] calling spi_init+0x0/0x70 @ 1 [ 0.752056] bus: 'spi': registered [ 0.756003] device class 'spi_master': registering [ 0.761053] initcall spi_init+0x0/0x70 returned 0 after 8789 usecs [ 0.767004] calling i2c_init+0x0/0x57 @ 1 [ 0.771056] bus: 'i2c': registered [ 0.775009] bus: 'i2c': add driver dummy [ 0.779028] i2c-core: driver [dummy] registered [ 0.783014] initcall i2c_init+0x0/0x57 returned 0 after 11718 usecs [ 0.789004] calling lguest_devices_init+0x0/0x124 @ 1 [ 0.795004] initcall lguest_devices_init+0x0/0x124 returned 0 after 0 usecs [ 0.801004] calling amd_postcore_init+0x0/0x66 @ 1 [ 0.806003] initcall amd_postcore_init+0x0/0x66 returned 0 after 0 usecs [ 0.813003] calling arch_kdebugfs_init+0x0/0x1e @ 1 [ 0.818015] initcall arch_kdebugfs_init+0x0/0x1e returned 0 after 0 usecs [ 0.825003] calling init_pit_clocksource+0x0/0x9e @ 1 [ 0.830003] initcall init_pit_clocksource+0x0/0x9e returned 0 after 0 usecs [ 0.837003] calling pci_arch_init+0x0/0x33 @ 1 [ 0.846474] PCI: PCI BIOS revision 3.00 entry at 0xf21d0, last bus=5 [ 0.852012] initcall pci_arch_init+0x0/0x33 returned 0 after 10742 usecs [ 0.859003] calling topology_init+0x0/0x46 @ 1 [ 0.864002] Registering sys device of class 'cpu' [ 0.868006] Registering sys device 'cpu0' [ 0.872061] Registering sys device of class 'cpu' [ 0.877007] Registering sys device 'cpu1' [ 0.881051] initcall topology_init+0x0/0x46 returned 0 after 16601 usecs [ 0.888004] calling mca_init+0x0/0x2b3 @ 1 [ 0.892059] bus: 'MCA': registered [ 0.896005] initcall mca_init+0x0/0x2b3 returned -19 after 3906 usecs [ 0.902004] calling param_sysfs_init+0x0/0x28c @ 1 [ 0.965228] initcall param_sysfs_init+0x0/0x28c returned 0 after 56640 usecs [ 0.972006] calling audit_watch_init+0x0/0x27 @ 1 [ 0.977006] initcall audit_watch_init+0x0/0x27 returned 0 after 0 usecs [ 0.984003] calling init_slow_work+0x0/0x2f @ 1 [ 0.988003] initcall init_slow_work+0x0/0x2f returned 0 after 0 usecs [ 0.995004] calling default_bdi_init+0x0/0xa4 @ 1 [ 0.999035] device: 'default': device_add [ 1.004060] initcall default_bdi_init+0x0/0xa4 returned 0 after 4882 usecs [ 1.011005] calling init_bio+0x0/0xb5 @ 1 [ 1.015028] bio: create slab <bio-0> at 0 [ 1.019027] initcall init_bio+0x0/0xb5 returned 0 after 3906 usecs [ 1.025004] calling fsnotify_init+0x0/0xf @ 1 [ 1.030019] initcall fsnotify_init+0x0/0xf returned 0 after 0 usecs [ 1.031040] calling fsnotify_notification_init+0x0/0x5b @ 1 [ 1.032005] initcall fsnotify_notification_init+0x0/0x5b returned 0 after 0 usecs [ 1.033004] calling cryptomgr_init+0x0/0xf @ 1 [ 1.034005] initcall cryptomgr_init+0x0/0xf returned 0 after 0 usecs [ 1.035003] calling blk_settings_init+0x0/0x1d @ 1 [ 1.036003] initcall blk_settings_init+0x0/0x1d returned 0 after 0 usecs [ 1.037003] calling blk_ioc_init+0x0/0x24 @ 1 [ 1.038005] initcall blk_ioc_init+0x0/0x24 returned 0 after 0 usecs [ 1.039003] calling blk_softirq_init+0x0/0x4a @ 1 [ 1.040004] initcall blk_softirq_init+0x0/0x4a returned 0 after 0 usecs [ 1.041003] calling blk_iopoll_setup+0x0/0x4a @ 1 [ 1.042004] initcall blk_iopoll_setup+0x0/0x4a returned 0 after 0 usecs [ 1.043003] calling genhd_device_init+0x0/0x50 @ 1 [ 1.044002] device class 'block': registering [ 1.045066] initcall genhd_device_init+0x0/0x50 returned 0 after 976 usecs [ 1.046013] calling blk_dev_integrity_init+0x0/0x24 @ 1 [ 1.047005] initcall blk_dev_integrity_init+0x0/0x24 returned 0 after 0 usecs [ 1.048003] calling gpiolib_debugfs_init+0x0/0x1f @ 1 [ 1.049022] initcall gpiolib_debugfs_init+0x0/0x1f returned 0 after 0 usecs [ 1.050012] calling max7301_init+0x0/0xf @ 1 [ 1.051004] bus: 'spi': add driver max7301 [ 1.052054] initcall max7301_init+0x0/0xf returned 0 after 976 usecs [ 1.053005] calling mc33880_init+0x0/0xf @ 1 [ 1.054002] bus: 'spi': add driver mc33880 [ 1.055052] initcall mc33880_init+0x0/0xf returned 0 after 976 usecs [ 1.056020] calling mcp23s08_init+0x0/0xf @ 1 [ 1.057003] bus: 'spi': add driver mcp23s08 [ 1.058050] initcall mcp23s08_init+0x0/0xf returned 0 after 976 usecs [ 1.059018] calling pca953x_init+0x0/0x11 @ 1 [ 1.060004] bus: 'i2c': add driver pca953x [ 1.062037] i2c-core: driver [pca953x] registered [ 1.066008] initcall pca953x_init+0x0/0x11 returned 0 after 5859 usecs [ 1.073004] calling wm831x_gpio_init+0x0/0xf @ 1 [ 1.078004] bus: 'platform': add driver wm831x-gpio [ 1.082068] initcall wm831x_gpio_init+0x0/0xf returned 0 after 3906 usecs [ 1.089006] calling pci_slot_init+0x0/0x3b @ 1 [ 1.094010] initcall pci_slot_init+0x0/0x3b returned 0 after 0 usecs [ 1.100004] calling fbmem_init+0x0/0x80 @ 1 [ 1.104025] device class 'graphics': registering [ 1.109063] initcall fbmem_init+0x0/0x80 returned 0 after 4882 usecs [ 1.116004] calling max1586_pmic_init+0x0/0x11 @ 1 [ 1.120004] bus: 'i2c': add driver max1586 [ 1.125031] i2c-core: driver [max1586] registered [ 1.129005] initcall max1586_pmic_init+0x0/0x11 returned 0 after 8789 usecs [ 1.136003] calling wm8400_regulator_init+0x0/0xf @ 1 [ 1.141003] bus: 'platform': add driver wm8400-regulator [ 1.147065] initcall wm8400_regulator_init+0x0/0xf returned 0 after 5859 usecs [ 1.154004] calling pcf50633_regulator_init+0x0/0xf @ 1 [ 1.159003] bus: 'platform': add driver pcf50633-regltr [ 1.165067] initcall pcf50633_regulator_init+0x0/0xf returned 0 after 5859 usecs [ 1.172004] calling mc13783_regulator_init+0x0/0xf @ 1 [ 1.177003] bus: 'platform': add driver mc13783-regulator [ 1.183080] initcall mc13783_regulator_init+0x0/0xf returned 0 after 5859 usecs [ 1.190004] calling tps_65023_init+0x0/0x11 @ 1 [ 1.195003] bus: 'i2c': add driver tps65023 [ 1.199068] i2c-core: driver [tps65023] registered [ 1.204006] initcall tps_65023_init+0x0/0x11 returned 0 after 8789 usecs [ 1.211004] calling tps_6507x_init+0x0/0x11 @ 1 [ 1.215003] bus: 'i2c': add driver tps6507x [ 1.219065] i2c-core: driver [tps6507x] registered [ 1.224006] initcall tps_6507x_init+0x0/0x11 returned 0 after 8789 usecs [ 1.231004] calling pm8607_regulator_init+0x0/0x33 @ 1 [ 1.236003] bus: 'platform': add driver 88pm8607-buck1 [ 1.241068] bus: 'platform': add driver 88pm8607-buck2 [ 1.247065] bus: 'platform': add driver 88pm8607-buck3 [ 1.252061] bus: 'platform': add driver 88pm8607-ldo1 [ 1.257066] bus: 'platform': add driver 88pm8607-ldo2 [ 1.262062] bus: 'platform': add driver 88pm8607-ldo3 [ 1.267066] bus: 'platform': add driver 88pm8607-ldo4 [ 1.273010] bus: 'platform': add driver 88pm8607-ldo5 [ 1.278066] bus: 'platform': add driver 88pm8607-ldo6 [ 1.283066] bus: 'platform': add driver 88pm8607-ldo7 [ 1.288066] bus: 'platform': add driver 88pm8607-ldo8 [ 1.293065] bus: 'platform': add driver 88pm8607-ldo9 [ 1.298067] bus: 'platform': add driver 88pm8607-ldo10 [ 1.304066] bus: 'platform': add driver 88pm8607-ldo12 [ 1.305074] bus: 'platform': add driver 88pm8607-ldo14 [ 1.306067] initcall pm8607_regulator_init+0x0/0x33 returned 0 after 68359 usecs [ 1.307025] calling misc_init+0x0/0x9b @ 1 [ 1.308010] device class 'misc': registering [ 1.309055] initcall misc_init+0x0/0x9b returned 0 after 976 usecs [ 1.310023] calling cn_init+0x0/0xc9 @ 1 [ 1.311045] initcall cn_init+0x0/0xc9 returned 0 after 0 usecs [ 1.312003] calling tifm_init+0x0/0x75 @ 1 [ 1.314062] bus: 'tifm': registered [ 1.315007] device class 'tifm_adapter': registering [ 1.316050] initcall tifm_init+0x0/0x75 returned 0 after 2929 usecs [ 1.317020] calling wm8400_module_init+0x0/0x2a @ 1 [ 1.318003] bus: 'i2c': add driver WM8400 [ 1.320041] i2c-core: driver [WM8400] registered [ 1.324006] initcall wm8400_module_init+0x0/0x2a returned 0 after 5859 usecs [ 1.331003] calling wm831x_i2c_init+0x0/0x2a @ 1 [ 1.336003] bus: 'i2c': add driver wm831x [ 1.340070] i2c-core: driver [wm831x] registered [ 1.345006] initcall wm831x_i2c_init+0x0/0x2a returned 0 after 8789 usecs [ 1.351004] calling mc13783_init+0x0/0xf @ 1 [ 1.356003] bus: 'spi': add driver mc13783 [ 1.360063] initcall mc13783_init+0x0/0xf returned 0 after 3906 usecs [ 1.366004] calling ezx_pcap_init+0x0/0xf @ 1 [ 1.371003] bus: 'spi': add driver ezx-pcap [ 1.375067] initcall ezx_pcap_init+0x0/0xf returned 0 after 3906 usecs [ 1.382004] Clocksource tsc unstable (delta = 193035046 ns) [ 1.387007] calling pcf50633_init+0x0/0x11 @ 1 [ 1.392003] bus: 'i2c': add driver pcf50633 [ 1.396063] i2c-core: driver [pcf50633] registered [ 1.401006] initcall pcf50633_init+0x0/0x11 returned 0 after 8789 usecs [ 1.408004] calling ab3100_i2c_init+0x0/0x11 @ 1 [ 1.412003] bus: 'i2c': add driver ab3100 [ 1.416068] i2c-core: driver [ab3100] registered [ 1.421006] initcall ab3100_i2c_init+0x0/0x11 returned 0 after 8789 usecs [ 1.428004] calling ab4500_init+0x0/0xf @ 1 [ 1.432003] bus: 'spi': add driver ab4500 [ 1.436063] initcall ab4500_init+0x0/0xf returned 0 after 3906 usecs [ 1.442005] calling pm8607_init+0x0/0x2a @ 1 [ 1.447004] bus: 'i2c': add driver 88PM8607 [ 1.451073] i2c-core: driver [88PM8607] registered [ 1.456006] initcall pm8607_init+0x0/0x2a returned 0 after 8789 usecs [ 1.462004] calling init_scsi+0x0/0x89 @ 1 [ 1.467165] device class 'scsi_host': registering [ 1.472049] bus: 'scsi': registered [ 1.475003] device class 'scsi_device': registering [ 1.480057] SCSI subsystem initialized [ 1.484005] initcall init_scsi+0x0/0x89 returned 0 after 16601 usecs [ 1.490004] calling ata_init+0x0/0x2b3 @ 1 [ 1.495034] libata version 3.00 loaded. [ 1.498004] initcall ata_init+0x0/0x2b3 returned 0 after 3906 usecs [ 1.505003] calling phy_init+0x0/0x2a @ 1 [ 1.509002] device class 'mdio_bus': registering [ 1.514032] bus: 'mdio_bus': registered [ 1.517003] bus: 'mdio_bus': add driver Generic PHY [ 1.522066] initcall phy_init+0x0/0x2a returned 0 after 12695 usecs [ 1.529005] calling init_pcmcia_cs+0x0/0x2d @ 1 [ 1.533003] device class 'pcmcia_socket': registering [ 1.538059] initcall init_pcmcia_cs+0x0/0x2d returned 0 after 5859 usecs [ 1.545004] calling usb_init+0x0/0x131 @ 1 [ 1.549085] bus: 'usb': registered [ 1.553009] bus: 'usb': add driver usbfs [ 1.557065] usbcore: registered new interface driver usbfs [ 1.562007] device class 'usb_device': registering [ 1.567065] bus: 'usb': add driver hub [ 1.571070] usbcore: registered new interface driver hub [ 1.577025] bus: 'usb': add driver usb [ 1.580085] usbcore: registered new device driver usb [ 1.585005] initcall usb_init+0x0/0x131 returned 0 after 35156 usecs [ 1.592004] calling serio_init+0x0/0x73 @ 1 [ 1.596064] bus: 'serio': registered [ 1.600028] initcall serio_init+0x0/0x73 returned 0 after 3906 usecs [ 1.606004] calling input_init+0x0/0x10f @ 1 [ 1.611002] device class 'input': registering [ 1.615060] initcall input_init+0x0/0x10f returned 0 after 3906 usecs [ 1.621004] calling rtc_init+0x0/0x4f @ 1 [ 1.626003] device class 'rtc': registering [ 1.630059] initcall rtc_init+0x0/0x4f returned 0 after 3906 usecs [ 1.636004] calling pps_init+0x0/0x92 @ 1 [ 1.640004] device class 'pps': registering [ 1.644056] LinuxPPS API ver. 1 registered [ 1.649003] Software ver. 5.3.6 - Copyright 2005-2007 Rodolfo Giometti <giometti@linux.it> [ 1.657004] initcall pps_init+0x0/0x92 returned 0 after 16601 usecs [ 1.663004] calling power_supply_class_init+0x0/0x2f @ 1 [ 1.668003] device class 'power_supply': registering [ 1.674016] initcall power_supply_class_init+0x0/0x2f returned 0 after 5859 usecs [ 1.681004] calling hwmon_init+0x0/0xe9 @ 1 [ 1.685005] device class 'hwmon': registering [ 1.690058] initcall hwmon_init+0x0/0xe9 returned 0 after 4882 usecs [ 1.696005] calling md_init+0x0/0xb7 @ 1 [ 1.700020] initcall md_init+0x0/0xb7 returned 0 after 0 usecs [ 1.706004] calling leds_init+0x0/0x36 @ 1 [ 1.710003] device class 'leds': registering [ 1.715012] initcall leds_init+0x0/0x36 returned 0 after 4882 usecs [ 1.721005] calling pci_subsys_init+0x0/0xde @ 1 [ 1.725002] PCI: Probing PCI hardware [ 1.729014] PCI: Probing PCI hardware (bus 00) [ 1.734008] device: 'pci0000:00': device_add [ 1.738011] device: '0000:00': device_add [ 1.742065] pci_bus 0000:00: scanning bus [ 1.746066] pci 0000:00:00.0: found [10de:005e] class 000580 header type 00 [ 1.753174] pci 0000:00:00.0: calling quirk_resource_alignment+0x0/0x15a [ 1.760144] pci 0000:00:01.0: found [10de:0050] class 000601 header type 00 [ 1.767141] pci 0000:00:01.0: calling nvidia_force_enable_hpet+0x0/0x90 [ 1.774002] HPET not enabled in BIOS. You might try hpet=force boot option [ 1.781004] pci 0000:00:01.0: calling quirk_resource_alignment+0x0/0x15a [ 1.787054] pci 0000:00:01.1: found [10de:0052] class 000c05 header type 00 [ 1.794046] pci 0000:00:01.1: reg 10: [io 0xdc00-0xdc1f] [ 1.800070] pci 0000:00:01.1: reg 20: [io 0x4c00-0x4c3f] [ 1.805019] pci 0000:00:01.1: reg 24: [io 0x4c40-0x4c7f] [ 1.811030] pci 0000:00:01.1: calling quirk_resource_alignment+0x0/0x15a [ 1.817055] pci 0000:00:01.1: PME# supported from D3hot D3cold [ 1.823013] pci 0000:00:01.1: PME# disabled [ 1.828035] pci 0000:00:02.0: found [10de:005a] class 000c03 header type 00 [ 1.835036] pci 0000:00:02.0: reg 10: [mem 0xda102000-0xda102fff] [ 1.841115] pci 0000:00:02.0: calling quirk_resource_alignment+0x0/0x15a [ 1.848054] pci 0000:00:02.0: supports D1 D2 [ 1.852002] pci 0000:00:02.0: PME# supported from D0 D1 D2 D3hot D3cold [ 1.858012] pci 0000:00:02.0: PME# disabled [ 1.863062] pci 0000:00:02.1: found [10de:005b] class 000c03 header type 00 [ 1.870054] pci 0000:00:02.1: reg 10: [mem 0xfeb00000-0xfeb000ff] [ 1.876115] pci 0000:00:02.1: calling quirk_resource_alignment+0x0/0x15a [ 1.883081] pci 0000:00:02.1: supports D1 D2 [ 1.887002] pci 0000:00:02.1: PME# supported from D0 D1 D2 D3hot D3cold [ 1.894013] pci 0000:00:02.1: PME# disabled [ 1.898097] pci 0000:00:04.0: found [10de:0059] class 000401 header type 00 [ 1.905045] pci 0000:00:04.0: reg 10: [io 0xd400-0xd4ff] [ 1.910019] pci 0000:00:04.0: reg 14: [io 0xd800-0xd8ff] [ 1.916020] pci 0000:00:04.0: reg 18: [mem 0xda101000-0xda101fff] [ 1.922081] pci 0000:00:04.0: calling quirk_resource_alignment+0x0/0x15a [ 1.929054] pci 0000:00:04.0: supports D1 D2 [ 1.933059] pci 0000:00:06.0: found [10de:0053] class 000101 header type 00 [ 1.940109] pci 0000:00:06.0: reg 20: [io 0xf000-0xf00f] [ 1.945051] pci 0000:00:06.0: calling quirk_resource_alignment+0x0/0x15a [ 1.952103] pci 0000:00:09.0: found [10de:005c] class 000604 header type 01 [ 1.959068] pci 0000:00:09.0: calling quirk_resource_alignment+0x0/0x15a [ 1.966054] pci 0000:00:0a.0: found [10de:0057] class 000680 header type 00 [ 1.973046] pci 0000:00:0a.0: reg 10: [mem 0xda100000-0xda100fff] [ 1.979019] pci 0000:00:0a.0: reg 14: [io 0xd000-0xd007] [ 1.985098] pci 0000:00:0a.0: calling quirk_resource_alignment+0x0/0x15a [ 1.991055] pci 0000:00:0a.0: supports D1 D2 [ 1.996002] pci 0000:00:0a.0: PME# supported from D0 D1 D2 D3hot D3cold [ 2.002012] pci 0000:00:0a.0: PME# disabled [ 2.007021] pci 0000:00:0b.0: found [10de:005d] class 000604 header type 01 [ 2.014092] pci 0000:00:0b.0: calling quirk_resource_alignment+0x0/0x15a [ 2.020101] pci 0000:00:0b.0: PME# supported from D0 D1 D2 D3hot D3cold [ 2.027012] pci 0000:00:0b.0: PME# disabled [ 2.031104] pci 0000:00:0c.0: found [10de:005d] class 000604 header type 01 [ 2.038111] pci 0000:00:0c.0: calling quirk_resource_alignment+0x0/0x15a [ 2.045101] pci 0000:00:0c.0: PME# supported from D0 D1 D2 D3hot D3cold [ 2.052012] pci 0000:00:0c.0: PME# disabled [ 2.056104] pci 0000:00:0d.0: found [10de:005d] class 000604 header type 01 [ 2.063110] pci 0000:00:0d.0: calling quirk_resource_alignment+0x0/0x15a [ 2.070101] pci 0000:00:0d.0: PME# supported from D0 D1 D2 D3hot D3cold [ 2.077012] pci 0000:00:0d.0: PME# disabled [ 2.081104] pci 0000:00:0e.0: found [10de:005d] class 000604 header type 01 [ 2.088110] pci 0000:00:0e.0: calling quirk_resource_alignment+0x0/0x15a [ 2.095102] pci 0000:00:0e.0: PME# supported from D0 D1 D2 D3hot D3cold [ 2.101012] pci 0000:00:0e.0: PME# disabled [ 2.106122] pci 0000:00:18.0: found [1022:1100] class 000600 header type 00 [ 2.113132] pci 0000:00:18.0: calling quirk_resource_alignment+0x0/0x15a [ 2.120027] pci 0000:00:18.1: found [1022:1101] class 000600 header type 00 [ 2.127114] pci 0000:00:18.1: calling quirk_resource_alignment+0x0/0x15a [ 2.133044] pci 0000:00:18.2: found [1022:1102] class 000600 header type 00 [ 2.140133] pci 0000:00:18.2: calling quirk_resource_alignment+0x0/0x15a [ 2.147041] pci 0000:00:18.3: found [1022:1103] class 000600 header type 00 [ 2.154132] pci 0000:00:18.3: calling quirk_resource_alignment+0x0/0x15a [ 2.161072] pci_bus 0000:00: fixups for bus [ 2.165007] pci 0000:00:09.0: scanning behind bridge, config 050500, pass 0 [ 2.172015] pci_bus 0000:05: scanning bus [ 2.176071] pci 0000:05:07.0: found [10ec:8139] class 000200 header type 00 [ 2.183048] pci 0000:05:07.0: reg 10: [io 0xc000-0xc0ff] [ 2.189021] pci 0000:05:07.0: reg 14: [mem 0xda000000-0xda0000ff] [ 2.195103] pci 0000:05:07.0: calling quirk_resource_alignment+0x0/0x15a [ 2.202056] pci 0000:05:07.0: supports D1 D2 [ 2.206002] pci 0000:05:07.0: PME# supported from D1 D2 D3hot [ 2.212013] pci 0000:05:07.0: PME# disabled [ 2.216136] pci_bus 0000:05: fixups for bus [ 2.220002] pci 0000:00:09.0: PCI bridge to [bus 05-05] (subtractive decode) [ 2.227011] pci 0000:00:09.0: bridge window [io 0xc000-0xcfff] [ 2.233011] pci 0000:00:09.0: bridge window [mem 0xda000000-0xda0fffff] [ 2.240011] pci_bus 0000:05: bus scan returning with max=05 [ 2.246013] pci 0000:00:0b.0: scanning behind bridge, config 040400, pass 0 [ 2.253015] pci_bus 0000:04: scanning bus [ 2.257156] pci_bus 0000:04: fixups for bus [ 2.261002] pci 0000:00:0b.0: PCI bridge to [bus 04-04] [ 2.266045] pci_bus 0000:04: bus scan returning with max=04 [ 2.272013] pci 0000:00:0c.0: scanning behind bridge, config 030300, pass 0 [ 2.279015] pci_bus 0000:03: scanning bus [ 2.283156] pci_bus 0000:03: fixups for bus [ 2.287002] pci 0000:00:0c.0: PCI bridge to [bus 03-03] [ 2.293045] pci_bus 0000:03: bus scan returning with max=03 [ 2.298012] pci 0000:00:0d.0: scanning behind bridge, config 020200, pass 0 [ 2.305015] pci_bus 0000:02: scanning bus [ 2.309156] pci_bus 0000:02: fixups for bus [ 2.313002] pci 0000:00:0d.0: PCI bridge to [bus 02-02] [ 2.319045] pci_bus 0000:02: bus scan returning with max=02 [ 2.324012] pci 0000:00:0e.0: scanning behind bridge, config 010100, pass 0 [ 2.331015] pci_bus 0000:01: scanning bus [ 2.335049] pci 0000:01:00.0: found [1002:5b60] class 000300 header type 00 [ 2.342005] pci 0000:01:00.0: calling quirk_no_ata_d3+0x0/0x1b [ 2.348030] pci 0000:01:00.0: reg 10: [mem 0xd0000000-0xd7ffffff pref] [ 2.355021] pci 0000:01:00.0: reg 14: [io 0xb000-0xb0ff] [ 2.360020] pci 0000:01:00.0: reg 18: [mem 0xd9000000-0xd900ffff] [ 2.366073] pci 0000:01:00.0: reg 30: [mem 0x00000000-0x0001ffff pref] [ 2.373013] pci 0000:01:00.0: calling quirk_resource_alignment+0x0/0x15a [ 2.380046] pci 0000:01:00.0: supports D1 D2 [ 2.384082] pci 0000:01:00.1: found [1002:5b70] class 000380 header type 00 [ 2.391004] pci 0000:01:00.1: calling quirk_no_ata_d3+0x0/0x1b [ 2.397025] pci 0000:01:00.1: reg 10: [mem 0xd9010000-0xd901ffff] [ 2.403119] pci 0000:01:00.1: calling quirk_resource_alignment+0x0/0x15a [ 2.410070] pci 0000:01:00.1: supports D1 D2 [ 2.414207] pci_bus 0000:01: fixups for bus [ 2.418002] pci 0000:00:0e.0: PCI bridge to [bus 01-01] [ 2.424019] pci 0000:00:0e.0: bridge window [io 0xb000-0xbfff] [ 2.430011] pci 0000:00:0e.0: bridge window [mem 0xd8000000-0xd9ffffff] [ 2.437006] pci 0000:00:0e.0: bridge window [mem 0xd0000000-0xd7ffffff 64bit pref] [ 2.444002] pci_bus 0000:01: bus scan returning with max=01 [ 2.450013] pci 0000:00:09.0: scanning behind bridge, config 050500, pass 1 [ 2.457022] pci 0000:00:0b.0: scanning behind bridge, config 040400, pass 1 [ 2.464022] pci 0000:00:0c.0: scanning behind bridge, config 030300, pass 1 [ 2.471022] pci 0000:00:0d.0: scanning behind bridge, config 020200, pass 1 [ 2.478022] pci 0000:00:0e.0: scanning behind bridge, config 010100, pass 1 [ 2.485018] pci_bus 0000:00: bus scan returning with max=05 [ 2.490003] device: '0000:00:00.0': device_add [ 2.495008] bus: 'pci': add device 0000:00:00.0 [ 2.499110] device: '0000:00:01.0': device_add [ 2.504008] bus: 'pci': add device 0000:00:01.0 [ 2.509030] device: '0000:00:01.1': device_add [ 2.513008] bus: 'pci': add device 0000:00:01.1 [ 2.518114] device: '0000:00:02.0': device_add [ 2.522008] bus: 'pci': add device 0000:00:02.0 [ 2.527109] device: '0000:00:02.1': device_add [ 2.531008] bus: 'pci': add device 0000:00:02.1 [ 2.536120] device: '0000:00:04.0': device_add [ 2.541010] bus: 'pci': add device 0000:00:04.0 [ 2.545139] device: '0000:00:06.0': device_add [ 2.550008] bus: 'pci': add device 0000:00:06.0 [ 2.554098] device: '0000:00:09.0': device_add [ 2.559008] bus: 'pci': add device 0000:00:09.0 [ 2.563103] device: '0000:00:0a.0': device_add [ 2.568008] bus: 'pci': add device 0000:00:0a.0 [ 2.573031] device: '0000:00:0b.0': device_add [ 2.577008] bus: 'pci': add device 0000:00:0b.0 [ 2.582116] device: '0000:00:0c.0': device_add [ 2.586009] bus: 'pci': add device 0000:00:0c.0 [ 2.591123] device: '0000:00:0d.0': device_add [ 2.595008] bus: 'pci': add device 0000:00:0d.0 [ 2.600099] device: '0000:00:0e.0': device_add [ 2.605008] bus: 'pci': add device 0000:00:0e.0 [ 2.609101] device: '0000:00:18.0': device_add [ 2.614009] bus: 'pci': add device 0000:00:18.0 [ 2.618107] device: '0000:00:18.1': device_add [ 2.623008] bus: 'pci': add device 0000:00:18.1 [ 2.627095] device: '0000:00:18.2': device_add [ 2.632008] bus: 'pci': add device 0000:00:18.2 [ 2.637035] device: '0000:00:18.3': device_add [ 2.641011] bus: 'pci': add device 0000:00:18.3 [ 2.646118] device: '0000:05:07.0': device_add [ 2.650008] bus: 'pci': add device 0000:05:07.0 [ 2.655097] device: '0000:05': device_add [ 2.659078] device: '0000:04': device_add [ 2.663063] device: '0000:03': device_add [ 2.667068] device: '0000:02': device_add [ 2.671080] device: '0000:01:00.0': device_add [ 2.676017] bus: 'pci': add device 0000:01:00.0 [ 2.681029] device: '0000:01:00.1': device_add [ 2.685008] bus: 'pci': add device 0000:01:00.1 [ 2.690111] device: '0000:01': device_add [ 2.694296] pci 0000:00:00.0: default IRQ router [10de:005e] [ 2.700011] pci 0000:00:01.1: ignoring bogus IRQ 255 [ 2.705004] pci 0000:00:02.0: ignoring bogus IRQ 255 [ 2.710004] pci 0000:00:02.1: ignoring bogus IRQ 255 [ 2.715032] PCI: pci_cache_line_size set to 64 bytes [ 2.720027] pci 0000:00:01.1: BAR 0: reserving [io 0xdc00-0xdc1f flags 0x20101] (d=0, p=0) [ 2.728004] pci 0000:00:01.1: BAR 4: reserving [io 0x4c00-0x4c3f flags 0x20101] (d=0, p=0) [ 2.736003] pci 0000:00:01.1: BAR 5: reserving [io 0x4c40-0x4c7f flags 0x20101] (d=0, p=0) [ 2.745010] pci 0000:00:02.0: BAR 0: reserving [mem 0xda102000-0xda102fff flags 0x20200] (d=0, p=0) [ 2.754010] pci 0000:00:02.1: BAR 0: reserving [mem 0xfeb00000-0xfeb000ff flags 0x20200] (d=0, p=0) [ 2.763010] pci 0000:00:04.0: BAR 0: reserving [io 0xd400-0xd4ff flags 0x20101] (d=0, p=0) [ 2.771004] pci 0000:00:04.0: BAR 1: reserving [io 0xd800-0xd8ff flags 0x20101] (d=0, p=0) [ 2.780004] pci 0000:00:04.0: BAR 2: reserving [mem 0xda101000-0xda101fff flags 0x20200] (d=0, p=0) [ 2.789010] pci 0000:00:06.0: BAR 0: reserving [io 0x01f0-0x01f7 flags 0x110] (d=0, p=0) [ 2.797003] pci 0000:00:06.0: BAR 1: reserving [io 0x03f6 flags 0x110] (d=0, p=0) [ 2.804003] pci 0000:00:06.0: BAR 2: reserving [io 0x0170-0x0177 flags 0x110] (d=0, p=0) [ 2.813003] pci 0000:00:06.0: BAR 3: reserving [io 0x0376 flags 0x110] (d=0, p=0) [ 2.820003] pci 0000:00:06.0: BAR 4: reserving [io 0xf000-0xf00f flags 0x20101] (d=0, p=0) [ 2.828016] pci 0000:00:0a.0: BAR 0: reserving [mem 0xda100000-0xda100fff flags 0x20200] (d=0, p=0) [ 2.838004] pci 0000:00:0a.0: BAR 1: reserving [io 0xd000-0xd007 flags 0x20101] (d=0, p=0) [ 2.846059] pci 0000:05:07.0: BAR 0: reserving [io 0xc000-0xc0ff flags 0x20101] (d=0, p=0) [ 2.854004] pci 0000:05:07.0: BAR 1: reserving [mem 0xda000000-0xda0000ff flags 0x20200] (d=0, p=0) [ 2.863010] pci 0000:01:00.0: BAR 0: reserving [mem 0xd0000000-0xd7ffffff flags 0x21208] (d=0, p=0) [ 2.872004] pci 0000:01:00.0: BAR 1: reserving [io 0xb000-0xb0ff flags 0x20101] (d=0, p=0) [ 2.881004] pci 0000:01:00.0: BAR 2: reserving [mem 0xd9000000-0xd900ffff flags 0x20200] (d=0, p=0) [ 2.890137] pci 0000:01:00.1: BAR 0: reserving [mem 0xd9010000-0xd901ffff flags 0x20200] (d=1, p=1) [ 2.899013] initcall pci_subsys_init+0x0/0xde returned 0 after 1146484 usecs [ 2.906003] calling proto_init+0x0/0xf @ 1 [ 2.910009] initcall proto_init+0x0/0xf returned 0 after 0 usecs [ 2.916003] calling net_dev_init+0x0/0x143 @ 1 [ 2.921017] device class 'net': registering [ 2.925059] device: 'lo': device_add [ 2.929169] initcall net_dev_init+0x0/0x143 returned 0 after 7812 usecs [ 2.935004] calling neigh_init+0x0/0x66 @ 1 [ 2.940004] initcall neigh_init+0x0/0x66 returned 0 after 0 usecs [ 2.946003] calling fib_rules_init+0x0/0x99 @ 1 [ 2.950005] initcall fib_rules_init+0x0/0x99 returned 0 after 0 usecs [ 2.957003] calling pktsched_init+0x0/0xb3 @ 1 [ 2.961015] initcall pktsched_init+0x0/0xb3 returned 0 after 0 usecs [ 2.968003] calling tc_filter_init+0x0/0x43 @ 1 [ 2.972003] initcall tc_filter_init+0x0/0x43 returned 0 after 0 usecs [ 2.979003] calling tc_action_init+0x0/0x43 @ 1 [ 2.983003] initcall tc_action_init+0x0/0x43 returned 0 after 0 usecs [ 2.990004] calling genl_init+0x0/0x77 @ 1 [ 2.994042] initcall genl_init+0x0/0x77 returned 0 after 0 usecs [ 3.000004] calling wanrouter_init+0x0/0x42 @ 1 [ 3.005003] Sangoma WANPIPE Router v1.1 (c) 1995-2000 Sangoma Technologies Inc. [ 3.012013] initcall wanrouter_init+0x0/0x42 returned 0 after 6835 usecs [ 3.019003] calling irda_init+0x0/0x9b @ 1 [ 3.023002] irda_init() [ 3.025069] NET: Registered protocol family 23 [ 3.030181] initcall irda_init+0x0/0x9b returned 0 after 6835 usecs [ 3.036003] calling bt_init+0x0/0x4f @ 1 [ 3.040002] Bluetooth: Core ver 2.15 [ 3.044027] device class 'bluetooth': registering [ 3.049065] NET: Registered protocol family 31 [ 3.053002] Bluetooth: HCI device and connection manager initialized [ 3.060018] Bluetooth: HCI socket layer initialized [ 3.065003] initcall bt_init+0x0/0x4f returned 0 after 24414 usecs [ 3.071003] calling atm_init+0x0/0xa0 @ 1 [ 3.075003] NET: Registered protocol family 8 [ 3.079002] NET: Registered protocol family 20 [ 3.084018] device class 'atm': registering [ 3.088056] initcall atm_init+0x0/0xa0 returned 0 after 12695 usecs [ 3.094004] calling cfg80211_init+0x0/0xb2 @ 1 [ 3.099004] device class 'ieee80211': registering [ 3.104115] Registering platform device 'regulatory.0'. Parent at platform [ 3.111004] device: 'regulatory.0': device_add [ 3.115007] bus: 'platform': add device regulatory.0 [ 3.120066] cfg80211: Calling CRDA to update world regulatory domain [ 3.127045] initcall cfg80211_init+0x0/0xb2 returned 0 after 27343 usecs [ 3.133006] calling wireless_nlevent_init+0x0/0xf @ 1 [ 3.138007] initcall wireless_nlevent_init+0x0/0xf returned 0 after 0 usecs [ 3.145004] calling rfkill_init+0x0/0x66 @ 1 [ 3.150003] device class 'rfkill': registering [ 3.154060] device: 'rfkill': device_add [ 3.158071] initcall rfkill_init+0x0/0x66 returned 0 after 7812 usecs [ 3.165004] calling sysctl_init+0x0/0x3b @ 1 [ 3.169005] initcall sysctl_init+0x0/0x3b returned 0 after 0 usecs [ 3.175005] calling print_ICs+0x0/0x455 @ 1 [ 3.180002] [ 3.180003] printing PIC contents [ 3.184004] ... PIC IMR: fffa [ 3.184999] ... PIC IRR: 0001 [ 3.191002] ... PIC ISR: 0001 [ 3.194003] ... PIC ELCR: 0828 [ 3.197003] printing local APIC contents on CPU#0/0: [ 3.197999] ... APIC ID: 00000000 (0) [ 3.197999] ... APIC VERSION: 00040010 [ 3.197999] ... APIC TASKPRI: 00000000 (00) [ 3.197999] ... APIC ARBPRI: 000000e0 (e0) [ 3.197999] ... APIC PROCPRI: 00000000 [ 3.197999] ... APIC LDR: 01000000 [ 3.197999] ... APIC DFR: ffffffff [ 3.197999] ... APIC SPIV: 000001ff [ 3.197999] ... APIC ISR field: [ 3.197999] 0000000000000000000000000000000000000000000000000000000000000000 [ 3.197999] ... APIC TMR field: [ 3.197999] 0000000000000000000000000000000000000000000000000000000000000000 [ 3.197999] ... APIC IRR field: [ 3.197999] 0000000000000000000000000000000000000000000000000000000000008000 [ 3.197999] ... APIC ESR: 00000000 [ 3.197999] ... APIC ICR: 000008fd [ 3.197999] ... APIC ICR2: 02000000 [ 3.197999] ... APIC LVTT: 000200ef [ 3.197999] ... APIC LVTPC: 00000400 [ 3.197999] ... APIC LVT0: 00010700 [ 3.197999] ... APIC LVT1: 00000400 [ 3.197999] ... APIC LVTERR: 000000fe [ 3.197999] ... APIC TMICT: 00003112 [ 3.197999] ... APIC TMCCT: 0000096b [ 3.197999] ... APIC TDCR: 00000003 [ 3.197999] [ 3.197292] number of MP IRQ sources: 17. [ 3.202002] number of IO-APIC #2 registers: 24. [ 3.206002] testing the IO APIC....................... [ 3.212005] [ 3.213001] IO APIC #2...... [ 3.216002] .... register #00: 00000000 [ 3.220002] ....... : physical APIC id: 00 [ 3.224002] ....... : Delivery Type: 0 [ 3.228002] ....... : LTS : 0 [ 3.232002] .... register #01: 00170011 [ 3.236002] ....... : max redirection entries: 0017 [ 3.241002] ....... : PRQ implemented: 0 [ 3.245002] ....... : IO APIC version: 0011 [ 3.250002] .... register #02: 00000000 [ 3.254002] ....... : arbitration: 00 [ 3.258001] .... IRQ redirection table: [ 3.262002] NR Dst Mask Trig IRR Pol Stat Dmod Deli Vect: [ 3.267004] 00 003 0 0 0 0 0 1 1 30 [ 3.273004] 01 003 0 0 0 0 0 1 1 31 [ 3.278004] 02 000 1 0 0 0 0 0 0 00 [ 3.283004] 03 003 1 1 0 1 0 1 1 33 [ 3.288004] 04 003 0 0 0 0 0 1 1 34 [ 3.294004] 05 003 1 1 0 1 0 1 1 35 [ 3.299004] 06 003 0 0 0 0 0 1 1 36 [ 3.304004] 07 003 1 0 0 0 0 1 1 37 [ 3.309004] 08 003 0 0 0 0 0 1 1 38 [ 3.315004] 09 003 0 0 0 0 0 1 1 39 [ 3.320004] 0a 003 0 0 0 0 0 1 1 3A [ 3.325004] 0b 003 1 1 0 1 0 1 1 3B [ 3.331004] 0c 003 0 0 0 0 0 1 1 3C [ 3.336004] 0d 003 0 0 0 0 0 1 1 3D [ 3.341004] 0e 003 0 0 0 0 0 1 1 3E [ 3.346004] 0f 003 0 0 0 0 0 1 1 3F [ 3.352004] 10 000 1 0 0 0 0 0 0 00 [ 3.357004] 11 000 1 0 0 0 0 0 0 00 [ 3.362004] 12 000 1 0 0 0 0 0 0 00 [ 3.367004] 13 000 1 0 0 0 0 0 0 00 [ 3.373004] 14 000 1 0 0 0 0 0 0 00 [ 3.378008] 15 000 1 0 0 0 0 0 0 00 [ 3.383004] 16 000 1 0 0 0 0 0 0 00 [ 3.388004] 17 000 1 0 0 0 0 0 0 00 [ 3.394002] IRQ to pin mappings: [ 3.397002] IRQ0 -> 0:0 [ 3.399190] IRQ1 -> 0:1 [ 3.402198] IRQ3 -> 0:3 [ 3.404190] IRQ4 -> 0:4 [ 3.407001] IRQ5 -> 0:5 [ 3.409197] IRQ6 -> 0:6 [ 3.412002] IRQ7 -> 0:7 [ 3.414197] IRQ8 -> 0:8 [ 3.417001] IRQ9 -> 0:9 [ 3.419191] IRQ10 -> 0:10 [ 3.422197] IRQ11 -> 0:11 [ 3.424821] IRQ12 -> 0:12 [ 3.427189] IRQ13 -> 0:13 [ 3.430197] IRQ14 -> 0:14 [ 3.432822] IRQ15 -> 0:15 [ 3.435200] .................................... done. [ 3.440004] initcall print_ICs+0x0/0x455 returned 0 after 253906 usecs [ 3.447003] calling hpet_late_init+0x0/0xbb @ 1 [ 3.451004] initcall hpet_late_init+0x0/0xbb returned -19 after 0 usecs [ 3.458004] calling clocksource_done_booting+0x0/0x33 @ 1 [ 3.464005] Switching to clocksource jiffies [ 3.468004] initcall clocksource_done_booting+0x0/0x33 returned 0 after 3906 usecs [ 3.475004] calling init_pipe_fs+0x0/0x3d @ 1 [ 3.480045] initcall init_pipe_fs+0x0/0x3d returned 0 after 0 usecs [ 3.486004] calling eventpoll_init+0x0/0xc0 @ 1 [ 3.491013] initcall eventpoll_init+0x0/0xc0 returned 0 after 0 usecs [ 3.497003] calling anon_inode_init+0x0/0xe8 @ 1 [ 3.502033] initcall anon_inode_init+0x0/0xe8 returned 0 after 0 usecs [ 3.509004] calling fscache_init+0x0/0x96 @ 1 [ 3.513009] Slow work thread pool: Starting up [ 3.517034] Slow work thread pool: Ready [ 3.521026] FS-Cache: Loaded [ 3.524005] initcall fscache_init+0x0/0x96 returned 0 after 10742 usecs [ 3.531003] calling cachefiles_init+0x0/0x8e @ 1 [ 3.536006] device: 'cachefiles': device_add [ 3.540065] CacheFiles: Loaded [ 3.543005] initcall cachefiles_init+0x0/0x8e returned 0 after 6835 usecs [ 3.550004] calling tomoyo_initerface_init+0x0/0xe1 @ 1 [ 3.555004] initcall tomoyo_initerface_init+0x0/0xe1 returned 0 after 0 usecs [ 3.562004] calling blk_scsi_ioctl_init+0x0/0x288 @ 1 [ 3.567004] initcall blk_scsi_ioctl_init+0x0/0x288 returned 0 after 0 usecs [ 3.574003] calling chr_dev_init+0x0/0xa4 @ 1 [ 3.579013] device class 'mem': registering [ 3.583079] device: 'mem': device_add [ 3.587066] device: 'kmem': device_add [ 3.591061] device: 'null': device_add [ 3.595069] device: 'port': device_add [ 3.599029] device: 'zero': device_add [ 3.602067] device: 'full': device_add [ 3.606064] device: 'random': device_add [ 3.610068] device: 'urandom': device_add [ 3.615062] device: 'kmsg': device_add [ 3.618065] initcall chr_dev_init+0x0/0xa4 returned 0 after 38085 usecs [ 3.625004] calling firmware_class_init+0x0/0x61 @ 1 [ 3.630002] device class 'firmware': registering [ 3.635077] initcall firmware_class_init+0x0/0x61 returned 0 after 4882 usecs [ 3.642005] calling ieee1394_init+0x0/0x208 @ 1 [ 3.647094] bus: 'ieee1394': registered [ 3.651007] device class 'ieee1394_host': registering [ 3.656062] device class 'ieee1394_protocol': registering [ 3.661062] device class 'ieee1394_node': registering [ 3.666080] device class 'ieee1394': registering [ 3.671066] bus: 'ieee1394': add driver nodemgr [ 3.676059] initcall ieee1394_init+0x0/0x208 returned 0 after 28320 usecs [ 3.683006] calling cpufreq_gov_performance_init+0x0/0xf @ 1 [ 3.688017] initcall cpufreq_gov_performance_init+0x0/0xf returned 0 after 0 usecs [ 3.696003] calling ssb_modinit+0x0/0x3f @ 1 [ 3.700057] bus: 'ssb': registered [ 3.704016] initcall ssb_modinit+0x0/0x3f returned 0 after 3906 usecs [ 3.710004] calling pcibios_assign_resources+0x0/0x66 @ 1 [ 3.716165] pci 0000:00:09.0: PCI bridge to [bus 05-05] [ 3.721007] pci 0000:00:09.0: bridge window [io 0xc000-0xcfff] [ 3.727015] pci 0000:00:09.0: bridge window [mem 0xda000000-0xda0fffff] [ 3.734010] pci 0000:00:09.0: bridge window [mem pref disabled] [ 3.740020] pci 0000:00:0b.0: PCI bridge to [bus 04-04] [ 3.745002] pci 0000:00:0b.0: bridge window [io disabled] [ 3.751014] pci 0000:00:0b.0: bridge window [mem disabled] [ 3.757010] pci 0000:00:0b.0: bridge window [mem pref disabled] [ 3.763020] pci 0000:00:0c.0: PCI bridge to [bus 03-03] [ 3.768002] pci 0000:00:0c.0: bridge window [io disabled] [ 3.774014] pci 0000:00:0c.0: bridge window [mem disabled] [ 3.779010] pci 0000:00:0c.0: bridge window [mem pref disabled] [ 3.785020] pci 0000:00:0d.0: PCI bridge to [bus 02-02] [ 3.791002] pci 0000:00:0d.0: bridge window [io disabled] [ 3.796014] pci 0000:00:0d.0: bridge window [mem disabled] [ 3.802010] pci 0000:00:0d.0: bridge window [mem pref disabled] [ 3.808024] pci 0000:01:00.0: BAR 6: assigned [mem 0xd8000000-0xd801ffff pref] [ 3.815003] pci 0000:00:0e.0: PCI bridge to [bus 01-01] [ 3.821007] pci 0000:00:0e.0: bridge window [io 0xb000-0xbfff] [ 3.827015] pci 0000:00:0e.0: bridge window [mem 0xd8000000-0xd9ffffff] [ 3.834011] pci 0000:00:0e.0: bridge window [mem 0xd0000000-0xd7ffffff 64bit pref] [ 3.841040] pci 0000:00:09.0: setting latency timer to 64 [ 3.847039] pci 0000:00:0b.0: setting latency timer to 64 [ 3.852039] pci 0000:00:0c.0: setting latency timer to 64 [ 3.858039] pci 0000:00:0d.0: setting latency timer to 64 [ 3.863039] pci 0000:00:0e.0: setting latency timer to 64 [ 3.868008] pci_bus 0000:00: resource 0 [io 0x0000-0xffff] [ 3.874003] pci_bus 0000:00: resource 1 [mem 0x00000000-0xffffffff] [ 3.880003] pci_bus 0000:05: resource 0 [io 0xc000-0xcfff] [ 3.886003] pci_bus 0000:05: resource 1 [mem 0xda000000-0xda0fffff] [ 3.892002] pci_bus 0000:05: resource 3 [io 0x0000-0xffff] [ 3.898002] pci_bus 0000:05: resource 4 [mem 0x00000000-0xffffffff] [ 3.904004] pci_bus 0000:01: resource 0 [io 0xb000-0xbfff] [ 3.910003] pci_bus 0000:01: resource 1 [mem 0xd8000000-0xd9ffffff] [ 3.916003] pci_bus 0000:01: resource 2 [mem 0xd0000000-0xd7ffffff 64bit pref] [ 3.923004] initcall pcibios_assign_resources+0x0/0x66 returned 0 after 202148 usecs [ 3.931003] calling sysctl_core_init+0x0/0x2d @ 1 [ 3.936034] initcall sysctl_core_init+0x0/0x2d returned 0 after 0 usecs [ 3.942003] calling inet_init+0x0/0x1cb @ 1 [ 3.946007] NET: Registered protocol family 2 [ 3.951187] IP route cache hash table entries: 32768 (order: 5, 131072 bytes) [ 3.959339] TCP established hash table entries: 131072 (order: 8, 1048576 bytes) [ 3.967472] TCP bind hash table entries: 65536 (order: 9, 2097152 bytes) [ 3.977263] TCP: Hash tables configured (established 131072 bind 65536) [ 3.983031] TCP reno registered [ 3.987024] UDP hash table entries: 512 (order: 3, 40960 bytes) [ 3.993059] UDP-Lite hash table entries: 512 (order: 3, 40960 bytes) [ 3.999473] initcall inet_init+0x0/0x1cb returned 0 after 51757 usecs [ 4.006005] calling af_unix_init+0x0/0x47 @ 1 [ 4.010004] NET: Registered protocol family 1 [ 4.015018] initcall af_unix_init+0x0/0x47 returned 0 after 4882 usecs [ 4.021003] calling init_sunrpc+0x0/0x53 @ 1 [ 4.026290] RPC: Registered udp transport module. [ 4.031018] RPC: Registered tcp transport module. [ 4.035004] RPC: Registered tcp NFSv4.1 backchannel transport module. [ 4.042011] initcall init_sunrpc+0x0/0x53 returned 0 after 15625 usecs [ 4.043010] calling pci_apply_final_quirks+0x0/0xe6 @ 1 [ 4.044011] pci 0000:00:00.0: calling nv_msi_ht_cap_quirk_leaf+0x0/0xc [ 4.045067] pci 0000:00:00.0: calling quirk_cardbus_legacy+0x0/0x1a [ 4.046004] pci 0000:00:00.0: calling quirk_usb_early_handoff+0x0/0x4d6 [ 4.047005] pci 0000:00:00.0: calling pci_fixup_video+0x0/0x93 [ 4.048011] pci 0000:00:01.0: calling nv_msi_ht_cap_quirk_leaf+0x0/0xc [ 4.049008] pci 0000:00:01.0: calling quirk_cardbus_legacy+0x0/0x1a [ 4.050003] pci 0000:00:01.0: calling quirk_usb_early_handoff+0x0/0x4d6 [ 4.051004] pci 0000:00:01.0: calling pci_fixup_video+0x0/0x93 [ 4.052010] pci 0000:00:01.1: calling nv_msi_ht_cap_quirk_leaf+0x0/0xc [ 4.053021] pci 0000:00:01.1: calling quirk_cardbus_legacy+0x0/0x1a [ 4.054003] pci 0000:00:01.1: calling quirk_usb_early_handoff+0x0/0x4d6 [ 4.055004] pci 0000:00:01.1: calling pci_fixup_video+0x0/0x93 [ 4.056010] pci 0000:00:02.0: calling nv_msi_ht_cap_quirk_leaf+0x0/0xc [ 4.057021] pci 0000:00:02.0: calling quirk_cardbus_legacy+0x0/0x1a [ 4.058003] pci 0000:00:02.0: calling quirk_usb_early_handoff+0x0/0x4d6 [ 4.070028] pci 0000:00:02.0: calling pci_fixup_video+0x0/0x93 [ 4.071011] pci 0000:00:02.1: calling nv_msi_ht_cap_quirk_leaf+0x0/0xc [ 4.072031] pci 0000:00:02.1: calling quirk_cardbus_legacy+0x0/0x1a [ 4.073003] pci 0000:00:02.1: calling quirk_usb_early_handoff+0x0/0x4d6 [ 4.074031] pci 0000:00:02.1: calling pci_fixup_video+0x0/0x93 [ 4.075011] pci 0000:00:04.0: calling nv_msi_ht_cap_quirk_leaf+0x0/0xc [ 4.076021] pci 0000:00:04.0: calling quirk_cardbus_legacy+0x0/0x1a [ 4.077003] pci 0000:00:04.0: calling quirk_usb_early_handoff+0x0/0x4d6 [ 4.078003] pci 0000:00:04.0: calling pci_fixup_video+0x0/0x93 [ 4.079010] pci 0000:00:06.0: calling nv_msi_ht_cap_quirk_leaf+0x0/0xc [ 4.080021] pci 0000:00:06.0: calling quirk_cardbus_legacy+0x0/0x1a [ 4.081003] pci 0000:00:06.0: calling quirk_usb_early_handoff+0x0/0x4d6 [ 4.082003] pci 0000:00:06.0: calling pci_fixup_video+0x0/0x93 [ 4.083010] pci 0000:00:09.0: calling nv_msi_ht_cap_quirk_leaf+0x0/0xc [ 4.084008] pci 0000:00:09.0: calling quirk_cardbus_legacy+0x0/0x1a [ 4.085003] pci 0000:00:09.0: calling quirk_usb_early_handoff+0x0/0x4d6 [ 4.086003] pci 0000:00:09.0: calling pci_fixup_video+0x0/0x93 [ 4.087010] pci 0000:00:0a.0: calling nv_msi_ht_cap_quirk_leaf+0x0/0xc [ 4.088021] pci 0000:00:0a.0: calling quirk_cardbus_legacy+0x0/0x1a [ 4.089003] pci 0000:00:0a.0: calling quirk_usb_early_handoff+0x0/0x4d6 [ 4.090003] pci 0000:00:0a.0: calling pci_fixup_video+0x0/0x93 [ 4.091010] pci 0000:00:0b.0: calling nv_msi_ht_cap_quirk_leaf+0x0/0xc [ 4.093015] pci 0000:00:00.0: Found enabled HT MSI Mapping [ 4.094004] pci 0000:00:0b.0: calling quirk_nvidia_ck804_msi_ht_cap+0x0/0x68 [ 4.095040] pci 0000:00:0b.0: Found disabled HT MSI Mapping [ 4.096038] pci 0000:00:00.0: Found enabled HT MSI Mapping [ 4.097004] pci 0000:00:0b.0: calling quirk_nvidia_ck804_pcie_aer_ext_cap+0x0/0x56 [ 4.098004] pci 0000:00:0b.0: calling quirk_cardbus_legacy+0x0/0x1a [ 4.099003] pci 0000:00:0b.0: calling quirk_usb_early_handoff+0x0/0x4d6 [ 4.100003] pci 0000:00:0b.0: calling pci_fixup_video+0x0/0x93 [ 4.101010] pci 0000:00:0c.0: calling nv_msi_ht_cap_quirk_leaf+0x0/0xc [ 4.102304] pci 0000:00:00.0: Found enabled HT MSI Mapping [ 4.103004] pci 0000:00:0c.0: calling quirk_nvidia_ck804_msi_ht_cap+0x0/0x68 [ 4.104040] pci 0000:00:0c.0: Found disabled HT MSI Mapping [ 4.105038] pci 0000:00:00.0: Found enabled HT MSI Mapping [ 4.106005] pci 0000:00:0c.0: calling quirk_nvidia_ck804_pcie_aer_ext_cap+0x0/0x56 [ 4.107004] pci 0000:00:0c.0: calling quirk_cardbus_legacy+0x0/0x1a [ 4.108003] pci 0000:00:0c.0: calling quirk_usb_early_handoff+0x0/0x4d6 [ 4.109003] pci 0000:00:0c.0: calling pci_fixup_video+0x0/0x93 [ 4.110011] pci 0000:00:0d.0: calling nv_msi_ht_cap_quirk_leaf+0x0/0xc [ 4.111350] pci 0000:00:00.0: Found enabled HT MSI Mapping [ 4.112004] pci 0000:00:0d.0: calling quirk_nvidia_ck804_msi_ht_cap+0x0/0x68 [ 4.113040] pci 0000:00:0d.0: Found disabled HT MSI Mapping [ 4.114038] pci 0000:00:00.0: Found enabled HT MSI Mapping [ 4.115004] pci 0000:00:0d.0: calling quirk_nvidia_ck804_pcie_aer_ext_cap+0x0/0x56 [ 4.116004] pci 0000:00:0d.0: calling quirk_cardbus_legacy+0x0/0x1a [ 4.117003] pci 0000:00:0d.0: calling quirk_usb_early_handoff+0x0/0x4d6 [ 4.118003] pci 0000:00:0d.0: calling pci_fixup_video+0x0/0x93 [ 4.119011] pci 0000:00:0e.0: calling nv_msi_ht_cap_quirk_leaf+0x0/0xc [ 4.120396] pci 0000:00:00.0: Found enabled HT MSI Mapping [ 4.122004] pci 0000:00:0e.0: calling quirk_nvidia_ck804_msi_ht_cap+0x0/0x68 [ 4.123040] pci 0000:00:0e.0: Found disabled HT MSI Mapping [ 4.124038] pci 0000:00:00.0: Found enabled HT MSI Mapping [ 4.125004] pci 0000:00:0e.0: calling quirk_nvidia_ck804_pcie_aer_ext_cap+0x0/0x56 [ 4.126004] pci 0000:00:0e.0: calling quirk_cardbus_legacy+0x0/0x1a [ 4.127003] pci 0000:00:0e.0: calling quirk_usb_early_handoff+0x0/0x4d6 [ 4.128003] pci 0000:00:0e.0: calling pci_fixup_video+0x0/0x93 [ 4.129011] pci 0000:00:18.0: calling quirk_cardbus_legacy+0x0/0x1a [ 4.130003] pci 0000:00:18.0: calling quirk_usb_early_handoff+0x0/0x4d6 [ 4.131003] pci 0000:00:18.0: calling pci_fixup_video+0x0/0x93 [ 4.132011] pci 0000:00:18.1: calling quirk_cardbus_legacy+0x0/0x1a [ 4.133003] pci 0000:00:18.1: calling quirk_usb_early_handoff+0x0/0x4d6 [ 4.134003] pci 0000:00:18.1: calling pci_fixup_video+0x0/0x93 [ 4.135010] pci 0000:00:18.2: calling quirk_cardbus_legacy+0x0/0x1a [ 4.136003] pci 0000:00:18.2: calling quirk_usb_early_handoff+0x0/0x4d6 [ 4.137003] pci 0000:00:18.2: calling pci_fixup_video+0x0/0x93 [ 4.138011] pci 0000:00:18.3: calling quirk_cardbus_legacy+0x0/0x1a [ 4.139003] pci 0000:00:18.3: calling quirk_usb_early_handoff+0x0/0x4d6 [ 4.140003] pci 0000:00:18.3: calling pci_fixup_video+0x0/0x93 [ 4.141011] pci 0000:05:07.0: calling quirk_cardbus_legacy+0x0/0x1a [ 4.142003] pci 0000:05:07.0: calling quirk_usb_early_handoff+0x0/0x4d6 [ 4.143003] pci 0000:05:07.0: calling pci_fixup_video+0x0/0x93 [ 4.144011] pci 0000:01:00.0: calling quirk_cardbus_legacy+0x0/0x1a [ 4.145003] pci 0000:01:00.0: calling quirk_usb_early_handoff+0x0/0x4d6 [ 4.146003] pci 0000:01:00.0: calling pci_fixup_video+0x0/0x93 [ 4.147011] pci 0000:01:00.0: Boot video device [ 4.148011] pci 0000:01:00.1: calling quirk_cardbus_legacy+0x0/0x1a [ 4.149003] pci 0000:01:00.1: calling quirk_usb_early_handoff+0x0/0x4d6 [ 4.150003] pci 0000:01:00.1: calling pci_fixup_video+0x0/0x93 [ 4.151008] PCI: CLS 32 bytes, default 64 [ 4.152004] initcall pci_apply_final_quirks+0x0/0xe6 returned 0 after 105468 usecs [ 4.153005] calling populate_rootfs+0x0/0x203 @ 1 [ 4.154197] initcall populate_rootfs+0x0/0x203 returned 0 after 0 usecs [ 4.155003] calling pci_iommu_init+0x0/0xd @ 1 [ 4.156003] initcall pci_iommu_init+0x0/0xd returned 0 after 0 usecs [ 4.157003] calling irqfd_module_init+0x0/0x32 @ 1 [ 4.158041] initcall irqfd_module_init+0x0/0x32 returned 0 after 0 usecs [ 4.159004] calling vmx_init+0x0/0x200 @ 1 [ 4.160016] kvm: no hardware support [ 4.161011] initcall vmx_init+0x0/0x200 returned -95 after 976 usecs [ 4.162004] initcall vmx_init+0x0/0x200 returned with error code -95 [ 4.163005] calling svm_init+0x0/0x16 @ 1 [ 4.164002] has_svm: svm not available [ 4.165001] kvm: no hardware support [ 4.166003] initcall svm_init+0x0/0x16 returned -95 after 1953 usecs [ 4.167004] initcall svm_init+0x0/0x16 returned with error code -95 [ 4.168003] calling i8259A_init_sysfs+0x0/0x1d @ 1 [ 4.169002] Registering sysdev class 'i8259' [ 4.170060] Registering sys device of class 'i8259' [ 4.171010] Registering sys device 'i82590' [ 4.172050] initcall i8259A_init_sysfs+0x0/0x1d returned 0 after 2929 usecs [ 4.173004] calling sbf_init+0x0/0xec @ 1 [ 4.174004] initcall sbf_init+0x0/0xec returned 0 after 0 usecs [ 4.175003] calling i8237A_init_sysfs+0x0/0x1d @ 1 [ 4.176002] Registering sysdev class 'i8237' [ 4.177052] Registering sys device of class 'i8237' [ 4.178024] Registering sys device 'i82370' [ 4.179072] initcall i8237A_init_sysfs+0x0/0x1d returned 0 after 2929 usecs [ 4.180021] calling add_rtc_cmos+0x0/0x31 @ 1 [ 4.181006] Registering platform device 'rtc_cmos'. Parent at platform [ 4.182003] device: 'rtc_cmos': device_add [ 4.183008] bus: 'platform': add device rtc_cmos [ 4.184082] platform rtc_cmos: registered platform RTC device (no PNP device found) [ 4.185022] initcall add_rtc_cmos+0x0/0x31 returned 0 after 3906 usecs [ 4.186004] calling cache_sysfs_init+0x0/0x278 @ 1 [ 4.188090] initcall cache_sysfs_init+0x0/0x278 returned 0 after 976 usecs [ 4.189058] calling mcheck_init_device+0x0/0x259 @ 1 [ 4.190004] Registering sysdev class 'machinecheck' [ 4.191046] Registering sys device of class 'machinecheck' [ 4.192066] Registering sys device 'machinecheck0' [ 4.193069] Registering sys device of class 'machinecheck' [ 4.194030] Registering sys device 'machinecheck1' [ 4.195073] device: 'mcelog': device_add [ 4.196063] initcall mcheck_init_device+0x0/0x259 returned 0 after 5859 usecs [ 4.197024] calling threshold_init_device+0x0/0x62 @ 1 [ 4.198004] initcall threshold_init_device+0x0/0x62 returned 0 after 0 usecs [ 4.199004] calling inject_init+0x0/0x25 @ 1 [ 4.200002] Machine check injector initialized [ 4.201014] initcall inject_init+0x0/0x25 returned 0 after 976 usecs [ 4.202003] calling powernow_k6_init+0x0/0x86 @ 1 [ 4.203003] initcall powernow_k6_init+0x0/0x86 returned -19 after 0 usecs [ 4.204003] calling eps_init+0x0/0x3e @ 1 [ 4.205004] initcall eps_init+0x0/0x3e returned -19 after 0 usecs [ 4.206003] calling cpufreq_gx_init+0x0/0x12a @ 1 [ 4.207004] initcall cpufreq_gx_init+0x0/0x12a returned -19 after 0 usecs [ 4.208003] calling speedstep_init+0x0/0x1e6 @ 1 [ 4.209005] initcall speedstep_init+0x0/0x1e6 returned -19 after 0 usecs [ 4.210003] calling speedstep_init+0x0/0xf9 @ 1 [ 4.211003] initcall speedstep_init+0x0/0xf9 returned -19 after 0 usecs [ 4.212003] calling nforce2_init+0x0/0x5e @ 1 [ 4.213013] cpufreq-nforce2: No nForce2 chipset. [ 4.214003] initcall nforce2_init+0x0/0x5e returned -19 after 976 usecs [ 4.215003] calling ioapic_init_sysfs+0x0/0x87 @ 1 [ 4.216002] Registering sysdev class 'ioapic' [ 4.218000] Registering sys device of class 'ioapic' [ 4.222010] Registering sys device 'ioapic0' [ 4.227060] initcall ioapic_init_sysfs+0x0/0x87 returned 0 after 10742 usecs [ 4.234005] calling init_vmi_clocksource+0x0/0xc6 @ 1 [ 4.239005] initcall init_vmi_clocksource+0x0/0xc6 returned 0 after 0 usecs [ 4.246003] calling add_pcspkr+0x0/0x24 @ 1 [ 4.250007] Registering platform device 'pcspkr'. Parent at platform [ 4.257004] device: 'pcspkr': device_add [ 4.261007] bus: 'platform': add device pcspkr [ 4.265065] initcall add_pcspkr+0x0/0x24 returned 0 after 14648 usecs [ 4.272005] calling scx200_init+0x0/0x20 @ 1 [ 4.276002] scx200: NatSemi SCx200 Driver [ 4.280004] bus: 'pci': add driver scx200 [ 4.284104] initcall scx200_init+0x0/0x20 returned 0 after 7812 usecs [ 4.291005] calling pt_dump_init+0x0/0x64 @ 1 [ 4.295024] initcall pt_dump_init+0x0/0x64 returned 0 after 0 usecs [ 4.301004] calling aes_init+0x0/0xf @ 1 [ 4.305110] initcall aes_init+0x0/0xf returned 0 after 0 usecs [ 4.311005] calling init+0x0/0xf @ 1 [ 4.315169] initcall init+0x0/0xf returned 0 after 0 usecs [ 4.321005] calling init+0x0/0xf @ 1 [ 4.324026] initcall init+0x0/0xf returned 0 after 0 usecs [ 4.330005] calling crc32c_intel_mod_init+0x0/0x1d @ 1 [ 4.335004] initcall crc32c_intel_mod_init+0x0/0x1d returned -19 after 0 usecs [ 4.342004] calling init_sched_debug_procfs+0x0/0x27 @ 1 [ 4.348010] initcall init_sched_debug_procfs+0x0/0x27 returned 0 after 0 usecs [ 4.355004] calling proc_schedstat_init+0x0/0x1c @ 1 [ 4.360008] initcall proc_schedstat_init+0x0/0x1c returned 0 after 0 usecs [ 4.367003] calling proc_execdomains_init+0x0/0x1c @ 1 [ 4.372006] initcall proc_execdomains_init+0x0/0x1c returned 0 after 0 usecs [ 4.379003] calling ioresources_init+0x0/0x31 @ 1 [ 4.384010] initcall ioresources_init+0x0/0x31 returned 0 after 0 usecs [ 4.391003] calling uid_cache_init+0x0/0x78 @ 1 [ 4.395017] initcall uid_cache_init+0x0/0x78 returned 0 after 0 usecs [ 4.402003] calling init_posix_timers+0x0/0x14b @ 1 [ 4.407005] initcall init_posix_timers+0x0/0x14b returned 0 after 0 usecs [ 4.413003] calling init_posix_cpu_timers+0x0/0xb7 @ 1 [ 4.419004] initcall init_posix_cpu_timers+0x0/0xb7 returned 0 after 0 usecs [ 4.426003] calling nsproxy_cache_init+0x0/0x27 @ 1 [ 4.431004] initcall nsproxy_cache_init+0x0/0x27 returned 0 after 0 usecs [ 4.437003] calling timekeeping_init_device+0x0/0x1d @ 1 [ 4.443002] Registering sysdev class 'timekeeping' [ 4.448065] Registering sys device of class 'timekeeping' [ 4.453009] Registering sys device 'timekeeping0' [ 4.458064] initcall timekeeping_init_device+0x0/0x1d returned 0 after 14648 usecs [ 4.465004] calling init_clocksource_sysfs+0x0/0x43 @ 1 [ 4.471003] Registering sysdev class 'clocksource' [ 4.476062] Registering sys device of class 'clocksource' [ 4.481007] Registering sys device 'clocksource0' [ 4.486054] initcall init_clocksource_sysfs+0x0/0x43 returned 0 after 14648 usecs [ 4.493004] calling init_timer_list_procfs+0x0/0x27 @ 1 [ 4.499008] initcall init_timer_list_procfs+0x0/0x27 returned 0 after 0 usecs [ 4.506003] calling init_tstats_procfs+0x0/0x27 @ 1 [ 4.511007] initcall init_tstats_procfs+0x0/0x27 returned 0 after 0 usecs [ 4.518003] calling lockdep_proc_init+0x0/0x37 @ 1 [ 4.522011] initcall lockdep_proc_init+0x0/0x37 returned 0 after 0 usecs [ 4.529003] calling futex_init+0x0/0x70 @ 1 [ 4.533019] initcall futex_init+0x0/0x70 returned 0 after 976 usecs [ 4.540004] calling init_rttest+0x0/0x107 @ 1 [ 4.544003] Registering sysdev class 'rttest' [ 4.549075] Registering sys device of class 'rttest' [ 4.554008] Registering sys device 'rttest0' [ 4.558058] Registering sys device of class 'rttest' [ 4.563007] Registering sys device 'rttest1' [ 4.567059] Registering sys device of class 'rttest' [ 4.572008] Registering sys device 'rttest2' [ 4.577065] Registering sys device of class 'rttest' [ 4.582008] Registering sys device 'rttest3' [ 4.586058] Registering sys device of class 'rttest' [ 4.591008] Registering sys device 'rttest4' [ 4.596048] Registering sys device of class 'rttest' [ 4.601008] Registering sys device 'rttest5' [ 4.605061] Registering sys device of class 'rttest' [ 4.610008] Registering sys device 'rttest6' [ 4.615010] Registering sys device of class 'rttest' [ 4.619007] Registering sys device 'rttest7' [ 4.624051] Initializing RT-Tester: OK [ 4.628005] initcall init_rttest+0x0/0x107 returned 0 after 82031 usecs [ 4.634004] calling proc_dma_init+0x0/0x1c @ 1 [ 4.639008] initcall proc_dma_init+0x0/0x1c returned 0 after 0 usecs [ 4.645003] calling kallsyms_init+0x0/0x1f @ 1 [ 4.650006] initcall kallsyms_init+0x0/0x1f returned 0 after 0 usecs [ 4.656004] calling backtrace_regression_test+0x0/0xd3 @ 1 [ 4.662002] ====[ backtrace testing ]=========== [ 4.666001] Testing a backtrace from process context. [ 4.671002] The following trace is a kernel self test and not a bug! [ 4.678004] Pid: 1, comm: swapper Not tainted 2.6.33-rc6-00072-gab65832 #14406 [ 4.685002] Call Trace: [ 4.687005] [<c1af1ffa>] ? printk+0xf/0x11 [ 4.691004] [<c10703df>] backtrace_regression_test+0x2a/0xd3 [ 4.697004] [<c1064449>] ? ktime_get+0x58/0x95 [ 4.702004] [<c10703b5>] ? backtrace_regression_test+0x0/0xd3 [ 4.708004] [<c1001048>] ? do_one_initcall+0x43/0x154 [ 4.713003] [<c1001051>] do_one_initcall+0x4c/0x154 [ 4.718005] [<c215430a>] kernel_init+0x112/0x163 [ 4.722004] [<c21541f8>] ? kernel_init+0x0/0x163 [ 4.727004] [<c1021036>] kernel_thread_helper+0x6/0x10 [ 4.732003] Testing a backtrace from irq context. [ 4.737002] The following trace is a kernel self test and not a bug! [ 4.743007] Pid: 6, comm: ksoftirqd/1 Not tainted 2.6.33-rc6-00072-gab65832 #14406 [ 4.751001] Call Trace: [ 4.753003] [<c10703a9>] backtrace_test_irq_callback+0x8/0x14 [ 4.759003] [<c1051328>] tasklet_action+0x80/0xe3 [ 4.764003] [<c1051868>] __do_softirq+0x88/0x10f [ 4.769003] [<c105191d>] do_softirq+0x2e/0x58 [ 4.773003] [<c105199a>] run_ksoftirqd+0x53/0xe0 [ 4.778003] [<c1051947>] ? run_ksoftirqd+0x0/0xe0 [ 4.783004] [<c105d5d7>] kthread+0x5f/0x64 [ 4.787003] [<c105d578>] ? kthread+0x0/0x64 [ 4.791003] [<c1021036>] kernel_thread_helper+0x6/0x10 [ 4.796003] Testing a saved backtrace. [ 4.797019] The following trace is a kernel self test and not a bug! [ 4.798003] [<c1028d56>] save_stack_trace+0x1d/0x39 [ 4.801003] [<c107046b>] backtrace_regression_test+0xb6/0xd3 [ 4.803001] [<c1001051>] do_one_initcall+0x4c/0x154 [ 4.805002] [<c215430a>] kernel_init+0x112/0x163 [ 4.807001] [<c1021036>] kernel_thread_helper+0x6/0x10 [ 4.809002] [<ffffffff>] 0xffffffff [ 4.811001] ====[ end of backtrace testing ]==== [ 4.812004] initcall backtrace_regression_test+0x0/0xd3 returned 0 after 146484 usecs [ 4.813005] calling ikconfig_init+0x0/0x3a @ 1 [ 4.814011] initcall ikconfig_init+0x0/0x3a returned 0 after 0 usecs [ 4.815003] calling audit_init+0x0/0x122 @ 1 [ 4.816002] audit: initializing netlink socket (disabled) [ 4.817052] type=2000 audit(1265122153.816:1): initialized [ 4.819008] initcall audit_init+0x0/0x122 returned 0 after 2929 usecs [ 4.820003] calling audit_tree_init+0x0/0x3b @ 1 [ 4.821005] initcall audit_tree_init+0x0/0x3b returned 0 after 0 usecs [ 4.822003] calling hung_task_init+0x0/0x42 @ 1 [ 4.823044] initcall hung_task_init+0x0/0x42 returned 0 after 0 usecs [ 4.824007] calling rcuclassic_trace_init+0x0/0xdb @ 1 [ 4.825062] initcall rcuclassic_trace_init+0x0/0xdb returned 0 after 0 usecs [ 4.826003] calling utsname_sysctl_init+0x0/0x11 @ 1 [ 4.827046] initcall utsname_sysctl_init+0x0/0x11 returned 0 after 0 usecs [ 4.828004] calling init_lstats_procfs+0x0/0x1f @ 1 [ 4.829007] initcall init_lstats_procfs+0x0/0x1f returned 0 after 0 usecs [ 4.830003] calling perf_event_sysfs_init+0x0/0x14 @ 1 [ 4.831011] initcall perf_event_sysfs_init+0x0/0x14 returned 0 after 0 usecs [ 4.832005] calling init_per_zone_wmark_min+0x0/0x59 @ 1 [ 4.833048] initcall init_per_zone_wmark_min+0x0/0x59 returned 0 after 0 usecs [ 4.834003] calling kswapd_init+0x0/0x13 @ 1 [ 4.835043] initcall kswapd_init+0x0/0x13 returned 0 after 0 usecs [ 4.836006] calling setup_vmstat+0x0/0xa2 @ 1 [ 4.837030] initcall setup_vmstat+0x0/0xa2 returned 0 after 0 usecs [ 4.838004] calling mm_sysfs_init+0x0/0x22 @ 1 [ 4.839009] initcall mm_sysfs_init+0x0/0x22 returned 0 after 0 usecs [ 4.840003] calling proc_vmalloc_init+0x0/0x1f @ 1 [ 4.841007] initcall proc_vmalloc_init+0x0/0x1f returned 0 after 0 usecs [ 4.842005] calling init_emergency_pool+0x0/0x57 @ 1 [ 4.843086] highmem bounce pool size: 64 pages [ 4.844004] initcall init_emergency_pool+0x0/0x57 returned 0 after 976 usecs [ 4.845003] calling procswaps_init+0x0/0x1c @ 1 [ 4.846009] initcall procswaps_init+0x0/0x1c returned 0 after 0 usecs [ 4.847003] calling hugetlb_init+0x0/0x2b4 @ 1 [ 4.848003] HugeTLB registered 4 MB page size, pre-allocated 0 pages [ 4.849022] initcall hugetlb_init+0x0/0x2b4 returned 0 after 976 usecs [ 4.850005] calling ksm_init+0x0/0x155 @ 1 [ 4.852023] initcall ksm_init+0x0/0x155 returned 0 after 976 usecs [ 4.853004] calling pfn_inject_init+0x0/0x116 @ 1 [ 4.855107] initcall pfn_inject_init+0x0/0x116 returned 0 after 976 usecs [ 4.856004] calling fasync_init+0x0/0x24 @ 1 [ 4.857004] initcall fasync_init+0x0/0x24 returned 0 after 0 usecs [ 4.858003] calling proc_filesystems_init+0x0/0x1c @ 1 [ 4.859008] initcall proc_filesystems_init+0x0/0x1c returned 0 after 0 usecs [ 4.860003] calling dnotify_init+0x0/0x6f @ 1 [ 4.861021] initcall dnotify_init+0x0/0x6f returned 0 after 0 usecs [ 4.862003] calling inotify_setup+0x0/0x11 @ 1 [ 4.863003] initcall inotify_setup+0x0/0x11 returned 0 after 0 usecs [ 4.864003] calling inotify_user_setup+0x0/0x9e @ 1 [ 4.865039] initcall inotify_user_setup+0x0/0x9e returned 0 after 0 usecs [ 4.866003] calling aio_setup+0x0/0x8c @ 1 [ 4.867051] initcall aio_setup+0x0/0x8c returned 0 after 0 usecs [ 4.868003] calling proc_locks_init+0x0/0x1c @ 1 [ 4.869008] initcall proc_locks_init+0x0/0x1c returned 0 after 0 usecs [ 4.870003] calling init_mbcache+0x0/0x11 @ 1 [ 4.871004] initcall init_mbcache+0x0/0x11 returned 0 after 0 usecs [ 4.872003] calling dquot_init+0x0/0xc3 @ 1 [ 4.873002] VFS: Disk quotas dquot_6.5.2 [ 4.874066] Dquot-cache hash table entries: 1024 (order 0, 4096 bytes) [ 4.875004] initcall dquot_init+0x0/0xc3 returned 0 after 1953 usecs [ 4.876003] calling init_v1_quota_format+0x0/0xf @ 1 [ 4.877017] initcall init_v1_quota_format+0x0/0xf returned 0 after 0 usecs [ 4.878003] calling init_v2_quota_format+0x0/0x1d @ 1 [ 4.879004] initcall init_v2_quota_format+0x0/0x1d returned 0 after 0 usecs [ 4.880003] calling proc_cmdline_init+0x0/0x1c @ 1 [ 4.881007] initcall proc_cmdline_init+0x0/0x1c returned 0 after 0 usecs [ 4.882003] calling proc_cpuinfo_init+0x0/0x1c @ 1 [ 4.883006] initcall proc_cpuinfo_init+0x0/0x1c returned 0 after 0 usecs [ 4.884003] calling proc_devices_init+0x0/0x1c @ 1 [ 4.885006] initcall proc_devices_init+0x0/0x1c returned 0 after 0 usecs [ 4.886003] calling proc_interrupts_init+0x0/0x1c @ 1 [ 4.887007] initcall proc_interrupts_init+0x0/0x1c returned 0 after 0 usecs [ 4.888003] calling proc_loadavg_init+0x0/0x1c @ 1 [ 4.889007] initcall proc_loadavg_init+0x0/0x1c returned 0 after 0 usecs [ 4.890003] calling proc_meminfo_init+0x0/0x1c @ 1 [ 4.891007] initcall proc_meminfo_init+0x0/0x1c returned 0 after 0 usecs [ 4.892003] calling proc_stat_init+0x0/0x1c @ 1 [ 4.893034] initcall proc_stat_init+0x0/0x1c returned 0 after 0 usecs [ 4.894003] calling proc_uptime_init+0x0/0x1c @ 1 [ 4.895035] initcall proc_uptime_init+0x0/0x1c returned 0 after 0 usecs [ 4.896003] calling proc_version_init+0x0/0x1c @ 1 [ 4.898009] initcall proc_version_init+0x0/0x1c returned 0 after 976 usecs [ 4.899003] calling proc_softirqs_init+0x0/0x1c @ 1 [ 4.900007] initcall proc_softirqs_init+0x0/0x1c returned 0 after 0 usecs [ 4.901003] calling proc_kmsg_init+0x0/0x1f @ 1 [ 4.902007] initcall proc_kmsg_init+0x0/0x1f returned 0 after 0 usecs [ 4.903003] calling proc_page_init+0x0/0x37 @ 1 [ 4.904010] initcall proc_page_init+0x0/0x37 returned 0 after 0 usecs [ 4.905003] calling configfs_init+0x0/0xbb @ 1 [ 4.906015] initcall configfs_init+0x0/0xbb returned 0 after 0 usecs [ 4.907003] calling init_devpts_fs+0x0/0x3d @ 1 [ 4.908056] initcall init_devpts_fs+0x0/0x3d returned 0 after 0 usecs [ 4.909003] calling init_dlm+0x0/0x8f @ 1 [ 4.910094] device: 'dlm-control': device_add [ 4.911083] device: 'dlm-monitor': device_add [ 4.912065] device: 'dlm_plock': device_add [ 4.913072] DLM (built Feb 2 2010 11:49:10) installed [ 4.914019] initcall init_dlm+0x0/0x8f returned 0 after 3906 usecs [ 4.915004] calling init_ext3_fs+0x0/0x64 @ 1 [ 4.916023] initcall init_ext3_fs+0x0/0x64 returned 0 after 0 usecs [ 4.917004] calling init_ext4_fs+0x0/0x10f @ 1 [ 4.918018] EXT4-fs: Unable to register as ext3 (-16) [ 4.919005] initcall init_ext4_fs+0x0/0x10f returned 0 after 976 usecs [ 4.920003] calling journal_init+0x0/0x87 @ 1 [ 4.921006] initcall journal_init+0x0/0x87 returned 0 after 0 usecs [ 4.922004] calling journal_init+0x0/0x98 @ 1 [ 4.923009] initcall journal_init+0x0/0x98 returned 0 after 0 usecs [ 4.924003] calling init_cramfs_fs+0x0/0x2a @ 1 [ 4.925019] initcall init_cramfs_fs+0x0/0x2a returned 0 after 0 usecs [ 4.926021] calling init_squashfs_fs+0x0/0x5d @ 1 [ 4.927003] squashfs: version 4.0 (2009/01/31) Phillip Lougher [ 4.928004] initcall init_squashfs_fs+0x0/0x5d returned 0 after 976 usecs [ 4.929003] calling init_ramfs_fs+0x0/0xf @ 1 [ 4.930006] initcall init_ramfs_fs+0x0/0xf returned 0 after 0 usecs [ 4.931003] calling init_hugetlbfs_fs+0x0/0x82 @ 1 [ 4.932052] initcall init_hugetlbfs_fs+0x0/0x82 returned 0 after 0 usecs [ 4.933005] calling init_fat_fs+0x0/0x46 @ 1 [ 4.934004] initcall init_fat_fs+0x0/0x46 returned 0 after 0 usecs [ 4.935002] calling init_msdos_fs+0x0/0xf @ 1 [ 4.936004] initcall init_msdos_fs+0x0/0xf returned 0 after 0 usecs [ 4.937004] calling init_bfs_fs+0x0/0x54 @ 1 [ 4.938004] initcall init_bfs_fs+0x0/0x54 returned 0 after 0 usecs [ 4.939003] calling init_iso9660_fs+0x0/0x64 @ 1 [ 4.940012] initcall init_iso9660_fs+0x0/0x64 returned 0 after 0 usecs [ 4.941004] calling init_hfs_fs+0x0/0x50 @ 1 [ 4.942004] initcall init_hfs_fs+0x0/0x50 returned 0 after 0 usecs [ 4.943003] calling vxfs_init+0x0/0x4d @ 1 [ 4.944005] initcall vxfs_init+0x0/0x4d returned 0 after 0 usecs [ 4.945004] calling init_nfs_fs+0x0/0x148 @ 1 [ 4.946253] FS-Cache: Netfs 'nfs' registered for caching [ 4.947175] initcall init_nfs_fs+0x0/0x148 returned 0 after 976 usecs [ 4.948004] calling init_nlm+0x0/0x1c @ 1 [ 4.949047] initcall init_nlm+0x0/0x1c returned 0 after 0 usecs [ 4.950003] calling init_nls_cp437+0x0/0xf @ 1 [ 4.951017] initcall init_nls_cp437+0x0/0xf returned 0 after 0 usecs [ 4.952004] calling init_nls_cp775+0x0/0xf @ 1 [ 4.953003] initcall init_nls_cp775+0x0/0xf returned 0 after 0 usecs [ 4.954003] calling init_nls_cp850+0x0/0xf @ 1 [ 4.955003] initcall init_nls_cp850+0x0/0xf returned 0 after 0 usecs [ 4.956004] calling init_nls_cp852+0x0/0xf @ 1 [ 4.957003] initcall init_nls_cp852+0x0/0xf returned 0 after 0 usecs [ 4.958003] calling init_nls_cp855+0x0/0xf @ 1 [ 4.959003] initcall init_nls_cp855+0x0/0xf returned 0 after 0 usecs [ 4.960004] calling init_nls_cp857+0x0/0xf @ 1 [ 4.961003] initcall init_nls_cp857+0x0/0xf returned 0 after 0 usecs [ 4.962003] calling init_nls_cp860+0x0/0xf @ 1 [ 4.963003] initcall init_nls_cp860+0x0/0xf returned 0 after 0 usecs [ 4.964004] calling init_nls_cp861+0x0/0xf @ 1 [ 4.965003] initcall init_nls_cp861+0x0/0xf returned 0 after 0 usecs [ 4.966003] calling init_nls_cp862+0x0/0xf @ 1 [ 4.967003] initcall init_nls_cp862+0x0/0xf returned 0 after 0 usecs [ 4.968004] calling init_nls_cp863+0x0/0xf @ 1 [ 4.969003] initcall init_nls_cp863+0x0/0xf returned 0 after 0 usecs [ 4.970003] calling init_nls_cp864+0x0/0xf @ 1 [ 4.971003] initcall init_nls_cp864+0x0/0xf returned 0 after 0 usecs [ 4.972004] calling init_nls_cp865+0x0/0xf @ 1 [ 4.973003] initcall init_nls_cp865+0x0/0xf returned 0 after 0 usecs [ 4.974003] calling init_nls_cp869+0x0/0xf @ 1 [ 4.975003] initcall init_nls_cp869+0x0/0xf returned 0 after 0 usecs [ 4.976004] calling init_nls_cp874+0x0/0xf @ 1 [ 4.977003] initcall init_nls_cp874+0x0/0xf returned 0 after 0 usecs [ 4.978003] calling init_nls_cp932+0x0/0xf @ 1 [ 4.979003] initcall init_nls_cp932+0x0/0xf returned 0 after 0 usecs [ 4.980004] calling init_nls_euc_jp+0x0/0x39 @ 1 [ 4.981004] initcall init_nls_euc_jp+0x0/0x39 returned 0 after 0 usecs [ 4.982003] calling init_nls_cp936+0x0/0xf @ 1 [ 4.983003] initcall init_nls_cp936+0x0/0xf returned 0 after 0 usecs [ 4.984004] calling init_nls_cp950+0x0/0xf @ 1 [ 4.985003] initcall init_nls_cp950+0x0/0xf returned 0 after 0 usecs [ 4.986003] calling init_nls_cp1250+0x0/0xf @ 1 [ 4.987003] initcall init_nls_cp1250+0x0/0xf returned 0 after 0 usecs [ 4.988004] calling init_nls_ascii+0x0/0xf @ 1 [ 4.989003] initcall init_nls_ascii+0x0/0xf returned 0 after 0 usecs [ 4.990003] calling init_nls_iso8859_3+0x0/0xf @ 1 [ 4.991003] initcall init_nls_iso8859_3+0x0/0xf returned 0 after 0 usecs [ 4.992004] calling init_nls_iso8859_4+0x0/0xf @ 1 [ 4.993003] initcall init_nls_iso8859_4+0x0/0xf returned 0 after 0 usecs [ 4.994003] calling init_nls_iso8859_5+0x0/0xf @ 1 [ 4.995003] initcall init_nls_iso8859_5+0x0/0xf returned 0 after 0 usecs [ 4.996004] calling init_nls_iso8859_6+0x0/0xf @ 1 [ 4.997003] initcall init_nls_iso8859_6+0x0/0xf returned 0 after 0 usecs [ 4.998003] calling init_nls_iso8859_7+0x0/0xf @ 1 [ 4.999003] initcall init_nls_iso8859_7+0x0/0xf returned 0 after 0 usecs [ 5.000004] calling init_nls_iso8859_9+0x0/0xf @ 1 [ 5.001003] initcall init_nls_iso8859_9+0x0/0xf returned 0 after 0 usecs [ 5.002003] calling init_nls_iso8859_13+0x0/0xf @ 1 [ 5.003003] initcall init_nls_iso8859_13+0x0/0xf returned 0 after 0 usecs [ 5.004004] calling init_nls_iso8859_14+0x0/0xf @ 1 [ 5.005003] initcall init_nls_iso8859_14+0x0/0xf returned 0 after 0 usecs [ 5.006003] calling init_nls_iso8859_15+0x0/0xf @ 1 [ 5.007003] initcall init_nls_iso8859_15+0x0/0xf returned 0 after 0 usecs [ 5.008004] calling init_nls_utf8+0x0/0x1f @ 1 [ 5.009004] initcall init_nls_utf8+0x0/0x1f returned 0 after 0 usecs [ 5.010003] calling init_smb_fs+0x0/0x64 @ 1 [ 5.011006] initcall init_smb_fs+0x0/0x64 returned 0 after 0 usecs [ 5.012004] calling init_cifs+0x0/0x410 @ 1 [ 5.013122] initcall init_cifs+0x0/0x410 returned 0 after 0 usecs [ 5.014004] calling init_ncp_fs+0x0/0x54 @ 1 [ 5.015005] initcall init_ncp_fs+0x0/0x54 returned 0 after 0 usecs [ 5.016003] calling init_hpfs_fs+0x0/0x54 @ 1 [ 5.017005] initcall init_hpfs_fs+0x0/0x54 returned 0 after 0 usecs [ 5.018004] calling init_ntfs_fs+0x0/0x1ea @ 1 [ 5.019001] NTFS driver 2.1.29 [Flags: R/O DEBUG]. [ 5.020018] initcall init_ntfs_fs+0x0/0x1ea returned 0 after 976 usecs [ 5.021003] calling init_ufs_fs+0x0/0x54 @ 1 [ 5.022006] initcall init_ufs_fs+0x0/0x54 returned 0 after 0 usecs [ 5.023003] calling init_efs_fs+0x0/0x5f @ 1 [ 5.024001] EFS: 1.0a - http://aeschi.ch.eu.org/efs/ [ 5.025005] initcall init_efs_fs+0x0/0x5f returned 0 after 976 usecs [ 5.026004] calling init_romfs_fs+0x0/0x73 @ 1 [ 5.027002] ROMFS MTD (C) 2007 Red Hat, Inc. [ 5.028005] initcall init_romfs_fs+0x0/0x73 returned 0 after 976 usecs [ 5.029003] calling init_qnx4_fs+0x0/0x61 @ 1 [ 5.030005] QNX4 filesystem 0.2.3 registered. [ 5.031003] initcall init_qnx4_fs+0x0/0x61 returned 0 after 976 usecs [ 5.032003] calling init_adfs_fs+0x0/0x54 @ 1 [ 5.033005] initcall init_adfs_fs+0x0/0x54 returned 0 after 0 usecs [ 5.034004] calling fuse_init+0x0/0x111 @ 1 [ 5.035002] fuse init (API version 7.13) [ 5.036011] device: 'fuse': device_add [ 5.038032] initcall fuse_init+0x0/0x111 returned 0 after 2929 usecs [ 5.044003] calling cuse_init+0x0/0x8e @ 1 [ 5.048003] device class 'cuse': registering [ 5.053018] device: 'cuse': device_add [ 5.056072] initcall cuse_init+0x0/0x8e returned 0 after 7812 usecs [ 5.063004] calling init_omfs_fs+0x0/0xf @ 1 [ 5.067006] initcall init_omfs_fs+0x0/0xf returned 0 after 0 usecs [ 5.073003] calling init_jfs_fs+0x0/0x1fb @ 1 [ 5.078085] JFS: nTxBlock = 7917, nTxLock = 63339 [ 5.087060] initcall init_jfs_fs+0x0/0x1fb returned 0 after 8789 usecs [ 5.093005] calling init_xfs_fs+0x0/0xa3 @ 1 [ 5.098003] SGI XFS with ACLs, security attributes, realtime, large block/inode numbers, debug enabled [ 5.107143] initcall init_xfs_fs+0x0/0xa3 returned 0 after 8789 usecs [ 5.114005] calling init_nilfs_fs+0x0/0x84 @ 1 [ 5.118009] initcall init_nilfs_fs+0x0/0x84 returned 0 after 0 usecs [ 5.125003] calling init_befs_fs+0x0/0x6d @ 1 [ 5.129002] BeFS version: 0.9.3 [ 5.132006] initcall init_befs_fs+0x0/0x6d returned 0 after 2929 usecs [ 5.139003] calling ocfs2_init+0x0/0x26a @ 1 [ 5.143003] OCFS2 1.5.0 [ 5.146072] initcall ocfs2_init+0x0/0x26a returned 0 after 2929 usecs [ 5.147010] calling ocfs2_stack_glue_init+0x0/0x7c @ 1 [ 5.148038] initcall ocfs2_stack_glue_init+0x0/0x7c returned 0 after 0 usecs [ 5.149003] calling o2cb_stack_init+0x0/0xf @ 1 [ 5.150002] ocfs2: Registered cluster interface o2cb [ 5.151005] initcall o2cb_stack_init+0x0/0xf returned 0 after 976 usecs [ 5.152003] calling init_o2nm+0x0/0x92 @ 1 [ 5.153002] OCFS2 Node Manager 1.5.0 [ 5.156520] initcall init_o2nm+0x0/0x92 returned 0 after 2929 usecs [ 5.157006] calling dlm_init+0x0/0x247 @ 1 [ 5.158002] OCFS2 DLM 1.5.0 [ 5.159045] initcall dlm_init+0x0/0x247 returned 0 after 976 usecs [ 5.160003] calling init_dlmfs_fs+0x0/0xc3 @ 1 [ 5.161003] OCFS2 DLMFS 1.5.0 [ 5.162071] OCFS2 User DLM kernel interface loaded [ 5.163018] initcall init_dlmfs_fs+0x0/0xc3 returned 0 after 1953 usecs [ 5.164003] calling init_btrfs_fs+0x0/0x83 @ 1 [ 5.165014] device: 'btrfs-control': device_add [ 5.166057] Btrfs loaded [ 5.167006] initcall init_btrfs_fs+0x0/0x83 returned 0 after 1953 usecs [ 5.168003] calling init_gfs2_fs+0x0/0x1ac @ 1 [ 5.169146] GFS2 (built Feb 2 2010 11:50:02) installed [ 5.170018] initcall init_gfs2_fs+0x0/0x1ac returned 0 after 976 usecs [ 5.171003] calling init_exofs+0x0/0x54 @ 1 [ 5.172006] initcall init_exofs+0x0/0x54 returned 0 after 0 usecs [ 5.173003] calling init_mqueue_fs+0x0/0xa3 @ 1 [ 5.174132] initcall init_mqueue_fs+0x0/0xa3 returned 0 after 0 usecs [ 5.175003] calling key_proc_init+0x0/0x4e @ 1 [ 5.176039] initcall key_proc_init+0x0/0x4e returned 0 after 0 usecs [ 5.177003] calling init_sel_fs+0x0/0x59 @ 1 [ 5.179454] initcall init_sel_fs+0x0/0x59 returned 0 after 976 usecs [ 5.180003] calling selnl_init+0x0/0x46 @ 1 [ 5.181022] initcall selnl_init+0x0/0x46 returned 0 after 0 usecs [ 5.182003] calling sel_netif_init+0x0/0x57 @ 1 [ 5.183008] initcall sel_netif_init+0x0/0x57 returned 0 after 0 usecs [ 5.184003] calling sel_netnode_init+0x0/0x60 @ 1 [ 5.185005] initcall sel_netnode_init+0x0/0x60 returned 0 after 0 usecs [ 5.186003] calling sel_netport_init+0x0/0x60 @ 1 [ 5.187006] initcall sel_netport_init+0x0/0x60 returned 0 after 0 usecs [ 5.188003] calling aurule_init+0x0/0x30 @ 1 [ 5.189003] initcall aurule_init+0x0/0x30 returned 0 after 0 usecs [ 5.190003] calling crypto_wq_init+0x0/0x2f @ 1 [ 5.191050] initcall crypto_wq_init+0x0/0x2f returned 0 after 0 usecs [ 5.192007] calling crypto_algapi_init+0x0/0xc @ 1 [ 5.193008] initcall crypto_algapi_init+0x0/0xc returned 0 after 0 usecs [ 5.194003] calling skcipher_module_init+0x0/0x29 @ 1 [ 5.195003] initcall skcipher_module_init+0x0/0x29 returned 0 after 0 usecs [ 5.196004] calling chainiv_module_init+0x0/0xf @ 1 [ 5.197006] initcall chainiv_module_init+0x0/0xf returned 0 after 0 usecs [ 5.198003] calling eseqiv_module_init+0x0/0xf @ 1 [ 5.199004] initcall eseqiv_module_init+0x0/0xf returned 0 after 0 usecs [ 5.200004] calling seqiv_module_init+0x0/0xf @ 1 [ 5.201005] initcall seqiv_module_init+0x0/0xf returned 0 after 0 usecs [ 5.202003] calling hmac_module_init+0x0/0xf @ 1 [ 5.203004] initcall hmac_module_init+0x0/0xf returned 0 after 0 usecs [ 5.204003] calling crypto_xcbc_module_init+0x0/0xf @ 1 [ 5.205004] initcall crypto_xcbc_module_init+0x0/0xf returned 0 after 0 usecs [ 5.206004] calling md4_mod_init+0x0/0xf @ 1 [ 5.207052] initcall md4_mod_init+0x0/0xf returned 0 after 0 usecs [ 5.208005] calling md5_mod_init+0x0/0xf @ 1 [ 5.209041] initcall md5_mod_init+0x0/0xf returned 0 after 0 usecs [ 5.210006] calling rmd128_mod_init+0x0/0xf @ 1 [ 5.211045] initcall rmd128_mod_init+0x0/0xf returned 0 after 0 usecs [ 5.212004] calling rmd160_mod_init+0x0/0xf @ 1 [ 5.214006] initcall rmd160_mod_init+0x0/0xf returned 0 after 976 usecs [ 5.215004] calling rmd320_mod_init+0x0/0xf @ 1 [ 5.216048] initcall rmd320_mod_init+0x0/0xf returned 0 after 0 usecs [ 5.217004] calling sha1_generic_mod_init+0x0/0xf @ 1 [ 5.219038] initcall sha1_generic_mod_init+0x0/0xf returned 0 after 976 usecs [ 5.220004] calling sha256_generic_mod_init+0x0/0x33 @ 1 [ 5.221095] initcall sha256_generic_mod_init+0x0/0x33 returned 0 after 0 usecs [ 5.222004] calling sha512_generic_mod_init+0x0/0x33 @ 1 [ 5.223149] initcall sha512_generic_mod_init+0x0/0x33 returned 0 after 0 usecs [ 5.224004] calling wp512_mod_init+0x0/0x52 @ 1 [ 5.226060] initcall wp512_mod_init+0x0/0x52 returned 0 after 976 usecs [ 5.227004] calling crypto_ecb_module_init+0x0/0xf @ 1 [ 5.228004] initcall crypto_ecb_module_init+0x0/0xf returned 0 after 0 usecs [ 5.229003] calling crypto_cbc_module_init+0x0/0xf @ 1 [ 5.230005] initcall crypto_cbc_module_init+0x0/0xf returned 0 after 0 usecs [ 5.231003] calling crypto_pcbc_module_init+0x0/0xf @ 1 [ 5.232004] initcall crypto_pcbc_module_init+0x0/0xf returned 0 after 0 usecs [ 5.233003] calling crypto_cts_module_init+0x0/0xf @ 1 [ 5.234006] initcall crypto_cts_module_init+0x0/0xf returned 0 after 0 usecs [ 5.235004] calling crypto_module_init+0x0/0xf @ 1 [ 5.236004] initcall crypto_module_init+0x0/0xf returned 0 after 0 usecs [ 5.237003] calling crypto_ctr_module_init+0x0/0x35 @ 1 [ 5.238004] initcall crypto_ctr_module_init+0x0/0x35 returned 0 after 0 usecs [ 5.239004] calling crypto_ccm_module_init+0x0/0x4f @ 1 [ 5.240005] initcall crypto_ccm_module_init+0x0/0x4f returned 0 after 0 usecs [ 5.241003] calling cryptd_init+0x0/0xc2 @ 1 [ 5.242010] initcall cryptd_init+0x0/0xc2 returned 0 after 0 usecs [ 5.243004] calling des_generic_mod_init+0x0/0x33 @ 1 [ 5.244087] initcall des_generic_mod_init+0x0/0x33 returned 0 after 0 usecs [ 5.245004] calling fcrypt_mod_init+0x0/0xf @ 1 [ 5.246039] alg: No test for fcrypt (fcrypt-generic) [ 5.251027] initcall fcrypt_mod_init+0x0/0xf returned 0 after 4882 usecs [ 5.252003] calling aes_init+0x0/0xf @ 1 [ 5.253077] initcall aes_init+0x0/0xf returned 0 after 0 usecs [ 5.254004] calling camellia_init+0x0/0xf @ 1 [ 5.255072] initcall camellia_init+0x0/0xf returned 0 after 0 usecs [ 5.256004] calling cast5_mod_init+0x0/0xf @ 1 [ 5.257070] initcall cast5_mod_init+0x0/0xf returned 0 after 0 usecs [ 5.258004] calling arc4_init+0x0/0xf @ 1 [ 5.259090] initcall arc4_init+0x0/0xf returned 0 after 0 usecs [ 5.260004] calling khazad_mod_init+0x0/0xf @ 1 [ 5.261077] initcall khazad_mod_init+0x0/0xf returned 0 after 0 usecs [ 5.262004] calling seed_init+0x0/0xf @ 1 [ 5.263069] initcall seed_init+0x0/0xf returned 0 after 0 usecs [ 5.264004] calling salsa20_generic_mod_init+0x0/0xf @ 1 [ 5.265036] initcall salsa20_generic_mod_init+0x0/0xf returned 0 after 0 usecs [ 5.266004] calling deflate_mod_init+0x0/0xf @ 1 [ 5.268007] initcall deflate_mod_init+0x0/0xf returned 0 after 976 usecs [ 5.269004] calling zlib_mod_init+0x0/0xf @ 1 [ 5.270649] initcall zlib_mod_init+0x0/0xf returned 0 after 0 usecs [ 5.271004] calling michael_mic_init+0x0/0xf @ 1 [ 5.272044] initcall michael_mic_init+0x0/0xf returned 0 after 0 usecs [ 5.273004] calling crc32c_mod_init+0x0/0xf @ 1 [ 5.274051] initcall crc32c_mod_init+0x0/0xf returned 0 after 0 usecs [ 5.275004] calling crypto_authenc_module_init+0x0/0xf @ 1 [ 5.276005] initcall crypto_authenc_module_init+0x0/0xf returned 0 after 0 usecs [ 5.277003] calling lzo_mod_init+0x0/0xf @ 1 [ 5.279007] initcall lzo_mod_init+0x0/0xf returned 0 after 976 usecs [ 5.280004] calling krng_mod_init+0x0/0xf @ 1 [ 5.281036] alg: No test for stdrng (krng) [ 5.286007] initcall krng_mod_init+0x0/0xf returned 0 after 4882 usecs [ 5.287003] calling prng_mod_init+0x0/0xf @ 1 [ 5.297602] initcall prng_mod_init+0x0/0xf returned 0 after 8789 usecs [ 5.298004] calling proc_genhd_init+0x0/0x31 @ 1 [ 5.299013] initcall proc_genhd_init+0x0/0x31 returned 0 after 0 usecs [ 5.300003] calling bsg_init+0x0/0x10d @ 1 [ 5.301004] device class 'bsg': registering [ 5.302066] Block layer SCSI generic (bsg) driver version 0.4 loaded (major 253) [ 5.303005] initcall bsg_init+0x0/0x10d returned 0 after 1953 usecs [ 5.304003] calling noop_init+0x0/0x11 @ 1 [ 5.305023] io scheduler noop registered [ 5.306003] initcall noop_init+0x0/0x11 returned 0 after 976 usecs [ 5.307004] calling cfq_init+0x0/0x93 @ 1 [ 5.308004] io scheduler cfq registered (default) [ 5.309012] initcall cfq_init+0x0/0x93 returned 0 after 976 usecs [ 5.310004] calling debug_objects_init_debugfs+0x0/0x57 @ 1 [ 5.311027] initcall debug_objects_init_debugfs+0x0/0x57 returned 0 after 0 usecs [ 5.312020] calling libcrc32c_mod_init+0x0/0x25 @ 1 [ 5.313008] initcall libcrc32c_mod_init+0x0/0x25 returned 0 after 0 usecs [ 5.314003] calling percpu_counter_startup+0x0/0x26 @ 1 [ 5.315004] initcall percpu_counter_startup+0x0/0x26 returned 0 after 0 usecs [ 5.316004] calling audit_classes_init+0x0/0x4f @ 1 [ 5.317007] initcall audit_classes_init+0x0/0x4f returned 0 after 0 usecs [ 5.318003] calling adp5588_gpio_init+0x0/0x11 @ 1 [ 5.319004] bus: 'i2c': add driver adp5588-gpio [ 5.320048] i2c-core: driver [adp5588-gpio] registered [ 5.321006] initcall adp5588_gpio_init+0x0/0x11 returned 0 after 1953 usecs [ 5.322003] calling lnw_gpio_init+0x0/0x16 @ 1 [ 5.323003] bus: 'pci': add driver langwell_gpio [ 5.324075] initcall lnw_gpio_init+0x0/0x16 returned 0 after 976 usecs [ 5.325023] calling bt8xxgpio_init+0x0/0x16 @ 1 [ 5.326003] bus: 'pci': add driver bt8xxgpio [ 5.327068] initcall bt8xxgpio_init+0x0/0x16 returned 0 after 976 usecs [ 5.328018] calling pci_proc_init+0x0/0x5b @ 1 [ 5.329134] initcall pci_proc_init+0x0/0x5b returned 0 after 0 usecs [ 5.330003] calling pci_hotplug_init+0x0/0x18 @ 1 [ 5.332003] pci_hotplug: PCI Hot Plug PCI Core version: 0.5 [ 5.333003] initcall pci_hotplug_init+0x0/0x18 returned 0 after 976 usecs [ 5.334003] calling ibmphp_init+0x0/0x33f @ 1 [ 5.335002] ibmphpd: IBM Hot Plug PCI Controller Driver version: 0.6 [ 5.336076] initcall ibmphp_init+0x0/0x33f returned -19 after 976 usecs [ 5.337021] calling shpcd_init+0x0/0x4e @ 1 [ 5.338004] bus: 'pci': add driver shpchp [ 5.339013] bus: 'pci': driver_probe_device: matched device 0000:00:0b.0 with driver shpchp [ 5.340002] bus: 'pci': really_probe: probing driver shpchp with device 0000:00:0b.0 [ 5.341088] bus: 'pci': driver_probe_device: matched device 0000:00:0c.0 with driver shpchp [ 5.342002] bus: 'pci': really_probe: probing driver shpchp with device 0000:00:0c.0 [ 5.343057] bus: 'pci': driver_probe_device: matched device 0000:00:0d.0 with driver shpchp [ 5.344002] bus: 'pci': really_probe: probing driver shpchp with device 0000:00:0d.0 [ 5.345058] bus: 'pci': driver_probe_device: matched device 0000:00:0e.0 with driver shpchp [ 5.346008] bus: 'pci': really_probe: probing driver shpchp with device 0000:00:0e.0 [ 5.347082] shpchp: Standard Hot Plug PCI Controller Driver version: 0.4 [ 5.348008] initcall shpcd_init+0x0/0x4e returned 0 after 9765 usecs [ 5.349003] calling init_legacy+0x0/0x36 @ 1 [ 5.350224] initcall init_legacy+0x0/0x36 returned 0 after 0 usecs [ 5.351004] calling pci_stub_init+0x0/0xf2 @ 1 [ 5.352004] bus: 'pci': add driver pci-stub [ 5.353054] pci-stub: invalid id string "" [ 5.354020] initcall pci_stub_init+0x0/0xf2 returned 0 after 1953 usecs [ 5.355004] calling lms283gf05_init+0x0/0xf @ 1 [ 5.356004] bus: 'spi': add driver lms283gf05 [ 5.357054] initcall lms283gf05_init+0x0/0xf returned 0 after 976 usecs [ 5.358019] calling platform_lcd_init+0x0/0xf @ 1 [ 5.359005] bus: 'platform': add driver platform-lcd [ 5.360066] initcall platform_lcd_init+0x0/0xf returned 0 after 976 usecs [ 5.361021] calling tdo24m_init+0x0/0xf @ 1 [ 5.362003] bus: 'spi': add driver tdo24m [ 5.363051] initcall tdo24m_init+0x0/0xf returned 0 after 976 usecs [ 5.364019] calling genericbl_init+0x0/0xf @ 1 [ 5.365004] bus: 'platform': add driver generic-bl [ 5.366052] initcall genericbl_init+0x0/0xf returned 0 after 976 usecs [ 5.367021] calling progearbl_init+0x0/0x49 @ 1 [ 5.368003] bus: 'platform': add driver progear-bl [ 5.369057] Registering platform device 'progear-bl'. Parent at platform [ 5.370019] device: 'progear-bl': device_add [ 5.371008] bus: 'platform': add device progear-bl [ 5.372062] bus: 'platform': driver_probe_device: matched device progear-bl with driver progear-bl [ 5.373019] bus: 'platform': really_probe: probing driver progear-bl with device progear-bl [ 5.374016] ALI M7101 PMU not found. [ 5.375010] initcall progearbl_init+0x0/0x49 returned 0 after 6835 usecs [ 5.376002] calling mbp_init+0x0/0xd3 @ 1 [ 5.377009] initcall mbp_init+0x0/0xd3 returned -19 after 0 usecs [ 5.378002] calling kb3886_init+0x0/0x33 @ 1 [ 5.379003] initcall kb3886_init+0x0/0x33 returned -19 after 0 usecs [ 5.380002] calling display_class_init+0x0/0x69 @ 1 [ 5.381003] device class 'display': registering [ 5.383031] initcall display_class_init+0x0/0x69 returned 0 after 1953 usecs [ 5.390005] calling arcfb_init+0x0/0x60 @ 1 [ 5.394003] initcall arcfb_init+0x0/0x60 returned -6 after 0 usecs [ 5.400003] initcall arcfb_init+0x0/0x60 returned with error code -6 [ 5.406003] calling cyber2000fb_init+0x0/0xac @ 1 [ 5.411006] bus: 'pci': add driver CyberPro [ 5.416042] initcall cyber2000fb_init+0x0/0xac returned 0 after 4882 usecs [ 5.423004] calling pm3fb_init+0x0/0xbc @ 1 [ 5.427003] bus: 'pci': add driver pm3fb [ 5.431094] initcall pm3fb_init+0x0/0xbc returned 0 after 3906 usecs [ 5.437004] calling matroxfb_init+0x0/0x879 @ 1 [ 5.442004] bus: 'pci': add driver matroxfb [ 5.446075] initcall matroxfb_init+0x0/0x879 returned 0 after 3906 usecs [ 5.453007] calling rivafb_init+0x0/0x178 @ 1 [ 5.457003] rivafb_setup START [ 5.460003] bus: 'pci': add driver rivafb [ 5.464075] initcall rivafb_init+0x0/0x178 returned 0 after 6835 usecs [ 5.471004] calling atyfb_init+0x0/0x1b9 @ 1 [ 5.475004] bus: 'pci': add driver atyfb [ 5.479079] initcall atyfb_init+0x0/0x1b9 returned 0 after 3906 usecs [ 5.486005] calling aty128fb_init+0x0/0xf5 @ 1 [ 5.490004] bus: 'pci': add driver aty128fb [ 5.495077] initcall aty128fb_init+0x0/0xf5 returned 0 after 4882 usecs [ 5.501004] calling sisfb_init+0x0/0x6ec @ 1 [ 5.506004] bus: 'pci': add driver sisfb [ 5.510078] initcall sisfb_init+0x0/0x6ec returned 0 after 3906 usecs [ 5.516004] calling viafb_init+0x0/0x33d @ 1 [ 5.521003] VIA Graphics Intergration Chipset framebuffer 2.4 initializing [ 5.527003] bus: 'pci': add driver viafb [ 5.531073] initcall viafb_init+0x0/0x33d returned 0 after 9765 usecs [ 5.538004] calling kyrofb_init+0x0/0xa9 @ 1 [ 5.542004] bus: 'pci': add driver kyrofb [ 5.546079] initcall kyrofb_init+0x0/0xa9 returned 0 after 3906 usecs [ 5.553004] calling savagefb_init+0x0/0x60 @ 1 [ 5.557004] bus: 'pci': add driver savagefb [ 5.562035] initcall savagefb_init+0x0/0x60 returned 0 after 4882 usecs [ 5.568004] calling vt8623fb_init+0x0/0x49 @ 1 [ 5.573004] bus: 'pci': add driver vt8623fb [ 5.577075] initcall vt8623fb_init+0x0/0x49 returned 0 after 3906 usecs [ 5.584004] calling tridentfb_init+0x0/0x1da @ 1 [ 5.588004] bus: 'pci': add driver tridentfb [ 5.593073] initcall tridentfb_init+0x0/0x1da returned 0 after 4882 usecs [ 5.600005] calling sstfb_init+0x0/0x18a @ 1 [ 5.604004] bus: 'pci': add driver sstfb [ 5.608079] initcall sstfb_init+0x0/0x18a returned 0 after 3906 usecs [ 5.614004] calling tmiofb_init+0x0/0x57 @ 1 [ 5.619006] bus: 'platform': add driver tmio-fb [ 5.623068] initcall tmiofb_init+0x0/0x57 returned 0 after 3906 usecs [ 5.630004] calling metronomefb_init+0x0/0xf @ 1 [ 5.635005] bus: 'platform': add driver metronomefb [ 5.640041] initcall metronomefb_init+0x0/0xf returned 0 after 4882 usecs [ 5.646004] calling broadsheetfb_init+0x0/0xf @ 1 [ 5.651004] bus: 'platform': add driver broadsheetfb [ 5.656066] initcall broadsheetfb_init+0x0/0xf returned 0 after 4882 usecs [ 5.663004] calling s1d13xxxfb_init+0x0/0x26 @ 1 [ 5.668004] bus: 'platform': add driver s1d13xxxfb [ 5.673184] initcall s1d13xxxfb_init+0x0/0x26 returned 0 after 4882 usecs [ 5.680004] calling carminefb_init+0x0/0x31 @ 1 [ 5.684004] bus: 'pci': add driver carminefb [ 5.689050] initcall carminefb_init+0x0/0x31 returned 0 after 4882 usecs [ 5.695005] calling mb862xxfb_init+0x0/0x16 @ 1 [ 5.700003] bus: 'pci': add driver mb862xxfb [ 5.704091] initcall mb862xxfb_init+0x0/0x16 returned 0 after 3906 usecs [ 5.711005] calling uvesafb_init+0x0/0x354 @ 1 [ 5.716009] bus: 'platform': add driver uvesafb [ 5.720067] Registering platform device 'uvesafb.0'. Parent at platform [ 5.727005] device: 'uvesafb.0': device_add [ 5.731009] bus: 'platform': add device uvesafb.0 [ 5.736064] bus: 'platform': driver_probe_device: matched device uvesafb.0 with driver uvesafb [ 5.745003] bus: 'platform': really_probe: probing driver uvesafb with device uvesafb.0 [ 5.753061] uvesafb: failed to execute /sbin/v86d [ 5.757003] uvesafb: make sure that the v86d helper is installed and executable [ 5.765004] uvesafb: Getting VBE info block failed (eax=0x4f00, err=-2) [ 5.771004] uvesafb: vbe_init() failed with -22 [ 5.776013] uvesafb: probe of uvesafb.0 failed with error -22 [ 5.782009] initcall uvesafb_init+0x0/0x354 returned 0 after 64453 usecs [ 5.788004] calling regulator_virtual_consumer_init+0x0/0xf @ 1 [ 5.794004] bus: 'platform': add driver reg-virt-consumer [ 5.800069] initcall regulator_virtual_consumer_init+0x0/0xf returned 0 after 5859 usecs [ 5.808009] calling bq24022_init+0x0/0x14 @ 1 [ 5.812004] bus: 'platform': add driver bq24022 [ 5.817062] bus: 'platform': remove driver bq24022 [ 5.822059] driver: 'bq24022': driver_release [ 5.826008] initcall bq24022_init+0x0/0x14 returned -19 after 13671 usecs [ 5.833005] calling rand_initialize+0x0/0x25 @ 1 [ 5.838053] initcall rand_initialize+0x0/0x25 returned 0 after 0 usecs [ 5.844003] calling tty_init+0x0/0xd5 @ 1 [ 5.849005] device: 'tty': device_add [ 5.852074] device: 'console': device_add [ 5.857047] device: 'tty0': device_add [ 5.860063] device class 'vc': registering [ 5.865042] device: 'vcs': device_add [ 5.868064] device: 'vcsa': device_add [ 5.872071] device: 'vcs1': device_add [ 5.876098] device: 'vcsa1': device_add [ 5.880069] device: 'tty1': device_add [ 5.884066] device: 'tty2': device_add [ 5.888066] device: 'tty3': device_add [ 5.892069] device: 'tty4': device_add [ 5.896071] device: 'tty5': device_add [ 5.900028] device: 'tty6': device_add [ 5.903073] device: 'tty7': device_add [ 5.907065] device: 'tty8': device_add [ 5.911072] device: 'tty9': device_add [ 5.915069] device: 'tty10': device_add [ 5.919073] device: 'tty11': device_add [ 5.923066] device: 'tty12': device_add [ 5.927116] device: 'tty13': device_add [ 5.931069] device: 'tty14': device_add [ 5.935070] device: 'tty15': device_add [ 5.939067] device: 'tty16': device_add [ 5.943073] device: 'tty17': device_add [ 5.947067] device: 'tty18': device_add [ 5.951049] device: 'tty19': device_add [ 5.955041] device: 'tty20': device_add [ 5.959030] device: 'tty21': device_add [ 5.963021] device: 'tty22': device_add [ 5.966074] device: 'tty23': device_add [ 5.970069] device: 'tty24': device_add [ 5.974087] device: 'tty25': device_add [ 5.978064] device: 'tty26': device_add [ 5.982071] device: 'tty27': device_add [ 5.986073] device: 'tty28': device_add [ 5.990076] device: 'tty29': device_add [ 5.994098] device: 'tty30': device_add [ 5.998129] device: 'tty31': device_add [ 6.002064] device: 'tty32': device_add [ 6.006070] device: 'tty33': device_add [ 6.010072] device: 'tty34': device_add [ 6.014091] device: 'tty35': device_add [ 6.018066] device: 'tty36': device_add [ 6.022069] device: 'tty37': device_add [ 6.026069] device: 'tty38': device_add [ 6.030070] device: 'tty39': device_add [ 6.034104] device: 'tty40': device_add [ 6.038078] device: 'tty41': device_add [ 6.042064] device: 'tty42': device_add [ 6.046068] device: 'tty43': device_add [ 6.050071] device: 'tty44': device_add [ 6.054080] device: 'tty45': device_add [ 6.058068] device: 'tty46': device_add [ 6.062073] device: 'tty47': device_add [ 6.066043] device: 'tty48': device_add [ 6.070065] device: 'tty49': device_add [ 6.074043] device: 'tty50': device_add [ 6.078035] device: 'tty51': device_add [ 6.080030] device: 'tty52': device_add [ 6.084052] device: 'tty53': device_add [ 6.088050] device: 'tty54': device_add [ 6.092016] device: 'tty55': device_add [ 6.095077] device: 'tty56': device_add [ 6.099075] device: 'tty57': device_add [ 6.103071] device: 'tty58': device_add [ 6.107078] device: 'tty59': device_add [ 6.111069] device: 'tty60': device_add [ 6.115072] device: 'tty61': device_add [ 6.119073] device: 'tty62': device_add [ 6.123079] device: 'tty63': device_add [ 6.127080] initcall tty_init+0x0/0xd5 returned 0 after 271484 usecs [ 6.134005] calling pty_init+0x0/0x299 @ 1 [ 6.138045] device: 'ptmx': device_add [ 6.142072] initcall pty_init+0x0/0x299 returned 0 after 3906 usecs [ 6.148005] calling sysrq_init+0x0/0x1f @ 1 [ 6.152015] initcall sysrq_init+0x0/0x1f returned 0 after 0 usecs [ 6.158003] calling init+0x0/0xf @ 1 [ 6.162003] bus: 'virtio': add driver virtio_console [ 6.167062] initcall init+0x0/0xf returned 0 after 4882 usecs [ 6.173004] calling raw_init+0x0/0xc7 @ 1 [ 6.177007] device class 'raw': registering [ 6.181065] device: 'rawctl': device_add [ 6.185074] initcall raw_init+0x0/0xc7 returned 0 after 7812 usecs [ 6.192004] calling r3964_init+0x0/0x38 @ 1 [ 6.196002] r3964: Philips r3964 Driver $Revision: 1.10 $ [ 6.201004] initcall r3964_init+0x0/0x38 returned 0 after 4882 usecs [ 6.208003] calling sonypi_init+0x0/0x79 @ 1 [ 6.212002] sonypi: Sony Programmable I/O Controller Driver v1.26. [ 6.218005] initcall sonypi_init+0x0/0x79 returned -19 after 5859 usecs [ 6.225003] calling nvram_init+0x0/0x70 @ 1 [ 6.229007] device: 'nvram': device_add [ 6.233077] Non-volatile memory driver v1.3 [ 6.237005] initcall nvram_init+0x0/0x70 returned 0 after 7812 usecs [ 6.243003] calling i8k_init+0x0/0x2c3 @ 1 [ 6.248006] initcall i8k_init+0x0/0x2c3 returned -19 after 0 usecs [ 6.254003] calling timeriomem_rng_init+0x0/0xf @ 1 [ 6.259005] bus: 'platform': add driver timeriomem_rng [ 6.264109] initcall timeriomem_rng_init+0x0/0xf returned 0 after 4882 usecs [ 6.271004] calling mod_init+0x0/0x1ca @ 1 [ 6.276013] initcall mod_init+0x0/0x1ca returned -19 after 976 usecs [ 6.282003] calling mod_init+0x0/0x9f @ 1 [ 6.286053] initcall mod_init+0x0/0x9f returned -19 after 0 usecs [ 6.292003] calling mod_init+0x0/0x91 @ 1 [ 6.296048] initcall mod_init+0x0/0x91 returned -19 after 0 usecs [ 6.302003] calling init+0x0/0xf @ 1 [ 6.306003] bus: 'virtio': add driver virtio_rng [ 6.311063] initcall init+0x0/0xf returned 0 after 4882 usecs [ 6.317004] calling scx200_gpio_init+0x0/0x10e @ 1 [ 6.321002] scx200_gpio: no SCx200 gpio present [ 6.326003] initcall scx200_gpio_init+0x0/0x10e returned -19 after 4882 usecs [ 6.333003] calling pc8736x_gpio_init+0x0/0x2b9 @ 1 [ 6.338007] Registering platform device 'pc8736x_gpio.0'. Parent at platform [ 6.345029] device: 'pc8736x_gpio.0': device_add [ 6.350009] bus: 'platform': add device pc8736x_gpio.0 [ 6.355076] platform pc8736x_gpio.0: NatSemi pc8736x GPIO Driver Initializing [ 6.362010] platform pc8736x_gpio.0: no device found [ 6.367016] bus: 'platform': remove device pc8736x_gpio.0 [ 6.373049] initcall pc8736x_gpio_init+0x0/0x2b9 returned -19 after 34179 usecs [ 6.380004] calling nsc_gpio_init+0x0/0x11 @ 1 [ 6.385002] nsc_gpio initializing [ 6.388003] initcall nsc_gpio_init+0x0/0x11 returned 0 after 2929 usecs [ 6.394003] calling cs5535_gpio_init+0x0/0x146 @ 1 [ 6.399015] cs5535_gpio: DIVIL not found [ 6.403003] initcall cs5535_gpio_init+0x0/0x146 returned -19 after 3906 usecs [ 6.410004] calling tlclk_init+0x0/0x197 @ 1 [ 6.415012] telclk_interrup = 0xf non-mcpbl0010 hw. [ 6.420027] initcall tlclk_init+0x0/0x197 returned -6 after 4882 usecs [ 6.426003] initcall tlclk_init+0x0/0x197 returned with error code -6 [ 6.433003] calling mwave_init+0x0/0x1ad @ 1 [ 6.437008] smapi::smapi_init, ERROR invalid usSmapiID [ 6.442002] mwave: tp3780i::tp3780I_InitializeBoardData: Error: SMAPI is not available on this machine [ 6.452002] mwave: mwavedd::mwave_init: Error: Failed to initialize board data [ 6.459002] mwave: mwavedd::mwave_init: Error: Failed to initialize [ 6.465003] initcall mwave_init+0x0/0x1ad returned -5 after 27343 usecs [ 6.472003] initcall mwave_init+0x0/0x1ad returned with error code -5 [ 6.478003] calling init_atmel+0x0/0x15f @ 1 [ 6.483004] bus: 'platform': add driver tpm_atmel [ 6.487074] bus: 'platform': remove driver tpm_atmel [ 6.492091] driver: 'tpm_atmel': driver_release [ 6.497006] initcall init_atmel+0x0/0x15f returned -19 after 13671 usecs [ 6.504003] calling drm_core_init+0x0/0xfb @ 1 [ 6.508007] device class 'drm': registering [ 6.513033] [drm] Initialized drm 1.1.0 20060810 [ 6.517004] initcall drm_core_init+0x0/0xfb returned 0 after 8789 usecs [ 6.524003] calling ttm_init+0x0/0x64 @ 1 [ 6.528006] device: 'ttm': device_add [ 6.532073] initcall ttm_init+0x0/0x64 returned 0 after 3906 usecs [ 6.538004] calling tdfx_init+0x0/0xf @ 1 [ 6.542049] initcall tdfx_init+0x0/0xf returned 0 after 0 usecs [ 6.548003] calling r128_init+0x0/0x19 @ 1 [ 6.552260] initcall r128_init+0x0/0x19 returned 0 after 0 usecs [ 6.558003] calling radeon_init+0x0/0xae @ 1 [ 6.563002] [drm] radeon defaulting to kernel modesetting. [ 6.568002] [drm] radeon kernel modesetting enabled. [ 6.573004] bus: 'pci': add driver radeon [ 6.577039] bus: 'pci': driver_probe_device: matched device 0000:01:00.0 with driver radeon [ 6.586002] bus: 'pci': really_probe: probing driver radeon with device 0000:01:00.0 [ 6.593053] IOAPIC[0]: Set routing entry (2-5 -> 0x35 -> IRQ 5 Mode:1 Active:1) [ 6.601008] radeon 0000:01:00.0: PCI->APIC IRQ transform: INT A -> IRQ 5 [ 6.607012] radeon 0000:01:00.0: setting latency timer to 64 [ 6.615426] device: 'controlD64': device_add [ 6.620111] device: 'card0': device_add [ 6.624079] [drm] radeon: Initializing kernel modesetting. [ 6.629040] radeon 0000:01:00.0: using 40bit DMA mask [ 6.634015] [drm] register mmio base: 0xD9000000 [ 6.639003] [drm] register mmio size: 65536 [ 6.645468] [drm] GPU reset succeed (RBBM_STATUS=0x00000140) [ 6.646039] [drm] Generation 2 PCI interface, using max accessible memory [ 6.647003] [drm] radeon: VRAM 128M [ 6.648002] [drm] radeon: VRAM from 0x00000000 to 0x07FFFFFF [ 6.649003] [drm] radeon: GTT 512M [ 6.650002] [drm] radeon: GTT from 0x20000000 to 0x3FFFFFFF [ 6.651196] alloc irq_desc for 24 on node -1 [ 6.651999] alloc kstat_irqs on node -1 [ 6.652032] radeon 0000:01:00.0: irq 24 for MSI/MSI-X [ 6.653025] [drm] radeon: using MSI. [ 6.654096] [drm] radeon: irq initialized. [ 6.655004] [drm] Detected VRAM RAM=128M, BAR=128M [ 6.656002] [drm] RAM width 64bits DDR [ 6.657058] [TTM] Zone kernel: Available graphics memory: 435060 kiB. [ 6.658005] [TTM] Zone highmem: Available graphics memory: 506712 kiB. [ 6.659134] [drm] radeon: 128M of VRAM memory ready [ 6.660003] [drm] radeon: 512M of GTT memory ready. [ 6.661083] [drm] GART: num cpu pages 131072, num gpu pages 131072 [ 6.663318] [drm] radeon: 1 quad pipes, 1 Z pipes initialized. [ 6.664032] [drm] PCIE GART of 512M enabled (table at 0x00040000). [ 6.665049] [drm] radeon: cp idle (0x10000C03) [ 6.666008] Registering platform device 'radeon_cp.0'. Parent at platform [ 6.667003] device: 'radeon_cp.0': device_add [ 6.668015] bus: 'platform': add device radeon_cp.0 [ 6.670071] [drm] Loading R300 Microcode [ 6.671006] platform radeon_cp.0: firmware: using built-in firmware radeon/R300_cp.bin [ 6.672015] bus: 'platform': remove device radeon_cp.0 [ 6.673537] [drm] radeon: ring at 0x0000000020000000 [ 6.836911] [drm:r100_ring_test] *ERROR* radeon: ring test failed (sracth(0x15E4)=0xCAFEDEAD) [ 6.837002] [drm:r100_cp_init] *ERROR* radeon: cp isn't working (-22). [ 6.838004] radeon 0000:01:00.0: failled initializing CP (-22). [ 6.839002] radeon 0000:01:00.0: Disabling GPU acceleration [ 7.001814] Failed to wait GUI idle while programming pipes. Bad things might happen. [ 7.164773] [drm:r100_cp_fini] *ERROR* Wait for CP idle timeout, shutting down CP. [ 7.326695] Failed to wait GUI idle while programming pipes. Bad things might happen. [ 7.327155] BUG: unable to handle kernel paging request at f8380000 [ 7.327999] IP: [<c149b536>] rv370_pcie_gart_set_page+0x2d/0x3c [ 7.327999] *pde = 36f0f067 *pte = 00000000 [ 7.327999] Oops: 0002 [#1] SMP DEBUG_PAGEALLOC [ 7.327999] last sysfs file: [ 7.327999] [ 7.327999] Pid: 1, comm: swapper Not tainted 2.6.33-rc6-00072-gab65832 #14406 A8N-E/System Product Name [ 7.327999] EIP: 0060:[<c149b536>] EFLAGS: 00010206 CPU: 1 [ 7.327999] EIP is at rv370_pcie_gart_set_page+0x2d/0x3c [ 7.327999] EAX: 0000000c EBX: 00000000 ECX: f8380000 EDX: f8380000 [ 7.327999] ESI: 00000000 EDI: 00000001 EBP: f6c33d68 ESP: f6c33d60 [ 7.327999] DS: 007b ES: 007b FS: 00d8 GS: 0000 SS: 0068 [ 7.327999] Process swapper (pid: 1, ti=f6c32000 task=f6c30000 task.ti=f6c32000) [ 7.327999] Stack: [ 7.327999] f6fcf004 00000000 f6c33d90 c1485e57 00000000 00000000 00000100 00000000 [ 7.327999] <0> 00000000 f6ffa5d0 00000000 00000002 f6c33d9c c14848c3 f6ffa598 f6c33da8 [ 7.327999] <0> c145ecf9 f6ff7af0 f6c33dd0 c1460586 00000000 c20ccc80 f6fcf364 f6fcf364 [ 7.327999] Call Trace: [ 7.327999] [<c1485e57>] ? radeon_gart_unbind+0xb7/0xdf [ 7.327999] [<c14848c3>] ? radeon_ttm_backend_unbind+0x14/0x1d [ 7.327999] [<c145ecf9>] ? ttm_tt_unbind+0x15/0x27 [ 7.327999] [<c1460586>] ? ttm_bo_cleanup_refs+0xe0/0x1e8 [ 7.327999] [<c1461b63>] ? ttm_bo_release+0x4c/0x65 [ 7.327999] [<c1461b17>] ? ttm_bo_release+0x0/0x65 [ 7.327999] [<c13b92a1>] ? kref_put+0x39/0x42 [ 7.327999] [<c14607a3>] ? ttm_bo_unref+0x27/0x32 [ 7.327999] [<c14858db>] ? radeon_bo_unref+0x1d/0x2d [ 7.327999] [<c149242e>] ? radeon_ring_fini+0x55/0x74 [ 7.327999] [<c1499b65>] ? r100_cp_fini+0x5d/0x82 [ 7.327999] [<c149de5b>] ? r300_init+0x1c5/0x20f [ 7.327999] [<c1479adc>] ? radeon_device_init+0x227/0x29f [ 7.327999] [<c147a366>] ? radeon_driver_load_kms+0x9d/0xff [ 7.327999] [<c1456e96>] ? drm_get_dev+0x28a/0x364 [ 7.327999] [<c1aa7f7a>] ? radeon_pci_probe+0xd/0xf [ 7.327999] [<c13d894e>] ? local_pci_probe+0xe/0x10 [ 7.327999] [<c13d8b17>] ? pci_device_probe+0x43/0x66 [ 7.327999] [<c14c9f4c>] ? driver_probe_device+0xae/0x13e [ 7.327999] [<c14ca01f>] ? __driver_attach+0x43/0x5f [ 7.327999] [<c14c98c2>] ? bus_for_each_dev+0x3d/0x67 [ 7.327999] [<c14c9da8>] ? driver_attach+0x14/0x16 [ 7.327999] [<c14c9fdc>] ? __driver_attach+0x0/0x5f [ 7.327999] [<c14c930b>] ? bus_add_driver+0xab/0x1d1 [ 7.327999] [<c14ca24b>] ? driver_register+0x79/0xe0 [ 7.327999] [<c13cafda>] ? __raw_spin_lock_init+0x28/0x4e [ 7.327999] [<c13d8cf2>] ? __pci_register_driver+0x4c/0xa9 [ 7.327999] [<c14534e1>] ? drm_init+0x5a/0xb2 [ 7.327999] [<c2179424>] ? radeon_init+0x0/0xae [ 7.327999] [<c21794d0>] ? radeon_init+0xac/0xae [ 7.327999] [<c1001051>] ? do_one_initcall+0x4c/0x154 [ 7.327999] [<c215430a>] ? kernel_init+0x112/0x163 [ 7.327999] [<c21541f8>] ? kernel_init+0x0/0x163 [ 7.327999] [<c1021036>] ? kernel_thread_helper+0x6/0x10 [ 7.327999] Code: d2 89 e5 56 8b 75 08 53 8b 5d 0c 8b 88 48 02 00 00 78 1e 3b 90 38 02 00 00 77 16 89 f0 c1 e8 08 83 c8 0c c1 e3 18 09 d8 8d 14 91 <89> 02 31 c0 eb 05 b8 ea ff ff ff 5b 5e 5d c3 83 78 50 09 55 89 [ 7.327999] EIP: [<c149b536>] rv370_pcie_gart_set_page+0x2d/0x3c SS:ESP 0068:f6c33d60 [ 7.327999] CR2: 00000000f8380000 [ 7.327999] ---[ end trace 190fd301f222c0b0 ]--- [ 7.635013] Kernel panic - not syncing: Attempted to kill init! ^ permalink raw reply [flat|nested] 64+ messages in thread
* Re: [crash, PATCH] Revert "drm/radeon/kms: move radeon KMS on/off switch out of staging." 2010-02-02 15:46 ` Ingo Molnar @ 2010-02-02 20:34 ` Dave Airlie 2010-02-04 6:26 ` Ingo Molnar 0 siblings, 1 reply; 64+ messages in thread From: Dave Airlie @ 2010-02-02 20:34 UTC (permalink / raw) To: Ingo Molnar; +Cc: Dave Airlie, torvalds, linux-kernel, dri-devel On Wed, Feb 3, 2010 at 1:46 AM, Ingo Molnar <mingo@elte.hu> wrote: > > * Dave Airlie <airlied@gmail.com> wrote: > >> On Tue, Feb 2, 2010 at 6:17 PM, Ingo Molnar <mingo@elte.hu> wrote: >> > >> > * Dave Airlie <airlied@linux.ie> wrote: >> > >> >> > Hi Linus, >> >> > >> >> > Please pull the 'drm-linus' branch from >> >> > ssh://master.kernel.org/pub/scm/linux/kernel/git/airlied/drm-2.6.git drm-linus >> >> > >> >> >> >> I've also added an oops fix I seem to lose off my radar to this tree. >> >> >> >> commit 17aafccab4352b422aa01fa6ebf82daff693a5b3 >> >> Author: Michel D??nzer <daenzer@vmware.com> >> >> Date: ? Fri Jan 22 09:20:00 2010 +0100 >> >> >> >> ? ? drm/radeon/kms: Fix oops after radeon_cs_parser_init() failure. >> > >> >> Wierd this suggests something else is wrong on that machine can you get me >> the whole dmesg? I'm guessing some iommu or swiotlb issue. > > This box has no known hardware or software problems, just this week it booted > in excess of 1000 kernels so i'd exclude that angle for now. > > I have bisected the crash back to the DRM tree and the crash went away with > the Kconfig revert i applied - and it got fixed by Jerome's patch. I posted > my config and i posted the relevant boot log as well. Find below the full > bootlog as well with vanilla -git (ab65832) and the config. (i dont think it > matters) > >> I've asked Jerome to fix the oops, but really anyone with an old .config >> won't get hit by this, and we've booted this on quite a lot of machines at >> this point. > > I dont see the commit in yesterday's linux-next. It has very fresh > timestamps: > > commit f71d0187987e691516cd10c2702f002c0e2f0edc > Author: Dave Airlie <airlied@redhat.com> > AuthorDate: Mon Feb 1 11:35:47 2010 +1000 > Commit: Dave Airlie <airlied@redhat.com> > CommitDate: Mon Feb 1 11:35:47 2010 +1000 > > What kind of widespread testing could this commit have gotten in the less > than 24 hours before it hit mainline? > Its shipping in a major distro by default, its planned to be shipped in an even more major distro. Its been boot tested on 1000s of machines by 1000s of ppl. Your bug isn't anything to do with this commit, its a completely separate issue, that nobody else has reported before now and Jerome has provided a patch for. Dave. ^ permalink raw reply [flat|nested] 64+ messages in thread
* Re: [crash, PATCH] Revert "drm/radeon/kms: move radeon KMS on/off switch out of staging." 2010-02-02 20:34 ` Dave Airlie @ 2010-02-04 6:26 ` Ingo Molnar 2010-02-04 6:39 ` Dave Airlie 2010-02-04 7:17 ` hung bootup with " Ingo Molnar 0 siblings, 2 replies; 64+ messages in thread From: Ingo Molnar @ 2010-02-04 6:26 UTC (permalink / raw) To: Dave Airlie; +Cc: Dave Airlie, torvalds, linux-kernel, dri-devel * Dave Airlie <airlied@gmail.com> wrote: > On Wed, Feb 3, 2010 at 1:46 AM, Ingo Molnar <mingo@elte.hu> wrote: > > > > * Dave Airlie <airlied@gmail.com> wrote: > > > >> On Tue, Feb 2, 2010 at 6:17 PM, Ingo Molnar <mingo@elte.hu> wrote: > >> > > >> > * Dave Airlie <airlied@linux.ie> wrote: > >> > > >> >> > Hi Linus, > >> >> > > >> >> > Please pull the 'drm-linus' branch from > >> >> > ssh://master.kernel.org/pub/scm/linux/kernel/git/airlied/drm-2.6.git drm-linus > >> >> > > >> >> > >> >> I've also added an oops fix I seem to lose off my radar to this tree. > >> >> > >> >> commit 17aafccab4352b422aa01fa6ebf82daff693a5b3 > >> >> Author: Michel D??nzer <daenzer@vmware.com> > >> >> Date: ? Fri Jan 22 09:20:00 2010 +0100 > >> >> > >> >> ? ? drm/radeon/kms: Fix oops after radeon_cs_parser_init() failure. > >> > > >> > >> Wierd this suggests something else is wrong on that machine can you get me > >> the whole dmesg? I'm guessing some iommu or swiotlb issue. > > > > This box has no known hardware or software problems, just this week it booted > > in excess of 1000 kernels so i'd exclude that angle for now. > > > > I have bisected the crash back to the DRM tree and the crash went away with > > the Kconfig revert i applied - and it got fixed by Jerome's patch. I posted > > my config and i posted the relevant boot log as well. Find below the full > > bootlog as well with vanilla -git (ab65832) and the config. (i dont think it > > matters) > > > >> I've asked Jerome to fix the oops, but really anyone with an old .config > >> won't get hit by this, and we've booted this on quite a lot of machines at > >> this point. > > > > I dont see the commit in yesterday's linux-next. It has very fresh > > timestamps: > > > > ?commit f71d0187987e691516cd10c2702f002c0e2f0edc > > ?Author: ? ? Dave Airlie <airlied@redhat.com> > > ?AuthorDate: Mon Feb 1 11:35:47 2010 +1000 > > ?Commit: ? ? Dave Airlie <airlied@redhat.com> > > ?CommitDate: Mon Feb 1 11:35:47 2010 +1000 > > > > What kind of widespread testing could this commit have gotten in the less > > than 24 hours before it hit mainline? > > > > Its shipping in a major distro by default, its planned to be shipped in an > even more major distro. Its been boot tested on 1000s of machines by 1000s > of ppl. Well but that's not the precise tree you sent to Linus, is it? Ingo ^ permalink raw reply [flat|nested] 64+ messages in thread
* Re: [crash, PATCH] Revert "drm/radeon/kms: move radeon KMS on/off switch out of staging." 2010-02-04 6:26 ` Ingo Molnar @ 2010-02-04 6:39 ` Dave Airlie 2010-02-04 7:36 ` Ingo Molnar 2010-02-04 7:17 ` hung bootup with " Ingo Molnar 1 sibling, 1 reply; 64+ messages in thread From: Dave Airlie @ 2010-02-04 6:39 UTC (permalink / raw) To: Ingo Molnar; +Cc: Dave Airlie, torvalds, linux-kernel, dri-devel >> On Wed, Feb 3, 2010 at 1:46 AM, Ingo Molnar <mingo@elte.hu> wrote: >> > >> > * Dave Airlie <airlied@gmail.com> wrote: >> > >> >> On Tue, Feb 2, 2010 at 6:17 PM, Ingo Molnar <mingo@elte.hu> wrote: >> >> > >> >> > * Dave Airlie <airlied@linux.ie> wrote: >> >> > >> >> >> > Hi Linus, >> >> >> > >> >> >> > Please pull the 'drm-linus' branch from >> >> >> > ssh://master.kernel.org/pub/scm/linux/kernel/git/airlied/drm-2.6.git drm-linus >> >> >> > >> >> >> >> >> >> I've also added an oops fix I seem to lose off my radar to this tree. >> >> >> >> >> >> commit 17aafccab4352b422aa01fa6ebf82daff693a5b3 >> >> >> Author: Michel D??nzer <daenzer@vmware.com> >> >> >> Date: ? Fri Jan 22 09:20:00 2010 +0100 >> >> >> >> >> >> ? ? drm/radeon/kms: Fix oops after radeon_cs_parser_init() failure. >> >> > >> >> >> >> Wierd this suggests something else is wrong on that machine can you get me >> >> the whole dmesg? I'm guessing some iommu or swiotlb issue. >> > >> > This box has no known hardware or software problems, just this week it booted >> > in excess of 1000 kernels so i'd exclude that angle for now. >> > >> > I have bisected the crash back to the DRM tree and the crash went away with >> > the Kconfig revert i applied - and it got fixed by Jerome's patch. I posted >> > my config and i posted the relevant boot log as well. Find below the full >> > bootlog as well with vanilla -git (ab65832) and the config. (i dont think it >> > matters) >> > >> >> I've asked Jerome to fix the oops, but really anyone with an old .config >> >> won't get hit by this, and we've booted this on quite a lot of machines at >> >> this point. >> > >> > I dont see the commit in yesterday's linux-next. It has very fresh >> > timestamps: >> > >> > ?commit f71d0187987e691516cd10c2702f002c0e2f0edc >> > ?Author: ? ? Dave Airlie <airlied@redhat.com> >> > ?AuthorDate: Mon Feb 1 11:35:47 2010 +1000 >> > ?Commit: ? ? Dave Airlie <airlied@redhat.com> >> > ?CommitDate: Mon Feb 1 11:35:47 2010 +1000 >> > >> > What kind of widespread testing could this commit have gotten in the less >> > than 24 hours before it hit mainline? >> > >> >> Its shipping in a major distro by default, its planned to be shipped in an >> even more major distro. Its been boot tested on 1000s of machines by 1000s >> of ppl. > > Well but that's not the precise tree you sent to Linus, is it? It pretty much is. If I could blame your crash on any of the recent patches I would but its something new and unfun. Most of the fixes in the Linus tree are directly from fixes to Fedora/Ubuntu bug reports. even after reviewing the dmesg I can't see why its failing on that system, If you could build 2.6.32 on that machine with the staging flag enabled and see if it works it would at least tell us if it is something in recent times or just something thats always been there. Unless some other option in make allyesconfig is conflicting and we've never hit it before. Fedora is close to allyesconfig but not pathalogical like allyesconfig is. Dave. ^ permalink raw reply [flat|nested] 64+ messages in thread
* Re: [crash, PATCH] Revert "drm/radeon/kms: move radeon KMS on/off switch out of staging." 2010-02-04 6:39 ` Dave Airlie @ 2010-02-04 7:36 ` Ingo Molnar 2010-02-04 7:49 ` Dave Airlie 0 siblings, 1 reply; 64+ messages in thread From: Ingo Molnar @ 2010-02-04 7:36 UTC (permalink / raw) To: Dave Airlie; +Cc: Dave Airlie, torvalds, linux-kernel, dri-devel * Dave Airlie <airlied@gmail.com> wrote: > >> On Wed, Feb 3, 2010 at 1:46 AM, Ingo Molnar <mingo@elte.hu> wrote: > >> > > >> > * Dave Airlie <airlied@gmail.com> wrote: > >> > > >> >> On Tue, Feb 2, 2010 at 6:17 PM, Ingo Molnar <mingo@elte.hu> wrote: > >> >> > > >> >> > * Dave Airlie <airlied@linux.ie> wrote: > >> >> > > >> >> >> > Hi Linus, > >> >> >> > > >> >> >> > Please pull the 'drm-linus' branch from > >> >> >> > ssh://master.kernel.org/pub/scm/linux/kernel/git/airlied/drm-2.6.git drm-linus > >> >> >> > > >> >> >> > >> >> >> I've also added an oops fix I seem to lose off my radar to this tree. > >> >> >> > >> >> >> commit 17aafccab4352b422aa01fa6ebf82daff693a5b3 > >> >> >> Author: Michel D??nzer <daenzer@vmware.com> > >> >> >> Date: ? Fri Jan 22 09:20:00 2010 +0100 > >> >> >> > >> >> >> ? ? drm/radeon/kms: Fix oops after radeon_cs_parser_init() failure. > >> >> > > >> >> > >> >> Wierd this suggests something else is wrong on that machine can you get me > >> >> the whole dmesg? I'm guessing some iommu or swiotlb issue. > >> > > >> > This box has no known hardware or software problems, just this week it booted > >> > in excess of 1000 kernels so i'd exclude that angle for now. > >> > > >> > I have bisected the crash back to the DRM tree and the crash went away with > >> > the Kconfig revert i applied - and it got fixed by Jerome's patch. I posted > >> > my config and i posted the relevant boot log as well. Find below the full > >> > bootlog as well with vanilla -git (ab65832) and the config. (i dont think it > >> > matters) > >> > > >> >> I've asked Jerome to fix the oops, but really anyone with an old .config > >> >> won't get hit by this, and we've booted this on quite a lot of machines at > >> >> this point. > >> > > >> > I dont see the commit in yesterday's linux-next. It has very fresh > >> > timestamps: > >> > > >> > ?commit f71d0187987e691516cd10c2702f002c0e2f0edc > >> > ?Author: ? ? Dave Airlie <airlied@redhat.com> > >> > ?AuthorDate: Mon Feb 1 11:35:47 2010 +1000 > >> > ?Commit: ? ? Dave Airlie <airlied@redhat.com> > >> > ?CommitDate: Mon Feb 1 11:35:47 2010 +1000 > >> > > >> > What kind of widespread testing could this commit have gotten in the less > >> > than 24 hours before it hit mainline? > >> > > >> > >> Its shipping in a major distro by default, its planned to be shipped in an > >> even more major distro. Its been boot tested on 1000s of machines by 1000s > >> of ppl. > > > > Well but that's not the precise tree you sent to Linus, is it? > > It pretty much is. If I could blame your crash on any of the recent patches > I would but its something new and unfun. [...] You dont seem to realize the plain and simple fact that the bug (and some other bug) was obscure before because this particular KMS aspect of the radeon driver was in drivers/staging/, and it became more prominent via this post-rc6 commit: | From f71d0187987e691516cd10c2702f002c0e2f0edc Mon Sep 17 00:00:00 2001 | From: Dave Airlie <airlied@redhat.com> | Date: Mon, 1 Feb 2010 11:35:47 +1000 | Subject: [PATCH] drm/radeon/kms: move radeon KMS on/off switch out of staging. | | We are happy enough that the KMS driver is stable enough for enough people | for the kms enable/disable to leave staging. Distros can now contemplate | turning this on. | | Signed-off-by: Dave Airlie <airlied@redhat.com> | --- | drivers/gpu/drm/Kconfig | 2 ++ | drivers/staging/Kconfig | 2 -- | 2 files changed, 2 insertions(+), 2 deletions(-) I never claimed (and still dont claim) that the bug is 'new' per se, so why do you keep beating down on that straw man argument? I said it in my very first mail that this bug got brought upon us by the Kconfig commit above: > > It's the moving of radeom KMS out of staging after -rc6 that causes it, > > because it brought it into the scope of my testing: > > > > f71d018: drm/radeon/kms: move radeon KMS on/off switch out of staging. > > > > So at least on this box it's clearly not ready for mainline enablement > > yet. I dont mind reporting bugs and testing patches (as i did), all i said is that from a QA angle it's somewhat late to do that in -rc7. (It's not even a completely new driver either, which people would know to stay away from - it's a new config option of an existing driver, so i'd expect many people to turn it on when they see it in the oldconfig - even though it's default-off.) You made the bug more prominent by moving it into the driver proper, after -rc6, and while i dont mind reporting and working on bugs, your constant denial is somewhat counter-productive, as (beyond the waste of time on these emails) it suggests that we might see repeat incidents of this kind in the future. Anyway, with two bugs in a row this commit is clearly too problematic for me so i have reverted f71d018 from -tip. Thanks, Ingo ^ permalink raw reply [flat|nested] 64+ messages in thread
* Re: [crash, PATCH] Revert "drm/radeon/kms: move radeon KMS on/off switch out of staging." 2010-02-04 7:36 ` Ingo Molnar @ 2010-02-04 7:49 ` Dave Airlie 0 siblings, 0 replies; 64+ messages in thread From: Dave Airlie @ 2010-02-04 7:49 UTC (permalink / raw) To: Ingo Molnar; +Cc: Dave Airlie, torvalds, linux-kernel, dri-devel On Thu, Feb 4, 2010 at 5:36 PM, Ingo Molnar <mingo@elte.hu> wrote: > > * Dave Airlie <airlied@gmail.com> wrote: > >> >> On Wed, Feb 3, 2010 at 1:46 AM, Ingo Molnar <mingo@elte.hu> wrote: >> >> > >> >> > * Dave Airlie <airlied@gmail.com> wrote: >> >> > >> >> >> On Tue, Feb 2, 2010 at 6:17 PM, Ingo Molnar <mingo@elte.hu> wrote: >> >> >> > >> >> >> > * Dave Airlie <airlied@linux.ie> wrote: >> >> >> > >> >> >> >> > Hi Linus, >> >> >> >> > >> >> >> >> > Please pull the 'drm-linus' branch from >> >> >> >> > ssh://master.kernel.org/pub/scm/linux/kernel/git/airlied/drm-2.6.git drm-linus >> >> >> >> > >> >> >> >> >> >> >> >> I've also added an oops fix I seem to lose off my radar to this tree. >> >> >> >> >> >> >> >> commit 17aafccab4352b422aa01fa6ebf82daff693a5b3 >> >> >> >> Author: Michel D??nzer <daenzer@vmware.com> >> >> >> >> Date: ? Fri Jan 22 09:20:00 2010 +0100 >> >> >> >> >> >> >> >> ? ? drm/radeon/kms: Fix oops after radeon_cs_parser_init() failure. >> >> >> > >> >> >> >> >> >> Wierd this suggests something else is wrong on that machine can you get me >> >> >> the whole dmesg? I'm guessing some iommu or swiotlb issue. >> >> > >> >> > This box has no known hardware or software problems, just this week it booted >> >> > in excess of 1000 kernels so i'd exclude that angle for now. >> >> > >> >> > I have bisected the crash back to the DRM tree and the crash went away with >> >> > the Kconfig revert i applied - and it got fixed by Jerome's patch. I posted >> >> > my config and i posted the relevant boot log as well. Find below the full >> >> > bootlog as well with vanilla -git (ab65832) and the config. (i dont think it >> >> > matters) >> >> > >> >> >> I've asked Jerome to fix the oops, but really anyone with an old .config >> >> >> won't get hit by this, and we've booted this on quite a lot of machines at >> >> >> this point. >> >> > >> >> > I dont see the commit in yesterday's linux-next. It has very fresh >> >> > timestamps: >> >> > >> >> > ?commit f71d0187987e691516cd10c2702f002c0e2f0edc >> >> > ?Author: ? ? Dave Airlie <airlied@redhat.com> >> >> > ?AuthorDate: Mon Feb 1 11:35:47 2010 +1000 >> >> > ?Commit: ? ? Dave Airlie <airlied@redhat.com> >> >> > ?CommitDate: Mon Feb 1 11:35:47 2010 +1000 >> >> > >> >> > What kind of widespread testing could this commit have gotten in the less >> >> > than 24 hours before it hit mainline? >> >> > >> >> >> >> Its shipping in a major distro by default, its planned to be shipped in an >> >> even more major distro. Its been boot tested on 1000s of machines by 1000s >> >> of ppl. >> > >> > Well but that's not the precise tree you sent to Linus, is it? >> >> It pretty much is. If I could blame your crash on any of the recent patches >> I would but its something new and unfun. [...] > > You dont seem to realize the plain and simple fact that the bug (and some > other bug) was obscure before because this particular KMS aspect of the > radeon driver was in drivers/staging/, and it became more prominent via this > post-rc6 commit: > > | From f71d0187987e691516cd10c2702f002c0e2f0edc Mon Sep 17 00:00:00 2001 > | From: Dave Airlie <airlied@redhat.com> > | Date: Mon, 1 Feb 2010 11:35:47 +1000 > | Subject: [PATCH] drm/radeon/kms: move radeon KMS on/off switch out of staging. > | > | We are happy enough that the KMS driver is stable enough for enough people > | for the kms enable/disable to leave staging. Distros can now contemplate > | turning this on. > | > | Signed-off-by: Dave Airlie <airlied@redhat.com> > | --- > | drivers/gpu/drm/Kconfig | 2 ++ > | drivers/staging/Kconfig | 2 -- > | 2 files changed, 2 insertions(+), 2 deletions(-) > > I never claimed (and still dont claim) that the bug is 'new' per se, so why > do you keep beating down on that straw man argument? I said it in my very > first mail that this bug got brought upon us by the Kconfig commit above: > >> > It's the moving of radeom KMS out of staging after -rc6 that causes it, >> > because it brought it into the scope of my testing: >> > >> > f71d018: drm/radeon/kms: move radeon KMS on/off switch out of staging. >> > >> > So at least on this box it's clearly not ready for mainline enablement >> > yet. > > I dont mind reporting bugs and testing patches (as i did), all i said is that > from a QA angle it's somewhat late to do that in -rc7. (It's not even a > completely new driver either, which people would know to stay away from - > it's a new config option of an existing driver, so i'd expect many people to > turn it on when they see it in the oldconfig - even though it's default-off.) > > You made the bug more prominent by moving it into the driver proper, after > -rc6, and while i dont mind reporting and working on bugs, your constant > denial is somewhat counter-productive, as (beyond the waste of time on these > emails) it suggests that we might see repeat incidents of this kind in the > future. > > Anyway, with two bugs in a row this commit is clearly too problematic for me > so i have reverted f71d018 from -tip. > I haven't denied anything, I'm merely stating one bug on one machine isn't the end of the known world. the Kconfig clearly states you need to review your userspace to use this code, so if people are turning things on blindly they are going to get problems. This is true for all KMS drivers and will remain true. allytesconfig isn't something that anyone runs in a non-test configuration. The only place you can get the correct userspace is via a distro like F12 or Ubuntu in which case you've already booted their kernel and not seen the problems, or have built all the userspace anyways. Jerome's patch fixes the oops part of the problem doesn't it? I'll be pushing that out as soon as I get some time to review it and fix the warning you saw. Look x86 has broken a lot more shit at later rc times so please step down from that high horse please already. Dave. ^ permalink raw reply [flat|nested] 64+ messages in thread
* hung bootup with "drm/radeon/kms: move radeon KMS on/off switch out of staging." 2010-02-04 6:26 ` Ingo Molnar 2010-02-04 6:39 ` Dave Airlie @ 2010-02-04 7:17 ` Ingo Molnar 2010-02-04 16:48 ` Matthew Garrett 1 sibling, 1 reply; 64+ messages in thread From: Ingo Molnar @ 2010-02-04 7:17 UTC (permalink / raw) To: Dave Airlie; +Cc: Dave Airlie, torvalds, linux-kernel, dri-devel [-- Attachment #1: Type: text/plain, Size: 5132 bytes --] * Ingo Molnar <mingo@elte.hu> wrote: > * Dave Airlie <airlied@gmail.com> wrote: > > > On Wed, Feb 3, 2010 at 1:46 AM, Ingo Molnar <mingo@elte.hu> wrote: > > > > > > * Dave Airlie <airlied@gmail.com> wrote: > > > > > >> On Tue, Feb 2, 2010 at 6:17 PM, Ingo Molnar <mingo@elte.hu> wrote: > > >> > > > >> > * Dave Airlie <airlied@linux.ie> wrote: > > >> > > > >> >> > Hi Linus, > > >> >> > > > >> >> > Please pull the 'drm-linus' branch from > > >> >> > ssh://master.kernel.org/pub/scm/linux/kernel/git/airlied/drm-2.6.git drm-linus > > >> >> > > > >> >> > > >> >> I've also added an oops fix I seem to lose off my radar to this tree. > > >> >> > > >> >> commit 17aafccab4352b422aa01fa6ebf82daff693a5b3 > > >> >> Author: Michel D??nzer <daenzer@vmware.com> > > >> >> Date: ? Fri Jan 22 09:20:00 2010 +0100 > > >> >> > > >> >> ? ? drm/radeon/kms: Fix oops after radeon_cs_parser_init() failure. > > >> > > > >> > > >> Wierd this suggests something else is wrong on that machine can you get me > > >> the whole dmesg? I'm guessing some iommu or swiotlb issue. > > > > > > This box has no known hardware or software problems, just this week it booted > > > in excess of 1000 kernels so i'd exclude that angle for now. > > > > > > I have bisected the crash back to the DRM tree and the crash went away with > > > the Kconfig revert i applied - and it got fixed by Jerome's patch. I posted > > > my config and i posted the relevant boot log as well. Find below the full > > > bootlog as well with vanilla -git (ab65832) and the config. (i dont think it > > > matters) > > > > > >> I've asked Jerome to fix the oops, but really anyone with an old .config > > >> won't get hit by this, and we've booted this on quite a lot of machines at > > >> this point. > > > > > > I dont see the commit in yesterday's linux-next. It has very fresh > > > timestamps: > > > > > > ?commit f71d0187987e691516cd10c2702f002c0e2f0edc > > > ?Author: ? ? Dave Airlie <airlied@redhat.com> > > > ?AuthorDate: Mon Feb 1 11:35:47 2010 +1000 > > > ?Commit: ? ? Dave Airlie <airlied@redhat.com> > > > ?CommitDate: Mon Feb 1 11:35:47 2010 +1000 > > > > > > What kind of widespread testing could this commit have gotten in the less > > > than 24 hours before it hit mainline? > > > > > > > Its shipping in a major distro by default, its planned to be shipped in an > > even more major distro. Its been boot tested on 1000s of machines by 1000s > > of ppl. > > Well but that's not the precise tree you sent to Linus, is it? btw., i just found another bug activated via this same commit, a boot hang after DRM init: [ 9.858352] [drm] Connector 1: [ 9.861417] [drm] DVI-I [ 9.864031] [drm] HPD1 [ 9.866562] [drm] DDC: 0x64 0x64 0x64 0x64 0x64 0x64 0x64 0x64 [ 9.872579] [drm] Encoders: [ 9.875540] [drm] CRT2: INTERNAL_DAC2 [ 9.879541] [drm] DFP1: INTERNAL_TMDS1 [ 9.883646] [drm] Connector 2: [ 9.886695] [drm] S-video [ 9.889483] [drm] Encoders: [ 9.892463] [drm] TV1: INTERNAL_DAC2 [ 9.896392] i2c i2c-0: master_xfer[0] W, addr=0x50, len=1 [ 9.901796] i2c i2c-0: master_xfer[1] R, addr=0x50, len=128 [ 9.909246] i2c i2c-0: NAK from device addr 0x50 msg #0 [ 9.914564] i2c i2c-1: master_xfer[0] W, addr=0x50, len=1 [ 9.919957] i2c i2c-1: master_xfer[1] R, addr=0x50, len=128 [ 9.927413] i2c i2c-1: NAK from device addr 0x50 msg #0 (i power cycled the box after 45 minutes of waiting.) The hang goes away if i revert commit f71d0187987e6 via the patch below, the boot sequence becomes: [ 9.068911] calling drm_core_init+0x0/0x137 @ 1 [ 9.073617] [drm] Initialized drm 1.1.0 20060810 [ 9.078232] initcall drm_core_init+0x0/0x137 returned 0 after 4586 usecs [ 9.120162] [drm] radeon defaulting to userspace modesetting. [ 9.154295] [drm] Initialized radeon 1.31.0 20080528 for 0000:01:00.0 on minor 0 Config and bootlog attached. Ingo -------------> >From 8b607af1a03d526aef14461e84de9f427b45d64f Mon Sep 17 00:00:00 2001 From: Ingo Molnar <mingo@elte.hu> Date: Tue, 2 Feb 2010 09:06:04 +0100 Subject: [PATCH] Revert "drm/radeon/kms: move radeon KMS on/off switch out of staging." This reverts commit f71d0187987e691516cd10c2702f002c0e2f0edc. Signed-off-by: Ingo Molnar <mingo@elte.hu> --- drivers/gpu/drm/Kconfig | 2 -- drivers/staging/Kconfig | 2 ++ 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/drivers/gpu/drm/Kconfig b/drivers/gpu/drm/Kconfig index 305c590..96eddd1 100644 --- a/drivers/gpu/drm/Kconfig +++ b/drivers/gpu/drm/Kconfig @@ -66,8 +66,6 @@ config DRM_RADEON If M is selected, the module will be called radeon. -source "drivers/gpu/drm/radeon/Kconfig" - config DRM_I810 tristate "Intel I810" depends on DRM && AGP && AGP_INTEL diff --git a/drivers/staging/Kconfig b/drivers/staging/Kconfig index fc2e963..94eb863 100644 --- a/drivers/staging/Kconfig +++ b/drivers/staging/Kconfig @@ -99,6 +99,8 @@ source "drivers/staging/line6/Kconfig" source "drivers/gpu/drm/vmwgfx/Kconfig" +source "drivers/gpu/drm/radeon/Kconfig" + source "drivers/gpu/drm/nouveau/Kconfig" source "drivers/staging/octeon/Kconfig" [-- Attachment #2: hang.log --] [-- Type: text/plain, Size: 92475 bytes --] [ 0.000000] Linux version 2.6.33-rc6-tip-00688-g4f4a2fd-dirty (mingo@sirius) (gcc version 4.4.1 20091008 (Red Hat 4.4.1-20) (GCC) ) #14894 SMP PREEMPT Thu Feb 4 09:40:09 CET 2010 [ 0.000000] Command line: root=/dev/sda6 earlyprintk=ttyS0,115200 console=ttyS0,115200 debug initcall_debug sysrq_always_enabled ignore_loglevel selinux=0 nmi_watchdog=0 panic=1 3 [ 0.000000] CPU: vendor_id 'AuthenticAMD' unknown, using generic init. [ 0.000000] CPU: Your system may be unstable. [ 0.000000] BIOS-provided physical RAM map: [ 0.000000] BIOS-e820: 0000000000000000 - 000000000009f800 (usable) [ 0.000000] BIOS-e820: 000000000009f800 - 00000000000a0000 (reserved) [ 0.000000] BIOS-e820: 00000000000f0000 - 0000000000100000 (reserved) [ 0.000000] BIOS-e820: 0000000000100000 - 000000003fff0000 (usable) [ 0.000000] BIOS-e820: 000000003fff0000 - 000000003fff3000 (ACPI NVS) [ 0.000000] BIOS-e820: 000000003fff3000 - 0000000040000000 (ACPI data) [ 0.000000] BIOS-e820: 00000000e0000000 - 00000000f0000000 (reserved) [ 0.000000] BIOS-e820: 00000000fec00000 - 0000000100000000 (reserved) [ 0.000000] bootconsole [earlyser0] enabled [ 0.000000] debug: ignoring loglevel setting. [ 0.000000] NX (Execute Disable) protection: active [ 0.000000] e820 update range: 0000000000000000 - 0000000000001000 (usable) ==> (reserved) [ 0.000000] e820 remove range: 00000000000a0000 - 0000000000100000 (usable) [ 0.000000] No AGP bridge found [ 0.000000] last_pfn = 0x3fff0 max_arch_pfn = 0x400000000 [ 0.000000] MTRR default type: uncachable [ 0.000000] MTRR fixed ranges enabled: [ 0.000000] 00000-9FFFF write-back [ 0.000000] A0000-BFFFF uncachable [ 0.000000] C0000-C7FFF write-protect [ 0.000000] C8000-FFFFF uncachable [ 0.000000] MTRR variable ranges enabled: [ 0.000000] 0 base 0000000000 mask FFC0000000 write-back [ 0.000000] 1 disabled [ 0.000000] 2 disabled [ 0.000000] 3 disabled [ 0.000000] 4 disabled [ 0.000000] 5 disabled [ 0.000000] 6 disabled [ 0.000000] 7 disabled [ 0.000000] x86 PAT enabled: cpu 0, old 0x7040600070406, new 0x7010600070106 [ 0.000000] e820 update range: 0000000000001000 - 0000000000010000 (usable) ==> (reserved) [ 0.000000] Scanning 1 areas for low memory corruption [ 0.000000] modified physical RAM map: [ 0.000000] modified: 0000000000000000 - 0000000000010000 (reserved) [ 0.000000] modified: 0000000000010000 - 000000000009f800 (usable) [ 0.000000] modified: 000000000009f800 - 00000000000a0000 (reserved) [ 0.000000] modified: 00000000000f0000 - 0000000000100000 (reserved) [ 0.000000] modified: 0000000000100000 - 000000003fff0000 (usable) [ 0.000000] modified: 000000003fff0000 - 000000003fff3000 (ACPI NVS) [ 0.000000] modified: 000000003fff3000 - 0000000040000000 (ACPI data) [ 0.000000] modified: 00000000e0000000 - 00000000f0000000 (reserved) [ 0.000000] modified: 00000000fec00000 - 0000000100000000 (reserved) [ 0.000000] initial memory mapped : 0 - 20000000 [ 0.000000] found SMP MP-table at [ffff8800000f5680] f5680 [ 0.000000] init_memory_mapping: 0000000000000000-000000003fff0000 [ 0.000000] 0000000000 - 003fe00000 page 2M [ 0.000000] 003fe00000 - 003fff0000 page 4k [ 0.000000] kernel direct mapping tables up to 3fff0000 @ 16000-19000 [ 0.000000] ACPI: RSDP 00000000000f76f0 00014 (v00 Nvidia) [ 0.000000] ACPI: RSDT 000000003fff3040 00034 (v01 Nvidia AWRDACPI 42302E31 AWRD 00000000) [ 0.000000] ACPI: FACP 000000003fff30c0 00074 (v01 Nvidia AWRDACPI 42302E31 AWRD 00000000) [ 0.000000] ACPI: DSDT 000000003fff3180 06264 (v01 NVIDIA AWRDACPI 00001000 MSFT 0100000E) [ 0.000000] ACPI: FACS 000000003fff0000 00040 [ 0.000000] ACPI: SRAT 000000003fff9500 000A0 (v01 AMD HAMMER 00000001 AMD 00000001) [ 0.000000] ACPI: MCFG 000000003fff9600 0003C (v01 Nvidia AWRDACPI 42302E31 AWRD 00000000) [ 0.000000] ACPI: APIC 000000003fff9440 0007C (v01 Nvidia AWRDACPI 42302E31 AWRD 00000000) [ 0.000000] ACPI: Local APIC address 0xfee00000 [ 0.000000] SRAT: PXM 0 -> APIC 0x00 -> Node 0 [ 0.000000] SRAT: PXM 0 -> APIC 0x01 -> Node 0 [ 0.000000] SRAT: Node 0 PXM 0 0-a0000 [ 0.000000] SRAT: Node 0 PXM 0 100000-40000000 [ 0.000000] NUMA: Allocated memnodemap from 17000 - 17840 [ 0.000000] NUMA: Using 20 for the hash shift. [ 0.000000] Bootmem setup node 0 0000000000000000-000000003fff0000 [ 0.000000] NODE_DATA [0000000000017840 - 000000000002683f] [ 0.000000] bootmap [0000000000027000 - 000000000002efff] pages 8 [ 0.000000] (11 early reservations) ==> bootmem [0000000000 - 003fff0000] [ 0.000000] #0 [0000000000 - 0000001000] BIOS data page ==> [0000000000 - 0000001000] [ 0.000000] #1 [0001000000 - 0002981024] TEXT DATA BSS ==> [0001000000 - 0002981024] [ 0.000000] #2 [00000f5690 - 0000100000] BIOS reserved ==> [00000f5690 - 0000100000] [ 0.000000] #3 [00000f5680 - 00000f5690] MP-table mpf ==> [00000f5680 - 00000f5690] [ 0.000000] #4 [000009f800 - 00000f1400] BIOS reserved ==> [000009f800 - 00000f1400] [ 0.000000] #5 [00000f152c - 00000f5680] BIOS reserved ==> [00000f152c - 00000f5680] [ 0.000000] #6 [00000f1400 - 00000f152c] MP-table mpc ==> [00000f1400 - 00000f152c] [ 0.000000] #7 [0000010000 - 0000012000] TRAMPOLINE ==> [0000010000 - 0000012000] [ 0.000000] #8 [0000012000 - 0000016000] ACPI WAKEUP ==> [0000012000 - 0000016000] [ 0.000000] #9 [0000016000 - 0000017000] PGTABLE ==> [0000016000 - 0000017000] [ 0.000000] #10 [0000017000 - 0000017840] MEMNODEMAP ==> [0000017000 - 0000017840] [ 0.000000] Zone PFN ranges: [ 0.000000] DMA 0x00000010 -> 0x00001000 [ 0.000000] DMA32 0x00001000 -> 0x00100000 [ 0.000000] Normal 0x00100000 -> 0x00100000 [ 0.000000] Movable zone start PFN for each node [ 0.000000] early_node_map[2] active PFN ranges [ 0.000000] 0: 0x00000010 -> 0x0000009f [ 0.000000] 0: 0x00000100 -> 0x0003fff0 [ 0.000000] On node 0 totalpages: 262015 [ 0.000000] DMA zone: 56 pages used for memmap [ 0.000000] DMA zone: 103 pages reserved [ 0.000000] DMA zone: 3824 pages, LIFO batch:0 [ 0.000000] DMA32 zone: 3528 pages used for memmap [ 0.000000] DMA32 zone: 254504 pages, LIFO batch:31 [ 0.000000] Nvidia board detected. Ignoring ACPI timer override. [ 0.000000] If you got timer trouble try acpi_use_timer_override [ 0.000000] ACPI: PM-Timer IO Port: 0x4008 [ 0.000000] ACPI: Local APIC address 0xfee00000 [ 0.000000] ACPI: LAPIC (acpi_id[0x00] lapic_id[0x00] enabled) [ 0.000000] ACPI: LAPIC (acpi_id[0x01] lapic_id[0x01] enabled) [ 0.000000] ACPI: LAPIC_NMI (acpi_id[0x00] high edge lint[0x1]) [ 0.000000] ACPI: LAPIC_NMI (acpi_id[0x01] high edge lint[0x1]) [ 0.000000] ACPI: IOAPIC (id[0x02] address[0xfec00000] gsi_base[0]) [ 0.000000] IOAPIC[0]: apic_id 2, version 17, address 0xfec00000, GSI 0-23 [ 0.000000] ACPI: INT_SRC_OVR (bus 0 bus_irq 0 global_irq 2 dfl dfl) [ 0.000000] ACPI: BIOS IRQ0 pin2 override ignored. [ 0.000000] ACPI: INT_SRC_OVR (bus 0 bus_irq 9 global_irq 9 high level) [ 0.000000] ACPI: INT_SRC_OVR (bus 0 bus_irq 14 global_irq 14 high edge) [ 0.000000] ACPI: INT_SRC_OVR (bus 0 bus_irq 15 global_irq 15 high edge) [ 0.000000] ACPI: IRQ9 used by override. [ 0.000000] ACPI: IRQ14 used by override. [ 0.000000] ACPI: IRQ15 used by override. [ 0.000000] Using ACPI (MADT) for SMP configuration information [ 0.000000] SMP: Allowing 2 CPUs, 0 hotplug CPUs [ 0.000000] nr_irqs_gsi: 24 [ 0.000000] PM: Registered nosave memory: 000000000009f000 - 00000000000a0000 [ 0.000000] PM: Registered nosave memory: 00000000000a0000 - 00000000000f0000 [ 0.000000] PM: Registered nosave memory: 00000000000f0000 - 0000000000100000 [ 0.000000] Allocating PCI resources starting at 40000000 (gap: 40000000:a0000000) [ 0.000000] Booting paravirtualized kernel on bare hardware [ 0.000000] setup_percpu: NR_CPUS:8 nr_cpumask_bits:8 nr_cpu_ids:2 nr_node_ids:1 [ 0.000000] PERCPU: Embedded 24 pages/cpu @ffff880002a00000 s77008 r0 d21296 u1048576 [ 0.000000] pcpu-alloc: s77008 r0 d21296 u1048576 alloc=1*2097152 [ 0.000000] pcpu-alloc: [0] 0 1 [ 0.000000] Built 1 zonelists in Node order, mobility grouping on. Total pages: 258328 [ 0.000000] Policy zone: DMA32 [ 0.000000] Kernel command line: root=/dev/sda6 earlyprintk=ttyS0,115200 console=ttyS0,115200 debug initcall_debug sysrq_always_enabled ignore_loglevel selinux=0 nmi_watchdog=0 panic=1 3 [ 0.000000] debug: sysrq always enabled. [ 0.000000] PID hash table entries: 4096 (order: 3, 32768 bytes) [ 0.000000] Checking aperture... [ 0.000000] No AGP bridge found [ 0.000000] Node 0: aperture @ 20000000 size 32 MB [ 0.000000] Aperture pointing to e820 RAM. Ignoring. [ 0.000000] Memory: 1007068k/1048512k available (14511k kernel code, 452k absent, 40992k reserved, 8560k data, 676k init) [ 0.000000] Hierarchical RCU implementation. [ 0.000000] RCU-based detection of stalled CPUs is enabled. [ 0.000000] NR_IRQS:4352 nr_irqs:512 [ 0.000000] spurious 8259A interrupt: IRQ7. [ 0.000000] Console: colour VGA+ 80x25 [ 0.000000] console [ttyS0] enabled, bootconsole disabled [ 0.000000] console [ttyS0] enabled, bootconsole disabled [ 0.000000] allocated 10485760 bytes of page_cgroup [ 0.000000] please try 'cgroup_disable=memory' option if you don't want memory cgroups [ 0.000000] Fast TSC calibration using PIT [ 0.000000] Detected 2010.324 MHz processor. [ 0.020003] Calibrating delay loop (skipped), value calculated using timer frequency.. 4020.64 BogoMIPS (lpj=20103240) [ 0.032899] Security Framework initialized [ 0.040134] Dentry cache hash table entries: 131072 (order: 8, 1048576 bytes) [ 0.050158] Inode-cache hash table entries: 65536 (order: 7, 524288 bytes) [ 0.057321] Mount-cache hash table entries: 256 [ 0.060121] Initializing cgroup subsys debug [ 0.064384] Initializing cgroup subsys ns [ 0.070004] Initializing cgroup subsys cpuacct [ 0.074441] Initializing cgroup subsys memory [ 0.078797] Initializing cgroup subsys devices [ 0.080003] Initializing cgroup subsys blkio [ 0.084294] mce: CPU supports 5 MCE banks [ 0.090002] MCE: unknown CPU type - not enabling MCE support. [ 0.095739] Performance Events: [ 0.100666] ACPI: Core revision 20091214 [ 0.116953] Setting APIC routing to flat [ 0.120310] ..TIMER: vector=0x30 apic1=0 pin1=0 apic2=-1 pin2=-1 [ 0.227202] CPU0: AuthenticAMD AMD Athlon(tm) 64 X2 Dual Core Processor 3800+ stepping 02 [ 0.240000] calling migration_init+0x0/0x5a @ 1 [ 0.240012] initcall migration_init+0x0/0x5a returned 0 after 9765 usecs [ 0.246700] calling spawn_ksoftirqd+0x0/0x59 @ 1 [ 0.260006] initcall spawn_ksoftirqd+0x0/0x59 returned 0 after 9765 usecs [ 0.266784] calling init_call_single_data+0x0/0x8a @ 1 [ 0.270004] initcall init_call_single_data+0x0/0x8a returned 0 after 0 usecs [ 0.277042] calling relay_init+0x0/0x14 @ 1 [ 0.280003] initcall relay_init+0x0/0x14 returned 0 after 0 usecs [ 0.290028] Booting Node 0, Processors #1 Ok. [ 0.450051] Brought up 2 CPUs [ 0.453021] Total of 2 processors activated (8041.33 BogoMIPS). [ 0.463378] calling init_mmap_min_addr+0x0/0x16 @ 1 [ 0.468338] initcall init_mmap_min_addr+0x0/0x16 returned 0 after 0 usecs [ 0.470005] calling net_ns_init+0x0/0xff @ 1 [ 0.474389] initcall net_ns_init+0x0/0xff returned 0 after 0 usecs [ 0.480005] calling e820_mark_nvs_memory+0x0/0x41 @ 1 [ 0.490043] initcall e820_mark_nvs_memory+0x0/0x41 returned 0 after 0 usecs [ 0.496999] calling pci_reboot_init+0x0/0x8 @ 1 [ 0.500002] initcall pci_reboot_init+0x0/0x8 returned 0 after 0 usecs [ 0.506435] calling init_lapic_sysfs+0x0/0x2d @ 1 [ 0.510102] initcall init_lapic_sysfs+0x0/0x2d returned 0 after 0 usecs [ 0.520006] calling init_smp_flush+0x0/0x2d @ 1 [ 0.524617] initcall init_smp_flush+0x0/0x2d returned 0 after 0 usecs [ 0.530004] calling alloc_frozen_cpus+0x0/0x10 @ 1 [ 0.534876] initcall alloc_frozen_cpus+0x0/0x10 returned 0 after 0 usecs [ 0.540002] calling sysctl_init+0x0/0x32 @ 1 [ 0.544413] initcall sysctl_init+0x0/0x32 returned 0 after 0 usecs [ 0.550002] calling ksysfs_init+0x0/0x94 @ 1 [ 0.554362] initcall ksysfs_init+0x0/0x94 returned 0 after 0 usecs [ 0.560003] calling async_init+0x0/0x60 @ 1 [ 0.564293] initcall async_init+0x0/0x60 returned 0 after 0 usecs [ 0.570018] calling init_jiffies_clocksource+0x0/0x12 @ 1 [ 0.580005] initcall init_jiffies_clocksource+0x0/0x12 returned 0 after 0 usecs [ 0.587302] calling pm_init+0x0/0x34 @ 1 [ 0.590005] initcall pm_init+0x0/0x34 returned 0 after 0 usecs [ 0.595829] calling pm_disk_init+0x0/0x19 @ 1 [ 0.600004] initcall pm_disk_init+0x0/0x19 returned 0 after 0 usecs [ 0.606264] calling swsusp_header_init+0x0/0x30 @ 1 [ 0.610004] initcall swsusp_header_init+0x0/0x30 returned 0 after 0 usecs [ 0.616783] calling init_hw_breakpoint+0x0/0x12 @ 1 [ 0.620004] initcall init_hw_breakpoint+0x0/0x12 returned 0 after 0 usecs [ 0.630002] calling init_zero_pfn+0x0/0x68 @ 1 [ 0.634530] initcall init_zero_pfn+0x0/0x68 returned 0 after 0 usecs [ 0.640002] calling filelock_init+0x0/0x2e @ 1 [ 0.644531] initcall filelock_init+0x0/0x2e returned 0 after 0 usecs [ 0.650002] calling init_misc_binfmt+0x0/0x41 @ 1 [ 0.654789] initcall init_misc_binfmt+0x0/0x41 returned 0 after 0 usecs [ 0.660002] calling init_script_binfmt+0x0/0x14 @ 1 [ 0.664963] initcall init_script_binfmt+0x0/0x14 returned 0 after 0 usecs [ 0.670002] calling init_elf_binfmt+0x0/0x14 @ 1 [ 0.680002] initcall init_elf_binfmt+0x0/0x14 returned 0 after 0 usecs [ 0.686521] calling init_compat_elf_binfmt+0x0/0x14 @ 1 [ 0.690003] initcall init_compat_elf_binfmt+0x0/0x14 returned 0 after 0 usecs [ 0.697127] calling debugfs_init+0x0/0x5c @ 1 [ 0.700005] initcall debugfs_init+0x0/0x5c returned 0 after 0 usecs [ 0.710002] calling securityfs_init+0x0/0x53 @ 1 [ 0.714706] initcall securityfs_init+0x0/0x53 returned 0 after 0 usecs [ 0.720002] calling calibrate_xor_blocks+0x0/0x143 @ 1 [ 0.725223] xor: automatically using best checksumming function: generic_sse [ 0.780002] generic_sse: 5970.400 MB/sec [ 0.784264] xor: using function: generic_sse (5970.400 MB/sec) [ 0.790002] initcall calibrate_xor_blocks+0x0/0x143 returned 0 after 68359 usecs [ 0.797387] calling random32_init+0x0/0xd9 @ 1 [ 0.800002] initcall random32_init+0x0/0xd9 returned 0 after 0 usecs [ 0.806349] calling regulator_init+0x0/0x2e @ 1 [ 0.810001] regulator: core version 0.5 [ 0.813879] initcall regulator_init+0x0/0x2e returned 0 after 0 usecs [ 0.820007] calling cpuidle_init+0x0/0x40 @ 1 [ 0.824448] initcall cpuidle_init+0x0/0x40 returned 0 after 0 usecs [ 0.830004] calling virtio_init+0x0/0x30 @ 1 [ 0.834409] initcall virtio_init+0x0/0x30 returned 0 after 0 usecs [ 0.840009] calling sock_init+0x0/0x5e @ 1 [ 0.844213] initcall sock_init+0x0/0x5e returned 0 after 0 usecs [ 0.850002] calling net_inuse_init+0x0/0x26 @ 1 [ 0.854618] initcall net_inuse_init+0x0/0x26 returned 0 after 0 usecs [ 0.860002] calling netpoll_init+0x0/0x31 @ 1 [ 0.870002] initcall netpoll_init+0x0/0x31 returned 0 after 0 usecs [ 0.876263] calling netlink_proto_init+0x0/0x14a @ 1 [ 0.880010] NET: Registered protocol family 16 [ 0.884463] initcall netlink_proto_init+0x0/0x14a returned 0 after 0 usecs [ 0.890002] calling bdi_class_init+0x0/0x41 @ 1 [ 0.894675] initcall bdi_class_init+0x0/0x41 returned 0 after 0 usecs [ 0.900010] calling kobject_uevent_init+0x0/0x54 @ 1 [ 0.905061] initcall kobject_uevent_init+0x0/0x54 returned 0 after 0 usecs [ 0.910002] calling gpiolib_sysfs_init+0x0/0x93 @ 1 [ 0.920060] initcall gpiolib_sysfs_init+0x0/0x93 returned 0 after 0 usecs [ 0.926835] calling pcibus_class_init+0x0/0x19 @ 1 [ 0.930052] initcall pcibus_class_init+0x0/0x19 returned 0 after 0 usecs [ 0.936747] calling pci_driver_init+0x0/0x12 @ 1 [ 0.940063] initcall pci_driver_init+0x0/0x12 returned 0 after 0 usecs [ 0.950010] calling lcd_class_init+0x0/0x4d @ 1 [ 0.954676] initcall lcd_class_init+0x0/0x4d returned 0 after 0 usecs [ 0.960003] calling backlight_class_init+0x0/0x5d @ 1 [ 0.965200] initcall backlight_class_init+0x0/0x5d returned 0 after 0 usecs [ 0.970011] calling video_output_class_init+0x0/0x19 @ 1 [ 0.975451] initcall video_output_class_init+0x0/0x19 returned 0 after 0 usecs [ 0.980003] calling tty_class_init+0x0/0x38 @ 1 [ 0.990060] initcall tty_class_init+0x0/0x38 returned 0 after 0 usecs [ 0.996486] calling vtconsole_class_init+0x0/0xc3 @ 1 [ 1.000108] initcall vtconsole_class_init+0x0/0xc3 returned 0 after 0 usecs [ 1.007058] calling register_node_type+0x0/0x54 @ 1 [ 1.010063] initcall register_node_type+0x0/0x54 returned 0 after 0 usecs [ 1.020004] calling i2c_init+0x0/0x70 @ 1 [ 1.024211] i2c-core: driver [dummy] registered [ 1.030018] initcall i2c_init+0x0/0x70 returned 0 after 9765 usecs [ 1.036191] calling amd_postcore_init+0x0/0x76 @ 1 [ 1.040002] initcall amd_postcore_init+0x0/0x76 returned 0 after 0 usecs [ 1.046693] calling arch_kdebugfs_init+0x0/0x24 @ 1 [ 1.050005] initcall arch_kdebugfs_init+0x0/0x24 returned 0 after 0 usecs [ 1.060002] calling mtrr_if_init+0x0/0x61 @ 1 [ 1.064447] initcall mtrr_if_init+0x0/0x61 returned 0 after 0 usecs [ 1.070002] calling ffh_cstate_init+0x0/0x2a @ 1 [ 1.074704] initcall ffh_cstate_init+0x0/0x2a returned -1 after 0 usecs [ 1.080003] initcall ffh_cstate_init+0x0/0x2a returned with error code -1 [ 1.086867] calling acpi_pci_init+0x0/0x57 @ 1 [ 1.090001] ACPI: bus type pci registered [ 1.094009] initcall acpi_pci_init+0x0/0x57 returned 0 after 0 usecs [ 1.100002] calling pci_arch_init+0x0/0x58 @ 1 [ 1.104795] PCI: MMCONFIG for domain 0000 [bus 00-ff] at [mem 0xe0000000-0xefffffff] (base 0xe0000000) [ 1.110003] PCI: MMCONFIG at [mem 0xe0000000-0xefffffff] reserved in E820 [ 1.147271] PCI: Using configuration type 1 for base access [ 1.150007] initcall pci_arch_init+0x0/0x58 returned 0 after 48828 usecs [ 1.156693] calling topology_init+0x0/0x98 @ 1 [ 1.160283] initcall topology_init+0x0/0x98 returned 0 after 0 usecs [ 1.170023] calling mtrr_init_finialize+0x0/0x3d @ 1 [ 1.175065] initcall mtrr_init_finialize+0x0/0x3d returned 0 after 0 usecs [ 1.180004] calling param_sysfs_init+0x0/0xfd @ 1 [ 1.252116] initcall param_sysfs_init+0x0/0xfd returned 0 after 68359 usecs [ 1.259075] calling pm_sysrq_init+0x0/0x20 @ 1 [ 1.260053] initcall pm_sysrq_init+0x0/0x20 returned 0 after 0 usecs [ 1.270045] calling audit_watch_init+0x0/0x2f @ 1 [ 1.274834] initcall audit_watch_init+0x0/0x2f returned 0 after 0 usecs [ 1.280048] calling init_slow_work+0x0/0x3d @ 1 [ 1.284661] initcall init_slow_work+0x0/0x3d returned 0 after 0 usecs [ 1.290047] calling default_bdi_init+0x0/0xb1 @ 1 [ 1.296195] initcall default_bdi_init+0x0/0xb1 returned 0 after 0 usecs [ 1.300004] calling init_bio+0x0/0xd8 @ 1 [ 1.304150] bio: create slab <bio-0> at 0 [ 1.310051] initcall init_bio+0x0/0xd8 returned 0 after 9765 usecs [ 1.316226] calling fsnotify_init+0x0/0x12 @ 1 [ 1.320044] initcall fsnotify_init+0x0/0x12 returned 0 after 0 usecs [ 1.330046] calling fsnotify_notification_init+0x0/0xf0 @ 1 [ 1.335700] initcall fsnotify_notification_init+0x0/0xf0 returned 0 after 0 usecs [ 1.340042] calling cryptomgr_init+0x0/0x12 @ 1 [ 1.344652] initcall cryptomgr_init+0x0/0x12 returned 0 after 0 usecs [ 1.350043] calling blk_settings_init+0x0/0x2c @ 1 [ 1.354911] initcall blk_settings_init+0x0/0x2c returned 0 after 0 usecs [ 1.360056] calling blk_ioc_init+0x0/0x2a @ 1 [ 1.370058] initcall blk_ioc_init+0x0/0x2a returned 0 after 0 usecs [ 1.376314] calling blk_softirq_init+0x0/0x6e @ 1 [ 1.380051] initcall blk_softirq_init+0x0/0x6e returned 0 after 0 usecs [ 1.386650] calling blk_iopoll_setup+0x0/0x6e @ 1 [ 1.390009] initcall blk_iopoll_setup+0x0/0x6e returned 0 after 0 usecs [ 1.400002] calling genhd_device_init+0x0/0x67 @ 1 [ 1.404942] initcall genhd_device_init+0x0/0x67 returned 0 after 0 usecs [ 1.410020] calling blk_dev_integrity_init+0x0/0x2a @ 1 [ 1.415328] initcall blk_dev_integrity_init+0x0/0x2a returned 0 after 0 usecs [ 1.420002] calling gpiolib_debugfs_init+0x0/0x24 @ 1 [ 1.425141] initcall gpiolib_debugfs_init+0x0/0x24 returned 0 after 0 usecs [ 1.430002] calling wm831x_gpio_init+0x0/0x12 @ 1 [ 1.440069] initcall wm831x_gpio_init+0x0/0x12 returned 0 after 0 usecs [ 1.446671] calling pci_slot_init+0x0/0x50 @ 1 [ 1.450062] initcall pci_slot_init+0x0/0x50 returned 0 after 0 usecs [ 1.456408] calling fbmem_init+0x0/0x98 @ 1 [ 1.460410] initcall fbmem_init+0x0/0x98 returned 0 after 0 usecs [ 1.466497] calling acpi_init+0x0/0x123 @ 1 [ 1.471385] ACPI: EC: Look up EC in DSDT [ 1.492110] ACPI: Interpreter enabled [ 1.495770] ACPI: (supports S0 S1 S3 S4 S5) [ 1.500006] ACPI: Using IOAPIC for interrupt routing [ 1.521192] initcall acpi_init+0x0/0x123 returned 0 after 48828 usecs [ 1.527625] calling dock_init+0x0/0xa5 @ 1 [ 1.530282] ACPI: No dock devices found. [ 1.534201] initcall dock_init+0x0/0xa5 returned 0 after 0 usecs [ 1.540069] calling acpi_pci_root_init+0x0/0x28 @ 1 [ 1.545173] ACPI: PCI Root Bridge [PCI0] (0000:00) [ 1.550416] pci_root PNP0A08:00: ignoring host bridge windows from ACPI; boot with "pci=use_crs" to use them [ 1.560282] pci_root PNP0A08:00: host bridge window [io 0x0000-0x0cf7] (ignored) [ 1.567750] pci_root PNP0A08:00: host bridge window [io 0x0d00-0xffff] (ignored) [ 1.570009] pci_root PNP0A08:00: host bridge window [mem 0x000a0000-0x000bffff] (ignored) [ 1.580002] pci_root PNP0A08:00: host bridge window [mem 0x000c0000-0x000dffff] (ignored) [ 1.590003] pci_root PNP0A08:00: host bridge window [mem 0x40000000-0xfebfffff] (ignored) [ 1.600077] HPET not enabled in BIOS. You might try hpet=force boot option [ 1.606956] pci 0000:00:01.1: reg 10: [io 0xdc00-0xdc1f] [ 1.610008] pci 0000:00:01.1: reg 20: [io 0x4c00-0x4c3f] [ 1.615397] pci 0000:00:01.1: reg 24: [io 0x4c40-0x4c7f] [ 1.620010] pci 0000:00:01.1: PME# supported from D3hot D3cold [ 1.630003] pci 0000:00:01.1: PME# disabled [ 1.634199] pci 0000:00:02.0: reg 10: [mem 0xda102000-0xda102fff] [ 1.640018] pci 0000:00:02.0: supports D1 D2 [ 1.644278] pci 0000:00:02.0: PME# supported from D0 D1 D2 D3hot D3cold [ 1.650002] pci 0000:00:02.0: PME# disabled [ 1.654197] pci 0000:00:02.1: reg 10: [mem 0xfeb00000-0xfeb000ff] [ 1.660021] pci 0000:00:02.1: supports D1 D2 [ 1.664285] pci 0000:00:02.1: PME# supported from D0 D1 D2 D3hot D3cold [ 1.670003] pci 0000:00:02.1: PME# disabled [ 1.674200] pci 0000:00:04.0: reg 10: [io 0xd400-0xd4ff] [ 1.680003] pci 0000:00:04.0: reg 14: [io 0xd800-0xd8ff] [ 1.685397] pci 0000:00:04.0: reg 18: [mem 0xda101000-0xda101fff] [ 1.690014] pci 0000:00:04.0: supports D1 D2 [ 1.694297] pci 0000:00:06.0: reg 20: [io 0xf000-0xf00f] [ 1.700037] pci 0000:00:0a.0: reg 10: [mem 0xda100000-0xda100fff] [ 1.710004] pci 0000:00:0a.0: reg 14: [io 0xd000-0xd007] [ 1.715408] pci 0000:00:0a.0: supports D1 D2 [ 1.719673] pci 0000:00:0a.0: PME# supported from D0 D1 D2 D3hot D3cold [ 1.720002] pci 0000:00:0a.0: PME# disabled [ 1.730030] pci 0000:00:0b.0: PME# supported from D0 D1 D2 D3hot D3cold [ 1.736633] pci 0000:00:0b.0: PME# disabled [ 1.740032] pci 0000:00:0c.0: PME# supported from D0 D1 D2 D3hot D3cold [ 1.746633] pci 0000:00:0c.0: PME# disabled [ 1.750037] pci 0000:00:0d.0: PME# supported from D0 D1 D2 D3hot D3cold [ 1.756642] pci 0000:00:0d.0: PME# disabled [ 1.760031] pci 0000:00:0e.0: PME# supported from D0 D1 D2 D3hot D3cold [ 1.766634] pci 0000:00:0e.0: PME# disabled [ 1.770111] pci 0000:05:07.0: reg 10: [io 0xc000-0xc0ff] [ 1.775501] pci 0000:05:07.0: reg 14: [mem 0xda000000-0xda0000ff] [ 1.780026] pci 0000:05:07.0: supports D1 D2 [ 1.784287] pci 0000:05:07.0: PME# supported from D1 D2 D3hot [ 1.790003] pci 0000:05:07.0: PME# disabled [ 1.794206] pci 0000:00:09.0: PCI bridge to [bus 05-05] (subtractive decode) [ 1.800002] pci 0000:00:09.0: bridge window [io 0xc000-0xcfff] [ 1.810002] pci 0000:00:09.0: bridge window [mem 0xda000000-0xda0fffff] [ 1.816811] pci 0000:00:0b.0: PCI bridge to [bus 04-04] [ 1.820034] pci 0000:00:0c.0: PCI bridge to [bus 03-03] [ 1.830034] pci 0000:00:0d.0: PCI bridge to [bus 02-02] [ 1.835269] pci 0000:01:00.0: reg 10: [mem 0xd0000000-0xd7ffffff pref] [ 1.840005] pci 0000:01:00.0: reg 14: [io 0xb000-0xb0ff] [ 1.845397] pci 0000:01:00.0: reg 18: [mem 0xd9000000-0xd900ffff] [ 1.850013] pci 0000:01:00.0: reg 30: [mem 0x00000000-0x0001ffff pref] [ 1.860015] pci 0000:01:00.0: supports D1 D2 [ 1.864298] pci 0000:01:00.1: reg 10: [mem 0xd9010000-0xd901ffff] [ 1.870030] pci 0000:01:00.1: supports D1 D2 [ 1.874306] pci 0000:01:00.0: disabling ASPM on pre-1.1 PCIe device. You can enable it with 'pcie_aspm=force' [ 1.880034] pci 0000:00:0e.0: PCI bridge to [bus 01-01] [ 1.890003] pci 0000:00:0e.0: bridge window [io 0xb000-0xbfff] [ 1.896088] pci 0000:00:0e.0: bridge window [mem 0xd8000000-0xd9ffffff] [ 1.900003] pci 0000:00:0e.0: bridge window [mem 0xd0000000-0xd7ffffff 64bit pref] [ 1.910016] ACPI: PCI Interrupt Routing Table [\_SB_.PCI0._PRT] [ 1.916242] ACPI: PCI Interrupt Routing Table [\_SB_.PCI0.HUB0._PRT] [ 2.005902] initcall acpi_pci_root_init+0x0/0x28 returned 0 after 449218 usecs [ 2.010032] calling acpi_pci_link_init+0x0/0x43 @ 1 [ 2.015145] ACPI: PCI Interrupt Link [LNK1] (IRQs 3 4 5 7 9 10 11 12 14 15) *0, disabled. [ 2.024060] ACPI: PCI Interrupt Link [LNK2] (IRQs 3 4 5 7 9 10 *11 12 14 15) [ 2.032893] ACPI: PCI Interrupt Link [LNK3] (IRQs 3 4 *5 7 9 10 11 12 14 15) [ 2.041581] ACPI: PCI Interrupt Link [LNK4] (IRQs 3 4 5 7 9 10 11 12 14 15) *0, disabled. [ 2.050172] ACPI: PCI Interrupt Link [LNK5] (IRQs 3 4 5 7 9 10 11 12 14 15) *0, disabled. [ 2.058751] ACPI: PCI Interrupt Link [LUBA] (IRQs 3 4 5 7 9 10 11 12 14 15) *0, disabled. [ 2.064052] ACPI: PCI Interrupt Link [LUBB] (IRQs 3 4 5 7 9 10 11 12 14 15) *0, disabled. [ 2.074058] ACPI: PCI Interrupt Link [LMAC] (IRQs 3 4 5 7 9 10 *11 12 14 15) [ 2.082899] ACPI: PCI Interrupt Link [LACI] (IRQs *3 4 5 7 9 10 11 12 14 15) [ 2.090750] ACPI: PCI Interrupt Link [LMCI] (IRQs 3 4 5 7 9 10 11 12 14 15) *0, disabled. [ 2.099321] ACPI: PCI Interrupt Link [LSMB] (IRQs 3 4 5 7 9 10 11 12 14 15) *0, disabled. [ 2.104058] ACPI: PCI Interrupt Link [LUB2] (IRQs 3 4 5 7 9 10 11 12 14 15) *0, disabled. [ 2.114059] ACPI: PCI Interrupt Link [LIDE] (IRQs 3 4 5 7 9 10 11 12 14 15) *0, disabled. [ 2.124070] ACPI: PCI Interrupt Link [LSID] (IRQs 3 4 5 7 9 10 11 12 14 15) *0, disabled. [ 2.133681] ACPI: PCI Interrupt Link [LFID] (IRQs 3 4 5 7 9 10 11 12 14 15) *0, disabled. [ 2.142276] ACPI: PCI Interrupt Link [LPCA] (IRQs 3 4 5 7 9 10 11 12 14 15) *0, disabled. [ 2.150412] ACPI: PCI Interrupt Link [APC1] (IRQs 16) *0, disabled. [ 2.156973] ACPI: PCI Interrupt Link [APC2] (IRQs 17) *0 [ 2.161065] ACPI: PCI Interrupt Link [APC3] (IRQs 18) *0 [ 2.166642] ACPI: PCI Interrupt Link [APC4] (IRQs 19) *0, disabled. [ 2.171942] ACPI: PCI Interrupt Link [APC5] (IRQs *16), disabled. [ 2.181489] ACPI: PCI Interrupt Link [APCF] (IRQs 20 21 22 23) *0, disabled. [ 2.188883] ACPI: PCI Interrupt Link [APCG] (IRQs 20 21 22 23) *0, disabled. [ 2.192872] ACPI: PCI Interrupt Link [APCH] (IRQs 20 21 22 23) *0 [ 2.201899] ACPI: PCI Interrupt Link [APCJ] (IRQs 20 21 22 23) *0 [ 2.208325] ACPI: PCI Interrupt Link [APCK] (IRQs 20 21 22 23) *0, disabled. [ 2.212877] ACPI: PCI Interrupt Link [APCS] (IRQs 20 21 22 23) *0, disabled. [ 2.222877] ACPI: PCI Interrupt Link [APCL] (IRQs 20 21 22 23) *0, disabled. [ 2.231391] ACPI: PCI Interrupt Link [APCZ] (IRQs 20 21 22 23) *0, disabled. [ 2.238803] ACPI: PCI Interrupt Link [APSI] (IRQs 20 21 22 23) *0, disabled. [ 2.242892] ACPI: PCI Interrupt Link [APSJ] (IRQs 20 21 22 23) *0, disabled. [ 2.252888] ACPI: PCI Interrupt Link [APCP] (IRQs 20 21 22 23) *0, disabled. [ 2.260313] initcall acpi_pci_link_init+0x0/0x43 returned 0 after 244140 usecs [ 2.267527] calling pnp_init+0x0/0x12 @ 1 [ 2.270123] initcall pnp_init+0x0/0x12 returned 0 after 0 usecs [ 2.276037] calling regulator_fixed_voltage_init+0x0/0x12 @ 1 [ 2.280061] initcall regulator_fixed_voltage_init+0x0/0x12 returned 0 after 0 usecs [ 2.290012] calling wm831x_dcdc_init+0x0/0x88 @ 1 [ 2.295016] initcall wm831x_dcdc_init+0x0/0x88 returned 0 after 0 usecs [ 2.300017] calling wm831x_isink_init+0x0/0x31 @ 1 [ 2.304946] initcall wm831x_isink_init+0x0/0x31 returned 0 after 0 usecs [ 2.310003] calling wm831x_ldo_init+0x0/0x68 @ 1 [ 2.320192] initcall wm831x_ldo_init+0x0/0x68 returned 0 after 0 usecs [ 2.326712] calling ab3100_regulators_init+0x0/0x12 @ 1 [ 2.330070] initcall ab3100_regulators_init+0x0/0x12 returned 0 after 0 usecs [ 2.337195] calling tps_65023_init+0x0/0x14 @ 1 [ 2.340058] i2c-core: driver [tps65023] registered [ 2.344841] initcall tps_65023_init+0x0/0x14 returned 0 after 0 usecs [ 2.350017] calling tps_6507x_init+0x0/0x14 @ 1 [ 2.354690] i2c-core: driver [tps6507x] registered [ 2.360008] initcall tps_6507x_init+0x0/0x14 returned 0 after 9765 usecs [ 2.370002] calling misc_init+0x0/0xba @ 1 [ 2.374248] initcall misc_init+0x0/0xba returned 0 after 0 usecs [ 2.380012] calling vga_arb_device_init+0x0/0x77 @ 1 [ 2.385153] vgaarb: device added: PCI:0000:01:00.0,decodes=io+mem,owns=io+mem,locks=none [ 2.390003] vgaarb: loaded [ 2.392711] initcall vga_arb_device_init+0x0/0x77 returned 0 after 9765 usecs [ 2.400008] calling cn_init+0x0/0x9e @ 1 [ 2.404021] initcall cn_init+0x0/0x9e returned 0 after 0 usecs [ 2.410002] calling tifm_init+0x0/0x81 @ 1 [ 2.414342] initcall tifm_init+0x0/0x81 returned 0 after 0 usecs [ 2.420012] calling wm8400_module_init+0x0/0x33 @ 1 [ 2.425027] i2c-core: driver [WM8400] registered [ 2.430004] initcall wm8400_module_init+0x0/0x33 returned 0 after 9765 usecs [ 2.440010] calling wm831x_i2c_init+0x0/0x33 @ 1 [ 2.444770] i2c-core: driver [wm831x] registered [ 2.450011] initcall wm831x_i2c_init+0x0/0x33 returned 0 after 9765 usecs [ 2.456789] calling tps_init+0x0/0xb3 @ 1 [ 2.460001] tps65010: version 2 May 2005 [ 2.463977] i2c-core: driver [tps65010] registered [ 2.470065] i2c-core: driver [tps65010] unregistered [ 2.490058] i2c-core: driver [tps65010] registered [ 2.494894] i2c-core: driver [tps65010] unregistered [ 2.510068] i2c-core: driver [tps65010] registered [ 2.514908] i2c-core: driver [tps65010] unregistered [ 2.519864] tps65010: no chip? [ 2.520012] initcall tps_init+0x0/0xb3 returned -19 after 58593 usecs [ 2.526443] calling twl_init+0x0/0x14 @ 1 [ 2.530060] i2c-core: driver [twl] registered [ 2.534417] initcall twl_init+0x0/0x14 returned 0 after 0 usecs [ 2.540012] calling da903x_init+0x0/0x14 @ 1 [ 2.544419] i2c-core: driver [da903x] registered [ 2.550004] initcall da903x_init+0x0/0x14 returned 0 after 9765 usecs [ 2.556434] calling ab3100_i2c_init+0x0/0x14 @ 1 [ 2.560061] i2c-core: driver [ab3100] registered [ 2.564676] initcall ab3100_i2c_init+0x0/0x14 returned 0 after 0 usecs [ 2.570008] calling pm8607_init+0x0/0x33 @ 1 [ 2.574413] i2c-core: driver [88PM8607] registered [ 2.580004] initcall pm8607_init+0x0/0x33 returned 0 after 9765 usecs [ 2.590007] calling init_scsi+0x0/0x81 @ 1 [ 2.594445] SCSI subsystem initialized [ 2.598194] initcall init_scsi+0x0/0x81 returned 0 after 0 usecs [ 2.600007] calling ata_init+0x0/0x85 @ 1 [ 2.604172] libata version 3.00 loaded. [ 2.610003] initcall ata_init+0x0/0x85 returned 0 after 9765 usecs [ 2.616177] calling phy_init+0x0/0x2e @ 1 [ 2.620190] initcall phy_init+0x0/0x2e returned 0 after 0 usecs [ 2.626105] calling usb_init+0x0/0x195 @ 1 [ 2.630162] usbcore: registered new interface driver usbfs [ 2.635755] usbcore: registered new interface driver hub [ 2.640085] usbcore: registered new device driver usb [ 2.645127] initcall usb_init+0x0/0x195 returned 0 after 9765 usecs [ 2.650019] calling serio_init+0x0/0x8f @ 1 [ 2.660089] initcall serio_init+0x0/0x8f returned 0 after 0 usecs [ 2.666175] calling gameport_init+0x0/0x8f @ 1 [ 2.670108] initcall gameport_init+0x0/0x8f returned 0 after 0 usecs [ 2.676452] calling input_init+0x0/0xbc @ 1 [ 2.680068] initcall input_init+0x0/0xbc returned 0 after 0 usecs [ 2.686151] calling init_dvbdev+0x0/0xd7 @ 1 [ 2.690075] initcall init_dvbdev+0x0/0xd7 returned 0 after 0 usecs [ 2.696242] calling pps_init+0x0/0xb1 @ 1 [ 2.700069] LinuxPPS API ver. 1 registered [ 2.704164] Software ver. 5.3.6 - Copyright 2005-2007 Rodolfo Giometti <giometti@linux.it> [ 2.710003] initcall pps_init+0x0/0xb1 returned 0 after 9765 usecs [ 2.720012] calling power_supply_class_init+0x0/0x38 @ 1 [ 2.725461] initcall power_supply_class_init+0x0/0x38 returned 0 after 0 usecs [ 2.730009] calling hwmon_init+0x0/0x47 @ 1 [ 2.734341] initcall hwmon_init+0x0/0x47 returned 0 after 0 usecs [ 2.740003] calling thermal_init+0x0/0x3f @ 1 [ 2.744500] initcall thermal_init+0x0/0x3f returned 0 after 0 usecs [ 2.750010] calling raid6_select_algo+0x0/0x23e @ 1 [ 2.930035] raid6: int64x1 1692 MB/s [ 3.100007] raid6: int64x2 2327 MB/s [ 3.270040] raid6: int64x4 1455 MB/s [ 3.440041] raid6: int64x8 1471 MB/s [ 3.610015] raid6: sse2x1 2492 MB/s [ 3.780005] raid6: sse2x2 3355 MB/s [ 3.950011] raid6: sse2x4 3550 MB/s [ 3.953757] raid6: using algorithm sse2x4 (3550 MB/s) [ 3.958809] initcall raid6_select_algo+0x0/0x23e returned 0 after 1162109 usecs [ 3.960002] calling md_init+0x0/0xd0 @ 1 [ 3.970015] initcall md_init+0x0/0xd0 returned 0 after 0 usecs [ 3.975836] calling leds_init+0x0/0x40 @ 1 [ 3.980064] initcall leds_init+0x0/0x40 returned 0 after 0 usecs [ 3.986063] calling acpi_wmi_init+0x0/0x98 @ 1 [ 3.990167] ACPI: WMI: Mapper loaded [ 3.993743] initcall acpi_wmi_init+0x0/0x98 returned 0 after 0 usecs [ 4.000003] calling init_soundcore+0x0/0x96 @ 1 [ 4.004673] initcall init_soundcore+0x0/0x96 returned 0 after 0 usecs [ 4.010010] calling pci_subsys_init+0x0/0x70 @ 1 [ 4.014710] PCI: Using ACPI for IRQ routing [ 4.020005] PCI: pci_cache_line_size set to 64 bytes [ 4.025043] initcall pci_subsys_init+0x0/0x70 returned 0 after 9765 usecs [ 4.030002] calling proto_init+0x0/0x12 @ 1 [ 4.034272] initcall proto_init+0x0/0x12 returned 0 after 0 usecs [ 4.040002] calling net_dev_init+0x0/0x17b @ 1 [ 4.044721] initcall net_dev_init+0x0/0x17b returned 0 after 0 usecs [ 4.050014] calling neigh_init+0x0/0x71 @ 1 [ 4.054279] initcall neigh_init+0x0/0x71 returned 0 after 0 usecs [ 4.060002] calling fib_rules_init+0x0/0xa6 @ 1 [ 4.064618] initcall fib_rules_init+0x0/0xa6 returned 0 after 0 usecs [ 4.070002] calling genl_init+0x0/0x8f @ 1 [ 4.074200] initcall genl_init+0x0/0x8f returned 0 after 0 usecs [ 4.080004] calling cipso_v4_init+0x0/0x64 @ 1 [ 4.090007] initcall cipso_v4_init+0x0/0x64 returned 0 after 0 usecs [ 4.096349] calling wanrouter_init+0x0/0x55 @ 1 [ 4.100002] Sangoma WANPIPE Router v1.1 (c) 1995-2000 Sangoma Technologies Inc. [ 4.107305] initcall wanrouter_init+0x0/0x55 returned 0 after 0 usecs [ 4.110002] calling irda_init+0x0/0xae @ 1 [ 4.114182] irda_init() [ 4.120018] NET: Registered protocol family 23 [ 4.124476] initcall irda_init+0x0/0xae returned 0 after 9765 usecs [ 4.130002] calling bt_init+0x0/0x5a @ 1 [ 4.134011] Bluetooth: Core ver 2.15 [ 4.140065] NET: Registered protocol family 31 [ 4.144507] Bluetooth: HCI device and connection manager initialized [ 4.150005] Bluetooth: HCI socket layer initialized [ 4.154874] initcall bt_init+0x0/0x5a returned 0 after 19531 usecs [ 4.160002] calling atm_init+0x0/0xb4 @ 1 [ 4.164096] NET: Registered protocol family 8 [ 4.170001] NET: Registered protocol family 20 [ 4.174500] initcall atm_init+0x0/0xb4 returned 0 after 9765 usecs [ 4.180009] calling wireless_nlevent_init+0x0/0x12 @ 1 [ 4.185230] initcall wireless_nlevent_init+0x0/0x12 returned 0 after 0 usecs [ 4.190002] calling netlbl_init+0x0/0x81 @ 1 [ 4.194356] NetLabel: Initializing [ 4.200001] NetLabel: domain hash size = 128 [ 4.204354] NetLabel: protocols = UNLABELED CIPSOv4 [ 4.210023] NetLabel: unlabeled traffic allowed by default [ 4.215586] initcall netlbl_init+0x0/0x81 returned 0 after 19531 usecs [ 4.220003] calling rfkill_init+0x0/0x5f @ 1 [ 4.224482] initcall rfkill_init+0x0/0x5f returned 0 after 0 usecs [ 4.230006] calling sysctl_init+0x0/0x48 @ 1 [ 4.234357] initcall sysctl_init+0x0/0x48 returned 0 after 0 usecs [ 4.240003] calling print_ICs+0x0/0xc9 @ 1 [ 4.244183] initcall print_ICs+0x0/0xc9 returned 0 after 0 usecs [ 4.250002] calling hpet_late_init+0x0/0xc6 @ 1 [ 4.254616] initcall hpet_late_init+0x0/0xc6 returned -19 after 0 usecs [ 4.260003] calling clocksource_done_booting+0x0/0x36 @ 1 [ 4.270003] Switching to clocksource jiffies [ 4.274271] initcall clocksource_done_booting+0x0/0x36 returned 0 after 0 usecs [ 4.280003] calling init_pipe_fs+0x0/0x4c @ 1 [ 4.284456] initcall init_pipe_fs+0x0/0x4c returned 0 after 0 usecs [ 4.290002] calling eventpoll_init+0x0/0xc3 @ 1 [ 4.294617] initcall eventpoll_init+0x0/0xc3 returned 0 after 0 usecs [ 4.300002] calling anon_inode_init+0x0/0x125 @ 1 [ 4.304796] initcall anon_inode_init+0x0/0x125 returned 0 after 0 usecs [ 4.310003] calling blk_scsi_ioctl_init+0x0/0x289 @ 1 [ 4.320002] initcall blk_scsi_ioctl_init+0x0/0x289 returned 0 after 0 usecs [ 4.326956] calling acpi_event_init+0x0/0x52 @ 1 [ 4.330013] initcall acpi_event_init+0x0/0x52 returned 0 after 0 usecs [ 4.336530] calling pnpacpi_init+0x0/0x8c @ 1 [ 4.340001] pnp: PnP ACPI init [ 4.343063] ACPI: bus type pnp registered [ 4.357848] pnp: PnP ACPI: found 16 devices [ 4.360023] ACPI: ACPI bus type pnp unregistered [ 4.364640] initcall pnpacpi_init+0x0/0x8c returned 0 after 19531 usecs [ 4.370004] calling pnp_system_init+0x0/0x12 @ 1 [ 4.374716] system 00:01: [io 0x4000-0x407f] has been reserved [ 4.380003] system 00:01: [io 0x4080-0x40ff] has been reserved [ 4.390003] system 00:01: [io 0x4400-0x447f] has been reserved [ 4.395917] system 00:01: [io 0x4480-0x44ff] has been reserved [ 4.400003] system 00:01: [io 0x4800-0x487f] has been reserved [ 4.405914] system 00:01: [io 0x4880-0x48ff] has been reserved [ 4.410008] system 00:02: [io 0x04d0-0x04d1] has been reserved [ 4.415915] system 00:02: [io 0x0800-0x0805] has been reserved [ 4.420003] system 00:02: [io 0x0290-0x0297] has been reserved [ 4.430011] system 00:0e: [mem 0xe0000000-0xefffffff] has been reserved [ 4.436621] system 00:0f: [mem 0x000f0000-0x000f3fff] could not be reserved [ 4.440003] system 00:0f: [mem 0x000f4000-0x000f7fff] could not be reserved [ 4.450003] system 00:0f: [mem 0x000f8000-0x000fbfff] could not be reserved [ 4.456955] system 00:0f: [mem 0x000fc000-0x000fffff] could not be reserved [ 4.460003] system 00:0f: [mem 0x3fff0000-0x3fffffff] could not be reserved [ 4.470003] system 00:0f: [mem 0xffff0000-0xffffffff] has been reserved [ 4.476607] system 00:0f: [mem 0x00000000-0x0009ffff] could not be reserved [ 4.480003] system 00:0f: [mem 0x00100000-0x3ffeffff] could not be reserved [ 4.490003] system 00:0f: [mem 0xfec00000-0xfec00fff] could not be reserved [ 4.500003] system 00:0f: [mem 0xfee00000-0xfeefffff] has been reserved [ 4.506609] system 00:0f: [mem 0xfefff000-0xfeffffff] has been reserved [ 4.510003] system 00:0f: [mem 0xfff80000-0xfff80fff] has been reserved [ 4.520003] system 00:0f: [mem 0xfff90000-0xfffbffff] has been reserved [ 4.526609] system 00:0f: [mem 0xfffed000-0xfffeffff] has been reserved [ 4.530062] initcall pnp_system_init+0x0/0x12 returned 0 after 156250 usecs [ 4.540074] calling chr_dev_init+0x0/0xc4 @ 1 [ 4.545217] initcall chr_dev_init+0x0/0xc4 returned 0 after 0 usecs [ 4.550010] calling firmware_class_init+0x0/0x79 @ 1 [ 4.555112] initcall firmware_class_init+0x0/0x79 returned 0 after 0 usecs [ 4.560020] calling ieee1394_init+0x0/0x263 @ 1 [ 4.565026] initcall ieee1394_init+0x0/0x263 returned 0 after 0 usecs [ 4.570005] calling init_acpi_pm_clocksource+0x0/0xf5 @ 1 [ 4.584590] Switching to clocksource acpi_pm [ 4.588938] initcall init_acpi_pm_clocksource+0x0/0xf5 returned 0 after 32 usecs [ 4.588938] calling ssb_modinit+0x0/0x49 @ 1 [ 4.591888] initcall ssb_modinit+0x0/0x49 returned 0 after 87 usecs [ 4.598161] calling pcibios_assign_resources+0x0/0x76 @ 1 [ 4.603711] pci 0000:00:09.0: PCI bridge to [bus 05-05] [ 4.608931] pci 0000:00:09.0: bridge window [io 0xc000-0xcfff] [ 4.615036] pci 0000:00:09.0: bridge window [mem 0xda000000-0xda0fffff] [ 4.621816] pci 0000:00:09.0: bridge window [mem pref disabled] [ 4.627914] pci 0000:00:0b.0: PCI bridge to [bus 04-04] [ 4.633146] pci 0000:00:0b.0: bridge window [io disabled] [ 4.638795] pci 0000:00:0b.0: bridge window [mem disabled] [ 4.644461] pci 0000:00:0b.0: bridge window [mem pref disabled] [ 4.650548] pci 0000:00:0c.0: PCI bridge to [bus 03-03] [ 4.655784] pci 0000:00:0c.0: bridge window [io disabled] [ 4.661432] pci 0000:00:0c.0: bridge window [mem disabled] [ 4.667097] pci 0000:00:0c.0: bridge window [mem pref disabled] [ 4.673189] pci 0000:00:0d.0: PCI bridge to [bus 02-02] [ 4.678403] pci 0000:00:0d.0: bridge window [io disabled] [ 4.684067] pci 0000:00:0d.0: bridge window [mem disabled] [ 4.689713] pci 0000:00:0d.0: bridge window [mem pref disabled] [ 4.695822] pci 0000:01:00.0: BAR 6: assigned [mem 0xd8000000-0xd801ffff pref] [ 4.703046] pci 0000:00:0e.0: PCI bridge to [bus 01-01] [ 4.708260] pci 0000:00:0e.0: bridge window [io 0xb000-0xbfff] [ 4.714366] pci 0000:00:0e.0: bridge window [mem 0xd8000000-0xd9ffffff] [ 4.721147] pci 0000:00:0e.0: bridge window [mem 0xd0000000-0xd7ffffff 64bit pref] [ 4.728906] pci 0000:00:09.0: setting latency timer to 64 [ 4.734311] pci 0000:00:0b.0: setting latency timer to 64 [ 4.739705] pci 0000:00:0c.0: setting latency timer to 64 [ 4.745116] pci 0000:00:0d.0: setting latency timer to 64 [ 4.750514] pci 0000:00:0e.0: setting latency timer to 64 [ 4.755922] pci_bus 0000:00: resource 0 [io 0x0000-0xffff] [ 4.761483] pci_bus 0000:00: resource 1 [mem 0x00000000-0xffffffffffffffff] [ 4.768454] pci_bus 0000:05: resource 0 [io 0xc000-0xcfff] [ 4.774027] pci_bus 0000:05: resource 1 [mem 0xda000000-0xda0fffff] [ 4.780288] pci_bus 0000:05: resource 3 [io 0x0000-0xffff] [ 4.785865] pci_bus 0000:05: resource 4 [mem 0x00000000-0xffffffffffffffff] [ 4.792825] pci_bus 0000:01: resource 0 [io 0xb000-0xbfff] [ 4.798386] pci_bus 0000:01: resource 1 [mem 0xd8000000-0xd9ffffff] [ 4.804654] pci_bus 0000:01: resource 2 [mem 0xd0000000-0xd7ffffff 64bit pref] [ 4.811865] initcall pcibios_assign_resources+0x0/0x76 returned 0 after 203328 usecs [ 4.819615] calling sysctl_core_init+0x0/0x38 @ 1 [ 4.824428] initcall sysctl_core_init+0x0/0x38 returned 0 after 20 usecs [ 4.831120] calling inet_init+0x0/0x1d7 @ 1 [ 4.835410] NET: Registered protocol family 2 [ 4.839865] IP route cache hash table entries: 32768 (order: 6, 262144 bytes) [ 4.847611] TCP established hash table entries: 131072 (order: 9, 2097152 bytes) [ 4.856371] TCP bind hash table entries: 65536 (order: 8, 1048576 bytes) [ 4.863716] TCP: Hash tables configured (established 131072 bind 65536) [ 4.870317] TCP reno registered [ 4.873485] UDP hash table entries: 512 (order: 2, 16384 bytes) [ 4.879407] UDP-Lite hash table entries: 512 (order: 2, 16384 bytes) [ 4.885884] initcall inet_init+0x0/0x1d7 returned 0 after 49289 usecs [ 4.892318] calling af_unix_init+0x0/0x55 @ 1 [ 4.896777] NET: Registered protocol family 1 [ 4.901141] initcall af_unix_init+0x0/0x55 returned 0 after 4265 usecs [ 4.907679] calling pci_apply_final_quirks+0x0/0x10c @ 1 [ 4.932543] pci 0000:00:0b.0: Linking AER extended capability [ 4.938287] pci 0000:00:0c.0: Linking AER extended capability [ 4.944045] pci 0000:00:0d.0: Linking AER extended capability [ 4.949786] pci 0000:00:0e.0: Linking AER extended capability [ 4.955566] pci 0000:01:00.0: Boot video device [ 4.960095] PCI: CLS 32 bytes, default 64 [ 4.964118] initcall pci_apply_final_quirks+0x0/0x10c returned 0 after 49835 usecs [ 4.971678] calling populate_rootfs+0x0/0xd7 @ 1 [ 4.976476] initcall populate_rootfs+0x0/0xd7 returned 0 after 76 usecs [ 4.983096] calling pci_iommu_init+0x0/0x47 @ 1 [ 5.085451] DMA-API: preallocated 32768 debug entries [ 5.090496] DMA-API: debugging enabled by kernel config [ 5.095776] initcall pci_iommu_init+0x0/0x47 returned 0 after 105532 usecs [ 5.102655] calling calgary_fixup_tce_spaces+0x0/0x101 @ 1 [ 5.108226] initcall calgary_fixup_tce_spaces+0x0/0x101 returned -19 after 1 usecs [ 5.115802] calling irqfd_module_init+0x0/0x31 @ 1 [ 5.120714] initcall irqfd_module_init+0x0/0x31 returned 0 after 42 usecs [ 5.127511] calling i8259A_init_sysfs+0x0/0x22 @ 1 [ 5.132556] initcall i8259A_init_sysfs+0x0/0x22 returned 0 after 157 usecs [ 5.139424] calling vsyscall_init+0x0/0x6c @ 1 [ 5.143997] initcall vsyscall_init+0x0/0x6c returned 0 after 21 usecs [ 5.150430] calling sbf_init+0x0/0xf6 @ 1 [ 5.154546] initcall sbf_init+0x0/0xf6 returned 0 after 1 usecs [ 5.160457] calling i8237A_init_sysfs+0x0/0x22 @ 1 [ 5.165807] initcall i8237A_init_sysfs+0x0/0x22 returned 0 after 452 usecs [ 5.172683] calling add_rtc_cmos+0x0/0xa8 @ 1 [ 5.177130] initcall add_rtc_cmos+0x0/0xa8 returned 0 after 4 usecs [ 5.183404] calling cache_sysfs_init+0x0/0x59 @ 1 [ 5.188195] initcall cache_sysfs_init+0x0/0x59 returned 0 after 1 usecs [ 5.194816] calling mcheck_init_device+0x0/0x104 @ 1 [ 5.199861] initcall mcheck_init_device+0x0/0x104 returned -5 after 1 usecs [ 5.206828] initcall mcheck_init_device+0x0/0x104 returned with error code -5 [ 5.214047] calling threshold_init_device+0x0/0x8f @ 1 [ 5.219265] initcall threshold_init_device+0x0/0x8f returned 0 after 2 usecs [ 5.226322] calling inject_init+0x0/0x30 @ 1 [ 5.230677] Machine check injector initialized [ 5.235137] initcall inject_init+0x0/0x30 returned 0 after 4350 usecs [ 5.241569] calling thermal_throttle_init_device+0x0/0x94 @ 1 [ 5.247410] initcall thermal_throttle_init_device+0x0/0x94 returned 0 after 1 usecs [ 5.255069] calling ioapic_init_sysfs+0x0/0xbe @ 1 [ 5.260122] initcall ioapic_init_sysfs+0x0/0xbe returned 0 after 170 usecs [ 5.267003] calling add_pcspkr+0x0/0x28 @ 1 [ 5.271361] initcall add_pcspkr+0x0/0x28 returned 0 after 92 usecs [ 5.277550] calling microcode_init+0x0/0x128 @ 1 [ 5.282244] microcode: no support for this CPU vendor [ 5.287309] initcall microcode_init+0x0/0x128 returned -19 after 4942 usecs [ 5.294279] calling start_periodic_check_for_corruption+0x0/0x40 @ 1 [ 5.300712] Scanning for low memory corruption every 60 seconds [ 5.306648] initcall start_periodic_check_for_corruption+0x0/0x40 returned 0 after 5790 usecs [ 5.315172] calling audit_classes_init+0x0/0xaf @ 1 [ 5.320134] initcall audit_classes_init+0x0/0xaf returned 0 after 6 usecs [ 5.326925] calling crypto_fpu_module_init+0x0/0x12 @ 1 [ 5.332230] initcall crypto_fpu_module_init+0x0/0x12 returned 0 after 2 usecs [ 5.339368] calling aes_init+0x0/0x12 @ 1 [ 5.343666] initcall aes_init+0x0/0x12 returned 0 after 190 usecs [ 5.349754] calling init+0x0/0x12 @ 1 [ 5.353673] initcall init+0x0/0x12 returned 0 after 129 usecs [ 5.359411] calling aesni_init+0x0/0x164 @ 1 [ 5.363788] Intel AES-NI instructions are not detected. [ 5.369010] initcall aesni_init+0x0/0x164 returned -19 after 5102 usecs [ 5.375633] calling ghash_pclmulqdqni_mod_init+0x0/0x5d @ 1 [ 5.381301] Intel PCLMULQDQ-NI instructions are not detected. [ 5.387043] initcall ghash_pclmulqdqni_mod_init+0x0/0x5d returned -19 after 5610 usecs [ 5.394968] calling crc32c_intel_mod_init+0x0/0x20 @ 1 [ 5.400207] initcall crc32c_intel_mod_init+0x0/0x20 returned -19 after 1 usecs [ 5.407415] calling init_vdso_vars+0x0/0x239 @ 1 [ 5.412145] initcall init_vdso_vars+0x0/0x239 returned 0 after 13 usecs [ 5.418743] calling ia32_binfmt_init+0x0/0x14 @ 1 [ 5.423556] initcall ia32_binfmt_init+0x0/0x14 returned 0 after 11 usecs [ 5.430259] calling sysenter_setup+0x0/0xd7 @ 1 [ 5.434883] initcall sysenter_setup+0x0/0xd7 returned 0 after 6 usecs [ 5.441327] calling init_aout_binfmt+0x0/0x14 @ 1 [ 5.446120] initcall init_aout_binfmt+0x0/0x14 returned 0 after 1 usecs [ 5.452741] calling init_sched_debug_procfs+0x0/0x2c @ 1 [ 5.458147] initcall init_sched_debug_procfs+0x0/0x2c returned 0 after 8 usecs [ 5.465378] calling proc_schedstat_init+0x0/0x22 @ 1 [ 5.470443] initcall proc_schedstat_init+0x0/0x22 returned 0 after 3 usecs [ 5.477306] calling proc_execdomains_init+0x0/0x22 @ 1 [ 5.482553] initcall proc_execdomains_init+0x0/0x22 returned 0 after 3 usecs [ 5.489587] calling ioresources_init+0x0/0x3c @ 1 [ 5.494399] initcall ioresources_init+0x0/0x3c returned 0 after 4 usecs [ 5.501015] calling uid_cache_init+0x0/0x8c @ 1 [ 5.505636] initcall uid_cache_init+0x0/0x8c returned 0 after 3 usecs [ 5.512082] calling init_posix_timers+0x0/0x17a @ 1 [ 5.517048] initcall init_posix_timers+0x0/0x17a returned 0 after 2 usecs [ 5.523845] calling init_posix_cpu_timers+0x0/0xe5 @ 1 [ 5.529069] initcall init_posix_cpu_timers+0x0/0xe5 returned 0 after 1 usecs [ 5.536123] calling nsproxy_cache_init+0x0/0x2d @ 1 [ 5.541094] initcall nsproxy_cache_init+0x0/0x2d returned 0 after 1 usecs [ 5.547871] calling create_proc_profile+0x0/0x70 @ 1 [ 5.552939] initcall create_proc_profile+0x0/0x70 returned 0 after 1 usecs [ 5.559804] calling timekeeping_init_device+0x0/0x22 @ 1 [ 5.565493] initcall timekeeping_init_device+0x0/0x22 returned 0 after 272 usecs [ 5.572897] calling init_clocksource_sysfs+0x0/0x50 @ 1 [ 5.578535] initcall init_clocksource_sysfs+0x0/0x50 returned 0 after 318 usecs [ 5.585859] calling init_timer_list_procfs+0x0/0x2c @ 1 [ 5.591183] initcall init_timer_list_procfs+0x0/0x2c returned 0 after 5 usecs [ 5.598304] calling futex_init+0x0/0x69 @ 1 [ 5.602615] initcall futex_init+0x0/0x69 returned 0 after 8 usecs [ 5.608704] calling proc_dma_init+0x0/0x22 @ 1 [ 5.613255] initcall proc_dma_init+0x0/0x22 returned 0 after 3 usecs [ 5.619597] calling kallsyms_init+0x0/0x25 @ 1 [ 5.624148] initcall kallsyms_init+0x0/0x25 returned 0 after 3 usecs [ 5.630505] calling snapshot_device_init+0x0/0x12 @ 1 [ 5.635741] initcall snapshot_device_init+0x0/0x12 returned 0 after 95 usecs [ 5.642806] calling crash_save_vmcoreinfo_init+0x0/0x46d @ 1 [ 5.648569] initcall crash_save_vmcoreinfo_init+0x0/0x46d returned 0 after 23 usecs [ 5.656230] calling crash_notes_memory_init+0x0/0x36 @ 1 [ 5.661641] initcall crash_notes_memory_init+0x0/0x36 returned 0 after 4 usecs [ 5.668850] calling pid_namespaces_init+0x0/0x2d @ 1 [ 5.673921] initcall pid_namespaces_init+0x0/0x2d returned 0 after 1 usecs [ 5.680799] calling audit_init+0x0/0x133 @ 1 [ 5.685154] audit: initializing netlink socket (disabled) [ 5.690579] type=2000 audit(1265287065.690:1): initialized [ 5.696059] initcall audit_init+0x0/0x133 returned 0 after 10649 usecs [ 5.702595] calling audit_tree_init+0x0/0x49 @ 1 [ 5.707303] initcall audit_tree_init+0x0/0x49 returned 0 after 3 usecs [ 5.713836] calling utsname_sysctl_init+0x0/0x14 @ 1 [ 5.718908] initcall utsname_sysctl_init+0x0/0x14 returned 0 after 19 usecs [ 5.725876] calling init_lstats_procfs+0x0/0x25 @ 1 [ 5.730856] initcall init_lstats_procfs+0x0/0x25 returned 0 after 4 usecs [ 5.737629] calling perf_event_sysfs_init+0x0/0x19 @ 1 [ 5.742869] initcall perf_event_sysfs_init+0x0/0x19 returned 0 after 5 usecs [ 5.749901] calling init_per_zone_wmark_min+0x0/0x6a @ 1 [ 5.755383] initcall init_per_zone_wmark_min+0x0/0x6a returned 0 after 72 usecs [ 5.762691] calling kswapd_init+0x0/0x76 @ 1 [ 5.767093] initcall kswapd_init+0x0/0x76 returned 0 after 43 usecs [ 5.773374] calling setup_vmstat+0x0/0xcd @ 1 [ 5.777823] initcall setup_vmstat+0x0/0xcd returned 0 after 10 usecs [ 5.784183] calling mm_sysfs_init+0x0/0x29 @ 1 [ 5.788711] initcall mm_sysfs_init+0x0/0x29 returned 0 after 4 usecs [ 5.795070] calling proc_vmalloc_init+0x0/0x25 @ 1 [ 5.799951] initcall proc_vmalloc_init+0x0/0x25 returned 0 after 3 usecs [ 5.806658] calling procswaps_init+0x0/0x22 @ 1 [ 5.811291] initcall procswaps_init+0x0/0x22 returned 0 after 3 usecs [ 5.817719] calling hugetlb_init+0x0/0x312 @ 1 [ 5.822261] HugeTLB registered 2 MB page size, pre-allocated 0 pages [ 5.828628] initcall hugetlb_init+0x0/0x312 returned 0 after 6224 usecs [ 5.835250] calling ksm_init+0x0/0x10c @ 1 [ 5.839607] initcall ksm_init+0x0/0x10c returned 0 after 170 usecs [ 5.845802] calling fasync_init+0x0/0x2a @ 1 [ 5.850167] initcall fasync_init+0x0/0x2a returned 0 after 1 usecs [ 5.856338] calling proc_filesystems_init+0x0/0x22 @ 1 [ 5.861581] initcall proc_filesystems_init+0x0/0x22 returned 0 after 5 usecs [ 5.868618] calling dnotify_init+0x0/0x80 @ 1 [ 5.873075] initcall dnotify_init+0x0/0x80 returned 0 after 2 usecs [ 5.879332] calling inotify_setup+0x0/0x12 @ 1 [ 5.883874] initcall inotify_setup+0x0/0x12 returned 0 after 1 usecs [ 5.890230] calling aio_setup+0x0/0xce @ 1 [ 5.894462] initcall aio_setup+0x0/0xce returned 0 after 54 usecs [ 5.900565] calling proc_locks_init+0x0/0x22 @ 1 [ 5.905274] initcall proc_locks_init+0x0/0x22 returned 0 after 8 usecs [ 5.911811] calling init_sys32_ioctl+0x0/0x28 @ 1 [ 5.916696] initcall init_sys32_ioctl+0x0/0x28 returned 0 after 100 usecs [ 5.923495] calling init_mbcache+0x0/0x14 @ 1 [ 5.927940] initcall init_mbcache+0x0/0x14 returned 0 after 2 usecs [ 5.934215] calling dquot_init+0x0/0xdc @ 1 [ 5.938476] VFS: Disk quotas dquot_6.5.2 [ 5.942438] Dquot-cache hash table entries: 512 (order 0, 4096 bytes) [ 5.948866] initcall dquot_init+0x0/0xdc returned 0 after 10146 usecs [ 5.955319] calling init_v2_quota_format+0x0/0x22 @ 1 [ 5.960469] initcall init_v2_quota_format+0x0/0x22 returned 0 after 1 usecs [ 5.967421] calling quota_init+0x0/0x26 @ 1 [ 5.971748] initcall quota_init+0x0/0x26 returned 0 after 36 usecs [ 5.977917] calling proc_cmdline_init+0x0/0x22 @ 1 [ 5.982815] initcall proc_cmdline_init+0x0/0x22 returned 0 after 3 usecs [ 5.989503] calling proc_cpuinfo_init+0x0/0x22 @ 1 [ 5.994503] initcall proc_cpuinfo_init+0x0/0x22 returned 0 after 109 usecs [ 6.001382] calling proc_devices_init+0x0/0x22 @ 1 [ 6.006355] initcall proc_devices_init+0x0/0x22 returned 0 after 91 usecs [ 6.013152] calling proc_interrupts_init+0x0/0x22 @ 1 [ 6.018293] initcall proc_interrupts_init+0x0/0x22 returned 0 after 3 usecs [ 6.025261] calling proc_loadavg_init+0x0/0x22 @ 1 [ 6.030153] initcall proc_loadavg_init+0x0/0x22 returned 0 after 3 usecs [ 6.036841] calling proc_meminfo_init+0x0/0x22 @ 1 [ 6.041732] initcall proc_meminfo_init+0x0/0x22 returned 0 after 3 usecs [ 6.048420] calling proc_stat_init+0x0/0x22 @ 1 [ 6.053058] initcall proc_stat_init+0x0/0x22 returned 0 after 3 usecs [ 6.059489] calling proc_uptime_init+0x0/0x22 @ 1 [ 6.064300] initcall proc_uptime_init+0x0/0x22 returned 0 after 3 usecs [ 6.070916] calling proc_version_init+0x0/0x22 @ 1 [ 6.075797] initcall proc_version_init+0x0/0x22 returned 0 after 3 usecs [ 6.082508] calling proc_softirqs_init+0x0/0x22 @ 1 [ 6.087470] initcall proc_softirqs_init+0x0/0x22 returned 0 after 3 usecs [ 6.094264] calling proc_kmsg_init+0x0/0x25 @ 1 [ 6.098876] initcall proc_kmsg_init+0x0/0x25 returned 0 after 3 usecs [ 6.105324] calling proc_page_init+0x0/0x42 @ 1 [ 6.109946] initcall proc_page_init+0x0/0x42 returned 0 after 5 usecs [ 6.116391] calling configfs_init+0x0/0xda @ 1 [ 6.120948] initcall configfs_init+0x0/0xda returned 0 after 13 usecs [ 6.127374] calling init_devpts_fs+0x0/0x4c @ 1 [ 6.132019] initcall init_devpts_fs+0x0/0x4c returned 0 after 16 usecs [ 6.138537] calling init_dlm+0x0/0x88 @ 1 [ 6.143291] DLM (built Feb 4 2010 09:38:23) installed [ 6.148432] initcall init_dlm+0x0/0x88 returned 0 after 5654 usecs [ 6.154626] calling init_reiserfs_fs+0x0/0x63 @ 1 [ 6.159414] initcall init_reiserfs_fs+0x0/0x63 returned 0 after 4 usecs [ 6.166033] calling init_ext3_fs+0x0/0x77 @ 1 [ 6.170486] initcall init_ext3_fs+0x0/0x77 returned 0 after 4 usecs [ 6.176740] calling init_ext2_fs+0x0/0x77 @ 1 [ 6.181199] initcall init_ext2_fs+0x0/0x77 returned 0 after 4 usecs [ 6.187452] calling journal_init+0x0/0x5b @ 1 [ 6.191918] initcall journal_init+0x0/0x5b returned 0 after 11 usecs [ 6.198260] calling journal_init+0x0/0x72 @ 1 [ 6.202728] initcall journal_init+0x0/0x72 returned 0 after 13 usecs [ 6.209068] calling init_ramfs_fs+0x0/0x12 @ 1 [ 6.213619] initcall init_ramfs_fs+0x0/0x12 returned 0 after 2 usecs [ 6.219962] calling init_hugetlbfs_fs+0x0/0x98 @ 1 [ 6.224864] initcall init_hugetlbfs_fs+0x0/0x98 returned 0 after 15 usecs [ 6.231660] calling init_minix_fs+0x0/0x63 @ 1 [ 6.236191] initcall init_minix_fs+0x0/0x63 returned 0 after 2 usecs [ 6.242552] calling init_fat_fs+0x0/0x4f @ 1 [ 6.246904] initcall init_fat_fs+0x0/0x4f returned 0 after 2 usecs [ 6.253092] calling init_msdos_fs+0x0/0x12 @ 1 [ 6.257623] initcall init_msdos_fs+0x0/0x12 returned 0 after 2 usecs [ 6.263986] calling init_iso9660_fs+0x0/0x77 @ 1 [ 6.268703] initcall init_iso9660_fs+0x0/0x77 returned 0 after 13 usecs [ 6.275322] calling init_hfs_fs+0x0/0x5f @ 1 [ 6.279682] initcall init_hfs_fs+0x0/0x5f returned 0 after 2 usecs [ 6.285869] calling ecryptfs_init+0x0/0x1d6 @ 1 [ 6.291030] initcall ecryptfs_init+0x0/0x1d6 returned 0 after 516 usecs [ 6.297633] calling vxfs_init+0x0/0x5b @ 1 [ 6.301852] initcall vxfs_init+0x0/0x5b returned 0 after 4 usecs [ 6.307854] calling init_nls_cp437+0x0/0x12 @ 1 [ 6.312488] initcall init_nls_cp437+0x0/0x12 returned 0 after 1 usecs [ 6.318919] calling init_nls_cp737+0x0/0x12 @ 1 [ 6.323556] initcall init_nls_cp737+0x0/0x12 returned 0 after 1 usecs [ 6.329987] calling init_nls_cp775+0x0/0x12 @ 1 [ 6.334623] initcall init_nls_cp775+0x0/0x12 returned 0 after 1 usecs [ 6.341067] calling init_nls_cp852+0x0/0x12 @ 1 [ 6.345679] initcall init_nls_cp852+0x0/0x12 returned 0 after 1 usecs [ 6.352127] calling init_nls_cp855+0x0/0x12 @ 1 [ 6.356746] initcall init_nls_cp855+0x0/0x12 returned 0 after 1 usecs [ 6.363195] calling init_nls_cp861+0x0/0x12 @ 1 [ 6.367813] initcall init_nls_cp861+0x0/0x12 returned 0 after 1 usecs [ 6.374263] calling init_nls_cp862+0x0/0x12 @ 1 [ 6.378881] initcall init_nls_cp862+0x0/0x12 returned 0 after 1 usecs [ 6.385334] calling init_nls_cp865+0x0/0x12 @ 1 [ 6.389948] initcall init_nls_cp865+0x0/0x12 returned 0 after 1 usecs [ 6.396397] calling init_nls_cp866+0x0/0x12 @ 1 [ 6.401028] initcall init_nls_cp866+0x0/0x12 returned 0 after 1 usecs [ 6.407459] calling init_nls_cp869+0x0/0x12 @ 1 [ 6.412096] initcall init_nls_cp869+0x0/0x12 returned 0 after 1 usecs [ 6.418527] calling init_nls_cp874+0x0/0x12 @ 1 [ 6.423165] initcall init_nls_cp874+0x0/0x12 returned 0 after 1 usecs [ 6.429595] calling init_nls_cp932+0x0/0x12 @ 1 [ 6.434231] initcall init_nls_cp932+0x0/0x12 returned 0 after 1 usecs [ 6.440675] calling init_nls_euc_jp+0x0/0x48 @ 1 [ 6.445381] initcall init_nls_euc_jp+0x0/0x48 returned 0 after 1 usecs [ 6.451915] calling init_nls_cp936+0x0/0x12 @ 1 [ 6.456526] initcall init_nls_cp936+0x0/0x12 returned 0 after 1 usecs [ 6.462975] calling init_nls_cp949+0x0/0x12 @ 1 [ 6.467593] initcall init_nls_cp949+0x0/0x12 returned 0 after 1 usecs [ 6.474042] calling init_nls_cp950+0x0/0x12 @ 1 [ 6.478652] initcall init_nls_cp950+0x0/0x12 returned 0 after 1 usecs [ 6.485100] calling init_nls_cp1250+0x0/0x12 @ 1 [ 6.489799] initcall init_nls_cp1250+0x0/0x12 returned 0 after 1 usecs [ 6.496333] calling init_nls_cp1251+0x0/0x12 @ 1 [ 6.501052] initcall init_nls_cp1251+0x0/0x12 returned 0 after 2 usecs [ 6.507569] calling init_nls_iso8859_1+0x0/0x12 @ 1 [ 6.512553] initcall init_nls_iso8859_1+0x0/0x12 returned 0 after 1 usecs [ 6.519329] calling init_nls_iso8859_2+0x0/0x12 @ 1 [ 6.524305] initcall init_nls_iso8859_2+0x0/0x12 returned 0 after 1 usecs [ 6.531095] calling init_nls_iso8859_3+0x0/0x12 @ 1 [ 6.536054] initcall init_nls_iso8859_3+0x0/0x12 returned 0 after 1 usecs [ 6.542850] calling init_nls_iso8859_5+0x0/0x12 @ 1 [ 6.547813] initcall init_nls_iso8859_5+0x0/0x12 returned 0 after 1 usecs [ 6.554610] calling init_nls_iso8859_6+0x0/0x12 @ 1 [ 6.559574] initcall init_nls_iso8859_6+0x0/0x12 returned 0 after 1 usecs [ 6.566369] calling init_nls_iso8859_7+0x0/0x12 @ 1 [ 6.571339] initcall init_nls_iso8859_7+0x0/0x12 returned 0 after 1 usecs [ 6.578116] calling init_nls_iso8859_9+0x0/0x12 @ 1 [ 6.583093] initcall init_nls_iso8859_9+0x0/0x12 returned 0 after 1 usecs [ 6.589869] calling init_nls_iso8859_13+0x0/0x12 @ 1 [ 6.594940] initcall init_nls_iso8859_13+0x0/0x12 returned 0 after 1 usecs [ 6.601816] calling init_nls_koi8_u+0x0/0x12 @ 1 [ 6.606513] initcall init_nls_koi8_u+0x0/0x12 returned 0 after 1 usecs [ 6.613049] calling init_nls_koi8_ru+0x0/0x48 @ 1 [ 6.617840] initcall init_nls_koi8_ru+0x0/0x48 returned 0 after 1 usecs [ 6.624463] calling init_nls_utf8+0x0/0x2b @ 1 [ 6.628996] initcall init_nls_utf8+0x0/0x2b returned 0 after 2 usecs [ 6.635358] calling init_sysv_fs+0x0/0x4f @ 1 [ 6.639805] initcall init_sysv_fs+0x0/0x4f returned 0 after 3 usecs [ 6.646079] calling init_hpfs_fs+0x0/0x63 @ 1 [ 6.650536] initcall init_hpfs_fs+0x0/0x63 returned 0 after 2 usecs [ 6.656794] calling init_ntfs_fs+0x0/0x238 @ 1 [ 6.661341] NTFS driver 2.1.29 [Flags: R/O DEBUG]. [ 6.666142] initcall init_ntfs_fs+0x0/0x238 returned 0 after 4690 usecs [ 6.672763] calling init_efs_fs+0x0/0x71 @ 1 [ 6.677118] EFS: 1.0a - http://aeschi.ch.eu.org/efs/ [ 6.682091] initcall init_efs_fs+0x0/0x71 returned 0 after 4852 usecs [ 6.688523] calling init_affs_fs+0x0/0x63 @ 1 [ 6.692988] initcall init_affs_fs+0x0/0x63 returned 0 after 2 usecs [ 6.699245] calling init_romfs_fs+0x0/0x87 @ 1 [ 6.703791] ROMFS MTD (C) 2007 Red Hat, Inc. [ 6.708062] initcall init_romfs_fs+0x0/0x87 returned 0 after 4173 usecs [ 6.714684] calling init_qnx4_fs+0x0/0x71 @ 1 [ 6.719120] QNX4 filesystem 0.2.3 registered. [ 6.723492] initcall init_qnx4_fs+0x0/0x71 returned 0 after 4265 usecs [ 6.730024] calling init_autofs4_fs+0x0/0x26 @ 1 [ 6.734825] initcall init_autofs4_fs+0x0/0x26 returned 0 after 94 usecs [ 6.741453] calling init_adfs_fs+0x0/0x63 @ 1 [ 6.745894] initcall init_adfs_fs+0x0/0x63 returned 0 after 3 usecs [ 6.752169] calling fuse_init+0x0/0xeb @ 1 [ 6.756350] fuse init (API version 7.13) [ 6.760453] initcall fuse_init+0x0/0xeb returned 0 after 4000 usecs [ 6.766715] calling cuse_init+0x0/0xac @ 1 [ 6.771289] initcall cuse_init+0x0/0xac returned 0 after 353 usecs [ 6.777461] calling init_omfs_fs+0x0/0x12 @ 1 [ 6.781931] initcall init_omfs_fs+0x0/0x12 returned 0 after 4 usecs [ 6.788192] calling init_nilfs_fs+0x0/0x9f @ 1 [ 6.792748] initcall init_nilfs_fs+0x0/0x9f returned 0 after 3 usecs [ 6.799094] calling init_befs_fs+0x0/0x7f @ 1 [ 6.803555] BeFS version: 0.9.3 [ 6.806700] initcall init_befs_fs+0x0/0x7f returned 0 after 3073 usecs [ 6.813235] calling ocfs2_init+0x0/0x273 @ 1 [ 6.817590] OCFS2 1.5.0 [ 6.820145] initcall ocfs2_init+0x0/0x273 returned 0 after 2490 usecs [ 6.826576] calling ocfs2_stack_glue_init+0x0/0x95 @ 1 [ 6.831848] initcall ocfs2_stack_glue_init+0x0/0x95 returned 0 after 15 usecs [ 6.838969] calling o2cb_stack_init+0x0/0x12 @ 1 [ 6.843690] ocfs2: Registered cluster interface o2cb [ 6.848652] initcall o2cb_stack_init+0x0/0x12 returned 0 after 4848 usecs [ 6.855450] calling ocfs2_user_plugin_init+0x0/0x56 @ 1 [ 6.860976] ocfs2: Registered cluster interface user [ 6.865936] initcall ocfs2_user_plugin_init+0x0/0x56 returned 0 after 5043 usecs [ 6.873344] calling init_o2nm+0x0/0xa9 @ 1 [ 6.877520] OCFS2 Node Manager 1.5.0 [ 6.881730] initcall init_o2nm+0x0/0xa9 returned 0 after 4103 usecs [ 6.887989] calling dlm_init+0x0/0x286 @ 1 [ 6.892193] OCFS2 DLM 1.5.0 [ 6.894995] initcall dlm_init+0x0/0x286 returned 0 after 2736 usecs [ 6.901282] calling init_dlmfs_fs+0x0/0xd1 @ 1 [ 6.905810] OCFS2 DLMFS 1.5.0 [ 6.908831] OCFS2 User DLM kernel interface loaded [ 6.913641] initcall init_dlmfs_fs+0x0/0xd1 returned 0 after 7642 usecs [ 6.920260] calling init_btrfs_fs+0x0/0x90 @ 1 [ 6.924871] Btrfs loaded [ 6.927406] initcall init_btrfs_fs+0x0/0x90 returned 0 after 2556 usecs [ 6.934035] calling init_gfs2_fs+0x0/0x1e9 @ 1 [ 6.939010] Slow work thread pool: Starting up [ 6.943581] Slow work thread pool: Ready [ 6.947622] GFS2 (built Feb 4 2010 09:39:18) installed [ 6.952873] initcall init_gfs2_fs+0x0/0x1e9 returned 0 after 13967 usecs [ 6.959567] calling ipc_init+0x0/0x2f @ 1 [ 6.963684] msgmni has been set to 1966 [ 6.967524] initcall ipc_init+0x0/0x2f returned 0 after 3761 usecs [ 6.973709] calling ipc_sysctl_init+0x0/0x14 @ 1 [ 6.978448] initcall ipc_sysctl_init+0x0/0x14 returned 0 after 35 usecs [ 6.985071] calling init_mqueue_fs+0x0/0xb4 @ 1 [ 6.989719] initcall init_mqueue_fs+0x0/0xb4 returned 0 after 29 usecs [ 6.996252] calling key_proc_init+0x0/0x5e @ 1 [ 7.000799] initcall key_proc_init+0x0/0x5e returned 0 after 5 usecs [ 7.007140] calling crypto_wq_init+0x0/0x2e @ 1 [ 7.011837] initcall crypto_wq_init+0x0/0x2e returned 0 after 60 usecs [ 7.018355] calling crypto_algapi_init+0x0/0xd @ 1 [ 7.023263] initcall crypto_algapi_init+0x0/0xd returned 0 after 8 usecs [ 7.029951] calling skcipher_module_init+0x0/0x39 @ 1 [ 7.035107] initcall skcipher_module_init+0x0/0x39 returned 0 after 1 usecs [ 7.042078] calling chainiv_module_init+0x0/0x12 @ 1 [ 7.047124] initcall chainiv_module_init+0x0/0x12 returned 0 after 2 usecs [ 7.054006] calling eseqiv_module_init+0x0/0x12 @ 1 [ 7.058971] initcall eseqiv_module_init+0x0/0x12 returned 0 after 1 usecs [ 7.065769] calling seqiv_module_init+0x0/0x12 @ 1 [ 7.070658] initcall seqiv_module_init+0x0/0x12 returned 0 after 1 usecs [ 7.077347] calling hmac_module_init+0x0/0x12 @ 1 [ 7.082153] initcall hmac_module_init+0x0/0x12 returned 0 after 1 usecs [ 7.088753] calling crypto_xcbc_module_init+0x0/0x12 @ 1 [ 7.094162] initcall crypto_xcbc_module_init+0x0/0x12 returned 0 after 1 usecs [ 7.101388] calling crypto_null_mod_init+0x0/0x7d @ 1 [ 7.106564] alg: No test for cipher_null (cipher_null-generic) [ 7.112447] alg: No test for ecb(cipher_null) (ecb-cipher_null) [ 7.118525] alg: No test for digest_null (digest_null-generic) [ 7.124406] alg: No test for compress_null (compress_null-generic) [ 7.130602] initcall crypto_null_mod_init+0x0/0x7d returned 0 after 23509 usecs [ 7.137902] calling md5_mod_init+0x0/0x12 @ 1 [ 7.142598] initcall md5_mod_init+0x0/0x12 returned 0 after 232 usecs [ 7.149032] calling rmd128_mod_init+0x0/0x12 @ 1 [ 7.154005] initcall rmd128_mod_init+0x0/0x12 returned 0 after 234 usecs [ 7.160720] calling rmd160_mod_init+0x0/0x12 @ 1 [ 7.165574] initcall rmd160_mod_init+0x0/0x12 returned 0 after 146 usecs [ 7.172283] calling rmd256_mod_init+0x0/0x12 @ 1 [ 7.177131] initcall rmd256_mod_init+0x0/0x12 returned 0 after 141 usecs [ 7.183855] calling sha1_generic_mod_init+0x0/0x12 @ 1 [ 7.189311] initcall sha1_generic_mod_init+0x0/0x12 returned 0 after 228 usecs [ 7.196544] calling sha256_generic_mod_init+0x0/0x3f @ 1 [ 7.202364] initcall sha256_generic_mod_init+0x0/0x3f returned 0 after 404 usecs [ 7.209750] calling sha512_generic_mod_init+0x0/0x3f @ 1 [ 7.215462] initcall sha512_generic_mod_init+0x0/0x3f returned 0 after 284 usecs [ 7.222864] calling tgr192_mod_init+0x0/0x6b @ 1 [ 7.228001] initcall tgr192_mod_init+0x0/0x6b returned 0 after 425 usecs [ 7.234716] calling crypto_ecb_module_init+0x0/0x12 @ 1 [ 7.240032] initcall crypto_ecb_module_init+0x0/0x12 returned 0 after 1 usecs [ 7.247157] calling crypto_cbc_module_init+0x0/0x12 @ 1 [ 7.252487] initcall crypto_cbc_module_init+0x0/0x12 returned 0 after 1 usecs [ 7.259610] calling crypto_pcbc_module_init+0x0/0x12 @ 1 [ 7.265019] initcall crypto_pcbc_module_init+0x0/0x12 returned 0 after 1 usecs [ 7.272242] calling crypto_cts_module_init+0x0/0x12 @ 1 [ 7.277546] initcall crypto_cts_module_init+0x0/0x12 returned 0 after 1 usecs [ 7.284690] calling crypto_module_init+0x0/0x12 @ 1 [ 7.289653] initcall crypto_module_init+0x0/0x12 returned 0 after 1 usecs [ 7.296450] calling crypto_module_init+0x0/0x12 @ 1 [ 7.301427] initcall crypto_module_init+0x0/0x12 returned 0 after 1 usecs [ 7.308204] calling crypto_ctr_module_init+0x0/0x3e @ 1 [ 7.313526] initcall crypto_ctr_module_init+0x0/0x3e returned 0 after 1 usecs [ 7.320664] calling crypto_gcm_module_init+0x0/0x84 @ 1 [ 7.325970] initcall crypto_gcm_module_init+0x0/0x84 returned 0 after 3 usecs [ 7.333111] calling cryptd_init+0x0/0xc8 @ 1 [ 7.337472] initcall cryptd_init+0x0/0xc8 returned 0 after 4 usecs [ 7.343658] calling des_generic_mod_init+0x0/0x3f @ 1 [ 7.348897] initcall des_generic_mod_init+0x0/0x3f returned 0 after 99 usecs [ 7.355967] calling fcrypt_mod_init+0x0/0x12 @ 1 [ 7.360704] alg: No test for fcrypt (fcrypt-generic) [ 7.365664] initcall fcrypt_mod_init+0x0/0x12 returned 0 after 4870 usecs [ 7.372459] calling blowfish_mod_init+0x0/0x12 @ 1 [ 7.377961] initcall blowfish_mod_init+0x0/0x12 returned 0 after 611 usecs [ 7.384852] calling twofish_mod_init+0x0/0x12 @ 1 [ 7.389759] initcall twofish_mod_init+0x0/0x12 returned 0 after 114 usecs [ 7.396556] calling serpent_mod_init+0x0/0x3f @ 1 [ 7.401460] initcall serpent_mod_init+0x0/0x3f returned 0 after 103 usecs [ 7.408237] calling aes_init+0x0/0x12 @ 1 [ 7.412412] initcall aes_init+0x0/0x12 returned 0 after 56 usecs [ 7.418413] calling camellia_init+0x0/0x12 @ 1 [ 7.423031] initcall camellia_init+0x0/0x12 returned 0 after 57 usecs [ 7.429463] calling cast5_mod_init+0x0/0x12 @ 1 [ 7.434154] initcall cast5_mod_init+0x0/0x12 returned 0 after 49 usecs [ 7.440684] calling tea_mod_init+0x0/0x6b @ 1 [ 7.445390] initcall tea_mod_init+0x0/0x6b returned 0 after 256 usecs [ 7.451838] calling khazad_mod_init+0x0/0x12 @ 1 [ 7.456596] initcall khazad_mod_init+0x0/0x12 returned 0 after 53 usecs [ 7.463226] calling salsa20_generic_mod_init+0x0/0x12 @ 1 [ 7.468743] initcall salsa20_generic_mod_init+0x0/0x12 returned 0 after 33 usecs [ 7.476148] calling deflate_mod_init+0x0/0x12 @ 1 [ 7.481246] initcall deflate_mod_init+0x0/0x12 returned 0 after 287 usecs [ 7.488023] calling zlib_mod_init+0x0/0x12 @ 1 [ 7.492860] initcall zlib_mod_init+0x0/0x12 returned 0 after 269 usecs [ 7.499377] calling michael_mic_init+0x0/0x12 @ 1 [ 7.504234] initcall michael_mic_init+0x0/0x12 returned 0 after 43 usecs [ 7.510936] calling crc32c_mod_init+0x0/0x12 @ 1 [ 7.515686] initcall crc32c_mod_init+0x0/0x12 returned 0 after 46 usecs [ 7.522308] calling crypto_authenc_module_init+0x0/0x12 @ 1 [ 7.527965] initcall crypto_authenc_module_init+0x0/0x12 returned 0 after 3 usecs [ 7.535454] calling lzo_mod_init+0x0/0x12 @ 1 [ 7.539950] initcall lzo_mod_init+0x0/0x12 returned 0 after 50 usecs [ 7.546319] calling krng_mod_init+0x0/0x12 @ 1 [ 7.550879] alg: No test for stdrng (krng) [ 7.554974] initcall krng_mod_init+0x0/0x12 returned 0 after 4024 usecs [ 7.561594] calling prng_mod_init+0x0/0x22 @ 1 [ 7.570865] alg: No test for fips(ansi_cprng) (fips_ansi_cprng) [ 7.576787] initcall prng_mod_init+0x0/0x22 returned 0 after 10414 usecs [ 7.583497] calling ghash_mod_init+0x0/0x12 @ 1 [ 7.588160] initcall ghash_mod_init+0x0/0x12 returned 0 after 46 usecs [ 7.594693] calling async_pq_init+0x0/0x3a @ 1 [ 7.599224] initcall async_pq_init+0x0/0x3a returned 0 after 2 usecs [ 7.605590] calling proc_genhd_init+0x0/0x3c @ 1 [ 7.610317] initcall proc_genhd_init+0x0/0x3c returned 0 after 15 usecs [ 7.616915] calling bsg_init+0x0/0x12e @ 1 [ 7.621461] Block layer SCSI generic (bsg) driver version 0.4 loaded (major 253) [ 7.628853] initcall bsg_init+0x0/0x12e returned 0 after 7567 usecs [ 7.635141] calling noop_init+0x0/0x14 @ 1 [ 7.639323] io scheduler noop registered (default) [ 7.644129] initcall noop_init+0x0/0x14 returned 0 after 4690 usecs [ 7.650401] calling cfq_init+0x0/0xa0 @ 1 [ 7.654490] io scheduler cfq registered [ 7.658326] initcall cfq_init+0x0/0xa0 returned 0 after 3749 usecs [ 7.664520] calling libcrc32c_mod_init+0x0/0x2c @ 1 [ 7.669487] initcall libcrc32c_mod_init+0x0/0x2c returned 0 after 5 usecs [ 7.676281] calling percpu_counter_startup+0x0/0x3c @ 1 [ 7.681611] initcall percpu_counter_startup+0x0/0x3c returned 0 after 3 usecs [ 7.688738] calling dynamic_debug_init+0x0/0x138 @ 1 [ 7.694076] initcall dynamic_debug_init+0x0/0x138 returned 0 after 262 usecs [ 7.701127] calling adp5520_gpio_init+0x0/0x12 @ 1 [ 7.706221] initcall adp5520_gpio_init+0x0/0x12 returned 0 after 218 usecs [ 7.713114] calling lnw_gpio_init+0x0/0x1b @ 1 [ 7.717713] initcall lnw_gpio_init+0x0/0x1b returned 0 after 66 usecs [ 7.724165] calling pci_proc_init+0x0/0x6a @ 1 [ 7.728945] initcall pci_proc_init+0x0/0x6a returned 0 after 242 usecs [ 7.735489] calling pcie_portdrv_init+0x0/0x4c @ 1 [ 7.740540] pcieport 0000:00:0b.0: setting latency timer to 64 [ 7.746618] pcieport 0000:00:0c.0: setting latency timer to 64 [ 7.752572] pcieport 0000:00:0d.0: setting latency timer to 64 [ 7.758498] pcieport 0000:00:0e.0: setting latency timer to 64 [ 7.764639] initcall pcie_portdrv_init+0x0/0x4c returned 0 after 23694 usecs [ 7.771696] calling aer_service_init+0x0/0xb @ 1 [ 7.776398] initcall aer_service_init+0x0/0xb returned -6 after 1 usecs [ 7.783037] initcall aer_service_init+0x0/0xb returned with error code -6 [ 7.789905] calling aer_inject_init+0x0/0x12 @ 1 [ 7.794699] initcall aer_inject_init+0x0/0x12 returned 0 after 70 usecs [ 7.801329] calling ioapic_init+0x0/0x1b @ 1 [ 7.805745] initcall ioapic_init+0x0/0x1b returned 0 after 61 usecs [ 7.812020] calling pci_hotplug_init+0x0/0x1d @ 1 [ 7.816810] pci_hotplug: PCI Hot Plug PCI Core version: 0.5 [ 7.822403] initcall pci_hotplug_init+0x0/0x1d returned 0 after 5458 usecs [ 7.829270] calling shpcd_init+0x0/0x62 @ 1 [ 7.833710] shpchp: Standard Hot Plug PCI Controller Driver version: 0.4 [ 7.840424] initcall shpcd_init+0x0/0x62 returned 0 after 6703 usecs [ 7.846769] calling acpiphp_init+0x0/0x5f @ 1 [ 7.851229] acpiphp: ACPI Hot Plug PCI Controller Driver version: 0.5 [ 7.858287] initcall acpiphp_init+0x0/0x5f returned -19 after 6895 usecs [ 7.865001] calling init_legacy+0x0/0x43 @ 1 [ 7.869448] initcall init_legacy+0x0/0x43 returned 0 after 89 usecs [ 7.875720] calling pci_stub_init+0x0/0x13d @ 1 [ 7.880664] pci-stub: invalid id string "" [ 7.884759] initcall pci_stub_init+0x0/0x13d returned 0 after 4307 usecs [ 7.891477] calling platform_lcd_init+0x0/0x12 @ 1 [ 7.896416] initcall platform_lcd_init+0x0/0x12 returned 0 after 60 usecs [ 7.903217] calling genericbl_init+0x0/0x12 @ 1 [ 7.907885] initcall genericbl_init+0x0/0x12 returned 0 after 55 usecs [ 7.914419] calling progearbl_init+0x0/0x55 @ 1 [ 7.919528] ALI M7101 PMU not found. [ 7.923134] initcall progearbl_init+0x0/0x55 returned 0 after 3998 usecs [ 7.929821] calling cr_backlight_init+0x0/0x65 @ 1 [ 7.935112] INTEL CARILLO RANCH LPC not found. [ 7.939548] Carillo Ranch Backlight Driver Initialized. [ 7.944808] initcall cr_backlight_init+0x0/0x65 returned 0 after 9861 usecs [ 7.951771] calling da903x_backlight_init+0x0/0x12 @ 1 [ 7.957057] initcall da903x_backlight_init+0x0/0x12 returned 0 after 60 usecs [ 7.964217] calling kb3886_init+0x0/0xb @ 1 [ 7.968490] initcall kb3886_init+0x0/0xb returned -19 after 1 usecs [ 7.974765] calling wm831x_backlight_init+0x0/0x12 @ 1 [ 7.980060] initcall wm831x_backlight_init+0x0/0x12 returned 0 after 67 usecs [ 7.987186] calling display_class_init+0x0/0x7e @ 1 [ 7.992238] initcall display_class_init+0x0/0x7e returned 0 after 60 usecs [ 7.999104] calling arcfb_init+0x0/0x71 @ 1 [ 8.003402] initcall arcfb_init+0x0/0x71 returned -6 after 1 usecs [ 8.009572] initcall arcfb_init+0x0/0x71 returned with error code -6 [ 8.016018] calling cyber2000fb_init+0x0/0xd1 @ 1 [ 8.020973] initcall cyber2000fb_init+0x0/0xd1 returned 0 after 147 usecs [ 8.027746] calling pm2fb_init+0x0/0x4b @ 1 [ 8.032120] initcall pm2fb_init+0x0/0x4b returned 0 after 83 usecs [ 8.038295] calling pm3fb_init+0x0/0x4b @ 1 [ 8.042662] initcall pm3fb_init+0x0/0x4b returned 0 after 67 usecs [ 8.048835] calling rivafb_init+0x0/0x4b @ 1 [ 8.053383] initcall rivafb_init+0x0/0x4b returned 0 after 166 usecs [ 8.059729] calling nvidiafb_init+0x0/0x4b @ 1 [ 8.064282] nvidiafb_setup START [ 8.067804] initcall nvidiafb_init+0x0/0x4b returned 0 after 3439 usecs [ 8.074438] calling atyfb_init+0x0/0x51 @ 1 [ 8.078770] initcall atyfb_init+0x0/0x51 returned 0 after 65 usecs [ 8.084958] calling viafb_init+0x0/0x63 @ 1 [ 8.089225] VIA Graphics Intergration Chipset framebuffer 2.4 initializing [ 8.096179] initcall viafb_init+0x0/0x63 returned 0 after 6786 usecs [ 8.102545] calling kyrofb_init+0x0/0x4b @ 1 [ 8.106980] initcall kyrofb_init+0x0/0x4b returned 0 after 82 usecs [ 8.113253] calling tdfxfb_init+0x0/0x4b @ 1 [ 8.117764] initcall tdfxfb_init+0x0/0x4b returned 0 after 151 usecs [ 8.124137] calling imsttfb_init+0x0/0x4b @ 1 [ 8.128736] initcall imsttfb_init+0x0/0x4b returned 0 after 150 usecs [ 8.135194] calling vmlfb_init+0x0/0x96 @ 1 [ 8.139455] vmlfb: initializing [ 8.142759] initcall vmlfb_init+0x0/0x96 returned 0 after 3221 usecs [ 8.149099] calling arkfb_init+0x0/0x82 @ 1 [ 8.153538] initcall arkfb_init+0x0/0x82 returned 0 after 144 usecs [ 8.159795] calling hgafb_init+0x0/0x6b @ 1 [ 8.164403] hgafb: HGA card not detected. [ 8.168413] hgafb: probe of hgafb.0 failed with error -22 [ 8.173836] initcall hgafb_init+0x0/0x6b returned 0 after 9520 usecs [ 8.180193] calling tmiofb_init+0x0/0x69 @ 1 [ 8.184726] initcall tmiofb_init+0x0/0x69 returned 0 after 170 usecs [ 8.191095] calling metronomefb_init+0x0/0x12 @ 1 [ 8.196045] initcall metronomefb_init+0x0/0x12 returned 0 after 155 usecs [ 8.202857] calling broadsheetfb_init+0x0/0x12 @ 1 [ 8.207869] initcall broadsheetfb_init+0x0/0x12 returned 0 after 130 usecs [ 8.214750] calling s1d13xxxfb_init+0x0/0x2b @ 1 [ 8.219683] initcall s1d13xxxfb_init+0x0/0x2b returned 0 after 224 usecs [ 8.226404] calling sm501fb_init+0x0/0x12 @ 1 [ 8.230923] initcall sm501fb_init+0x0/0x12 returned 0 after 61 usecs [ 8.237269] calling acpi_reserve_resources+0x0/0xeb @ 1 [ 8.242613] initcall acpi_reserve_resources+0x0/0xeb returned 0 after 5 usecs [ 8.249739] calling irqrouter_init_sysfs+0x0/0x38 @ 1 [ 8.255005] initcall irqrouter_init_sysfs+0x0/0x38 returned 0 after 107 usecs [ 8.262148] calling acpi_ac_init+0x0/0x45 @ 1 [ 8.266890] initcall acpi_ac_init+0x0/0x45 returned 0 after 291 usecs [ 8.273357] calling acpi_button_init+0x0/0x56 @ 1 [ 8.278328] input: Power Button as /class/input/input0 [ 8.283478] ACPI: Power Button [PWRB] [ 8.287398] input: Power Button as /class/input/input1 [ 8.292555] ACPI: Power Button [PWRF] [ 8.296282] initcall acpi_button_init+0x0/0x56 returned 0 after 17711 usecs [ 8.303267] calling acpi_fan_init+0x0/0x32 @ 1 [ 8.307951] ACPI: Fan [FAN] (on) [ 8.311409] initcall acpi_fan_init+0x0/0x32 returned 0 after 3527 usecs [ 8.318017] calling acpi_processor_init+0x0/0xc3 @ 1 [ 8.323750] initcall acpi_processor_init+0x0/0xc3 returned 0 after 638 usecs [ 8.330811] calling acpi_container_init+0x0/0x4a @ 1 [ 8.341273] initcall acpi_container_init+0x0/0x4a returned 0 after 5283 usecs [ 8.348399] calling acpi_memory_device_init+0x0/0x86 @ 1 [ 8.359514] initcall acpi_memory_device_init+0x0/0x86 returned 0 after 5534 usecs [ 8.367020] calling acpi_battery_init+0x0/0x16 @ 1 [ 8.371910] initcall acpi_battery_init+0x0/0x16 returned 0 after 6 usecs [ 8.371932] calling 1_acpi_battery_init_async+0x0/0x3c @ 1136 [ 8.372078] initcall 1_acpi_battery_init_async+0x0/0x3c returned 0 after 135 usecs [ 8.391993] calling acpi_smb_hc_init+0x0/0x18 @ 1 [ 8.396979] initcall acpi_smb_hc_init+0x0/0x18 returned 0 after 190 usecs [ 8.403791] calling acpi_sbs_init+0x0/0x4f @ 1 [ 8.408454] initcall acpi_sbs_init+0x0/0x4f returned 0 after 132 usecs [ 8.414994] calling acpi_pad_init+0x0/0x26 @ 1 [ 8.419526] initcall acpi_pad_init+0x0/0x26 returned -22 after 1 usecs [ 8.426065] initcall acpi_pad_init+0x0/0x26 returned with error code -22 [ 8.432857] calling regulator_virtual_consumer_init+0x0/0x12 @ 1 [ 8.439066] initcall regulator_virtual_consumer_init+0x0/0x12 returned 0 after 117 usecs [ 8.447178] calling regulator_userspace_consumer_init+0x0/0x12 @ 1 [ 8.453547] initcall regulator_userspace_consumer_init+0x0/0x12 returned 0 after 92 usecs [ 8.461732] calling bq24022_init+0x0/0x19 @ 1 [ 8.466550] initcall bq24022_init+0x0/0x19 returned -19 after 370 usecs [ 8.473185] calling lp3971_module_init+0x0/0x33 @ 1 [ 8.478206] i2c-core: driver [LP3971] registered [ 8.482841] initcall lp3971_module_init+0x0/0x33 returned 0 after 4580 usecs [ 8.489879] calling rand_initialize+0x0/0x30 @ 1 [ 8.494628] initcall rand_initialize+0x0/0x30 returned 0 after 19 usecs [ 8.501243] calling tty_init+0x0/0xfa @ 1 [ 8.513940] initcall tty_init+0x0/0xfa returned 0 after 8401 usecs [ 8.520140] calling pty_init+0x0/0x12 @ 1 [ 8.629177] initcall pty_init+0x0/0x12 returned 0 after 102481 usecs [ 8.635612] calling sysrq_init+0x0/0x25 @ 1 [ 8.639889] initcall sysrq_init+0x0/0x25 returned 0 after 12 usecs [ 8.646132] calling nozomi_init+0x0/0x129 @ 1 [ 8.650654] Initializing Nozomi driver 2.1d (build date: Feb 4 2010 09:37:26) [ 8.658717] initcall nozomi_init+0x0/0x129 returned 0 after 7876 usecs [ 8.665310] calling applicom_init+0x0/0x4bd @ 1 [ 8.669924] Applicom driver: $Id: ac.c,v 1.30 2000/03/22 16:03:57 dwmw2 Exp $ [ 8.677072] ac.o: No PCI boards found. [ 8.680828] ac.o: For an ISA board you must supply memory and irq parameters. [ 8.687950] initcall applicom_init+0x0/0x4bd returned -6 after 17604 usecs [ 8.694836] initcall applicom_init+0x0/0x4bd returned with error code -6 [ 8.701630] calling rtc_init+0x0/0x103 @ 1 [ 8.706018] Real Time Clock Driver v1.12b [ 8.710060] initcall rtc_init+0x0/0x103 returned 0 after 4143 usecs [ 8.716314] calling hpet_init+0x0/0x6a @ 1 [ 8.720755] initcall hpet_init+0x0/0x6a returned 0 after 235 usecs [ 8.726923] calling i8k_init+0x0/0x54 @ 1 [ 8.731098] initcall i8k_init+0x0/0x54 returned -19 after 1 usecs [ 8.737185] calling mod_init+0x0/0x1ed @ 1 [ 8.741513] initcall mod_init+0x0/0x1ed returned -19 after 76 usecs [ 8.747774] calling mod_init+0x0/0xba @ 1 [ 8.751965] initcall mod_init+0x0/0xba returned -19 after 23 usecs [ 8.758131] calling mod_init+0x0/0x4d @ 1 [ 8.762287] initcall mod_init+0x0/0x4d returned -19 after 1 usecs [ 8.768366] calling init+0x0/0x12 @ 1 [ 8.772203] initcall init+0x0/0x12 returned 0 after 73 usecs [ 8.777857] calling pc8736x_gpio_init+0x0/0x3de @ 1 [ 8.782932] platform pc8736x_gpio.0: NatSemi pc8736x GPIO Driver Initializing [ 8.790087] platform pc8736x_gpio.0: no device found [ 8.795114] initcall pc8736x_gpio_init+0x0/0x3de returned -19 after 11978 usecs [ 8.802435] calling nsc_gpio_init+0x0/0x16 @ 1 [ 8.806961] nsc_gpio initializing [ 8.810340] initcall nsc_gpio_init+0x0/0x16 returned 0 after 3294 usecs [ 8.816945] calling tlclk_init+0x0/0x1ca @ 1 [ 8.821328] telclk_interrup = 0xf non-mcpbl0010 hw. [ 8.826206] initcall tlclk_init+0x0/0x1ca returned -6 after 4772 usecs [ 8.832740] initcall tlclk_init+0x0/0x1ca returned with error code -6 [ 8.839261] calling mwave_init+0x0/0x20a @ 1 [ 8.843633] smapi::smapi_init, ERROR invalid usSmapiID [ 8.848760] mwave: tp3780i::tp3780I_InitializeBoardData: Error: SMAPI is not available on this machine [ 8.858064] mwave: mwavedd::mwave_init: Error: Failed to initialize board data [ 8.865283] mwave: mwavedd::mwave_init: Error: Failed to initialize [ 8.871552] initcall mwave_init+0x0/0x20a returned -5 after 27269 usecs [ 8.878158] initcall mwave_init+0x0/0x20a returned with error code -5 [ 8.884699] calling ipmi_init_msghandler_mod+0x0/0xd @ 1 [ 8.890177] ipmi message handler version 39.2 [ 8.894542] initcall ipmi_init_msghandler_mod+0x0/0xd returned 0 after 4333 usecs [ 8.902041] calling init_ipmi_si+0x0/0x28d @ 1 [ 8.906632] IPMI System Interface driver. [ 9.020132] ipmi_si: Unable to find any System Interface(s) [ 9.025704] initcall init_ipmi_si+0x0/0x28d returned -19 after 116342 usecs [ 9.032677] calling hangcheck_init+0x0/0x87 @ 1 [ 9.037292] Hangcheck: starting hangcheck timer 0.9.0 (tick is 180 seconds, margin is 60 seconds). [ 9.046256] Hangcheck: Using get_cycles(). [ 9.050365] initcall hangcheck_init+0x0/0x87 returned 0 after 12763 usecs [ 9.057144] calling init_tis+0x0/0x8e @ 1 [ 9.061322] initcall init_tis+0x0/0x8e returned 0 after 68 usecs [ 9.067320] calling init_nsc+0x0/0x69a @ 1 [ 9.071543] initcall init_nsc+0x0/0x69a returned -19 after 12 usecs [ 9.077797] calling init_atmel+0x0/0x182 @ 1 [ 9.082300] initcall init_atmel+0x0/0x182 returned -19 after 122 usecs [ 9.088820] calling init_inf+0x0/0x12 @ 1 [ 9.093002] initcall init_inf+0x0/0x12 returned 0 after 66 usecs [ 9.098996] calling drm_core_init+0x0/0x137 @ 1 [ 9.103719] [drm] Initialized drm 1.1.0 20060810 [ 9.108333] initcall drm_core_init+0x0/0x137 returned 0 after 4592 usecs [ 9.115054] calling ttm_init+0x0/0x6c @ 1 [ 9.119218] initcall ttm_init+0x0/0x6c returned 0 after 66 usecs [ 9.125246] calling tdfx_init+0x0/0x12 @ 1 [ 9.129445] initcall tdfx_init+0x0/0x12 returned 0 after 16 usecs [ 9.135550] calling r128_init+0x0/0x1e @ 1 [ 9.139817] initcall r128_init+0x0/0x1e returned 0 after 81 usecs [ 9.145914] calling radeon_init+0x0/0xc1 @ 1 [ 9.150283] [drm] radeon defaulting to kernel modesetting. [ 9.155763] [drm] radeon kernel modesetting enabled. [ 9.161117] ACPI: PCI Interrupt Link [APC3] enabled at IRQ 18 [ 9.166861] alloc irq_desc for 18 on node -1 [ 9.170730] alloc kstat_irqs on node -1 [ 9.175338] radeon 0000:01:00.0: PCI INT A -> Link[APC3] -> GSI 18 (level, low) -> IRQ 18 [ 9.183521] radeon 0000:01:00.0: setting latency timer to 64 [ 9.192582] [drm] radeon: Initializing kernel modesetting. [ 9.210040] [drm] register mmio base: 0xD9000000 [ 9.214655] [drm] register mmio size: 65536 [ 9.219314] [drm] GPU reset succeed (RBBM_STATUS=0x00000140) [ 9.225013] [drm] Generation 2 PCI interface, using max accessible memory [ 9.231802] [drm] radeon: VRAM 128M [ 9.235292] [drm] radeon: VRAM from 0x00000000 to 0x07FFFFFF [ 9.240963] [drm] radeon: GTT 512M [ 9.244357] [drm] radeon: GTT from 0x20000000 to 0x3FFFFFFF [ 9.249952] [drm] radeon: irq initialized. [ 9.254260] [drm] Detected VRAM RAM=128M, BAR=128M [ 9.259046] [drm] RAM width 64bits DDR [ 9.262908] [TTM] Zone kernel: Available graphics memory: 503534 kiB. [ 9.269450] [drm] radeon: 128M of VRAM memory ready [ 9.274345] [drm] radeon: 512M of GTT memory ready. [ 9.279237] [drm] GART: num cpu pages 131072, num gpu pages 131072 [ 9.286759] [drm] radeon: 1 quad pipes, 1 Z pipes initialized. [ 9.292683] [drm] PCIE GART of 512M enabled (table at 0x00040000). [ 9.298867] [drm] radeon: cp idle (0x10000C03) [ 9.303496] [drm] Loading R300 Microcode [ 9.307418] platform radeon_cp.0: firmware: using built-in firmware radeon/R300_cp.bin [ 9.316599] [drm] radeon: ring at 0x0000000020000000 [ 9.427546] [drm:r100_ring_test] *ERROR* radeon: ring test failed (sracth(0x15E4)=0xCAFEDEAD) [ 9.436079] [drm:r100_cp_init] *ERROR* radeon: cp isn't working (-22). [ 9.442612] radeon 0000:01:00.0: failled initializing CP (-22). [ 9.448527] radeon 0000:01:00.0: Disabling GPU acceleration [ 9.560071] [drm:r100_cp_fini] *ERROR* Wait for CP idle timeout, shutting down CP. [ 9.673594] radeon: wait for empty RBBM fifo failed ! Bad things might happen. [ 9.786768] Failed to wait GUI idle while programming pipes. Bad things might happen. [ 9.794749] [drm] radeon: cp finalized [ 9.798537] radeon 0000:01:00.0: ffff88003e4bc410 unpin not necessary [ 9.805841] i2c i2c-0: adapter [] registered [ 9.810298] [drm] Default TV standard: PAL [ 9.814387] [drm] 27.000000000 MHz TV ref clk [ 9.818735] [drm] DFP table revision: 4 [ 9.822661] i2c i2c-1: adapter [] registered [ 9.827065] [drm] Default TV standard: PAL [ 9.831171] [drm] 27.000000000 MHz TV ref clk [ 9.835665] [drm] Radeon Display Connectors [ 9.839847] [drm] Connector 0: [ 9.842930] [drm] VGA [ 9.845373] [drm] DDC: 0x60 0x60 0x60 0x60 0x60 0x60 0x60 0x60 [ 9.851388] [drm] Encoders: [ 9.854350] [drm] CRT1: INTERNAL_DAC1 [ 9.858352] [drm] Connector 1: [ 9.861417] [drm] DVI-I [ 9.864031] [drm] HPD1 [ 9.866562] [drm] DDC: 0x64 0x64 0x64 0x64 0x64 0x64 0x64 0x64 [ 9.872579] [drm] Encoders: [ 9.875540] [drm] CRT2: INTERNAL_DAC2 [ 9.879541] [drm] DFP1: INTERNAL_TMDS1 [ 9.883646] [drm] Connector 2: [ 9.886695] [drm] S-video [ 9.889483] [drm] Encoders: [ 9.892463] [drm] TV1: INTERNAL_DAC2 [ 9.896392] i2c i2c-0: master_xfer[0] W, addr=0x50, len=1 [ 9.901796] i2c i2c-0: master_xfer[1] R, addr=0x50, len=128 [ 9.909246] i2c i2c-0: NAK from device addr 0x50 msg #0 [ 9.914564] i2c i2c-1: master_xfer[0] W, addr=0x50, len=1 [ 9.919957] i2c i2c-1: master_xfer[1] R, addr=0x50, len=128 [ 9.927413] i2c i2c-1: NAK from device addr 0x50 msg #0 [-- Attachment #3: config-hang --] [-- Type: text/plain, Size: 71144 bytes --] # # Automatically generated make config: don't edit # Linux kernel version: 2.6.33-rc6 # Thu Feb 4 10:11:40 2010 # CONFIG_64BIT=y # CONFIG_X86_32 is not set CONFIG_X86_64=y CONFIG_X86=y CONFIG_OUTPUT_FORMAT="elf64-x86-64" CONFIG_ARCH_DEFCONFIG="arch/x86/configs/x86_64_defconfig" CONFIG_GENERIC_TIME=y CONFIG_GENERIC_CMOS_UPDATE=y CONFIG_CLOCKSOURCE_WATCHDOG=y CONFIG_GENERIC_CLOCKEVENTS=y CONFIG_GENERIC_CLOCKEVENTS_BROADCAST=y CONFIG_LOCKDEP_SUPPORT=y CONFIG_STACKTRACE_SUPPORT=y CONFIG_HAVE_LATENCYTOP_SUPPORT=y CONFIG_MMU=y CONFIG_ZONE_DMA=y CONFIG_GENERIC_ISA_DMA=y CONFIG_GENERIC_IOMAP=y CONFIG_GENERIC_BUG=y CONFIG_GENERIC_BUG_RELATIVE_POINTERS=y CONFIG_GENERIC_HWEIGHT=y CONFIG_GENERIC_GPIO=y CONFIG_ARCH_MAY_HAVE_PC_FDC=y # CONFIG_RWSEM_GENERIC_SPINLOCK is not set CONFIG_RWSEM_XCHGADD_ALGORITHM=y CONFIG_ARCH_HAS_CPU_IDLE_WAIT=y CONFIG_GENERIC_CALIBRATE_DELAY=y CONFIG_GENERIC_TIME_VSYSCALL=y CONFIG_ARCH_HAS_CPU_RELAX=y CONFIG_ARCH_HAS_DEFAULT_IDLE=y CONFIG_ARCH_HAS_CACHE_LINE_SIZE=y CONFIG_HAVE_SETUP_PER_CPU_AREA=y CONFIG_NEED_PER_CPU_EMBED_FIRST_CHUNK=y CONFIG_NEED_PER_CPU_PAGE_FIRST_CHUNK=y CONFIG_HAVE_CPUMASK_OF_CPU_MAP=y CONFIG_ARCH_HIBERNATION_POSSIBLE=y CONFIG_ARCH_SUSPEND_POSSIBLE=y CONFIG_ZONE_DMA32=y CONFIG_ARCH_POPULATES_NODE_MAP=y CONFIG_AUDIT_ARCH=y CONFIG_ARCH_SUPPORTS_OPTIMIZED_INLINING=y CONFIG_ARCH_SUPPORTS_DEBUG_PAGEALLOC=y CONFIG_GENERIC_HARDIRQS=y CONFIG_GENERIC_HARDIRQS_NO__DO_IRQ=y CONFIG_GENERIC_IRQ_PROBE=y CONFIG_GENERIC_PENDING_IRQ=y CONFIG_USE_GENERIC_SMP_HELPERS=y CONFIG_X86_64_SMP=y CONFIG_X86_HT=y CONFIG_X86_TRAMPOLINE=y # CONFIG_KTIME_SCALAR is not set CONFIG_DEFCONFIG_LIST="/lib/modules/$UNAME_RELEASE/.config" CONFIG_CONSTRUCTORS=y # # General setup # CONFIG_EXPERIMENTAL=y CONFIG_LOCK_KERNEL=y CONFIG_INIT_ENV_ARG_LIMIT=32 CONFIG_LOCALVERSION="" CONFIG_LOCALVERSION_AUTO=y CONFIG_HAVE_KERNEL_GZIP=y CONFIG_HAVE_KERNEL_BZIP2=y CONFIG_HAVE_KERNEL_LZMA=y CONFIG_HAVE_KERNEL_LZO=y CONFIG_KERNEL_GZIP=y # CONFIG_KERNEL_BZIP2 is not set # CONFIG_KERNEL_LZMA is not set # CONFIG_KERNEL_LZO is not set CONFIG_SWAP=y CONFIG_SYSVIPC=y CONFIG_SYSVIPC_SYSCTL=y CONFIG_POSIX_MQUEUE=y CONFIG_POSIX_MQUEUE_SYSCTL=y # CONFIG_BSD_PROCESS_ACCT is not set CONFIG_TASKSTATS=y CONFIG_TASK_DELAY_ACCT=y CONFIG_TASK_XACCT=y CONFIG_TASK_IO_ACCOUNTING=y CONFIG_AUDIT=y CONFIG_AUDITSYSCALL=y CONFIG_AUDIT_TREE=y # # RCU Subsystem # CONFIG_TREE_RCU=y # CONFIG_TREE_PREEMPT_RCU is not set # CONFIG_TINY_RCU is not set # CONFIG_RCU_TRACE is not set CONFIG_RCU_FANOUT=64 CONFIG_RCU_FANOUT_EXACT=y # CONFIG_TREE_RCU_TRACE is not set # CONFIG_IKCONFIG is not set CONFIG_LOG_BUF_SHIFT=20 CONFIG_HAVE_UNSTABLE_SCHED_CLOCK=y CONFIG_CGROUPS=y CONFIG_CGROUP_DEBUG=y CONFIG_CGROUP_NS=y # CONFIG_CGROUP_FREEZER is not set CONFIG_CGROUP_DEVICE=y CONFIG_CPUSETS=y CONFIG_PROC_PID_CPUSET=y CONFIG_CGROUP_CPUACCT=y CONFIG_RESOURCE_COUNTERS=y CONFIG_CGROUP_MEM_RES_CTLR=y # CONFIG_CGROUP_MEM_RES_CTLR_SWAP is not set CONFIG_CGROUP_SCHED=y # CONFIG_FAIR_GROUP_SCHED is not set CONFIG_RT_GROUP_SCHED=y CONFIG_MM_OWNER=y CONFIG_SYSFS_DEPRECATED=y CONFIG_SYSFS_DEPRECATED_V2=y CONFIG_RELAY=y CONFIG_NAMESPACES=y CONFIG_UTS_NS=y CONFIG_IPC_NS=y # CONFIG_USER_NS is not set CONFIG_PID_NS=y CONFIG_NET_NS=y CONFIG_BLK_DEV_INITRD=y CONFIG_INITRAMFS_SOURCE="" CONFIG_RD_GZIP=y # CONFIG_RD_BZIP2 is not set # CONFIG_RD_LZMA is not set CONFIG_RD_LZO=y # CONFIG_CC_OPTIMIZE_FOR_SIZE is not set CONFIG_SYSCTL=y CONFIG_ANON_INODES=y CONFIG_EMBEDDED=y CONFIG_UID16=y # CONFIG_SYSCTL_SYSCALL is not set CONFIG_KALLSYMS=y CONFIG_KALLSYMS_ALL=y CONFIG_KALLSYMS_EXTRA_PASS=y CONFIG_HOTPLUG=y CONFIG_PRINTK=y CONFIG_BUG=y CONFIG_ELF_CORE=y CONFIG_PCSPKR_PLATFORM=y CONFIG_BASE_FULL=y CONFIG_FUTEX=y CONFIG_EPOLL=y CONFIG_SIGNALFD=y CONFIG_TIMERFD=y CONFIG_EVENTFD=y # CONFIG_SHMEM is not set CONFIG_AIO=y CONFIG_HAVE_PERF_EVENTS=y # # Kernel Performance Events And Counters # CONFIG_PERF_EVENTS=y # CONFIG_PERF_COUNTERS is not set CONFIG_VM_EVENT_COUNTERS=y CONFIG_PCI_QUIRKS=y CONFIG_COMPAT_BRK=y # CONFIG_SLAB is not set # CONFIG_SLUB is not set CONFIG_SLOB=y CONFIG_PROFILING=y # CONFIG_OPROFILE is not set CONFIG_HAVE_OPROFILE=y CONFIG_HAVE_EFFICIENT_UNALIGNED_ACCESS=y CONFIG_USER_RETURN_NOTIFIER=y CONFIG_HAVE_IOREMAP_PROT=y CONFIG_HAVE_KPROBES=y CONFIG_HAVE_KRETPROBES=y CONFIG_HAVE_ARCH_TRACEHOOK=y CONFIG_HAVE_DMA_ATTRS=y CONFIG_HAVE_DMA_API_DEBUG=y CONFIG_HAVE_HW_BREAKPOINT=y CONFIG_HAVE_USER_RETURN_NOTIFIER=y # # GCOV-based kernel profiling # CONFIG_SLOW_WORK=y # CONFIG_SLOW_WORK_DEBUG is not set # CONFIG_HAVE_GENERIC_DMA_COHERENT is not set CONFIG_RT_MUTEXES=y CONFIG_BASE_SMALL=0 # CONFIG_MODULES is not set CONFIG_STOP_MACHINE=y CONFIG_BLOCK=y CONFIG_BLK_DEV_BSG=y CONFIG_BLK_DEV_INTEGRITY=y CONFIG_BLK_CGROUP=y # CONFIG_DEBUG_BLK_CGROUP is not set CONFIG_BLOCK_COMPAT=y # # IO Schedulers # CONFIG_IOSCHED_NOOP=y # CONFIG_IOSCHED_DEADLINE is not set CONFIG_IOSCHED_CFQ=y CONFIG_CFQ_GROUP_IOSCHED=y # CONFIG_DEBUG_CFQ_IOSCHED is not set # CONFIG_DEFAULT_DEADLINE is not set # CONFIG_DEFAULT_CFQ is not set CONFIG_DEFAULT_NOOP=y CONFIG_DEFAULT_IOSCHED="noop" CONFIG_PREEMPT_NOTIFIERS=y # CONFIG_INLINE_SPIN_TRYLOCK is not set # CONFIG_INLINE_SPIN_TRYLOCK_BH is not set # CONFIG_INLINE_SPIN_LOCK is not set # CONFIG_INLINE_SPIN_LOCK_BH is not set # CONFIG_INLINE_SPIN_LOCK_IRQ is not set # CONFIG_INLINE_SPIN_LOCK_IRQSAVE is not set # CONFIG_INLINE_SPIN_UNLOCK is not set # CONFIG_INLINE_SPIN_UNLOCK_BH is not set # CONFIG_INLINE_SPIN_UNLOCK_IRQ is not set # CONFIG_INLINE_SPIN_UNLOCK_IRQRESTORE is not set # CONFIG_INLINE_READ_TRYLOCK is not set # CONFIG_INLINE_READ_LOCK is not set # CONFIG_INLINE_READ_LOCK_BH is not set # CONFIG_INLINE_READ_LOCK_IRQ is not set # CONFIG_INLINE_READ_LOCK_IRQSAVE is not set # CONFIG_INLINE_READ_UNLOCK is not set # CONFIG_INLINE_READ_UNLOCK_BH is not set # CONFIG_INLINE_READ_UNLOCK_IRQ is not set # CONFIG_INLINE_READ_UNLOCK_IRQRESTORE is not set # CONFIG_INLINE_WRITE_TRYLOCK is not set # CONFIG_INLINE_WRITE_LOCK is not set # CONFIG_INLINE_WRITE_LOCK_BH is not set # CONFIG_INLINE_WRITE_LOCK_IRQ is not set # CONFIG_INLINE_WRITE_LOCK_IRQSAVE is not set # CONFIG_INLINE_WRITE_UNLOCK is not set # CONFIG_INLINE_WRITE_UNLOCK_BH is not set # CONFIG_INLINE_WRITE_UNLOCK_IRQ is not set # CONFIG_INLINE_WRITE_UNLOCK_IRQRESTORE is not set CONFIG_MUTEX_SPIN_ON_OWNER=y CONFIG_FREEZER=y # # Processor type and features # CONFIG_TICK_ONESHOT=y # CONFIG_NO_HZ is not set CONFIG_HIGH_RES_TIMERS=y CONFIG_GENERIC_CLOCKEVENTS_BUILD=y CONFIG_SMP=y CONFIG_SPARSE_IRQ=y CONFIG_NUMA_IRQ_DESC=y CONFIG_X86_MPPARSE=y CONFIG_X86_EXTENDED_PLATFORM=y CONFIG_X86_VSMP=y CONFIG_X86_SUPPORTS_MEMORY_FAILURE=y # CONFIG_SCHED_OMIT_FRAME_POINTER is not set CONFIG_PARAVIRT_GUEST=y # CONFIG_XEN is not set # CONFIG_KVM_CLOCK is not set # CONFIG_KVM_GUEST is not set CONFIG_PARAVIRT=y CONFIG_PARAVIRT_SPINLOCKS=y # CONFIG_PARAVIRT_CLOCK is not set CONFIG_MEMTEST=y # CONFIG_M386 is not set # CONFIG_M486 is not set # CONFIG_M586 is not set # CONFIG_M586TSC is not set # CONFIG_M586MMX is not set # CONFIG_M686 is not set # CONFIG_MPENTIUMII is not set # CONFIG_MPENTIUMIII is not set # CONFIG_MPENTIUMM is not set # CONFIG_MPENTIUM4 is not set # CONFIG_MK6 is not set # CONFIG_MK7 is not set # CONFIG_MK8 is not set # CONFIG_MCRUSOE is not set # CONFIG_MEFFICEON is not set # CONFIG_MWINCHIPC6 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_MATOM is not set CONFIG_GENERIC_CPU=y CONFIG_X86_CPU=y CONFIG_X86_INTERNODE_CACHE_SHIFT=12 CONFIG_X86_CMPXCHG=y CONFIG_X86_L1_CACHE_SHIFT=6 CONFIG_X86_XADD=y CONFIG_X86_WP_WORKS_OK=y CONFIG_X86_TSC=y CONFIG_X86_CMPXCHG64=y CONFIG_X86_CMOV=y CONFIG_X86_MINIMUM_CPU_FAMILY=64 CONFIG_X86_DEBUGCTLMSR=y CONFIG_PROCESSOR_SELECT=y # CONFIG_CPU_SUP_INTEL is not set # CONFIG_CPU_SUP_AMD is not set CONFIG_CPU_SUP_CENTAUR=y # CONFIG_X86_DS is not set CONFIG_HPET_TIMER=y CONFIG_HPET_EMULATE_RTC=y # CONFIG_DMI is not set CONFIG_GART_IOMMU=y CONFIG_CALGARY_IOMMU=y # CONFIG_CALGARY_IOMMU_ENABLED_BY_DEFAULT is not set # CONFIG_AMD_IOMMU is not set CONFIG_SWIOTLB=y CONFIG_IOMMU_HELPER=y # CONFIG_IOMMU_API is not set CONFIG_NR_CPUS=8 CONFIG_SCHED_SMT=y # CONFIG_SCHED_MC is not set # CONFIG_PREEMPT_NONE is not set # CONFIG_PREEMPT_VOLUNTARY is not set CONFIG_PREEMPT=y CONFIG_X86_LOCAL_APIC=y CONFIG_X86_IO_APIC=y CONFIG_X86_REROUTE_FOR_BROKEN_BOOT_IRQS=y CONFIG_X86_MCE=y CONFIG_X86_MCE_INTEL=y CONFIG_X86_MCE_AMD=y CONFIG_X86_MCE_THRESHOLD=y CONFIG_X86_MCE_INJECT=y CONFIG_X86_THERMAL_VECTOR=y CONFIG_I8K=y CONFIG_MICROCODE=y CONFIG_MICROCODE_INTEL=y # CONFIG_MICROCODE_AMD is not set CONFIG_MICROCODE_OLD_INTERFACE=y # CONFIG_X86_MSR is not set # CONFIG_X86_CPUID is not set CONFIG_ARCH_PHYS_ADDR_T_64BIT=y # CONFIG_DIRECT_GBPAGES is not set CONFIG_NUMA=y CONFIG_K8_NUMA=y CONFIG_X86_64_ACPI_NUMA=y CONFIG_NODES_SPAN_OTHER_NODES=y CONFIG_NUMA_EMU=y CONFIG_NODES_SHIFT=6 CONFIG_ARCH_SPARSEMEM_DEFAULT=y CONFIG_ARCH_SPARSEMEM_ENABLE=y CONFIG_ARCH_SELECT_MEMORY_MODEL=y CONFIG_ARCH_MEMORY_PROBE=y CONFIG_ILLEGAL_POINTER_VALUE=0xdead000000000000 CONFIG_SELECT_MEMORY_MODEL=y # CONFIG_FLATMEM_MANUAL is not set # CONFIG_DISCONTIGMEM_MANUAL is not set CONFIG_SPARSEMEM_MANUAL=y CONFIG_SPARSEMEM=y CONFIG_NEED_MULTIPLE_NODES=y CONFIG_HAVE_MEMORY_PRESENT=y CONFIG_SPARSEMEM_EXTREME=y CONFIG_SPARSEMEM_VMEMMAP_ENABLE=y # CONFIG_SPARSEMEM_VMEMMAP is not set CONFIG_MEMORY_HOTPLUG=y CONFIG_MEMORY_HOTPLUG_SPARSE=y CONFIG_MEMORY_HOTREMOVE=y CONFIG_PAGEFLAGS_EXTENDED=y CONFIG_SPLIT_PTLOCK_CPUS=4 CONFIG_MIGRATION=y CONFIG_PHYS_ADDR_T_64BIT=y CONFIG_ZONE_DMA_FLAG=1 CONFIG_BOUNCE=y CONFIG_VIRT_TO_BUS=y CONFIG_MMU_NOTIFIER=y CONFIG_KSM=y CONFIG_DEFAULT_MMAP_MIN_ADDR=4096 CONFIG_ARCH_SUPPORTS_MEMORY_FAILURE=y CONFIG_MEMORY_FAILURE=y CONFIG_X86_CHECK_BIOS_CORRUPTION=y CONFIG_X86_BOOTPARAM_MEMORY_CORRUPTION_CHECK=y CONFIG_X86_RESERVE_LOW_64K=y CONFIG_MTRR=y CONFIG_MTRR_SANITIZER=y CONFIG_MTRR_SANITIZER_ENABLE_DEFAULT=0 CONFIG_MTRR_SANITIZER_SPARE_REG_NR_DEFAULT=1 CONFIG_X86_PAT=y CONFIG_ARCH_USES_PG_UNCACHED=y # CONFIG_EFI is not set CONFIG_SECCOMP=y # CONFIG_CC_STACKPROTECTOR is not set CONFIG_HZ_100=y # CONFIG_HZ_250 is not set # CONFIG_HZ_300 is not set # CONFIG_HZ_1000 is not set CONFIG_HZ=100 CONFIG_SCHED_HRTICK=y CONFIG_KEXEC=y CONFIG_CRASH_DUMP=y CONFIG_KEXEC_JUMP=y CONFIG_PHYSICAL_START=0x1000000 CONFIG_RELOCATABLE=y CONFIG_PHYSICAL_ALIGN=0x1000000 CONFIG_HOTPLUG_CPU=y CONFIG_COMPAT_VDSO=y CONFIG_CMDLINE_BOOL=y CONFIG_CMDLINE="" # CONFIG_CMDLINE_OVERRIDE is not set CONFIG_ARCH_ENABLE_MEMORY_HOTPLUG=y CONFIG_ARCH_ENABLE_MEMORY_HOTREMOVE=y CONFIG_HAVE_ARCH_EARLY_PFN_TO_NID=y # # Power management and ACPI options # CONFIG_ARCH_HIBERNATION_HEADER=y CONFIG_PM=y # CONFIG_PM_DEBUG is not set CONFIG_PM_SLEEP_SMP=y CONFIG_PM_SLEEP=y CONFIG_SUSPEND=y CONFIG_SUSPEND_FREEZER=y CONFIG_HIBERNATION_NVS=y CONFIG_HIBERNATION=y CONFIG_PM_STD_PARTITION="" # CONFIG_PM_RUNTIME is not set CONFIG_ACPI=y CONFIG_ACPI_SLEEP=y # CONFIG_ACPI_PROCFS is not set CONFIG_ACPI_PROCFS_POWER=y # CONFIG_ACPI_POWER_METER is not set # CONFIG_ACPI_SYSFS_POWER is not set # CONFIG_ACPI_PROC_EVENT is not set CONFIG_ACPI_AC=y CONFIG_ACPI_BATTERY=y CONFIG_ACPI_BUTTON=y # CONFIG_ACPI_VIDEO is not set CONFIG_ACPI_FAN=y CONFIG_ACPI_DOCK=y CONFIG_ACPI_PROCESSOR=y CONFIG_ACPI_HOTPLUG_CPU=y CONFIG_ACPI_PROCESSOR_AGGREGATOR=y # CONFIG_ACPI_THERMAL is not set CONFIG_ACPI_NUMA=y # CONFIG_ACPI_CUSTOM_DSDT is not set CONFIG_ACPI_BLACKLIST_YEAR=0 # CONFIG_ACPI_DEBUG is not set # CONFIG_ACPI_PCI_SLOT is not set CONFIG_X86_PM_TIMER=y CONFIG_ACPI_CONTAINER=y CONFIG_ACPI_HOTPLUG_MEMORY=y CONFIG_ACPI_SBS=y CONFIG_SFI=y # # CPU Frequency scaling # # CONFIG_CPU_FREQ is not set CONFIG_CPU_IDLE=y CONFIG_CPU_IDLE_GOV_LADDER=y # # Memory power savings # CONFIG_I7300_IDLE_IOAT_CHANNEL=y CONFIG_I7300_IDLE=y # # Bus options (PCI etc.) # CONFIG_PCI=y CONFIG_PCI_DIRECT=y CONFIG_PCI_MMCONFIG=y CONFIG_PCI_DOMAINS=y CONFIG_PCIEPORTBUS=y # CONFIG_HOTPLUG_PCI_PCIE is not set CONFIG_PCIEAER=y # CONFIG_PCIE_ECRC is not set CONFIG_PCIEAER_INJECT=y CONFIG_PCIEASPM=y CONFIG_PCIEASPM_DEBUG=y CONFIG_ARCH_SUPPORTS_MSI=y # CONFIG_PCI_MSI is not set CONFIG_PCI_LEGACY=y CONFIG_PCI_STUB=y CONFIG_HT_IRQ=y CONFIG_PCI_IOV=y CONFIG_PCI_IOAPIC=y CONFIG_ISA_DMA_API=y CONFIG_K8_NB=y # CONFIG_PCCARD is not set CONFIG_HOTPLUG_PCI=y CONFIG_HOTPLUG_PCI_FAKE=y CONFIG_HOTPLUG_PCI_ACPI=y # CONFIG_HOTPLUG_PCI_ACPI_IBM is not set # CONFIG_HOTPLUG_PCI_CPCI is not set CONFIG_HOTPLUG_PCI_SHPC=y # # Executable file formats / Emulations # CONFIG_BINFMT_ELF=y CONFIG_COMPAT_BINFMT_ELF=y CONFIG_CORE_DUMP_DEFAULT_ELF_HEADERS=y # CONFIG_HAVE_AOUT is not set CONFIG_BINFMT_MISC=y CONFIG_IA32_EMULATION=y CONFIG_IA32_AOUT=y CONFIG_COMPAT=y CONFIG_COMPAT_FOR_U64_ALIGNMENT=y CONFIG_SYSVIPC_COMPAT=y CONFIG_NET=y CONFIG_COMPAT_NETLINK_MESSAGES=y # # Networking options # CONFIG_PACKET=y CONFIG_PACKET_MMAP=y CONFIG_UNIX=y CONFIG_XFRM=y CONFIG_XFRM_USER=y CONFIG_XFRM_SUB_POLICY=y # CONFIG_XFRM_MIGRATE is not set # CONFIG_XFRM_STATISTICS is not set CONFIG_XFRM_IPCOMP=y # CONFIG_NET_KEY is not set CONFIG_INET=y CONFIG_IP_MULTICAST=y CONFIG_IP_ADVANCED_ROUTER=y # CONFIG_ASK_IP_FIB_HASH is not set CONFIG_IP_FIB_TRIE=y # CONFIG_IP_FIB_HASH is not set CONFIG_IP_FIB_TRIE_STATS=y CONFIG_IP_MULTIPLE_TABLES=y CONFIG_IP_ROUTE_MULTIPATH=y CONFIG_IP_ROUTE_VERBOSE=y CONFIG_IP_PNP=y CONFIG_IP_PNP_DHCP=y # CONFIG_IP_PNP_BOOTP is not set CONFIG_IP_PNP_RARP=y CONFIG_NET_IPIP=y # CONFIG_NET_IPGRE is not set CONFIG_IP_MROUTE=y CONFIG_IP_PIMSM_V1=y # CONFIG_IP_PIMSM_V2 is not set CONFIG_ARPD=y CONFIG_SYN_COOKIES=y # CONFIG_INET_AH is not set CONFIG_INET_ESP=y # CONFIG_INET_IPCOMP is not set # CONFIG_INET_XFRM_TUNNEL is not set CONFIG_INET_TUNNEL=y CONFIG_INET_XFRM_MODE_TRANSPORT=y CONFIG_INET_XFRM_MODE_TUNNEL=y # CONFIG_INET_XFRM_MODE_BEET is not set CONFIG_INET_LRO=y # CONFIG_INET_DIAG is not set CONFIG_TCP_CONG_ADVANCED=y # CONFIG_TCP_CONG_BIC is not set # CONFIG_TCP_CONG_CUBIC is not set CONFIG_TCP_CONG_WESTWOOD=y # CONFIG_TCP_CONG_HTCP is not set CONFIG_TCP_CONG_HSTCP=y # CONFIG_TCP_CONG_HYBLA is not set CONFIG_TCP_CONG_VEGAS=y # CONFIG_TCP_CONG_SCALABLE is not set CONFIG_TCP_CONG_LP=y CONFIG_TCP_CONG_VENO=y # CONFIG_TCP_CONG_YEAH is not set CONFIG_TCP_CONG_ILLINOIS=y # CONFIG_DEFAULT_BIC is not set # CONFIG_DEFAULT_CUBIC is not set # CONFIG_DEFAULT_HTCP is not set CONFIG_DEFAULT_VEGAS=y # CONFIG_DEFAULT_WESTWOOD is not set # CONFIG_DEFAULT_RENO is not set CONFIG_DEFAULT_TCP_CONG="vegas" CONFIG_TCP_MD5SIG=y CONFIG_IPV6=y # CONFIG_IPV6_PRIVACY is not set # CONFIG_IPV6_ROUTER_PREF is not set CONFIG_IPV6_OPTIMISTIC_DAD=y CONFIG_INET6_AH=y CONFIG_INET6_ESP=y CONFIG_INET6_IPCOMP=y CONFIG_IPV6_MIP6=y CONFIG_INET6_XFRM_TUNNEL=y CONFIG_INET6_TUNNEL=y CONFIG_INET6_XFRM_MODE_TRANSPORT=y CONFIG_INET6_XFRM_MODE_TUNNEL=y # CONFIG_INET6_XFRM_MODE_BEET is not set # CONFIG_INET6_XFRM_MODE_ROUTEOPTIMIZATION is not set # CONFIG_IPV6_SIT is not set # CONFIG_IPV6_TUNNEL is not set # CONFIG_IPV6_MULTIPLE_TABLES is not set CONFIG_IPV6_MROUTE=y CONFIG_IPV6_PIMSM_V2=y CONFIG_NETLABEL=y CONFIG_NETWORK_SECMARK=y CONFIG_NETFILTER=y CONFIG_NETFILTER_DEBUG=y # CONFIG_NETFILTER_ADVANCED is not set # # Core Netfilter Configuration # # CONFIG_NETFILTER_NETLINK_LOG is not set CONFIG_NF_CONNTRACK=y CONFIG_NF_CONNTRACK_SECMARK=y CONFIG_NF_CONNTRACK_FTP=y # CONFIG_NF_CONNTRACK_IRC is not set CONFIG_NF_CONNTRACK_SIP=y # CONFIG_NF_CT_NETLINK is not set CONFIG_NETFILTER_XTABLES=y CONFIG_NETFILTER_XT_TARGET_CONNSECMARK=y CONFIG_NETFILTER_XT_TARGET_MARK=y # CONFIG_NETFILTER_XT_TARGET_NFLOG is not set CONFIG_NETFILTER_XT_TARGET_SECMARK=y # CONFIG_NETFILTER_XT_TARGET_TCPMSS is not set # CONFIG_NETFILTER_XT_MATCH_CONNTRACK is not set # CONFIG_NETFILTER_XT_MATCH_MARK is not set CONFIG_NETFILTER_XT_MATCH_POLICY=y CONFIG_NETFILTER_XT_MATCH_STATE=y CONFIG_IP_VS=y CONFIG_IP_VS_IPV6=y CONFIG_IP_VS_DEBUG=y CONFIG_IP_VS_TAB_BITS=12 # # IPVS transport protocol load balancing support # CONFIG_IP_VS_PROTO_TCP=y CONFIG_IP_VS_PROTO_UDP=y CONFIG_IP_VS_PROTO_AH_ESP=y # CONFIG_IP_VS_PROTO_ESP is not set CONFIG_IP_VS_PROTO_AH=y # # IPVS scheduler # CONFIG_IP_VS_RR=y # CONFIG_IP_VS_WRR is not set CONFIG_IP_VS_LC=y # CONFIG_IP_VS_WLC is not set # CONFIG_IP_VS_LBLC is not set CONFIG_IP_VS_LBLCR=y # CONFIG_IP_VS_DH is not set CONFIG_IP_VS_SH=y # CONFIG_IP_VS_SED is not set CONFIG_IP_VS_NQ=y # # IPVS application helper # # CONFIG_IP_VS_FTP is not set # # IP: Netfilter Configuration # CONFIG_NF_DEFRAG_IPV4=y CONFIG_NF_CONNTRACK_IPV4=y CONFIG_NF_CONNTRACK_PROC_COMPAT=y # CONFIG_IP_NF_IPTABLES is not set # # IPv6: Netfilter Configuration # # CONFIG_NF_CONNTRACK_IPV6 is not set CONFIG_IP6_NF_IPTABLES=y CONFIG_IP6_NF_MATCH_IPV6HEADER=y CONFIG_IP6_NF_TARGET_LOG=y CONFIG_IP6_NF_FILTER=y CONFIG_IP6_NF_TARGET_REJECT=y CONFIG_IP6_NF_MANGLE=y CONFIG_IP_DCCP=y # # DCCP CCIDs Configuration (EXPERIMENTAL) # # CONFIG_IP_DCCP_CCID2_DEBUG is not set CONFIG_IP_DCCP_CCID3=y CONFIG_IP_DCCP_CCID3_DEBUG=y CONFIG_IP_DCCP_CCID3_RTO=100 CONFIG_IP_DCCP_TFRC_LIB=y CONFIG_IP_DCCP_TFRC_DEBUG=y CONFIG_IP_SCTP=y CONFIG_SCTP_DBG_MSG=y # CONFIG_SCTP_DBG_OBJCNT is not set # CONFIG_SCTP_HMAC_NONE is not set # CONFIG_SCTP_HMAC_SHA1 is not set CONFIG_SCTP_HMAC_MD5=y CONFIG_RDS=y CONFIG_RDS_TCP=y # CONFIG_RDS_DEBUG is not set # CONFIG_TIPC is not set CONFIG_ATM=y # CONFIG_ATM_CLIP is not set CONFIG_ATM_LANE=y # CONFIG_ATM_MPOA is not set CONFIG_ATM_BR2684=y CONFIG_ATM_BR2684_IPFILTER=y CONFIG_STP=y CONFIG_GARP=y # CONFIG_BRIDGE is not set # CONFIG_NET_DSA is not set CONFIG_VLAN_8021Q=y CONFIG_VLAN_8021Q_GVRP=y # CONFIG_DECNET is not set CONFIG_LLC=y # CONFIG_LLC2 is not set CONFIG_IPX=y CONFIG_IPX_INTERN=y # CONFIG_ATALK is not set CONFIG_X25=y CONFIG_LAPB=y CONFIG_ECONET=y # CONFIG_ECONET_AUNUDP is not set CONFIG_ECONET_NATIVE=y CONFIG_WAN_ROUTER=y CONFIG_PHONET=y # CONFIG_IEEE802154 is not set # CONFIG_NET_SCHED is not set CONFIG_DCB=y # # Network testing # CONFIG_NET_PKTGEN=y CONFIG_HAMRADIO=y # # Packet Radio protocols # CONFIG_AX25=y CONFIG_AX25_DAMA_SLAVE=y CONFIG_NETROM=y # CONFIG_ROSE is not set # # AX.25 network device drivers # CONFIG_MKISS=y CONFIG_6PACK=y CONFIG_BPQETHER=y # CONFIG_BAYCOM_SER_FDX is not set # CONFIG_BAYCOM_SER_HDX is not set # CONFIG_BAYCOM_PAR is not set CONFIG_YAM=y CONFIG_CAN=y # CONFIG_CAN_RAW is not set # CONFIG_CAN_BCM is not set # # CAN Device Drivers # CONFIG_CAN_VCAN=y CONFIG_CAN_DEV=y # CONFIG_CAN_CALC_BITTIMING is not set # CONFIG_CAN_SJA1000 is not set # # CAN USB interfaces # # CONFIG_CAN_EMS_USB is not set CONFIG_CAN_DEBUG_DEVICES=y CONFIG_IRDA=y # # IrDA protocols # CONFIG_IRLAN=y # CONFIG_IRCOMM is not set # CONFIG_IRDA_ULTRA is not set # # IrDA options # # CONFIG_IRDA_CACHE_LAST_LSAP is not set CONFIG_IRDA_FAST_RR=y CONFIG_IRDA_DEBUG=y # # Infrared-port device drivers # # # SIR device drivers # # CONFIG_IRTTY_SIR is not set # # Dongle support # CONFIG_KINGSUN_DONGLE=y # CONFIG_KSDAZZLE_DONGLE is not set CONFIG_KS959_DONGLE=y # # FIR device drivers # # CONFIG_USB_IRDA is not set # CONFIG_SIGMATEL_FIR is not set CONFIG_NSC_FIR=y CONFIG_WINBOND_FIR=y # CONFIG_SMC_IRCC_FIR is not set CONFIG_ALI_FIR=y # CONFIG_VLSI_FIR is not set CONFIG_VIA_FIR=y CONFIG_MCS_FIR=y CONFIG_BT=y CONFIG_BT_L2CAP=y CONFIG_BT_SCO=y CONFIG_BT_RFCOMM=y CONFIG_BT_RFCOMM_TTY=y CONFIG_BT_BNEP=y CONFIG_BT_BNEP_MC_FILTER=y CONFIG_BT_BNEP_PROTO_FILTER=y CONFIG_BT_HIDP=y # # Bluetooth device drivers # # CONFIG_BT_HCIBTUSB is not set CONFIG_BT_HCIUART=y # CONFIG_BT_HCIUART_H4 is not set CONFIG_BT_HCIUART_BCSP=y CONFIG_BT_HCIUART_LL=y CONFIG_BT_HCIBCM203X=y # CONFIG_BT_HCIBPA10X is not set CONFIG_BT_HCIBFUSB=y CONFIG_BT_HCIVHCI=y CONFIG_BT_MRVL=y CONFIG_AF_RXRPC=y # CONFIG_AF_RXRPC_DEBUG is not set CONFIG_RXKAD=y CONFIG_FIB_RULES=y CONFIG_WIRELESS=y CONFIG_WIRELESS_EXT=y CONFIG_WEXT_CORE=y CONFIG_WEXT_PROC=y CONFIG_WEXT_SPY=y CONFIG_WEXT_PRIV=y # CONFIG_CFG80211 is not set CONFIG_WIRELESS_EXT_SYSFS=y # CONFIG_LIB80211 is not set # # CFG80211 needs to be enabled for MAC80211 # CONFIG_WIMAX=y CONFIG_WIMAX_DEBUG_LEVEL=8 CONFIG_RFKILL=y CONFIG_RFKILL_LEDS=y # CONFIG_RFKILL_INPUT 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=y CONFIG_FIRMWARE_IN_KERNEL=y CONFIG_EXTRA_FIRMWARE="" # CONFIG_SYS_HYPERVISOR is not set CONFIG_CONNECTOR=y # CONFIG_PROC_EVENTS is not set # CONFIG_MTD is not set CONFIG_PARPORT=y # CONFIG_PARPORT_PC is not set # CONFIG_PARPORT_GSC is not set # CONFIG_PARPORT_AX88796 is not set CONFIG_PARPORT_1284=y CONFIG_PARPORT_NOT_PC=y CONFIG_PNP=y CONFIG_PNP_DEBUG_MESSAGES=y # # Protocols # CONFIG_PNPACPI=y CONFIG_BLK_DEV=y CONFIG_BLK_DEV_FD=y CONFIG_BLK_CPQ_DA=y CONFIG_BLK_CPQ_CISS_DA=y # CONFIG_CISS_SCSI_TAPE is not set # CONFIG_BLK_DEV_DAC960 is not set CONFIG_BLK_DEV_UMEM=y # CONFIG_BLK_DEV_COW_COMMON is not set # CONFIG_BLK_DEV_LOOP is not set CONFIG_BLK_DEV_DRBD=y CONFIG_DRBD_FAULT_INJECTION=y CONFIG_BLK_DEV_NBD=y CONFIG_BLK_DEV_SX8=y CONFIG_BLK_DEV_UB=y 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=y CONFIG_CDROM_PKTCDVD_BUFFERS=8 # CONFIG_CDROM_PKTCDVD_WCACHE is not set # CONFIG_ATA_OVER_ETH is not set CONFIG_VIRTIO_BLK=y CONFIG_BLK_DEV_HD=y CONFIG_MISC_DEVICES=y CONFIG_AD525X_DPOT=y CONFIG_IBM_ASM=y CONFIG_PHANTOM=y CONFIG_SGI_IOC4=y CONFIG_TIFM_CORE=y # CONFIG_TIFM_7XX1 is not set CONFIG_ICS932S401=y CONFIG_ENCLOSURE_SERVICES=y CONFIG_CS5535_MFGPT=y CONFIG_CS5535_MFGPT_DEFAULT_IRQ=7 CONFIG_HP_ILO=y CONFIG_ISL29003=y CONFIG_DS1682=y # CONFIG_C2PORT is not set # # EEPROM support # CONFIG_EEPROM_AT24=y # CONFIG_EEPROM_LEGACY is not set # CONFIG_EEPROM_MAX6875 is not set CONFIG_EEPROM_93CX6=y # CONFIG_CB710_CORE is not set CONFIG_HAVE_IDE=y # CONFIG_IDE is not set # # SCSI device support # CONFIG_RAID_ATTRS=y CONFIG_SCSI=y CONFIG_SCSI_DMA=y CONFIG_SCSI_TGT=y CONFIG_SCSI_NETLINK=y # CONFIG_SCSI_PROC_FS is not set # # SCSI support type (disk, tape, CD-ROM) # CONFIG_BLK_DEV_SD=y CONFIG_CHR_DEV_ST=y CONFIG_CHR_DEV_OSST=y CONFIG_BLK_DEV_SR=y CONFIG_BLK_DEV_SR_VENDOR=y CONFIG_CHR_DEV_SG=y CONFIG_CHR_DEV_SCH=y # CONFIG_SCSI_ENCLOSURE is not set # CONFIG_SCSI_MULTI_LUN is not set # CONFIG_SCSI_CONSTANTS is not set CONFIG_SCSI_LOGGING=y CONFIG_SCSI_SCAN_ASYNC=y # # SCSI Transports # CONFIG_SCSI_SPI_ATTRS=y CONFIG_SCSI_FC_ATTRS=y CONFIG_SCSI_FC_TGT_ATTRS=y # CONFIG_SCSI_ISCSI_ATTRS is not set CONFIG_SCSI_SAS_ATTRS=y CONFIG_SCSI_SAS_LIBSAS=y # CONFIG_SCSI_SAS_ATA is not set # CONFIG_SCSI_SAS_HOST_SMP is not set CONFIG_SCSI_SAS_LIBSAS_DEBUG=y # CONFIG_SCSI_SRP_ATTRS is not set # CONFIG_SCSI_LOWLEVEL is not set CONFIG_SCSI_DH=y # CONFIG_SCSI_DH_RDAC is not set CONFIG_SCSI_DH_HP_SW=y CONFIG_SCSI_DH_EMC=y CONFIG_SCSI_DH_ALUA=y # CONFIG_SCSI_OSD_INITIATOR is not set CONFIG_ATA=y # CONFIG_ATA_NONSTANDARD is not set CONFIG_ATA_VERBOSE_ERROR=y CONFIG_ATA_ACPI=y # CONFIG_SATA_PMP is not set CONFIG_SATA_AHCI=y CONFIG_SATA_SIL24=y CONFIG_ATA_SFF=y # CONFIG_SATA_SVW is not set CONFIG_ATA_PIIX=y CONFIG_SATA_MV=y CONFIG_SATA_NV=y CONFIG_PDC_ADMA=y # CONFIG_SATA_QSTOR is not set CONFIG_SATA_PROMISE=y CONFIG_SATA_SX4=y CONFIG_SATA_SIL=y # CONFIG_SATA_SIS is not set CONFIG_SATA_ULI=y CONFIG_SATA_VIA=y CONFIG_SATA_VITESSE=y CONFIG_SATA_INIC162X=y CONFIG_PATA_ACPI=y CONFIG_PATA_ALI=y CONFIG_PATA_AMD=y CONFIG_PATA_ARTOP=y CONFIG_PATA_ATP867X=y CONFIG_PATA_ATIIXP=y # CONFIG_PATA_CMD640_PCI is not set CONFIG_PATA_CMD64X=y CONFIG_PATA_CS5520=y CONFIG_PATA_CS5530=y CONFIG_PATA_CYPRESS=y # CONFIG_PATA_EFAR is not set CONFIG_ATA_GENERIC=y # CONFIG_PATA_HPT366 is not set CONFIG_PATA_HPT37X=y CONFIG_PATA_HPT3X2N=y # CONFIG_PATA_HPT3X3 is not set # CONFIG_PATA_IT821X is not set CONFIG_PATA_IT8213=y CONFIG_PATA_JMICRON=y # CONFIG_PATA_TRIFLEX is not set CONFIG_PATA_MARVELL=y CONFIG_PATA_MPIIX=y CONFIG_PATA_OLDPIIX=y CONFIG_PATA_NETCELL=y CONFIG_PATA_NINJA32=y CONFIG_PATA_NS87410=y # CONFIG_PATA_NS87415 is not set # CONFIG_PATA_OPTI is not set CONFIG_PATA_OPTIDMA=y CONFIG_PATA_PDC2027X=y CONFIG_PATA_PDC_OLD=y # CONFIG_PATA_RADISYS is not set CONFIG_PATA_RDC=y CONFIG_PATA_RZ1000=y CONFIG_PATA_SC1200=y # CONFIG_PATA_SERVERWORKS is not set CONFIG_PATA_SIL680=y CONFIG_PATA_SIS=y # CONFIG_PATA_TOSHIBA is not set CONFIG_PATA_VIA=y CONFIG_PATA_WINBOND=y # CONFIG_PATA_PLATFORM is not set CONFIG_PATA_SCH=y CONFIG_MD=y CONFIG_BLK_DEV_MD=y # CONFIG_MD_AUTODETECT is not set CONFIG_MD_LINEAR=y CONFIG_MD_RAID0=y CONFIG_MD_RAID1=y # CONFIG_MD_RAID10 is not set CONFIG_MD_RAID456=y CONFIG_MULTICORE_RAID456=y CONFIG_MD_RAID6_PQ=y CONFIG_ASYNC_RAID6_TEST=y # CONFIG_MD_MULTIPATH is not set CONFIG_MD_FAULTY=y # CONFIG_BLK_DEV_DM is not set CONFIG_FUSION=y # CONFIG_FUSION_SPI is not set CONFIG_FUSION_FC=y CONFIG_FUSION_SAS=y CONFIG_FUSION_MAX_SGE=128 CONFIG_FUSION_CTL=y # CONFIG_FUSION_LAN is not set CONFIG_FUSION_LOGGING=y # # IEEE 1394 (FireWire) support # # # You can enable one or both FireWire driver stacks. # # # The newer stack is recommended. # # CONFIG_FIREWIRE is not set CONFIG_IEEE1394=y CONFIG_IEEE1394_OHCI1394=y # CONFIG_IEEE1394_PCILYNX is not set CONFIG_IEEE1394_SBP2=y # CONFIG_IEEE1394_SBP2_PHYS_DMA is not set CONFIG_IEEE1394_ETH1394_ROM_ENTRY=y CONFIG_IEEE1394_ETH1394=y # CONFIG_IEEE1394_RAWIO is not set CONFIG_IEEE1394_VIDEO1394=y CONFIG_IEEE1394_DV1394=y CONFIG_IEEE1394_VERBOSEDEBUG=y CONFIG_I2O=y CONFIG_I2O_LCT_NOTIFY_ON_CHANGES=y # CONFIG_I2O_EXT_ADAPTEC is not set CONFIG_I2O_CONFIG=y CONFIG_I2O_CONFIG_OLD_IOCTL=y # CONFIG_I2O_BUS is not set # CONFIG_I2O_BLOCK is not set CONFIG_I2O_SCSI=y CONFIG_I2O_PROC=y # CONFIG_MACINTOSH_DRIVERS is not set CONFIG_NETDEVICES=y CONFIG_DUMMY=y CONFIG_BONDING=y CONFIG_MACVLAN=y CONFIG_EQUALIZER=y # CONFIG_TUN is not set CONFIG_VETH=y CONFIG_NET_SB1000=y CONFIG_ARCNET=y # CONFIG_ARCNET_1201 is not set CONFIG_ARCNET_1051=y CONFIG_ARCNET_RAW=y CONFIG_ARCNET_CAP=y CONFIG_ARCNET_COM90xx=y # CONFIG_ARCNET_COM90xxIO is not set CONFIG_ARCNET_RIM_I=y CONFIG_ARCNET_COM20020=y CONFIG_ARCNET_COM20020_PCI=y CONFIG_PHYLIB=y # # MII PHY device drivers # CONFIG_MARVELL_PHY=y CONFIG_DAVICOM_PHY=y CONFIG_QSEMI_PHY=y CONFIG_LXT_PHY=y CONFIG_CICADA_PHY=y CONFIG_VITESSE_PHY=y # CONFIG_SMSC_PHY is not set # CONFIG_BROADCOM_PHY is not set CONFIG_ICPLUS_PHY=y CONFIG_REALTEK_PHY=y CONFIG_NATIONAL_PHY=y CONFIG_STE10XP=y CONFIG_LSI_ET1011C_PHY=y CONFIG_FIXED_PHY=y # CONFIG_MDIO_BITBANG is not set CONFIG_NET_ETHERNET=y CONFIG_MII=y # CONFIG_HAPPYMEAL is not set # CONFIG_SUNGEM is not set CONFIG_CASSINI=y # CONFIG_NET_VENDOR_3COM is not set # CONFIG_ETHOC is not set CONFIG_DNET=y # CONFIG_NET_TULIP is not set CONFIG_HP100=y # CONFIG_IBM_NEW_EMAC_ZMII is not set # CONFIG_IBM_NEW_EMAC_RGMII is not set # CONFIG_IBM_NEW_EMAC_TAH is not set # CONFIG_IBM_NEW_EMAC_EMAC4 is not set # CONFIG_IBM_NEW_EMAC_NO_FLOW_CTRL is not set # CONFIG_IBM_NEW_EMAC_MAL_CLR_ICINTSTAT is not set # CONFIG_IBM_NEW_EMAC_MAL_COMMON_ERR is not set CONFIG_NET_PCI=y CONFIG_PCNET32=y CONFIG_AMD8111_ETH=y # CONFIG_ADAPTEC_STARFIRE is not set CONFIG_B44=y CONFIG_B44_PCI_AUTOSELECT=y CONFIG_B44_PCICORE_AUTOSELECT=y CONFIG_B44_PCI=y CONFIG_FORCEDETH=y CONFIG_FORCEDETH_NAPI=y CONFIG_E100=y CONFIG_FEALNX=y CONFIG_NATSEMI=y CONFIG_NE2K_PCI=y CONFIG_8139CP=y CONFIG_8139TOO=y CONFIG_8139TOO_PIO=y # CONFIG_8139TOO_TUNE_TWISTER is not set CONFIG_8139TOO_8129=y CONFIG_8139_OLD_RX_RESET=y # CONFIG_R6040 is not set # CONFIG_SIS900 is not set CONFIG_EPIC100=y # CONFIG_SMSC9420 is not set CONFIG_SUNDANCE=y CONFIG_SUNDANCE_MMIO=y # CONFIG_TLAN is not set CONFIG_KS8842=y CONFIG_KS8851_MLL=y CONFIG_VIA_RHINE=y # CONFIG_VIA_RHINE_MMIO is not set # CONFIG_SC92031 is not set # CONFIG_NET_POCKET is not set CONFIG_ATL2=y CONFIG_NETDEV_1000=y CONFIG_ACENIC=y CONFIG_ACENIC_OMIT_TIGON_I=y # CONFIG_DL2K is not set CONFIG_E1000=y CONFIG_E1000E=y CONFIG_IP1000=y # CONFIG_IGB is not set CONFIG_IGBVF=y CONFIG_NS83820=y CONFIG_HAMACHI=y CONFIG_YELLOWFIN=y # CONFIG_R8169 is not set CONFIG_SIS190=y CONFIG_SKGE=y # CONFIG_SKGE_DEBUG is not set # CONFIG_SKY2 is not set CONFIG_VIA_VELOCITY=y CONFIG_TIGON3=y CONFIG_BNX2=y CONFIG_CNIC=y CONFIG_QLA3XXX=y CONFIG_ATL1=y # CONFIG_ATL1E is not set # CONFIG_ATL1C is not set CONFIG_JME=y CONFIG_NETDEV_10000=y CONFIG_MDIO=y CONFIG_CHELSIO_T1=y # CONFIG_CHELSIO_T1_1G is not set CONFIG_CHELSIO_T3_DEPENDS=y # CONFIG_CHELSIO_T3 is not set # CONFIG_ENIC is not set CONFIG_IXGBE=y CONFIG_IXGBE_DCB=y CONFIG_IXGB=y CONFIG_S2IO=y # CONFIG_MYRI10GE is not set CONFIG_NIU=y # CONFIG_MLX4_EN is not set # CONFIG_MLX4_CORE is not set CONFIG_TEHUTI=y # CONFIG_BNX2X is not set CONFIG_QLGE=y CONFIG_SFC=y # CONFIG_BE2NET is not set CONFIG_TR=y # CONFIG_IBMOL is not set # CONFIG_3C359 is not set # CONFIG_TMS380TR is not set CONFIG_WLAN=y # CONFIG_AIRO is not set # CONFIG_ATMEL is not set CONFIG_PRISM54=y CONFIG_USB_ZD1201=y # CONFIG_HOSTAP is not set # # WiMAX Wireless Broadband devices # # # Enable MMC support to see WiMAX SDIO drivers # # # USB Network Adapters # CONFIG_USB_CATC=y CONFIG_USB_KAWETH=y # CONFIG_USB_PEGASUS is not set CONFIG_USB_RTL8150=y CONFIG_USB_USBNET=y CONFIG_USB_NET_AX8817X=y CONFIG_USB_NET_CDCETHER=y CONFIG_USB_NET_CDC_EEM=y CONFIG_USB_NET_DM9601=y # CONFIG_USB_NET_SMSC95XX is not set CONFIG_USB_NET_GL620A=y CONFIG_USB_NET_NET1080=y CONFIG_USB_NET_PLUSB=y CONFIG_USB_NET_MCS7830=y CONFIG_USB_NET_RNDIS_HOST=y # CONFIG_USB_NET_CDC_SUBSET is not set CONFIG_USB_NET_ZAURUS=y # CONFIG_USB_HSO is not set # CONFIG_USB_NET_INT51X1 is not set CONFIG_USB_CDC_PHONET=y # CONFIG_WAN is not set CONFIG_ATM_DRIVERS=y CONFIG_ATM_DUMMY=y CONFIG_ATM_TCP=y CONFIG_ATM_LANAI=y CONFIG_ATM_ENI=y CONFIG_ATM_ENI_DEBUG=y CONFIG_ATM_ENI_TUNE_BURST=y # CONFIG_ATM_ENI_BURST_TX_16W is not set # CONFIG_ATM_ENI_BURST_TX_8W is not set CONFIG_ATM_ENI_BURST_TX_4W=y # CONFIG_ATM_ENI_BURST_TX_2W is not set CONFIG_ATM_ENI_BURST_RX_16W=y # CONFIG_ATM_ENI_BURST_RX_8W is not set # CONFIG_ATM_ENI_BURST_RX_4W is not set CONFIG_ATM_ENI_BURST_RX_2W=y CONFIG_ATM_FIRESTREAM=y CONFIG_ATM_ZATM=y CONFIG_ATM_ZATM_DEBUG=y CONFIG_ATM_IDT77252=y CONFIG_ATM_IDT77252_DEBUG=y # CONFIG_ATM_IDT77252_RCV_ALL is not set CONFIG_ATM_IDT77252_USE_SUNI=y # CONFIG_ATM_AMBASSADOR is not set # CONFIG_ATM_HORIZON is not set # CONFIG_ATM_IA is not set # CONFIG_ATM_FORE200E is not set CONFIG_ATM_HE=y # CONFIG_ATM_HE_USE_SUNI is not set CONFIG_ATM_SOLOS=y CONFIG_FDDI=y # CONFIG_DEFXX is not set # CONFIG_SKFP is not set CONFIG_HIPPI=y # CONFIG_ROADRUNNER is not set CONFIG_PLIP=y # CONFIG_PPP is not set CONFIG_SLIP=y # CONFIG_SLIP_COMPRESSED is not set # CONFIG_SLIP_SMART is not set CONFIG_SLIP_MODE_SLIP6=y CONFIG_NET_FC=y CONFIG_NETCONSOLE=y CONFIG_NETCONSOLE_DYNAMIC=y CONFIG_NETPOLL=y CONFIG_NETPOLL_TRAP=y CONFIG_NET_POLL_CONTROLLER=y CONFIG_VIRTIO_NET=y CONFIG_VMXNET3=y # CONFIG_ISDN is not set CONFIG_PHONE=y CONFIG_PHONE_IXJ=y # # Input device support # CONFIG_INPUT=y CONFIG_INPUT_FF_MEMLESS=y CONFIG_INPUT_POLLDEV=y CONFIG_INPUT_SPARSEKMAP=y # # Userland interfaces # CONFIG_INPUT_MOUSEDEV=y CONFIG_INPUT_MOUSEDEV_PSAUX=y CONFIG_INPUT_MOUSEDEV_SCREEN_X=1024 CONFIG_INPUT_MOUSEDEV_SCREEN_Y=768 CONFIG_INPUT_JOYDEV=y CONFIG_INPUT_EVDEV=y # CONFIG_INPUT_EVBUG is not set # # Input Device Drivers # CONFIG_INPUT_KEYBOARD=y # CONFIG_KEYBOARD_ADP5520 is not set CONFIG_KEYBOARD_ADP5588=y CONFIG_KEYBOARD_ATKBD=y CONFIG_QT2160=y CONFIG_KEYBOARD_LKKBD=y # CONFIG_KEYBOARD_GPIO is not set CONFIG_KEYBOARD_MATRIX=y CONFIG_KEYBOARD_LM8323=y CONFIG_KEYBOARD_MAX7359=y CONFIG_KEYBOARD_NEWTON=y CONFIG_KEYBOARD_OPENCORES=y CONFIG_KEYBOARD_STOWAWAY=y # CONFIG_KEYBOARD_SUNKBD is not set CONFIG_KEYBOARD_TWL4030=y CONFIG_KEYBOARD_XTKBD=y CONFIG_INPUT_MOUSE=y CONFIG_MOUSE_PS2=y # CONFIG_MOUSE_PS2_ALPS is not set CONFIG_MOUSE_PS2_LOGIPS2PP=y CONFIG_MOUSE_PS2_SYNAPTICS=y CONFIG_MOUSE_PS2_TRACKPOINT=y CONFIG_MOUSE_PS2_ELANTECH=y CONFIG_MOUSE_PS2_SENTELIC=y CONFIG_MOUSE_PS2_TOUCHKIT=y # CONFIG_MOUSE_SERIAL is not set CONFIG_MOUSE_APPLETOUCH=y # CONFIG_MOUSE_BCM5974 is not set # CONFIG_MOUSE_VSXXXAA is not set CONFIG_MOUSE_GPIO=y # CONFIG_MOUSE_SYNAPTICS_I2C is not set # CONFIG_INPUT_JOYSTICK is not set CONFIG_INPUT_TABLET=y # CONFIG_TABLET_USB_ACECAD is not set CONFIG_TABLET_USB_AIPTEK=y # CONFIG_TABLET_USB_GTCO is not set # CONFIG_TABLET_USB_KBTAB is not set CONFIG_TABLET_USB_WACOM=y CONFIG_INPUT_TOUCHSCREEN=y CONFIG_TOUCHSCREEN_AD7879_I2C=y CONFIG_TOUCHSCREEN_AD7879=y # CONFIG_TOUCHSCREEN_DA9034 is not set CONFIG_TOUCHSCREEN_DYNAPRO=y CONFIG_TOUCHSCREEN_EETI=y CONFIG_TOUCHSCREEN_FUJITSU=y CONFIG_TOUCHSCREEN_GUNZE=y # CONFIG_TOUCHSCREEN_ELO is not set CONFIG_TOUCHSCREEN_WACOM_W8001=y CONFIG_TOUCHSCREEN_MCS5000=y # CONFIG_TOUCHSCREEN_MTOUCH is not set # CONFIG_TOUCHSCREEN_INEXIO is not set CONFIG_TOUCHSCREEN_MK712=y # CONFIG_TOUCHSCREEN_PENMOUNT is not set CONFIG_TOUCHSCREEN_TOUCHRIGHT=y CONFIG_TOUCHSCREEN_TOUCHWIN=y CONFIG_TOUCHSCREEN_USB_COMPOSITE=y CONFIG_TOUCHSCREEN_USB_EGALAX=y # CONFIG_TOUCHSCREEN_USB_PANJIT is not set # CONFIG_TOUCHSCREEN_USB_3M is not set CONFIG_TOUCHSCREEN_USB_ITM=y CONFIG_TOUCHSCREEN_USB_ETURBO=y CONFIG_TOUCHSCREEN_USB_GUNZE=y # CONFIG_TOUCHSCREEN_USB_DMC_TSC10 is not set # CONFIG_TOUCHSCREEN_USB_IRTOUCH is not set # CONFIG_TOUCHSCREEN_USB_IDEALTEK is not set CONFIG_TOUCHSCREEN_USB_GENERAL_TOUCH=y CONFIG_TOUCHSCREEN_USB_GOTOP=y CONFIG_TOUCHSCREEN_USB_JASTEC=y # CONFIG_TOUCHSCREEN_USB_E2I is not set CONFIG_TOUCHSCREEN_USB_ZYTRONIC=y CONFIG_TOUCHSCREEN_USB_ETT_TC5UH=y CONFIG_TOUCHSCREEN_TOUCHIT213=y CONFIG_TOUCHSCREEN_TSC2007=y CONFIG_INPUT_MISC=y # CONFIG_INPUT_PCSPKR is not set CONFIG_INPUT_APANEL=y CONFIG_INPUT_ATLAS_BTNS=y CONFIG_INPUT_ATI_REMOTE=y CONFIG_INPUT_ATI_REMOTE2=y CONFIG_INPUT_KEYSPAN_REMOTE=y # CONFIG_INPUT_POWERMATE is not set # CONFIG_INPUT_YEALINK is not set CONFIG_INPUT_CM109=y CONFIG_INPUT_TWL4030_PWRBUTTON=y CONFIG_INPUT_UINPUT=y CONFIG_INPUT_WINBOND_CIR=y CONFIG_INPUT_GPIO_ROTARY_ENCODER=y CONFIG_INPUT_WM831X_ON=y # # Hardware I/O ports # CONFIG_SERIO=y CONFIG_SERIO_I8042=y CONFIG_SERIO_SERPORT=y # CONFIG_SERIO_CT82C710 is not set CONFIG_SERIO_PARKBD=y # CONFIG_SERIO_PCIPS2 is not set CONFIG_SERIO_LIBPS2=y CONFIG_SERIO_RAW=y CONFIG_SERIO_ALTERA_PS2=y CONFIG_GAMEPORT=y CONFIG_GAMEPORT_NS558=y CONFIG_GAMEPORT_L4=y CONFIG_GAMEPORT_EMU10K1=y CONFIG_GAMEPORT_FM801=y # # Character devices # CONFIG_VT=y CONFIG_CONSOLE_TRANSLATIONS=y CONFIG_VT_CONSOLE=y CONFIG_HW_CONSOLE=y # CONFIG_VT_HW_CONSOLE_BINDING is not set CONFIG_DEVKMEM=y # CONFIG_SERIAL_NONSTANDARD is not set CONFIG_NOZOMI=y # # Serial drivers # CONFIG_SERIAL_8250=y CONFIG_SERIAL_8250_CONSOLE=y CONFIG_FIX_EARLYCON_MEM=y CONFIG_SERIAL_8250_PCI=y CONFIG_SERIAL_8250_PNP=y CONFIG_SERIAL_8250_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_DEVPTS_MULTIPLE_INSTANCES=y CONFIG_LEGACY_PTYS=y CONFIG_LEGACY_PTY_COUNT=256 # CONFIG_PRINTER is not set # CONFIG_PPDEV is not set # CONFIG_VIRTIO_CONSOLE is not set CONFIG_IPMI_HANDLER=y CONFIG_IPMI_PANIC_EVENT=y # CONFIG_IPMI_PANIC_STRING is not set # CONFIG_IPMI_DEVICE_INTERFACE is not set CONFIG_IPMI_SI=y # CONFIG_IPMI_WATCHDOG is not set # CONFIG_IPMI_POWEROFF is not set CONFIG_HW_RANDOM=y # CONFIG_HW_RANDOM_TIMERIOMEM is not set CONFIG_HW_RANDOM_INTEL=y CONFIG_HW_RANDOM_AMD=y CONFIG_HW_RANDOM_VIA=y CONFIG_HW_RANDOM_VIRTIO=y # CONFIG_NVRAM is not set CONFIG_RTC=y # CONFIG_R3964 is not set CONFIG_APPLICOM=y CONFIG_MWAVE=y CONFIG_PC8736x_GPIO=y CONFIG_NSC_GPIO=y # CONFIG_RAW_DRIVER is not set CONFIG_HPET=y CONFIG_HPET_MMAP=y CONFIG_HANGCHECK_TIMER=y CONFIG_TCG_TPM=y CONFIG_TCG_TIS=y CONFIG_TCG_NSC=y CONFIG_TCG_ATMEL=y CONFIG_TCG_INFINEON=y CONFIG_TELCLOCK=y CONFIG_DEVPORT=y CONFIG_I2C=y CONFIG_I2C_BOARDINFO=y CONFIG_I2C_COMPAT=y CONFIG_I2C_CHARDEV=y # CONFIG_I2C_HELPER_AUTO is not set # # I2C Algorithms # CONFIG_I2C_ALGOBIT=y # CONFIG_I2C_ALGOPCF is not set CONFIG_I2C_ALGOPCA=y # # I2C Hardware Bus support # # # PC SMBus host controller drivers # CONFIG_I2C_ALI1535=y CONFIG_I2C_ALI1563=y # CONFIG_I2C_ALI15X3 is not set # CONFIG_I2C_AMD756 is not set CONFIG_I2C_AMD8111=y CONFIG_I2C_I801=y CONFIG_I2C_ISCH=y CONFIG_I2C_PIIX4=y CONFIG_I2C_NFORCE2=y CONFIG_I2C_SIS5595=y CONFIG_I2C_SIS630=y CONFIG_I2C_SIS96X=y CONFIG_I2C_VIA=y # CONFIG_I2C_VIAPRO is not set # # ACPI drivers # # CONFIG_I2C_SCMI is not set # # I2C system bus drivers (mostly embedded / system-on-chip) # # CONFIG_I2C_GPIO is not set # CONFIG_I2C_OCORES is not set # CONFIG_I2C_SIMTEC is not set # # External I2C/SMBus adapter drivers # # CONFIG_I2C_PARPORT is not set # CONFIG_I2C_PARPORT_LIGHT is not set # CONFIG_I2C_TAOS_EVM is not set CONFIG_I2C_TINY_USB=y # # Other I2C/SMBus bus drivers # CONFIG_I2C_PCA_PLATFORM=y # # Miscellaneous I2C Chip support # CONFIG_SENSORS_TSL2550=y CONFIG_I2C_DEBUG_CORE=y CONFIG_I2C_DEBUG_ALGO=y # CONFIG_I2C_DEBUG_BUS is not set CONFIG_I2C_DEBUG_CHIP=y # CONFIG_SPI is not set # # PPS support # CONFIG_PPS=y CONFIG_PPS_DEBUG=y CONFIG_ARCH_WANT_OPTIONAL_GPIOLIB=y CONFIG_GPIOLIB=y CONFIG_GPIO_SYSFS=y # # Memory mapped GPIO expanders: # # # I2C GPIO expanders: # # CONFIG_GPIO_MAX732X is not set # CONFIG_GPIO_PCA953X is not set # CONFIG_GPIO_PCF857X is not set # CONFIG_GPIO_TWL4030 is not set CONFIG_GPIO_WM831X=y CONFIG_GPIO_ADP5520=y # CONFIG_GPIO_ADP5588 is not set # # PCI GPIO expanders: # # CONFIG_GPIO_CS5535 is not set CONFIG_GPIO_LANGWELL=y # # SPI GPIO expanders: # # # AC97 GPIO expanders: # CONFIG_W1=y # CONFIG_W1_CON is not set # # 1-wire Bus Masters # CONFIG_W1_MASTER_MATROX=y CONFIG_W1_MASTER_DS2490=y # CONFIG_W1_MASTER_DS2482 is not set CONFIG_W1_MASTER_GPIO=y # # 1-wire Slaves # # CONFIG_W1_SLAVE_THERM is not set # CONFIG_W1_SLAVE_SMEM is not set # CONFIG_W1_SLAVE_DS2431 is not set # CONFIG_W1_SLAVE_DS2433 is not set CONFIG_W1_SLAVE_DS2760=y # CONFIG_W1_SLAVE_BQ27000 is not set CONFIG_POWER_SUPPLY=y CONFIG_POWER_SUPPLY_DEBUG=y CONFIG_PDA_POWER=y CONFIG_WM831X_BACKUP=y CONFIG_WM831X_POWER=y CONFIG_BATTERY_DS2760=y CONFIG_BATTERY_DS2782=y CONFIG_BATTERY_BQ27x00=y CONFIG_BATTERY_DA9030=y CONFIG_BATTERY_MAX17040=y CONFIG_HWMON=y CONFIG_HWMON_VID=y CONFIG_HWMON_DEBUG_CHIP=y # # Native drivers # CONFIG_SENSORS_ABITUGURU=y CONFIG_SENSORS_ABITUGURU3=y CONFIG_SENSORS_AD7414=y CONFIG_SENSORS_AD7418=y # CONFIG_SENSORS_ADM1021 is not set CONFIG_SENSORS_ADM1025=y # CONFIG_SENSORS_ADM1026 is not set # CONFIG_SENSORS_ADM1029 is not set CONFIG_SENSORS_ADM1031=y CONFIG_SENSORS_ADM9240=y # CONFIG_SENSORS_ADT7462 is not set # CONFIG_SENSORS_ADT7470 is not set # CONFIG_SENSORS_ADT7473 is not set # CONFIG_SENSORS_ADT7475 is not set CONFIG_SENSORS_K8TEMP=y CONFIG_SENSORS_K10TEMP=y CONFIG_SENSORS_ASB100=y # CONFIG_SENSORS_ATXP1 is not set CONFIG_SENSORS_DS1621=y # CONFIG_SENSORS_I5K_AMB is not set CONFIG_SENSORS_F71805F=y CONFIG_SENSORS_F71882FG=y # CONFIG_SENSORS_F75375S is not set CONFIG_SENSORS_FSCHMD=y CONFIG_SENSORS_G760A=y CONFIG_SENSORS_GL518SM=y # CONFIG_SENSORS_GL520SM is not set # CONFIG_SENSORS_CORETEMP is not set CONFIG_SENSORS_IBMAEM=y CONFIG_SENSORS_IBMPEX=y CONFIG_SENSORS_IT87=y CONFIG_SENSORS_LM63=y CONFIG_SENSORS_LM73=y CONFIG_SENSORS_LM75=y CONFIG_SENSORS_LM77=y CONFIG_SENSORS_LM78=y CONFIG_SENSORS_LM80=y CONFIG_SENSORS_LM83=y CONFIG_SENSORS_LM85=y CONFIG_SENSORS_LM87=y # CONFIG_SENSORS_LM90 is not set # CONFIG_SENSORS_LM92 is not set # CONFIG_SENSORS_LM93 is not set # CONFIG_SENSORS_LTC4215 is not set CONFIG_SENSORS_LTC4245=y # CONFIG_SENSORS_LM95241 is not set CONFIG_SENSORS_MAX1619=y CONFIG_SENSORS_MAX6650=y # CONFIG_SENSORS_PC87360 is not set CONFIG_SENSORS_PC87427=y CONFIG_SENSORS_PCF8591=y # CONFIG_SENSORS_SHT15 is not set CONFIG_SENSORS_SIS5595=y CONFIG_SENSORS_DME1737=y CONFIG_SENSORS_SMSC47M1=y CONFIG_SENSORS_SMSC47M192=y # CONFIG_SENSORS_SMSC47B397 is not set # CONFIG_SENSORS_ADS7828 is not set # CONFIG_SENSORS_AMC6821 is not set CONFIG_SENSORS_THMC50=y CONFIG_SENSORS_TMP401=y CONFIG_SENSORS_TMP421=y CONFIG_SENSORS_VIA_CPUTEMP=y CONFIG_SENSORS_VIA686A=y CONFIG_SENSORS_VT1211=y CONFIG_SENSORS_VT8231=y CONFIG_SENSORS_W83781D=y # CONFIG_SENSORS_W83791D is not set CONFIG_SENSORS_W83792D=y # CONFIG_SENSORS_W83793 is not set CONFIG_SENSORS_W83L785TS=y CONFIG_SENSORS_W83L786NG=y # CONFIG_SENSORS_W83627HF is not set # CONFIG_SENSORS_W83627EHF is not set CONFIG_SENSORS_WM831X=y CONFIG_SENSORS_HDAPS=y CONFIG_SENSORS_LIS3_I2C=y CONFIG_SENSORS_APPLESMC=y # # ACPI drivers # # CONFIG_SENSORS_ATK0110 is not set CONFIG_SENSORS_LIS3LV02D=y CONFIG_THERMAL=y # CONFIG_THERMAL_HWMON is not set CONFIG_WATCHDOG=y CONFIG_WATCHDOG_NOWAYOUT=y # # Watchdog Device Drivers # # CONFIG_SOFT_WATCHDOG is not set CONFIG_WM831X_WATCHDOG=y CONFIG_TWL4030_WATCHDOG=y CONFIG_ACQUIRE_WDT=y # CONFIG_ADVANTECH_WDT is not set CONFIG_ALIM1535_WDT=y CONFIG_ALIM7101_WDT=y # CONFIG_GEODE_WDT is not set # CONFIG_SC520_WDT is not set # CONFIG_EUROTECH_WDT is not set CONFIG_IB700_WDT=y CONFIG_IBMASR=y # CONFIG_WAFER_WDT is not set CONFIG_I6300ESB_WDT=y CONFIG_ITCO_WDT=y # CONFIG_ITCO_VENDOR_SUPPORT is not set # CONFIG_IT8712F_WDT is not set CONFIG_IT87_WDT=y # CONFIG_HP_WATCHDOG is not set CONFIG_SC1200_WDT=y CONFIG_PC87413_WDT=y # CONFIG_60XX_WDT is not set CONFIG_SBC8360_WDT=y CONFIG_CPU5_WDT=y CONFIG_SMSC_SCH311X_WDT=y # CONFIG_SMSC37B787_WDT is not set # CONFIG_W83627HF_WDT is not set # CONFIG_W83697HF_WDT is not set # CONFIG_W83697UG_WDT is not set # CONFIG_W83877F_WDT is not set CONFIG_W83977F_WDT=y CONFIG_MACHZ_WDT=y CONFIG_SBC_EPX_C3_WATCHDOG=y # # PCI-based Watchdog Cards # CONFIG_PCIPCWATCHDOG=y # CONFIG_WDTPCI is not set # # USB-based Watchdog Cards # # CONFIG_USBPCWATCHDOG is not set CONFIG_SSB_POSSIBLE=y # # Sonics Silicon Backplane # CONFIG_SSB=y CONFIG_SSB_SPROM=y CONFIG_SSB_PCIHOST_POSSIBLE=y CONFIG_SSB_PCIHOST=y # CONFIG_SSB_B43_PCI_BRIDGE is not set CONFIG_SSB_SILENT=y CONFIG_SSB_DRIVER_PCICORE_POSSIBLE=y CONFIG_SSB_DRIVER_PCICORE=y # # Multifunction device drivers # CONFIG_MFD_CORE=y CONFIG_MFD_SM501=y CONFIG_MFD_SM501_GPIO=y CONFIG_HTC_PASIC3=y CONFIG_TPS65010=y CONFIG_TWL4030_CORE=y # CONFIG_TWL4030_CODEC is not set # CONFIG_MFD_TMIO is not set CONFIG_PMIC_DA903X=y CONFIG_PMIC_ADP5520=y CONFIG_MFD_WM8400=y CONFIG_MFD_WM831X=y # CONFIG_MFD_PCF50633 is not set CONFIG_AB3100_CORE=y CONFIG_AB3100_OTP=y CONFIG_MFD_88PM8607=y CONFIG_REGULATOR=y CONFIG_REGULATOR_DEBUG=y CONFIG_REGULATOR_FIXED_VOLTAGE=y CONFIG_REGULATOR_VIRTUAL_CONSUMER=y CONFIG_REGULATOR_USERSPACE_CONSUMER=y CONFIG_REGULATOR_BQ24022=y # CONFIG_REGULATOR_MAX1586 is not set # CONFIG_REGULATOR_MAX8660 is not set # CONFIG_REGULATOR_TWL4030 is not set CONFIG_REGULATOR_WM831X=y # CONFIG_REGULATOR_WM8400 is not set # CONFIG_REGULATOR_DA903X is not set CONFIG_REGULATOR_LP3971=y CONFIG_REGULATOR_AB3100=y CONFIG_REGULATOR_TPS65023=y CONFIG_REGULATOR_TPS6507X=y # CONFIG_REGULATOR_88PM8607 is not set CONFIG_MEDIA_SUPPORT=y # # Multimedia core support # CONFIG_VIDEO_DEV=y CONFIG_VIDEO_V4L2_COMMON=y CONFIG_VIDEO_ALLOW_V4L1=y CONFIG_VIDEO_V4L1_COMPAT=y CONFIG_DVB_CORE=y CONFIG_VIDEO_MEDIA=y # # Multimedia drivers # CONFIG_VIDEO_SAA7146=y CONFIG_VIDEO_SAA7146_VV=y CONFIG_IR_CORE=y CONFIG_VIDEO_IR=y CONFIG_MEDIA_TUNER=y CONFIG_MEDIA_TUNER_CUSTOMISE=y CONFIG_MEDIA_TUNER_SIMPLE=y # CONFIG_MEDIA_TUNER_TDA8290 is not set CONFIG_MEDIA_TUNER_TDA827X=y CONFIG_MEDIA_TUNER_TDA18271=y CONFIG_MEDIA_TUNER_TDA9887=y # CONFIG_MEDIA_TUNER_TEA5761 is not set CONFIG_MEDIA_TUNER_TEA5767=y CONFIG_MEDIA_TUNER_MT20XX=y # CONFIG_MEDIA_TUNER_MT2060 is not set CONFIG_MEDIA_TUNER_MT2266=y # CONFIG_MEDIA_TUNER_MT2131 is not set CONFIG_MEDIA_TUNER_QT1010=y CONFIG_MEDIA_TUNER_XC2028=y # CONFIG_MEDIA_TUNER_XC5000 is not set # CONFIG_MEDIA_TUNER_MXL5005S is not set # CONFIG_MEDIA_TUNER_MXL5007T is not set # CONFIG_MEDIA_TUNER_MC44S803 is not set CONFIG_VIDEO_V4L2=y CONFIG_VIDEO_V4L1=y CONFIG_VIDEOBUF_GEN=y CONFIG_VIDEOBUF_DMA_SG=y CONFIG_VIDEOBUF_VMALLOC=y CONFIG_VIDEOBUF_DVB=y CONFIG_VIDEO_BTCX=y CONFIG_VIDEO_TVEEPROM=y CONFIG_VIDEO_TUNER=y CONFIG_VIDEO_CAPTURE_DRIVERS=y CONFIG_VIDEO_ADV_DEBUG=y # CONFIG_VIDEO_FIXED_MINOR_RANGES is not set # CONFIG_VIDEO_HELPER_CHIPS_AUTO is not set # CONFIG_VIDEO_IR_I2C is not set # # Encoders/decoders and other helper chips # # # Audio decoders # # CONFIG_VIDEO_TVAUDIO is not set CONFIG_VIDEO_TDA7432=y # CONFIG_VIDEO_TDA9840 is not set CONFIG_VIDEO_TDA9875=y CONFIG_VIDEO_TEA6415C=y CONFIG_VIDEO_TEA6420=y CONFIG_VIDEO_MSP3400=y CONFIG_VIDEO_CS5345=y CONFIG_VIDEO_CS53L32A=y CONFIG_VIDEO_M52790=y # CONFIG_VIDEO_TLV320AIC23B is not set CONFIG_VIDEO_WM8775=y CONFIG_VIDEO_WM8739=y CONFIG_VIDEO_VP27SMPX=y # # RDS decoders # # CONFIG_VIDEO_SAA6588 is not set # # Video decoders # CONFIG_VIDEO_ADV7180=y # CONFIG_VIDEO_BT819 is not set CONFIG_VIDEO_BT856=y CONFIG_VIDEO_BT866=y # CONFIG_VIDEO_KS0127 is not set CONFIG_VIDEO_OV7670=y CONFIG_VIDEO_MT9V011=y CONFIG_VIDEO_TCM825X=y # CONFIG_VIDEO_SAA7110 is not set CONFIG_VIDEO_SAA711X=y CONFIG_VIDEO_SAA717X=y CONFIG_VIDEO_SAA7191=y # CONFIG_VIDEO_TVP514X is not set CONFIG_VIDEO_TVP5150=y CONFIG_VIDEO_VPX3220=y # # Video and audio decoders # CONFIG_VIDEO_CX25840=y # # MPEG video encoders # CONFIG_VIDEO_CX2341X=y # # Video encoders # CONFIG_VIDEO_SAA7127=y CONFIG_VIDEO_SAA7185=y CONFIG_VIDEO_ADV7170=y CONFIG_VIDEO_ADV7175=y # CONFIG_VIDEO_THS7303 is not set # CONFIG_VIDEO_ADV7343 is not set # # Video improvement chips # CONFIG_VIDEO_UPD64031A=y CONFIG_VIDEO_UPD64083=y CONFIG_VIDEO_VIVI=y CONFIG_VIDEO_BT848=y CONFIG_VIDEO_BT848_DVB=y CONFIG_VIDEO_CPIA=y CONFIG_VIDEO_CPIA_PP=y CONFIG_VIDEO_CPIA_USB=y CONFIG_VIDEO_CPIA2=y CONFIG_VIDEO_SAA5246A=y CONFIG_VIDEO_SAA5249=y CONFIG_VIDEO_STRADIS=y CONFIG_VIDEO_ZORAN=y CONFIG_VIDEO_ZORAN_DC30=y # CONFIG_VIDEO_ZORAN_ZR36060 is not set CONFIG_VIDEO_MEYE=y CONFIG_VIDEO_SAA7134=y CONFIG_VIDEO_SAA7134_DVB=y CONFIG_VIDEO_MXB=y CONFIG_VIDEO_HEXIUM_ORION=y CONFIG_VIDEO_HEXIUM_GEMINI=y # CONFIG_VIDEO_CX23885 is not set CONFIG_VIDEO_IVTV=y CONFIG_VIDEO_FB_IVTV=y CONFIG_VIDEO_CX18=y CONFIG_VIDEO_SAA7164=y # CONFIG_VIDEO_CAFE_CCIC is not set CONFIG_SOC_CAMERA=y CONFIG_SOC_CAMERA_MT9M001=y CONFIG_SOC_CAMERA_MT9M111=y CONFIG_SOC_CAMERA_MT9T031=y # CONFIG_SOC_CAMERA_MT9T112 is not set CONFIG_SOC_CAMERA_MT9V022=y CONFIG_SOC_CAMERA_RJ54N1=y # CONFIG_SOC_CAMERA_TW9910 is not set CONFIG_SOC_CAMERA_PLATFORM=y # CONFIG_SOC_CAMERA_OV772X is not set CONFIG_SOC_CAMERA_OV9640=y # CONFIG_V4L_USB_DRIVERS is not set CONFIG_RADIO_ADAPTERS=y CONFIG_RADIO_GEMTEK_PCI=y # CONFIG_RADIO_MAXIRADIO is not set # CONFIG_RADIO_MAESTRO is not set CONFIG_I2C_SI4713=y CONFIG_RADIO_SI4713=y CONFIG_USB_DSBR=y # CONFIG_RADIO_SI470X is not set CONFIG_USB_MR800=y CONFIG_RADIO_TEA5764=y # CONFIG_RADIO_TEA5764_XTAL is not set CONFIG_RADIO_TEF6862=y CONFIG_DVB_MAX_ADAPTERS=8 CONFIG_DVB_DYNAMIC_MINORS=y CONFIG_DVB_CAPTURE_DRIVERS=y # # Supported SAA7146 based PCI Adapters # CONFIG_TTPCI_EEPROM=y CONFIG_DVB_AV7110=y # CONFIG_DVB_AV7110_OSD is not set CONFIG_DVB_BUDGET_CORE=y # CONFIG_DVB_BUDGET is not set CONFIG_DVB_BUDGET_CI=y CONFIG_DVB_BUDGET_AV=y CONFIG_DVB_BUDGET_PATCH=y # # Supported USB Adapters # CONFIG_DVB_TTUSB_BUDGET=y CONFIG_DVB_TTUSB_DEC=y CONFIG_SMS_SIANO_MDTV=y # # Siano module components # # CONFIG_SMS_USB_DRV is not set # # Supported FlexCopII (B2C2) Adapters # CONFIG_DVB_B2C2_FLEXCOP=y CONFIG_DVB_B2C2_FLEXCOP_PCI=y CONFIG_DVB_B2C2_FLEXCOP_USB=y CONFIG_DVB_B2C2_FLEXCOP_DEBUG=y # # Supported BT878 Adapters # CONFIG_DVB_BT8XX=y # # Supported Pluto2 Adapters # CONFIG_DVB_PLUTO2=y # # Supported SDMC DM1105 Adapters # # CONFIG_DVB_DM1105 is not set # # Supported FireWire (IEEE 1394) Adapters # CONFIG_DVB_FIREDTV=y # CONFIG_DVB_FIREDTV_FIREWIRE is not set CONFIG_DVB_FIREDTV_IEEE1394=y CONFIG_DVB_FIREDTV_INPUT=y # # Supported Earthsoft PT1 Adapters # CONFIG_DVB_PT1=y # # Supported Mantis Adapters # CONFIG_MANTIS_CORE=y # CONFIG_DVB_MANTIS is not set CONFIG_DVB_HOPPER=y # # Supported DVB Frontends # CONFIG_DVB_FE_CUSTOMISE=y # # Customise DVB Frontends # # # Multistandard (satellite) frontends # # CONFIG_DVB_STB0899 is not set CONFIG_DVB_STB6100=y CONFIG_DVB_STV090x=y # CONFIG_DVB_STV6110x is not set # # DVB-S (satellite) frontends # CONFIG_DVB_CX24110=y CONFIG_DVB_CX24123=y CONFIG_DVB_MT312=y CONFIG_DVB_ZL10036=y CONFIG_DVB_ZL10039=y CONFIG_DVB_S5H1420=y CONFIG_DVB_STV0288=y CONFIG_DVB_STB6000=y # CONFIG_DVB_STV0299 is not set CONFIG_DVB_STV6110=y CONFIG_DVB_STV0900=y CONFIG_DVB_TDA8083=y CONFIG_DVB_TDA10086=y CONFIG_DVB_TDA8261=y CONFIG_DVB_VES1X93=y CONFIG_DVB_TUNER_ITD1000=y CONFIG_DVB_TUNER_CX24113=y CONFIG_DVB_TDA826X=y # CONFIG_DVB_TUA6100 is not set CONFIG_DVB_CX24116=y # CONFIG_DVB_SI21XX is not set CONFIG_DVB_DS3000=y CONFIG_DVB_MB86A16=y # # DVB-T (terrestrial) frontends # CONFIG_DVB_SP8870=y CONFIG_DVB_SP887X=y CONFIG_DVB_CX22700=y # CONFIG_DVB_CX22702 is not set # CONFIG_DVB_DRX397XD is not set CONFIG_DVB_L64781=y CONFIG_DVB_TDA1004X=y # CONFIG_DVB_NXT6000 is not set CONFIG_DVB_MT352=y CONFIG_DVB_ZL10353=y # CONFIG_DVB_DIB3000MB is not set CONFIG_DVB_DIB3000MC=y CONFIG_DVB_DIB7000M=y CONFIG_DVB_DIB7000P=y CONFIG_DVB_TDA10048=y CONFIG_DVB_AF9013=y # CONFIG_DVB_EC100 is not set # # DVB-C (cable) frontends # CONFIG_DVB_VES1820=y CONFIG_DVB_TDA10021=y # CONFIG_DVB_TDA10023 is not set CONFIG_DVB_STV0297=y # # ATSC (North American/Korean Terrestrial/Cable DTV) frontends # # CONFIG_DVB_NXT200X is not set CONFIG_DVB_OR51211=y CONFIG_DVB_OR51132=y CONFIG_DVB_BCM3510=y # CONFIG_DVB_LGDT330X is not set CONFIG_DVB_LGDT3304=y CONFIG_DVB_LGDT3305=y CONFIG_DVB_S5H1409=y CONFIG_DVB_AU8522=y CONFIG_DVB_S5H1411=y # # ISDB-T (terrestrial) frontends # CONFIG_DVB_S921=y CONFIG_DVB_DIB8000=y # # Digital terrestrial only tuners/PLL # CONFIG_DVB_PLL=y CONFIG_DVB_TUNER_DIB0070=y CONFIG_DVB_TUNER_DIB0090=y # # SEC control devices for DVB-S # CONFIG_DVB_LNBP21=y CONFIG_DVB_ISL6405=y # CONFIG_DVB_ISL6421 is not set CONFIG_DVB_ISL6423=y CONFIG_DVB_LGS8GL5=y CONFIG_DVB_LGS8GXX=y CONFIG_DVB_ATBM8830=y CONFIG_DVB_TDA665x=y # # Tools to develop new frontends # # CONFIG_DVB_DUMMY_FE is not set # CONFIG_DAB is not set # # Graphics support # # CONFIG_AGP is not set CONFIG_VGA_ARB=y CONFIG_DRM=y CONFIG_DRM_KMS_HELPER=y CONFIG_DRM_TTM=y CONFIG_DRM_TDFX=y CONFIG_DRM_R128=y CONFIG_DRM_RADEON=y CONFIG_DRM_RADEON_KMS=y CONFIG_DRM_MGA=y # CONFIG_DRM_VIA is not set # CONFIG_DRM_SAVAGE is not set CONFIG_VGASTATE=y CONFIG_VIDEO_OUTPUT_CONTROL=y CONFIG_FB=y CONFIG_FIRMWARE_EDID=y CONFIG_FB_DDC=y # CONFIG_FB_BOOT_VESA_SUPPORT is not set CONFIG_FB_CFB_FILLRECT=y CONFIG_FB_CFB_COPYAREA=y CONFIG_FB_CFB_IMAGEBLIT=y # CONFIG_FB_CFB_REV_PIXELS_IN_BYTE is not set CONFIG_FB_SYS_FILLRECT=y CONFIG_FB_SYS_COPYAREA=y CONFIG_FB_SYS_IMAGEBLIT=y # CONFIG_FB_FOREIGN_ENDIAN is not set CONFIG_FB_SYS_FOPS=y CONFIG_FB_DEFERRED_IO=y CONFIG_FB_SVGALIB=y # CONFIG_FB_MACMODES is not set CONFIG_FB_BACKLIGHT=y CONFIG_FB_MODE_HELPERS=y CONFIG_FB_TILEBLITTING=y # # Frame buffer hardware drivers # # CONFIG_FB_CIRRUS is not set CONFIG_FB_PM2=y CONFIG_FB_PM2_FIFO_DISCONNECT=y CONFIG_FB_CYBER2000=y CONFIG_FB_ARC=y # CONFIG_FB_ASILIANT is not set CONFIG_FB_IMSTT=y # CONFIG_FB_VGA16 is not set # CONFIG_FB_UVESA is not set # CONFIG_FB_VESA is not set # CONFIG_FB_N411 is not set CONFIG_FB_HGA=y # CONFIG_FB_HGA_ACCEL is not set CONFIG_FB_S1D13XXX=y CONFIG_FB_NVIDIA=y # CONFIG_FB_NVIDIA_I2C is not set CONFIG_FB_NVIDIA_DEBUG=y # CONFIG_FB_NVIDIA_BACKLIGHT is not set CONFIG_FB_RIVA=y # CONFIG_FB_RIVA_I2C is not set # CONFIG_FB_RIVA_DEBUG is not set CONFIG_FB_RIVA_BACKLIGHT=y CONFIG_FB_LE80578=y # CONFIG_FB_CARILLO_RANCH is not set # CONFIG_FB_MATROX is not set # CONFIG_FB_RADEON is not set # CONFIG_FB_ATY128 is not set CONFIG_FB_ATY=y CONFIG_FB_ATY_CT=y CONFIG_FB_ATY_GENERIC_LCD=y CONFIG_FB_ATY_GX=y CONFIG_FB_ATY_BACKLIGHT=y # CONFIG_FB_S3 is not set # CONFIG_FB_SAVAGE is not set # CONFIG_FB_SIS is not set CONFIG_FB_VIA=y # CONFIG_FB_NEOMAGIC is not set CONFIG_FB_KYRO=y CONFIG_FB_3DFX=y # CONFIG_FB_3DFX_ACCEL is not set CONFIG_FB_3DFX_I2C=y # CONFIG_FB_VOODOO1 is not set # CONFIG_FB_VT8623 is not set # CONFIG_FB_TRIDENT is not set CONFIG_FB_ARK=y CONFIG_FB_PM3=y # CONFIG_FB_CARMINE is not set # CONFIG_FB_GEODE is not set CONFIG_FB_TMIO=y CONFIG_FB_TMIO_ACCELL=y CONFIG_FB_SM501=y # CONFIG_FB_VIRTUAL is not set CONFIG_FB_METRONOME=y # CONFIG_FB_MB862XX is not set CONFIG_FB_BROADSHEET=y CONFIG_BACKLIGHT_LCD_SUPPORT=y CONFIG_LCD_CLASS_DEVICE=y # CONFIG_LCD_ILI9320 is not set CONFIG_LCD_PLATFORM=y CONFIG_BACKLIGHT_CLASS_DEVICE=y CONFIG_BACKLIGHT_GENERIC=y CONFIG_BACKLIGHT_PROGEAR=y CONFIG_BACKLIGHT_CARILLO_RANCH=y CONFIG_BACKLIGHT_DA903X=y # CONFIG_BACKLIGHT_MBP_NVIDIA is not set CONFIG_BACKLIGHT_SAHARA=y CONFIG_BACKLIGHT_WM831X=y # CONFIG_BACKLIGHT_ADP5520 is not set # # Display device support # CONFIG_DISPLAY_SUPPORT=y # # Display hardware drivers # # # Console display driver support # CONFIG_VGA_CONSOLE=y CONFIG_VGACON_SOFT_SCROLLBACK=y CONFIG_VGACON_SOFT_SCROLLBACK_SIZE=64 CONFIG_DUMMY_CONSOLE=y # CONFIG_FRAMEBUFFER_CONSOLE is not set CONFIG_FONT_8x16=y CONFIG_LOGO=y CONFIG_LOGO_LINUX_MONO=y CONFIG_LOGO_LINUX_VGA16=y # CONFIG_LOGO_LINUX_CLUT224 is not set CONFIG_SOUND=y CONFIG_SOUND_OSS_CORE=y # CONFIG_SOUND_OSS_CORE_PRECLAIM is not set # CONFIG_SND is not set CONFIG_SOUND_PRIME=y CONFIG_SOUND_OSS=y CONFIG_SOUND_TRACEINIT=y # CONFIG_SOUND_DMAP is not set CONFIG_SOUND_VMIDI=y # CONFIG_SOUND_TRIX is not set CONFIG_SOUND_MSS=y CONFIG_SOUND_MPU401=y # CONFIG_SOUND_PAS is not set CONFIG_SOUND_PSS=y # CONFIG_PSS_MIXER is not set # CONFIG_SOUND_SB is not set # CONFIG_SOUND_YM3812 is not set # CONFIG_SOUND_UART6850 is not set CONFIG_SOUND_AEDSP16=y CONFIG_SC6600=y # CONFIG_SC6600_JOY is not set CONFIG_SC6600_CDROM=4 CONFIG_SC6600_CDROMBASE=0 CONFIG_HID_SUPPORT=y CONFIG_HID=y CONFIG_HIDRAW=y # # USB Input Devices # CONFIG_USB_HID=y CONFIG_HID_PID=y CONFIG_USB_HIDDEV=y # # Special HID drivers # # CONFIG_HID_A4TECH is not set # CONFIG_HID_APPLE is not set CONFIG_HID_BELKIN=y CONFIG_HID_CHERRY=y # CONFIG_HID_CHICONY is not set CONFIG_HID_CYPRESS=y CONFIG_HID_DRAGONRISE=y CONFIG_DRAGONRISE_FF=y CONFIG_HID_EZKEY=y # CONFIG_HID_KYE is not set CONFIG_HID_GYRATION=y CONFIG_HID_TWINHAN=y CONFIG_HID_KENSINGTON=y # CONFIG_HID_LOGITECH is not set # CONFIG_HID_MICROSOFT is not set CONFIG_HID_MONTEREY=y CONFIG_HID_NTRIG=y CONFIG_HID_PANTHERLORD=y CONFIG_PANTHERLORD_FF=y CONFIG_HID_PETALYNX=y CONFIG_HID_SAMSUNG=y CONFIG_HID_SONY=y CONFIG_HID_SUNPLUS=y # CONFIG_HID_GREENASIA is not set CONFIG_HID_SMARTJOYPLUS=y CONFIG_SMARTJOYPLUS_FF=y # CONFIG_HID_TOPSEED is not set CONFIG_HID_THRUSTMASTER=y # CONFIG_THRUSTMASTER_FF is not set CONFIG_HID_WACOM=y CONFIG_HID_ZEROPLUS=y CONFIG_ZEROPLUS_FF=y CONFIG_USB_SUPPORT=y CONFIG_USB_ARCH_HAS_HCD=y CONFIG_USB_ARCH_HAS_OHCI=y CONFIG_USB_ARCH_HAS_EHCI=y CONFIG_USB=y # CONFIG_USB_DEBUG is not set # CONFIG_USB_ANNOUNCE_NEW_DEVICES is not set # # Miscellaneous USB options # # CONFIG_USB_DEVICEFS is not set CONFIG_USB_DEVICE_CLASS=y CONFIG_USB_DYNAMIC_MINORS=y # CONFIG_USB_SUSPEND is not set # CONFIG_USB_OTG is not set CONFIG_USB_OTG_WHITELIST=y # CONFIG_USB_OTG_BLACKLIST_HUB is not set # CONFIG_USB_MON is not set CONFIG_USB_WUSB=y # CONFIG_USB_WUSB_CBAF is not set # # USB Host Controller Drivers # CONFIG_USB_C67X00_HCD=y # CONFIG_USB_XHCI_HCD is not set CONFIG_USB_EHCI_HCD=y CONFIG_USB_EHCI_ROOT_HUB_TT=y # CONFIG_USB_EHCI_TT_NEWSCHED is not set CONFIG_USB_OXU210HP_HCD=y CONFIG_USB_ISP116X_HCD=y CONFIG_USB_ISP1760_HCD=y # CONFIG_USB_ISP1362_HCD is not set CONFIG_USB_OHCI_HCD=y # CONFIG_USB_OHCI_HCD_SSB is not set # CONFIG_USB_OHCI_BIG_ENDIAN_DESC is not set # CONFIG_USB_OHCI_BIG_ENDIAN_MMIO is not set CONFIG_USB_OHCI_LITTLE_ENDIAN=y CONFIG_USB_UHCI_HCD=y # CONFIG_USB_SL811_HCD is not set # CONFIG_USB_R8A66597_HCD is not set CONFIG_USB_HWA_HCD=y # # USB Device Class drivers # # CONFIG_USB_ACM is not set # CONFIG_USB_PRINTER is not set CONFIG_USB_WDM=y CONFIG_USB_TMC=y # # NOTE: USB_STORAGE depends on SCSI but BLK_DEV_SD may # # # also be needed; see USB_STORAGE Help for more info # CONFIG_USB_STORAGE=y # CONFIG_USB_STORAGE_DEBUG is not set CONFIG_USB_STORAGE_DATAFAB=y CONFIG_USB_STORAGE_FREECOM=y CONFIG_USB_STORAGE_ISD200=y CONFIG_USB_STORAGE_USBAT=y CONFIG_USB_STORAGE_SDDR09=y CONFIG_USB_STORAGE_SDDR55=y CONFIG_USB_STORAGE_JUMPSHOT=y CONFIG_USB_STORAGE_ALAUDA=y CONFIG_USB_STORAGE_ONETOUCH=y CONFIG_USB_STORAGE_KARMA=y CONFIG_USB_STORAGE_CYPRESS_ATACB=y # CONFIG_USB_LIBUSUAL is not set # # USB Imaging devices # CONFIG_USB_MDC800=y CONFIG_USB_MICROTEK=y # # USB port drivers # CONFIG_USB_USS720=y CONFIG_USB_SERIAL=y CONFIG_USB_SERIAL_CONSOLE=y CONFIG_USB_EZUSB=y CONFIG_USB_SERIAL_GENERIC=y CONFIG_USB_SERIAL_AIRCABLE=y CONFIG_USB_SERIAL_ARK3116=y # CONFIG_USB_SERIAL_BELKIN is not set CONFIG_USB_SERIAL_CH341=y # CONFIG_USB_SERIAL_WHITEHEAT is not set # CONFIG_USB_SERIAL_DIGI_ACCELEPORT is not set CONFIG_USB_SERIAL_CP210X=y CONFIG_USB_SERIAL_CYPRESS_M8=y # CONFIG_USB_SERIAL_EMPEG is not set CONFIG_USB_SERIAL_FTDI_SIO=y # 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=y CONFIG_USB_SERIAL_EDGEPORT=y CONFIG_USB_SERIAL_EDGEPORT_TI=y CONFIG_USB_SERIAL_GARMIN=y CONFIG_USB_SERIAL_IPW=y # CONFIG_USB_SERIAL_IUU is not set CONFIG_USB_SERIAL_KEYSPAN_PDA=y CONFIG_USB_SERIAL_KEYSPAN=y CONFIG_USB_SERIAL_KEYSPAN_MPR=y CONFIG_USB_SERIAL_KEYSPAN_USA28=y # CONFIG_USB_SERIAL_KEYSPAN_USA28X is not set CONFIG_USB_SERIAL_KEYSPAN_USA28XA=y CONFIG_USB_SERIAL_KEYSPAN_USA28XB=y CONFIG_USB_SERIAL_KEYSPAN_USA19=y CONFIG_USB_SERIAL_KEYSPAN_USA18X=y CONFIG_USB_SERIAL_KEYSPAN_USA19W=y CONFIG_USB_SERIAL_KEYSPAN_USA19QW=y # CONFIG_USB_SERIAL_KEYSPAN_USA19QI is not set CONFIG_USB_SERIAL_KEYSPAN_USA49W=y CONFIG_USB_SERIAL_KEYSPAN_USA49WLC=y CONFIG_USB_SERIAL_KLSI=y CONFIG_USB_SERIAL_KOBIL_SCT=y CONFIG_USB_SERIAL_MCT_U232=y CONFIG_USB_SERIAL_MOS7720=y CONFIG_USB_SERIAL_MOS7840=y CONFIG_USB_SERIAL_MOTOROLA=y # CONFIG_USB_SERIAL_NAVMAN is not set # CONFIG_USB_SERIAL_PL2303 is not set # CONFIG_USB_SERIAL_OTI6858 is not set CONFIG_USB_SERIAL_QUALCOMM=y # CONFIG_USB_SERIAL_SPCP8X5 is not set CONFIG_USB_SERIAL_HP4X=y CONFIG_USB_SERIAL_SAFE=y # CONFIG_USB_SERIAL_SAFE_PADDED is not set CONFIG_USB_SERIAL_SIEMENS_MPI=y # CONFIG_USB_SERIAL_SIERRAWIRELESS is not set CONFIG_USB_SERIAL_SYMBOL=y CONFIG_USB_SERIAL_TI=y CONFIG_USB_SERIAL_CYBERJACK=y CONFIG_USB_SERIAL_XIRCOM=y # CONFIG_USB_SERIAL_OPTION is not set CONFIG_USB_SERIAL_OMNINET=y CONFIG_USB_SERIAL_OPTICON=y CONFIG_USB_SERIAL_DEBUG=y # # USB Miscellaneous drivers # CONFIG_USB_EMI62=y # CONFIG_USB_EMI26 is not set CONFIG_USB_ADUTUX=y # CONFIG_USB_SEVSEG is not set CONFIG_USB_RIO500=y # CONFIG_USB_LEGOTOWER is not set # CONFIG_USB_LCD is not set # CONFIG_USB_BERRY_CHARGE is not set CONFIG_USB_LED=y CONFIG_USB_CYPRESS_CY7C63=y # CONFIG_USB_CYTHERM is not set CONFIG_USB_IDMOUSE=y # CONFIG_USB_FTDI_ELAN is not set CONFIG_USB_APPLEDISPLAY=y CONFIG_USB_SISUSBVGA=y CONFIG_USB_SISUSBVGA_CON=y # CONFIG_USB_LD is not set CONFIG_USB_TRANCEVIBRATOR=y CONFIG_USB_IOWARRIOR=y CONFIG_USB_TEST=y # CONFIG_USB_ISIGHTFW is not set # CONFIG_USB_VST is not set # CONFIG_USB_ATM is not set # # OTG and related infrastructure # CONFIG_USB_OTG_UTILS=y CONFIG_USB_GPIO_VBUS=y # CONFIG_NOP_USB_XCEIV is not set CONFIG_UWB=y CONFIG_UWB_HWA=y CONFIG_UWB_WHCI=y CONFIG_UWB_WLP=y # CONFIG_UWB_I1480U is not set # CONFIG_MMC is not set CONFIG_MEMSTICK=y CONFIG_MEMSTICK_DEBUG=y # # MemoryStick drivers # CONFIG_MEMSTICK_UNSAFE_RESUME=y CONFIG_MSPRO_BLOCK=y # # MemoryStick Host Controller Drivers # # CONFIG_MEMSTICK_TIFM_MS is not set # CONFIG_MEMSTICK_JMICRON_38X is not set CONFIG_NEW_LEDS=y CONFIG_LEDS_CLASS=y # # LED drivers # # CONFIG_LEDS_ALIX2 is not set # CONFIG_LEDS_PCA9532 is not set CONFIG_LEDS_GPIO=y CONFIG_LEDS_GPIO_PLATFORM=y CONFIG_LEDS_LP3944=y CONFIG_LEDS_PCA955X=y CONFIG_LEDS_WM831X_STATUS=y # CONFIG_LEDS_DA903X is not set CONFIG_LEDS_REGULATOR=y CONFIG_LEDS_BD2802=y # CONFIG_LEDS_LT3593 is not set CONFIG_LEDS_ADP5520=y # # LED Triggers # CONFIG_LEDS_TRIGGERS=y CONFIG_LEDS_TRIGGER_TIMER=y # CONFIG_LEDS_TRIGGER_HEARTBEAT is not set CONFIG_LEDS_TRIGGER_BACKLIGHT=y # CONFIG_LEDS_TRIGGER_GPIO is not set CONFIG_LEDS_TRIGGER_DEFAULT_ON=y # # iptables trigger is under Netfilter config (LED target) # # CONFIG_ACCESSIBILITY is not set # CONFIG_INFINIBAND is not set CONFIG_EDAC=y # # Reporting subsystems # CONFIG_EDAC_DEBUG=y CONFIG_EDAC_DEBUG_VERBOSE=y # CONFIG_EDAC_MM_EDAC is not set # CONFIG_RTC_CLASS is not set # CONFIG_CS5535_CLOCK_EVENT_SRC is not set CONFIG_DMADEVICES=y # # DMA Devices # # CONFIG_INTEL_IOATDMA is not set CONFIG_AUXDISPLAY=y CONFIG_UIO=y CONFIG_UIO_CIF=y CONFIG_UIO_PDRV=y # CONFIG_UIO_PDRV_GENIRQ is not set CONFIG_UIO_SMX=y # CONFIG_UIO_AEC is not set CONFIG_UIO_SERCOS3=y CONFIG_UIO_PCI_GENERIC=y # # TI VLYNQ # # CONFIG_STAGING is not set CONFIG_X86_PLATFORM_DEVICES=y CONFIG_ACER_WMI=y # CONFIG_DELL_LAPTOP is not set CONFIG_DELL_WMI=y CONFIG_FUJITSU_LAPTOP=y CONFIG_FUJITSU_LAPTOP_DEBUG=y CONFIG_HP_WMI=y # CONFIG_MSI_LAPTOP is not set # CONFIG_PANASONIC_LAPTOP is not set CONFIG_COMPAL_LAPTOP=y CONFIG_SONY_LAPTOP=y # CONFIG_SONYPI_COMPAT is not set CONFIG_EEEPC_LAPTOP=y CONFIG_ACPI_WMI=y # CONFIG_MSI_WMI is not set CONFIG_ACPI_ASUS=y CONFIG_TOPSTAR_LAPTOP=y CONFIG_ACPI_TOSHIBA=y CONFIG_TOSHIBA_BT_RFKILL=y # CONFIG_ACPI_CMPC is not set # # Firmware Drivers # # CONFIG_EDD is not set CONFIG_FIRMWARE_MEMMAP=y # CONFIG_DELL_RBU is not set CONFIG_DCDBAS=y # CONFIG_ISCSI_IBFT_FIND is not set # # File systems # CONFIG_EXT2_FS=y CONFIG_EXT2_FS_XATTR=y CONFIG_EXT2_FS_POSIX_ACL=y CONFIG_EXT2_FS_SECURITY=y CONFIG_EXT2_FS_XIP=y CONFIG_EXT3_FS=y CONFIG_EXT3_DEFAULTS_TO_ORDERED=y CONFIG_EXT3_FS_XATTR=y CONFIG_EXT3_FS_POSIX_ACL=y CONFIG_EXT3_FS_SECURITY=y # CONFIG_EXT4_FS is not set CONFIG_FS_XIP=y CONFIG_JBD=y CONFIG_JBD_DEBUG=y CONFIG_JBD2=y CONFIG_JBD2_DEBUG=y CONFIG_FS_MBCACHE=y CONFIG_REISERFS_FS=y CONFIG_REISERFS_CHECK=y # CONFIG_REISERFS_PROC_INFO is not set # CONFIG_REISERFS_FS_XATTR is not set # CONFIG_JFS_FS is not set CONFIG_FS_POSIX_ACL=y # CONFIG_XFS_FS is not set CONFIG_GFS2_FS=y # CONFIG_GFS2_FS_LOCKING_DLM is not set CONFIG_OCFS2_FS=y CONFIG_OCFS2_FS_O2CB=y CONFIG_OCFS2_FS_USERSPACE_CLUSTER=y CONFIG_OCFS2_FS_STATS=y # CONFIG_OCFS2_DEBUG_MASKLOG is not set CONFIG_OCFS2_DEBUG_FS=y CONFIG_BTRFS_FS=y CONFIG_BTRFS_FS_POSIX_ACL=y CONFIG_NILFS2_FS=y CONFIG_FILE_LOCKING=y CONFIG_FSNOTIFY=y CONFIG_DNOTIFY=y CONFIG_INOTIFY=y # CONFIG_INOTIFY_USER is not set CONFIG_QUOTA=y CONFIG_QUOTA_NETLINK_INTERFACE=y CONFIG_PRINT_QUOTA_WARNING=y CONFIG_QUOTA_TREE=y # CONFIG_QFMT_V1 is not set CONFIG_QFMT_V2=y CONFIG_QUOTACTL=y # CONFIG_AUTOFS_FS is not set CONFIG_AUTOFS4_FS=y CONFIG_FUSE_FS=y CONFIG_CUSE=y # # Caches # # CONFIG_FSCACHE is not set # # CD-ROM/DVD Filesystems # CONFIG_ISO9660_FS=y CONFIG_JOLIET=y CONFIG_ZISOFS=y # CONFIG_UDF_FS is not set # # DOS/FAT/NT Filesystems # CONFIG_FAT_FS=y CONFIG_MSDOS_FS=y # CONFIG_VFAT_FS is not set CONFIG_FAT_DEFAULT_CODEPAGE=437 CONFIG_NTFS_FS=y CONFIG_NTFS_DEBUG=y # CONFIG_NTFS_RW is not set # # Pseudo filesystems # CONFIG_PROC_FS=y # CONFIG_PROC_KCORE is not set # CONFIG_PROC_VMCORE is not set CONFIG_PROC_SYSCTL=y CONFIG_PROC_PAGE_MONITOR=y CONFIG_SYSFS=y CONFIG_HUGETLBFS=y CONFIG_HUGETLB_PAGE=y CONFIG_CONFIGFS_FS=y CONFIG_MISC_FILESYSTEMS=y CONFIG_ADFS_FS=y CONFIG_ADFS_FS_RW=y CONFIG_AFFS_FS=y CONFIG_ECRYPT_FS=y CONFIG_HFS_FS=y # CONFIG_HFSPLUS_FS is not set CONFIG_BEFS_FS=y CONFIG_BEFS_DEBUG=y # CONFIG_BFS_FS is not set CONFIG_EFS_FS=y # CONFIG_CRAMFS is not set # CONFIG_SQUASHFS is not set CONFIG_VXFS_FS=y CONFIG_MINIX_FS=y CONFIG_OMFS_FS=y CONFIG_HPFS_FS=y CONFIG_QNX4FS_FS=y CONFIG_ROMFS_FS=y CONFIG_ROMFS_BACKED_BY_BLOCK=y # CONFIG_ROMFS_BACKED_BY_MTD is not set # CONFIG_ROMFS_BACKED_BY_BOTH is not set CONFIG_ROMFS_ON_BLOCK=y CONFIG_SYSV_FS=y # CONFIG_UFS_FS is not set # CONFIG_NETWORK_FILESYSTEMS is not set # # Partition Types # CONFIG_PARTITION_ADVANCED=y CONFIG_ACORN_PARTITION=y # CONFIG_ACORN_PARTITION_CUMANA is not set # CONFIG_ACORN_PARTITION_EESOX is not set # CONFIG_ACORN_PARTITION_ICS is not set CONFIG_ACORN_PARTITION_ADFS=y # CONFIG_ACORN_PARTITION_POWERTEC is not set # CONFIG_ACORN_PARTITION_RISCIX is not set # CONFIG_OSF_PARTITION is not set CONFIG_AMIGA_PARTITION=y CONFIG_ATARI_PARTITION=y CONFIG_MAC_PARTITION=y CONFIG_MSDOS_PARTITION=y CONFIG_BSD_DISKLABEL=y CONFIG_MINIX_SUBPARTITION=y CONFIG_SOLARIS_X86_PARTITION=y CONFIG_UNIXWARE_DISKLABEL=y CONFIG_LDM_PARTITION=y CONFIG_LDM_DEBUG=y # CONFIG_SGI_PARTITION is not set # CONFIG_ULTRIX_PARTITION is not set CONFIG_SUN_PARTITION=y CONFIG_KARMA_PARTITION=y CONFIG_EFI_PARTITION=y # CONFIG_SYSV68_PARTITION is not set CONFIG_NLS=y CONFIG_NLS_DEFAULT="iso8859-1" CONFIG_NLS_CODEPAGE_437=y CONFIG_NLS_CODEPAGE_737=y CONFIG_NLS_CODEPAGE_775=y # CONFIG_NLS_CODEPAGE_850 is not set CONFIG_NLS_CODEPAGE_852=y CONFIG_NLS_CODEPAGE_855=y # CONFIG_NLS_CODEPAGE_857 is not set # CONFIG_NLS_CODEPAGE_860 is not set CONFIG_NLS_CODEPAGE_861=y CONFIG_NLS_CODEPAGE_862=y # CONFIG_NLS_CODEPAGE_863 is not set # CONFIG_NLS_CODEPAGE_864 is not set CONFIG_NLS_CODEPAGE_865=y CONFIG_NLS_CODEPAGE_866=y CONFIG_NLS_CODEPAGE_869=y CONFIG_NLS_CODEPAGE_936=y CONFIG_NLS_CODEPAGE_950=y CONFIG_NLS_CODEPAGE_932=y CONFIG_NLS_CODEPAGE_949=y CONFIG_NLS_CODEPAGE_874=y # CONFIG_NLS_ISO8859_8 is not set CONFIG_NLS_CODEPAGE_1250=y CONFIG_NLS_CODEPAGE_1251=y # CONFIG_NLS_ASCII is not set CONFIG_NLS_ISO8859_1=y CONFIG_NLS_ISO8859_2=y CONFIG_NLS_ISO8859_3=y # CONFIG_NLS_ISO8859_4 is not set CONFIG_NLS_ISO8859_5=y CONFIG_NLS_ISO8859_6=y CONFIG_NLS_ISO8859_7=y CONFIG_NLS_ISO8859_9=y CONFIG_NLS_ISO8859_13=y # CONFIG_NLS_ISO8859_14 is not set # CONFIG_NLS_ISO8859_15 is not set # CONFIG_NLS_KOI8_R is not set CONFIG_NLS_KOI8_U=y CONFIG_NLS_UTF8=y CONFIG_DLM=y # CONFIG_DLM_DEBUG 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=2048 CONFIG_MAGIC_SYSRQ=y CONFIG_STRIP_ASM_SYMS=y CONFIG_UNUSED_SYMBOLS=y CONFIG_DEBUG_FS=y # CONFIG_HEADERS_CHECK is not set CONFIG_DEBUG_SECTION_MISMATCH=y # CONFIG_DEBUG_KERNEL is not set CONFIG_SCHED_DEBUG=y CONFIG_SCHEDSTATS=y CONFIG_STACKTRACE=y CONFIG_DEBUG_BUGVERBOSE=y # CONFIG_DEBUG_MEMORY_INIT is not set CONFIG_ARCH_WANT_FRAME_POINTERS=y CONFIG_FRAME_POINTER=y CONFIG_RCU_CPU_STALL_DETECTOR=y CONFIG_LATENCYTOP=y CONFIG_SYSCTL_SYSCALL_CHECK=y CONFIG_USER_STACKTRACE_SUPPORT=y CONFIG_HAVE_FUNCTION_TRACER=y CONFIG_HAVE_FUNCTION_GRAPH_TRACER=y CONFIG_HAVE_FUNCTION_GRAPH_FP_TEST=y CONFIG_HAVE_FUNCTION_TRACE_MCOUNT_TEST=y CONFIG_HAVE_DYNAMIC_FTRACE=y CONFIG_HAVE_FTRACE_MCOUNT_RECORD=y CONFIG_HAVE_SYSCALL_TRACEPOINTS=y CONFIG_TRACING_SUPPORT=y # CONFIG_FTRACE is not set # CONFIG_PROVIDE_OHCI1394_DMA_INIT is not set CONFIG_DYNAMIC_DEBUG=y CONFIG_DMA_API_DEBUG=y CONFIG_SAMPLES=y CONFIG_HAVE_ARCH_KGDB=y CONFIG_HAVE_ARCH_KMEMCHECK=y CONFIG_STRICT_DEVMEM=y CONFIG_X86_VERBOSE_BOOTUP=y CONFIG_EARLY_PRINTK=y # CONFIG_EARLY_PRINTK_DBGP is not set CONFIG_IOMMU_STRESS=y CONFIG_HAVE_MMIOTRACE_SUPPORT=y CONFIG_IO_DELAY_TYPE_0X80=0 CONFIG_IO_DELAY_TYPE_0XED=1 CONFIG_IO_DELAY_TYPE_UDELAY=2 CONFIG_IO_DELAY_TYPE_NONE=3 # CONFIG_IO_DELAY_0X80 is not set # CONFIG_IO_DELAY_0XED is not set CONFIG_IO_DELAY_UDELAY=y # CONFIG_IO_DELAY_NONE is not set CONFIG_DEFAULT_IO_DELAY_TYPE=2 CONFIG_OPTIMIZE_INLINING=y # # Security options # CONFIG_KEYS=y CONFIG_KEYS_DEBUG_PROC_KEYS=y CONFIG_SECURITY=y CONFIG_SECURITYFS=y CONFIG_SECURITY_NETWORK=y CONFIG_SECURITY_NETWORK_XFRM=y CONFIG_SECURITY_PATH=y # CONFIG_SECURITY_SELINUX is not set # CONFIG_SECURITY_SMACK is not set # CONFIG_SECURITY_TOMOYO is not set CONFIG_IMA=y CONFIG_IMA_MEASURE_PCR_IDX=10 CONFIG_IMA_AUDIT=y # CONFIG_DEFAULT_SECURITY_SELINUX is not set # CONFIG_DEFAULT_SECURITY_SMACK is not set # CONFIG_DEFAULT_SECURITY_TOMOYO is not set CONFIG_DEFAULT_SECURITY_DAC=y CONFIG_DEFAULT_SECURITY="" CONFIG_XOR_BLOCKS=y CONFIG_ASYNC_CORE=y CONFIG_ASYNC_MEMCPY=y CONFIG_ASYNC_XOR=y CONFIG_ASYNC_PQ=y CONFIG_ASYNC_RAID6_RECOV=y CONFIG_CRYPTO=y # # Crypto core or helper # CONFIG_CRYPTO_FIPS=y CONFIG_CRYPTO_ALGAPI=y CONFIG_CRYPTO_ALGAPI2=y CONFIG_CRYPTO_AEAD=y CONFIG_CRYPTO_AEAD2=y CONFIG_CRYPTO_BLKCIPHER=y CONFIG_CRYPTO_BLKCIPHER2=y CONFIG_CRYPTO_HASH=y CONFIG_CRYPTO_HASH2=y CONFIG_CRYPTO_RNG=y CONFIG_CRYPTO_RNG2=y CONFIG_CRYPTO_PCOMP=y CONFIG_CRYPTO_MANAGER=y CONFIG_CRYPTO_MANAGER2=y CONFIG_CRYPTO_GF128MUL=y CONFIG_CRYPTO_NULL=y CONFIG_CRYPTO_WORKQUEUE=y CONFIG_CRYPTO_CRYPTD=y CONFIG_CRYPTO_AUTHENC=y # # Authenticated Encryption with Associated Data # # CONFIG_CRYPTO_CCM is not set CONFIG_CRYPTO_GCM=y CONFIG_CRYPTO_SEQIV=y # # Block modes # CONFIG_CRYPTO_CBC=y CONFIG_CRYPTO_CTR=y CONFIG_CRYPTO_CTS=y CONFIG_CRYPTO_ECB=y CONFIG_CRYPTO_LRW=y CONFIG_CRYPTO_PCBC=y CONFIG_CRYPTO_XTS=y CONFIG_CRYPTO_FPU=y # # Hash modes # CONFIG_CRYPTO_HMAC=y CONFIG_CRYPTO_XCBC=y # CONFIG_CRYPTO_VMAC is not set # # Digest # CONFIG_CRYPTO_CRC32C=y CONFIG_CRYPTO_CRC32C_INTEL=y CONFIG_CRYPTO_GHASH=y # CONFIG_CRYPTO_MD4 is not set CONFIG_CRYPTO_MD5=y CONFIG_CRYPTO_MICHAEL_MIC=y CONFIG_CRYPTO_RMD128=y CONFIG_CRYPTO_RMD160=y CONFIG_CRYPTO_RMD256=y # CONFIG_CRYPTO_RMD320 is not set CONFIG_CRYPTO_SHA1=y CONFIG_CRYPTO_SHA256=y CONFIG_CRYPTO_SHA512=y CONFIG_CRYPTO_TGR192=y # CONFIG_CRYPTO_WP512 is not set CONFIG_CRYPTO_GHASH_CLMUL_NI_INTEL=y # # Ciphers # CONFIG_CRYPTO_AES=y CONFIG_CRYPTO_AES_X86_64=y CONFIG_CRYPTO_AES_NI_INTEL=y # CONFIG_CRYPTO_ANUBIS is not set # CONFIG_CRYPTO_ARC4 is not set CONFIG_CRYPTO_BLOWFISH=y CONFIG_CRYPTO_CAMELLIA=y CONFIG_CRYPTO_CAST5=y # CONFIG_CRYPTO_CAST6 is not set CONFIG_CRYPTO_DES=y CONFIG_CRYPTO_FCRYPT=y CONFIG_CRYPTO_KHAZAD=y CONFIG_CRYPTO_SALSA20=y # CONFIG_CRYPTO_SALSA20_X86_64 is not set # CONFIG_CRYPTO_SEED is not set CONFIG_CRYPTO_SERPENT=y CONFIG_CRYPTO_TEA=y CONFIG_CRYPTO_TWOFISH=y CONFIG_CRYPTO_TWOFISH_COMMON=y CONFIG_CRYPTO_TWOFISH_X86_64=y # # Compression # CONFIG_CRYPTO_DEFLATE=y CONFIG_CRYPTO_ZLIB=y CONFIG_CRYPTO_LZO=y # # Random Number Generation # CONFIG_CRYPTO_ANSI_CPRNG=y CONFIG_CRYPTO_HW=y # CONFIG_CRYPTO_DEV_PADLOCK is not set # CONFIG_CRYPTO_DEV_HIFN_795X is not set CONFIG_HAVE_KVM=y CONFIG_HAVE_KVM_IRQCHIP=y CONFIG_HAVE_KVM_EVENTFD=y CONFIG_KVM_APIC_ARCHITECTURE=y CONFIG_VIRTUALIZATION=y CONFIG_KVM=y # CONFIG_KVM_INTEL is not set # CONFIG_KVM_AMD is not set CONFIG_VIRTIO=y CONFIG_VIRTIO_RING=y # CONFIG_VIRTIO_PCI is not set CONFIG_VIRTIO_BALLOON=y # CONFIG_BINARY_PRINTF is not set # # Library routines # CONFIG_BITREVERSE=y CONFIG_GENERIC_FIND_FIRST_BIT=y CONFIG_GENERIC_FIND_NEXT_BIT=y CONFIG_GENERIC_FIND_LAST_BIT=y CONFIG_CRC_CCITT=y CONFIG_CRC16=y CONFIG_CRC_T10DIF=y CONFIG_CRC_ITU_T=y CONFIG_CRC32=y CONFIG_CRC7=y CONFIG_LIBCRC32C=y CONFIG_ZLIB_INFLATE=y CONFIG_ZLIB_DEFLATE=y CONFIG_LZO_COMPRESS=y CONFIG_LZO_DECOMPRESS=y CONFIG_DECOMPRESS_GZIP=y CONFIG_DECOMPRESS_LZO=y CONFIG_HAS_IOMEM=y CONFIG_HAS_IOPORT=y CONFIG_HAS_DMA=y CONFIG_CHECK_SIGNATURE=y CONFIG_NLATTR=y CONFIG_LRU_CACHE=y ^ permalink raw reply related [flat|nested] 64+ messages in thread
* Re: hung bootup with "drm/radeon/kms: move radeon KMS on/off switch out of staging." 2010-02-04 7:17 ` hung bootup with " Ingo Molnar @ 2010-02-04 16:48 ` Matthew Garrett 2010-02-04 17:08 ` Ingo Molnar 0 siblings, 1 reply; 64+ messages in thread From: Matthew Garrett @ 2010-02-04 16:48 UTC (permalink / raw) To: Ingo Molnar; +Cc: Dave Airlie, Dave Airlie, torvalds, linux-kernel, dri-devel On Thu, Feb 04, 2010 at 08:17:05AM +0100, Ingo Molnar wrote: > btw., i just found another bug activated via this same commit, a boot hang > after DRM init: The commit in question didn't cause the hang, so reverting it isn't the appropriate fix. -- Matthew Garrett | mjg59@srcf.ucam.org ^ permalink raw reply [flat|nested] 64+ messages in thread
* Re: hung bootup with "drm/radeon/kms: move radeon KMS on/off switch out of staging." 2010-02-04 16:48 ` Matthew Garrett @ 2010-02-04 17:08 ` Ingo Molnar 2010-02-04 17:15 ` Linus Torvalds 2010-02-04 17:36 ` Matthew Garrett 0 siblings, 2 replies; 64+ messages in thread From: Ingo Molnar @ 2010-02-04 17:08 UTC (permalink / raw) To: Matthew Garrett Cc: Dave Airlie, Dave Airlie, torvalds, linux-kernel, dri-devel * Matthew Garrett <mjg59@srcf.ucam.org> wrote: > On Thu, Feb 04, 2010 at 08:17:05AM +0100, Ingo Molnar wrote: > > > btw., i just found another bug activated via this same commit, a boot > > hang after DRM init: > > The commit in question didn't cause the hang, so reverting it isn't the > appropriate fix. Well, once i applied the revert i got no more hangs or crashes today, in lots of bootups. This is fully repeatable - if i re-apply that commit with the config i sent the hang happens again. Ingo ^ permalink raw reply [flat|nested] 64+ messages in thread
* Re: hung bootup with "drm/radeon/kms: move radeon KMS on/off switch out of staging." 2010-02-04 17:08 ` Ingo Molnar @ 2010-02-04 17:15 ` Linus Torvalds 2010-02-04 17:36 ` Ingo Molnar 2010-02-04 17:36 ` Matthew Garrett 1 sibling, 1 reply; 64+ messages in thread From: Linus Torvalds @ 2010-02-04 17:15 UTC (permalink / raw) To: Ingo Molnar Cc: Matthew Garrett, Dave Airlie, Dave Airlie, linux-kernel, dri-devel On Thu, 4 Feb 2010, Ingo Molnar wrote: > > Well, once i applied the revert i got no more hangs or crashes today, in lots > of bootups. This is fully repeatable - if i re-apply that commit with the > config i sent the hang happens again. But that's just because when it was in staging, you'd never enable it, right? Because your config generator always turns off staging stuff. IOW, it's not the code - it's more an interaction with how your test-bed works. Linus ^ permalink raw reply [flat|nested] 64+ messages in thread
* Re: hung bootup with "drm/radeon/kms: move radeon KMS on/off switch out of staging." 2010-02-04 17:15 ` Linus Torvalds @ 2010-02-04 17:36 ` Ingo Molnar 0 siblings, 0 replies; 64+ messages in thread From: Ingo Molnar @ 2010-02-04 17:36 UTC (permalink / raw) To: Linus Torvalds Cc: Matthew Garrett, Dave Airlie, Dave Airlie, linux-kernel, dri-devel * Linus Torvalds <torvalds@linux-foundation.org> wrote: > On Thu, 4 Feb 2010, Ingo Molnar wrote: > > > Well, once i applied the revert i got no more hangs or crashes today, in > > lots of bootups. This is fully repeatable - if i re-apply that commit > > with the config i sent the hang happens again. > > But that's just because when it was in staging, you'd never enable it, > right? Because your config generator always turns off staging stuff. IOW, > it's not the code - it's more an interaction with how your test-bed works. Correct. Staging drivers can crash and there's no guarantee of quick regression fixes (although fixes are generally quick so this isnt a complaint), so i exclude them from boot testing. Anyway, i've essentially moved it back to staging as far as my testing goes, that solves the problem too. Thanks, Ingo ^ permalink raw reply [flat|nested] 64+ messages in thread
* Re: hung bootup with "drm/radeon/kms: move radeon KMS on/off switch out of staging." 2010-02-04 17:08 ` Ingo Molnar 2010-02-04 17:15 ` Linus Torvalds @ 2010-02-04 17:36 ` Matthew Garrett 2010-02-04 17:54 ` Ingo Molnar 1 sibling, 1 reply; 64+ messages in thread From: Matthew Garrett @ 2010-02-04 17:36 UTC (permalink / raw) To: Ingo Molnar; +Cc: Dave Airlie, Dave Airlie, torvalds, linux-kernel, dri-devel On Thu, Feb 04, 2010 at 06:08:26PM +0100, Ingo Molnar wrote: > Well, once i applied the revert i got no more hangs or crashes today, in lots > of bootups. This is fully repeatable - if i re-apply that commit with the > config i sent the hang happens again. If you leave the commit applied, use that config and then enable Radeon KMS under staging, do you get the hang? -- Matthew Garrett | mjg59@srcf.ucam.org ^ permalink raw reply [flat|nested] 64+ messages in thread
* Re: hung bootup with "drm/radeon/kms: move radeon KMS on/off switch out of staging." 2010-02-04 17:36 ` Matthew Garrett @ 2010-02-04 17:54 ` Ingo Molnar 2010-02-04 17:59 ` Matthew Garrett 0 siblings, 1 reply; 64+ messages in thread From: Ingo Molnar @ 2010-02-04 17:54 UTC (permalink / raw) To: Matthew Garrett Cc: Dave Airlie, Dave Airlie, torvalds, linux-kernel, dri-devel * Matthew Garrett <mjg59@srcf.ucam.org> wrote: > On Thu, Feb 04, 2010 at 06:08:26PM +0100, Ingo Molnar wrote: > > > Well, once i applied the revert i got no more hangs or crashes today, in > > lots of bootups. This is fully repeatable - if i re-apply that commit > > with the config i sent the hang happens again. > > If you leave the commit applied, use that config and then enable Radeon KMS > under staging, do you get the hang? drivers/staging/ is generally an exception from all sorts of regression (and ABI compatibility, etc.) policies so i dont auto-test it. (because simpy i cannot do it in a sane way) I do test the other thousands of regular mainline drivers though - more than a hundred of which get activated for real on my various test-systems. So if you move a driver (or a piece of a driver) from drivers/staging to drivers/ in the -rc6 timeframe, and it causes trouble, i see it as a new regression. But you could claim that it's not a regression because 1) technically the code got introduced in drivers/staging/, and staging drivers are not on the regression list 2) the Kconfig value is default-off so it can only harm those who got lured by a new Kconfig value popping up in -rc7 in a well working driver they already have enabled. So the moving of driver functionality from drivers/staging/ to drivers/ is a grey area it appears. Wouldnt it have been better to do this in the next merge window, as all other drivers do? It's not new hardware enablement either, it's feature enablement for an existing driver. Thanks, Ingo ^ permalink raw reply [flat|nested] 64+ messages in thread
* Re: hung bootup with "drm/radeon/kms: move radeon KMS on/off switch out of staging." 2010-02-04 17:54 ` Ingo Molnar @ 2010-02-04 17:59 ` Matthew Garrett 2010-02-04 18:12 ` Ingo Molnar 0 siblings, 1 reply; 64+ messages in thread From: Matthew Garrett @ 2010-02-04 17:59 UTC (permalink / raw) To: Ingo Molnar; +Cc: Dave Airlie, Dave Airlie, torvalds, linux-kernel, dri-devel On Thu, Feb 04, 2010 at 06:54:45PM +0100, Ingo Molnar wrote: > But you could claim that it's not a regression because 1) technically the > code got introduced in drivers/staging/, and staging drivers are not on the > regression list 2) the Kconfig value is default-off so it can only harm those > who got lured by a new Kconfig value popping up in -rc7 in a well working > driver they already have enabled. > > So the moving of driver functionality from drivers/staging/ to drivers/ is a > grey area it appears. Wouldnt it have been better to do this in the next > merge window, as all other drivers do? It's not new hardware enablement > either, it's feature enablement for an existing driver. The reason the option was in staging (as has been mentioned before) was because the ABI wasn't felt to be stable enough. Upstream is now willing to commit to that stability, so now seems as good a time to move it as any. There's no code change and there's no default configuration change, so I really can't see any way that it can be classed as a regression. -- Matthew Garrett | mjg59@srcf.ucam.org ^ permalink raw reply [flat|nested] 64+ messages in thread
* Re: hung bootup with "drm/radeon/kms: move radeon KMS on/off switch out of staging." 2010-02-04 17:59 ` Matthew Garrett @ 2010-02-04 18:12 ` Ingo Molnar 2010-02-04 18:15 ` Matthew Garrett 2010-02-04 18:30 ` Alex Deucher 0 siblings, 2 replies; 64+ messages in thread From: Ingo Molnar @ 2010-02-04 18:12 UTC (permalink / raw) To: Matthew Garrett Cc: Dave Airlie, Dave Airlie, torvalds, linux-kernel, dri-devel * Matthew Garrett <mjg59@srcf.ucam.org> wrote: > On Thu, Feb 04, 2010 at 06:54:45PM +0100, Ingo Molnar wrote: > > > But you could claim that it's not a regression because 1) technically the > > code got introduced in drivers/staging/, and staging drivers are not on > > the regression list 2) the Kconfig value is default-off so it can only > > harm those who got lured by a new Kconfig value popping up in -rc7 in a > > well working driver they already have enabled. > > > > So the moving of driver functionality from drivers/staging/ to drivers/ > > is a grey area it appears. Wouldnt it have been better to do this in the > > next merge window, as all other drivers do? It's not new hardware > > enablement either, it's feature enablement for an existing driver. > > The reason the option was in staging (as has been mentioned before) was > because the ABI wasn't felt to be stable enough. Upstream is now willing to > commit to that stability, so now seems as good a time to move it as any. > There's no code change and there's no default configuration change, so I > really can't see any way that it can be classed as a regression. But that argument in essence renders the regression policy meaningless for such code: just about any new driver feature under the sun could be shaped as a Kconfig option, introduced via a drivers/staging Kconfig entry, and then activated via a twoliner commit in a later -rc. IMHO the point of tracking regressions is to reduce the bugginess of the kernel and thus to help users, not to give ground for legalistic arguments. There _are_ common-sense exceptions from the regression rules, such as the introduction of a new piece of hardware that was previously unsupported (hence there's no expectation of stability) - but the tweaking of an existing, widely used driver (even if the new opion is default-off) hardly seems to qualify for that. I dont mind making useful exceptions from rules, as long as we are honest about having done it. Anyway, i've bisected it back to that Kconfig change and i am able to work the crashes around by reverting that, so my immediate problems are solved. Thanks, Ingo ^ permalink raw reply [flat|nested] 64+ messages in thread
* Re: hung bootup with "drm/radeon/kms: move radeon KMS on/off switch out of staging." 2010-02-04 18:12 ` Ingo Molnar @ 2010-02-04 18:15 ` Matthew Garrett 2010-02-04 18:56 ` Ingo Molnar 2010-02-04 18:30 ` Alex Deucher 1 sibling, 1 reply; 64+ messages in thread From: Matthew Garrett @ 2010-02-04 18:15 UTC (permalink / raw) To: Ingo Molnar; +Cc: Dave Airlie, Dave Airlie, torvalds, linux-kernel, dri-devel On Thu, Feb 04, 2010 at 07:12:18PM +0100, Ingo Molnar wrote: > > * Matthew Garrett <mjg59@srcf.ucam.org> wrote: > > The reason the option was in staging (as has been mentioned before) was > > because the ABI wasn't felt to be stable enough. Upstream is now willing to > > commit to that stability, so now seems as good a time to move it as any. > > There's no code change and there's no default configuration change, so I > > really can't see any way that it can be classed as a regression. > > But that argument in essence renders the regression policy meaningless for > such code: just about any new driver feature under the sun could be shaped as > a Kconfig option, introduced via a drivers/staging Kconfig entry, and then > activated via a twoliner commit in a later -rc. Before this patch, CONFIG_DRM_RADEON_KMS=y would crash your system on boot. After this patch, CONFIG_DRM_RADEON_KMS=y still crashes your system. There's certainly the argument that this means it's premature to make that change, but given that the same configuration behaves in the same way, it's clearly not a regression. -- Matthew Garrett | mjg59@srcf.ucam.org ^ permalink raw reply [flat|nested] 64+ messages in thread
* Re: hung bootup with "drm/radeon/kms: move radeon KMS on/off switch out of staging." 2010-02-04 18:15 ` Matthew Garrett @ 2010-02-04 18:56 ` Ingo Molnar 2010-02-04 19:00 ` Matthew Garrett 0 siblings, 1 reply; 64+ messages in thread From: Ingo Molnar @ 2010-02-04 18:56 UTC (permalink / raw) To: Matthew Garrett Cc: Dave Airlie, Dave Airlie, torvalds, linux-kernel, dri-devel * Matthew Garrett <mjg59@srcf.ucam.org> wrote: > On Thu, Feb 04, 2010 at 07:12:18PM +0100, Ingo Molnar wrote: > > > > * Matthew Garrett <mjg59@srcf.ucam.org> wrote: > > > The reason the option was in staging (as has been mentioned before) was > > > because the ABI wasn't felt to be stable enough. Upstream is now willing to > > > commit to that stability, so now seems as good a time to move it as any. > > > There's no code change and there's no default configuration change, so I > > > really can't see any way that it can be classed as a regression. > > > > But that argument in essence renders the regression policy meaningless for > > such code: just about any new driver feature under the sun could be shaped as > > a Kconfig option, introduced via a drivers/staging Kconfig entry, and then > > activated via a twoliner commit in a later -rc. > > Before this patch, CONFIG_DRM_RADEON_KMS=y would crash your system on boot. > [...] Hm, in what way does that observation address the concerns i've outlined? Before this patch i could enable CONFIG_DRM_RADEON_KMS=y only if i enabled CONFIG_STAGING, which i dont, because doing so would taint my kernel with TAINT_CRAP, and the kernel log would contain: "%s: module is from the staging directory, the quality is unknown, you have been warned.", > [...] After this patch, CONFIG_DRM_RADEON_KMS=y still crashes your system. > [...] After this patch i suddenly get a new body of code with a default-off option that would only show up before if i had CONFIG_STAGING=y enabled before. Do you see my argument why any user who is hit by this would categorize this as a kernel regression in an existing driver? Moving driver functionality from drivers/staging/ to drivers/ might be justified, it might be pragmatic, but you dont try to justify it and you dont try to outline the pragmatic reasons - from all i can see you seem to argue that this is all perfectly fine in late -rc's, which has me worried somewhat. [ And if that is really fine i'd like to hear Linus's amen on that as well, because i'm sure others would like to use that mechanism too to enable new functionality in late -rc's. ] Thanks, Ingo ^ permalink raw reply [flat|nested] 64+ messages in thread
* Re: hung bootup with "drm/radeon/kms: move radeon KMS on/off switch out of staging." 2010-02-04 18:56 ` Ingo Molnar @ 2010-02-04 19:00 ` Matthew Garrett 2010-02-04 19:19 ` Ingo Molnar 0 siblings, 1 reply; 64+ messages in thread From: Matthew Garrett @ 2010-02-04 19:00 UTC (permalink / raw) To: Ingo Molnar; +Cc: Dave Airlie, Dave Airlie, torvalds, linux-kernel, dri-devel On Thu, Feb 04, 2010 at 07:56:03PM +0100, Ingo Molnar wrote: > Do you see my argument why any user who is hit by this would categorize this > as a kernel regression in an existing driver? No. If a user changes configuration and gets a hang, that's a bug but not a regression. -- Matthew Garrett | mjg59@srcf.ucam.org ^ permalink raw reply [flat|nested] 64+ messages in thread
* Re: hung bootup with "drm/radeon/kms: move radeon KMS on/off switch out of staging." 2010-02-04 19:00 ` Matthew Garrett @ 2010-02-04 19:19 ` Ingo Molnar 2010-02-04 19:28 ` Jerome Glisse 0 siblings, 1 reply; 64+ messages in thread From: Ingo Molnar @ 2010-02-04 19:19 UTC (permalink / raw) To: Matthew Garrett Cc: Dave Airlie, Dave Airlie, torvalds, linux-kernel, dri-devel * Matthew Garrett <mjg59@srcf.ucam.org> wrote: > On Thu, Feb 04, 2010 at 07:56:03PM +0100, Ingo Molnar wrote: > > > Do you see my argument why any user who is hit by this would categorize > > this as a kernel regression in an existing driver? > > No. If a user changes configuration and gets a hang, that's a bug but not a > regression. Only if it's some brand-new driver or a brand-new kernel feature for which no-one can have any prior expectations of stability. Especially if it's added in the merge window when many new drivers are added. But isnt it a regression to a user if it's shipped in -rc7 appearing as a new sub-option of an existing driver? I'd wager that most main-street Linux users would consider that a regression. As i see it is that you are trying to have it both ways: claim it's a new driver when it comes to handling regressions, but also try to have the benefits (and adoption flux) of an old driver when it comes to facing it to users. Some info about that in the Kconfig would be helpful IMO - so that people are less surprised if it happens to break while the radeon driver worked fine for them before. Thanks, Ingo ^ permalink raw reply [flat|nested] 64+ messages in thread
* Re: hung bootup with "drm/radeon/kms: move radeon KMS on/off switch out of staging." 2010-02-04 19:19 ` Ingo Molnar @ 2010-02-04 19:28 ` Jerome Glisse 2010-02-04 20:34 ` Ingo Molnar 0 siblings, 1 reply; 64+ messages in thread From: Jerome Glisse @ 2010-02-04 19:28 UTC (permalink / raw) To: Ingo Molnar Cc: Matthew Garrett, Dave Airlie, torvalds, linux-kernel, dri-devel On Thu, Feb 04, 2010 at 08:19:35PM +0100, Ingo Molnar wrote: > > * Matthew Garrett <mjg59@srcf.ucam.org> wrote: > > > On Thu, Feb 04, 2010 at 07:56:03PM +0100, Ingo Molnar wrote: > > > > > Do you see my argument why any user who is hit by this would categorize > > > this as a kernel regression in an existing driver? > > > > No. If a user changes configuration and gets a hang, that's a bug but not a > > regression. > > Only if it's some brand-new driver or a brand-new kernel feature for which > no-one can have any prior expectations of stability. Especially if it's added > in the merge window when many new drivers are added. > > But isnt it a regression to a user if it's shipped in -rc7 appearing as a new > sub-option of an existing driver? > > I'd wager that most main-street Linux users would consider that a regression. > > As i see it is that you are trying to have it both ways: claim it's a new > driver when it comes to handling regressions, but also try to have the > benefits (and adoption flux) of an old driver when it comes to facing it to > users. We have been treating KMS regression as regression, i fixed numerous regressions since it was first merged as an staging driver, and i keep doing so, i try to be as much reactive as i can. I am sorry you have a bad experience about it. I just wanted to add that we planed to move KMS out of staging in 2.6.33 long time ago and yes maybe we should have done it earlier, but no matter when we do the change you will still face this bug until we fix it. So on fixing the issue front, one question do you also enable radeonfb ? if so then its likely the root issue of this bug, i think kconfig should forbid having both radeon kms + radeonfb but i am not sure how allyesconfig behave in respect of such constraint. > Some info about that in the Kconfig would be helpful IMO - so that people are > less surprised if it happens to break while the radeon driver worked fine for > them before. > > Thanks, > > Ingo I think make menuconfig has a more explicit message iirc. Cheers, Jerome ^ permalink raw reply [flat|nested] 64+ messages in thread
* Re: hung bootup with "drm/radeon/kms: move radeon KMS on/off switch out of staging." 2010-02-04 19:28 ` Jerome Glisse @ 2010-02-04 20:34 ` Ingo Molnar 0 siblings, 0 replies; 64+ messages in thread From: Ingo Molnar @ 2010-02-04 20:34 UTC (permalink / raw) To: Jerome Glisse Cc: Matthew Garrett, Dave Airlie, torvalds, linux-kernel, dri-devel * Jerome Glisse <glisse@freedesktop.org> wrote: > On Thu, Feb 04, 2010 at 08:19:35PM +0100, Ingo Molnar wrote: > > > > * Matthew Garrett <mjg59@srcf.ucam.org> wrote: > > > > > On Thu, Feb 04, 2010 at 07:56:03PM +0100, Ingo Molnar wrote: > > > > > > > Do you see my argument why any user who is hit by this would categorize > > > > this as a kernel regression in an existing driver? > > > > > > No. If a user changes configuration and gets a hang, that's a bug but not a > > > regression. > > > > Only if it's some brand-new driver or a brand-new kernel feature for which > > no-one can have any prior expectations of stability. Especially if it's added > > in the merge window when many new drivers are added. > > > > But isnt it a regression to a user if it's shipped in -rc7 appearing as a new > > sub-option of an existing driver? > > > > I'd wager that most main-street Linux users would consider that a regression. > > > > As i see it is that you are trying to have it both ways: claim it's a new > > driver when it comes to handling regressions, but also try to have the > > benefits (and adoption flux) of an old driver when it comes to facing it to > > users. > > We have been treating KMS regression as regression, [...] Great! > [...] i fixed numerous regressions since it was first merged as an staging > driver, and i keep doing so, i try to be as much reactive as i can. I am > sorry you have a bad experience about it. I just wanted to add that we > planed to move KMS out of staging in 2.6.33 long time ago and yes maybe we > should have done it earlier, but no matter when we do the change you will > still face this bug until we fix it. I dont think you'll ever see my complain about a bug. I dont, and i introduce far too many of them to have any moral basis for complaint in any case ;-) I only questioned the validity of this initial reaction by Dave Arlie: | Its not enabled by default so reverting this doesn't make much sense. | | We can just treat this as a normal driver bugreport. > So on fixing the issue front, one question do you also enable radeonfb ? if > so then its likely the root issue of this bug, i think kconfig should > forbid having both radeon kms + radeonfb but i am not sure how allyesconfig > behave in respect of such constraint. Please see the bugreprt i made in this thread, under the following subject: hung bootup with "drm/radeon/kms: move radeon KMS on/off switch out of staging." It has all that info and more. (i've bounced it to you privately as well) Ingo ^ permalink raw reply [flat|nested] 64+ messages in thread
* Re: hung bootup with "drm/radeon/kms: move radeon KMS on/off switch out of staging." 2010-02-04 18:12 ` Ingo Molnar 2010-02-04 18:15 ` Matthew Garrett @ 2010-02-04 18:30 ` Alex Deucher 2010-02-04 19:06 ` Ingo Molnar 1 sibling, 1 reply; 64+ messages in thread From: Alex Deucher @ 2010-02-04 18:30 UTC (permalink / raw) To: Ingo Molnar Cc: Matthew Garrett, Dave Airlie, torvalds, linux-kernel, dri-devel On Thu, Feb 4, 2010 at 1:12 PM, Ingo Molnar <mingo@elte.hu> wrote: > > * Matthew Garrett <mjg59@srcf.ucam.org> wrote: > >> On Thu, Feb 04, 2010 at 06:54:45PM +0100, Ingo Molnar wrote: >> >> > But you could claim that it's not a regression because 1) technically the >> > code got introduced in drivers/staging/, and staging drivers are not on >> > the regression list 2) the Kconfig value is default-off so it can only >> > harm those who got lured by a new Kconfig value popping up in -rc7 in a >> > well working driver they already have enabled. >> > >> > So the moving of driver functionality from drivers/staging/ to drivers/ >> > is a grey area it appears. Wouldnt it have been better to do this in the >> > next merge window, as all other drivers do? It's not new hardware >> > enablement either, it's feature enablement for an existing driver. >> >> The reason the option was in staging (as has been mentioned before) was >> because the ABI wasn't felt to be stable enough. Upstream is now willing to >> commit to that stability, so now seems as good a time to move it as any. >> There's no code change and there's no default configuration change, so I >> really can't see any way that it can be classed as a regression. > > But that argument in essence renders the regression policy meaningless for > such code: just about any new driver feature under the sun could be shaped as > a Kconfig option, introduced via a drivers/staging Kconfig entry, and then > activated via a twoliner commit in a later -rc. > > IMHO the point of tracking regressions is to reduce the bugginess of the > kernel and thus to help users, not to give ground for legalistic arguments. > > There _are_ common-sense exceptions from the regression rules, such as the > introduction of a new piece of hardware that was previously unsupported > (hence there's no expectation of stability) - but the tweaking of an > existing, widely used driver (even if the new opion is default-off) hardly > seems to qualify for that. > This is a completely new driver. It's only part of the existing drm for compatibility reasons. It requires an entirely different graphics stack above it and works very differently from the old drm stack. Alex > I dont mind making useful exceptions from rules, as long as we are honest > about having done it. > > Anyway, i've bisected it back to that Kconfig change and i am able to work > the crashes around by reverting that, so my immediate problems are solved. > > Thanks, > > Ingo > > ------------------------------------------------------------------------------ > The Planet: dedicated and managed hosting, cloud storage, colocation > Stay online with enterprise data centers and the best network in the business > Choose flexible plans and management services without long-term contracts > Personal 24x7 support from experience hosting pros just a phone call away. > http://p.sf.net/sfu/theplanet-com > -- > _______________________________________________ > Dri-devel mailing list > Dri-devel@lists.sourceforge.net > https://lists.sourceforge.net/lists/listinfo/dri-devel > ^ permalink raw reply [flat|nested] 64+ messages in thread
* Re: hung bootup with "drm/radeon/kms: move radeon KMS on/off switch out of staging." 2010-02-04 18:30 ` Alex Deucher @ 2010-02-04 19:06 ` Ingo Molnar 2010-02-04 19:18 ` Alex Deucher 0 siblings, 1 reply; 64+ messages in thread From: Ingo Molnar @ 2010-02-04 19:06 UTC (permalink / raw) To: Alex Deucher Cc: Matthew Garrett, Dave Airlie, torvalds, linux-kernel, dri-devel * Alex Deucher <alexdeucher@gmail.com> wrote: > On Thu, Feb 4, 2010 at 1:12 PM, Ingo Molnar <mingo@elte.hu> wrote: > > > > * Matthew Garrett <mjg59@srcf.ucam.org> wrote: > > > >> On Thu, Feb 04, 2010 at 06:54:45PM +0100, Ingo Molnar wrote: > >> > >> > But you could claim that it's not a regression because 1) technically the > >> > code got introduced in drivers/staging/, and staging drivers are not on > >> > the regression list 2) the Kconfig value is default-off so it can only > >> > harm those who got lured by a new Kconfig value popping up in -rc7 in a > >> > well working driver they already have enabled. > >> > > >> > So the moving of driver functionality from drivers/staging/ to drivers/ > >> > is a grey area it appears. Wouldnt it have been better to do this in the > >> > next merge window, as all other drivers do? It's not new hardware > >> > enablement either, it's feature enablement for an existing driver. > >> > >> The reason the option was in staging (as has been mentioned before) was > >> because the ABI wasn't felt to be stable enough. Upstream is now willing to > >> commit to that stability, so now seems as good a time to move it as any. > >> There's no code change and there's no default configuration change, so I > >> really can't see any way that it can be classed as a regression. > > > > But that argument in essence renders the regression policy meaningless for > > such code: just about any new driver feature under the sun could be shaped as > > a Kconfig option, introduced via a drivers/staging Kconfig entry, and then > > activated via a twoliner commit in a later -rc. > > > > IMHO the point of tracking regressions is to reduce the bugginess of the > > kernel and thus to help users, not to give ground for legalistic arguments. > > > > There _are_ common-sense exceptions from the regression rules, such as the > > introduction of a new piece of hardware that was previously unsupported > > (hence there's no expectation of stability) - but the tweaking of an > > existing, widely used driver (even if the new opion is default-off) hardly > > seems to qualify for that. > > > > This is a completely new driver. It's only part of the existing drm for > compatibility reasons. It requires an entirely different graphics stack > above it and works very differently from the old drm stack. Will the user know? IMHO what matters in the end is user expectation. Lets walk through what a current kernel tester of the drm/radeon driver sees when he types 'make oldconfig' after installing the (to-be-released) .33-rc7 kernel. Firstly, the user with a brand-new distro already has this enabled: CONFIG_DRM_RADEON=y and knows the driver, and it performs adequately. Then in -rc7 he gets a new option: ATI Radeon (DRM_RADEON) [Y/n/?] y Enable modesetting on radeon by default (DRM_RADEON_KMS) [N/y/?] (NEW) The user might easily go: "Hey this is a driver i already have, and there's a new sub-option for this well-working driver. Sure, enable it, these kernel folks know what they are doing and i rarely see any crashes past -rc2 kernels." Does this new option tell him what you just told me, that: > This is a completely new driver. It's only part of the existing drm for > compatibility reasons. It requires an entirely different graphics stack > above it and works very differently from the old drm stack. ? it doesnt. Even if he types '?', it tells: CONFIG_DRM_RADEON_KMS: Choose this option if you want kernel modesetting enabled by default, and you have a new enough userspace to support this. Running old userspaces with this enabled will cause pain. The user will likely go "cool I have a fresh distro with recent Xorg, lets try it". If this is really a brand new driver essentially fresh out of drivers/staging/ in -rc7 you should be abundantly clear about that in the Kconfig help text - that it's a brand new driver and that it might crash on bootup, etc. Thanks, Ingo ^ permalink raw reply [flat|nested] 64+ messages in thread
* Re: hung bootup with "drm/radeon/kms: move radeon KMS on/off switch out of staging." 2010-02-04 19:06 ` Ingo Molnar @ 2010-02-04 19:18 ` Alex Deucher 2010-02-04 19:24 ` Linus Torvalds 2010-02-04 19:32 ` Ingo Molnar 0 siblings, 2 replies; 64+ messages in thread From: Alex Deucher @ 2010-02-04 19:18 UTC (permalink / raw) To: Ingo Molnar Cc: Matthew Garrett, Dave Airlie, torvalds, linux-kernel, dri-devel On Thu, Feb 4, 2010 at 2:06 PM, Ingo Molnar <mingo@elte.hu> wrote: > > * Alex Deucher <alexdeucher@gmail.com> wrote: > >> On Thu, Feb 4, 2010 at 1:12 PM, Ingo Molnar <mingo@elte.hu> wrote: >> > >> > * Matthew Garrett <mjg59@srcf.ucam.org> wrote: >> > >> >> On Thu, Feb 04, 2010 at 06:54:45PM +0100, Ingo Molnar wrote: >> >> >> >> > But you could claim that it's not a regression because 1) technically the >> >> > code got introduced in drivers/staging/, and staging drivers are not on >> >> > the regression list 2) the Kconfig value is default-off so it can only >> >> > harm those who got lured by a new Kconfig value popping up in -rc7 in a >> >> > well working driver they already have enabled. >> >> > >> >> > So the moving of driver functionality from drivers/staging/ to drivers/ >> >> > is a grey area it appears. Wouldnt it have been better to do this in the >> >> > next merge window, as all other drivers do? It's not new hardware >> >> > enablement either, it's feature enablement for an existing driver. >> >> >> >> The reason the option was in staging (as has been mentioned before) was >> >> because the ABI wasn't felt to be stable enough. Upstream is now willing to >> >> commit to that stability, so now seems as good a time to move it as any. >> >> There's no code change and there's no default configuration change, so I >> >> really can't see any way that it can be classed as a regression. >> > >> > But that argument in essence renders the regression policy meaningless for >> > such code: just about any new driver feature under the sun could be shaped as >> > a Kconfig option, introduced via a drivers/staging Kconfig entry, and then >> > activated via a twoliner commit in a later -rc. >> > >> > IMHO the point of tracking regressions is to reduce the bugginess of the >> > kernel and thus to help users, not to give ground for legalistic arguments. >> > >> > There _are_ common-sense exceptions from the regression rules, such as the >> > introduction of a new piece of hardware that was previously unsupported >> > (hence there's no expectation of stability) - but the tweaking of an >> > existing, widely used driver (even if the new opion is default-off) hardly >> > seems to qualify for that. >> > >> >> This is a completely new driver. It's only part of the existing drm for >> compatibility reasons. It requires an entirely different graphics stack >> above it and works very differently from the old drm stack. > > Will the user know? IMHO what matters in the end is user expectation. > > Lets walk through what a current kernel tester of the drm/radeon driver sees > when he types 'make oldconfig' after installing the (to-be-released) .33-rc7 > kernel. Firstly, the user with a brand-new distro already has this enabled: > > CONFIG_DRM_RADEON=y > > and knows the driver, and it performs adequately. Then in -rc7 he gets a new > option: > > ATI Radeon (DRM_RADEON) [Y/n/?] y > Enable modesetting on radeon by default (DRM_RADEON_KMS) [N/y/?] (NEW) > > The user might easily go: "Hey this is a driver i already have, and there's a > new sub-option for this well-working driver. Sure, enable it, these kernel > folks know what they are doing and i rarely see any crashes past -rc2 > kernels." > > Does this new option tell him what you just told me, that: > > > This is a completely new driver. It's only part of the existing drm for > > compatibility reasons. It requires an entirely different graphics stack > > above it and works very differently from the old drm stack. > > ? > > it doesnt. Even if he types '?', it tells: > > CONFIG_DRM_RADEON_KMS: > > Choose this option if you want kernel modesetting enabled by default, > and you have a new enough userspace to support this. Running old > userspaces with this enabled will cause pain. > > The user will likely go "cool I have a fresh distro with recent Xorg, lets > try it". > And if it crashes, he'll report a bug and we'll fix it. Alex > If this is really a brand new driver essentially fresh out of > drivers/staging/ in -rc7 you should be abundantly clear about that in the > Kconfig help text - that it's a brand new driver and that it might crash on > bootup, etc. > > Thanks, > > Ingo > > ^ permalink raw reply [flat|nested] 64+ messages in thread
* Re: hung bootup with "drm/radeon/kms: move radeon KMS on/off switch out of staging." 2010-02-04 19:18 ` Alex Deucher @ 2010-02-04 19:24 ` Linus Torvalds 2010-02-04 19:34 ` Dave Airlie 2010-02-04 19:32 ` Ingo Molnar 1 sibling, 1 reply; 64+ messages in thread From: Linus Torvalds @ 2010-02-04 19:24 UTC (permalink / raw) To: Alex Deucher Cc: Ingo Molnar, Matthew Garrett, Dave Airlie, linux-kernel, dri-devel On Thu, 4 Feb 2010, Alex Deucher wrote: > > And if it crashes, he'll report a bug and we'll fix it. Ok, you have a bug-report. See earlier in the thread: > btw., i just found another bug activated via this same commit, a boot hang > after DRM init: > > [ 9.858352] [drm] Connector 1: > [ 9.861417] [drm] DVI-I > [ 9.864031] [drm] HPD1 > [ 9.866562] [drm] DDC: 0x64 0x64 0x64 0x64 0x64 0x64 0x64 0x64 > [ 9.872579] [drm] Encoders: > [ 9.875540] [drm] CRT2: INTERNAL_DAC2 > [ 9.879541] [drm] DFP1: INTERNAL_TMDS1 > [ 9.883646] [drm] Connector 2: > [ 9.886695] [drm] S-video > [ 9.889483] [drm] Encoders: > [ 9.892463] [drm] TV1: INTERNAL_DAC2 > [ 9.896392] i2c i2c-0: master_xfer[0] W, addr=0x50, len=1 > [ 9.901796] i2c i2c-0: master_xfer[1] R, addr=0x50, len=128 > [ 9.909246] i2c i2c-0: NAK from device addr 0x50 msg #0 > [ 9.914564] i2c i2c-1: master_xfer[0] W, addr=0x50, len=1 > [ 9.919957] i2c i2c-1: master_xfer[1] R, addr=0x50, len=128 > [ 9.927413] i2c i2c-1: NAK from device addr 0x50 msg #0 So can we get it fixed, please? Linus ^ permalink raw reply [flat|nested] 64+ messages in thread
* Re: hung bootup with "drm/radeon/kms: move radeon KMS on/off switch out of staging." 2010-02-04 19:24 ` Linus Torvalds @ 2010-02-04 19:34 ` Dave Airlie 2010-02-04 20:27 ` Ingo Molnar 0 siblings, 1 reply; 64+ messages in thread From: Dave Airlie @ 2010-02-04 19:34 UTC (permalink / raw) To: Linus Torvalds, Ingo Molnar Cc: Alex Deucher, Dave Airlie, Matthew Garrett, linux-kernel, dri-devel On Fri, Feb 5, 2010 at 5:24 AM, Linus Torvalds <torvalds@linux-foundation.org> wrote: > > > On Thu, 4 Feb 2010, Alex Deucher wrote: >> >> And if it crashes, he'll report a bug and we'll fix it. > > Ok, you have a bug-report. See earlier in the thread: > >> btw., i just found another bug activated via this same commit, a boot hang >> after DRM init: >> >> [ 9.858352] [drm] Connector 1: >> [ 9.861417] [drm] DVI-I >> [ 9.864031] [drm] HPD1 >> [ 9.866562] [drm] DDC: 0x64 0x64 0x64 0x64 0x64 0x64 0x64 0x64 >> [ 9.872579] [drm] Encoders: >> [ 9.875540] [drm] CRT2: INTERNAL_DAC2 >> [ 9.879541] [drm] DFP1: INTERNAL_TMDS1 >> [ 9.883646] [drm] Connector 2: >> [ 9.886695] [drm] S-video >> [ 9.889483] [drm] Encoders: >> [ 9.892463] [drm] TV1: INTERNAL_DAC2 >> [ 9.896392] i2c i2c-0: master_xfer[0] W, addr=0x50, len=1 >> [ 9.901796] i2c i2c-0: master_xfer[1] R, addr=0x50, len=128 >> [ 9.909246] i2c i2c-0: NAK from device addr 0x50 msg #0 >> [ 9.914564] i2c i2c-1: master_xfer[0] W, addr=0x50, len=1 >> [ 9.919957] i2c i2c-1: master_xfer[1] R, addr=0x50, len=128 >> [ 9.927413] i2c i2c-1: NAK from device addr 0x50 msg #0 > > So can we get it fixed, please? Ingo, got the full dmesg? and lspci -vvnn the bug reporting needs work, this snippet hasn't the useful info in it. Dave. > > Linus > > ------------------------------------------------------------------------------ > The Planet: dedicated and managed hosting, cloud storage, colocation > Stay online with enterprise data centers and the best network in the business > Choose flexible plans and management services without long-term contracts > Personal 24x7 support from experience hosting pros just a phone call away. > http://p.sf.net/sfu/theplanet-com > -- > _______________________________________________ > Dri-devel mailing list > Dri-devel@lists.sourceforge.net > https://lists.sourceforge.net/lists/listinfo/dri-devel > ^ permalink raw reply [flat|nested] 64+ messages in thread
* Re: hung bootup with "drm/radeon/kms: move radeon KMS on/off switch out of staging." 2010-02-04 19:34 ` Dave Airlie @ 2010-02-04 20:27 ` Ingo Molnar 0 siblings, 0 replies; 64+ messages in thread From: Ingo Molnar @ 2010-02-04 20:27 UTC (permalink / raw) To: Dave Airlie Cc: Linus Torvalds, Alex Deucher, Dave Airlie, Matthew Garrett, linux-kernel, dri-devel * Dave Airlie <airlied@gmail.com> wrote: > On Fri, Feb 5, 2010 at 5:24 AM, Linus Torvalds > <torvalds@linux-foundation.org> wrote: > > > > > > On Thu, 4 Feb 2010, Alex Deucher wrote: > >> > >> And if it crashes, he'll report a bug and we'll fix it. > > > > Ok, you have a bug-report. See earlier in the thread: > > > >> btw., i just found another bug activated via this same commit, a boot hang > >> after DRM init: > >> > >> [ ? ?9.858352] [drm] Connector 1: > >> [ ? ?9.861417] [drm] ? DVI-I > >> [ ? ?9.864031] [drm] ? HPD1 > >> [ ? ?9.866562] [drm] ? DDC: 0x64 0x64 0x64 0x64 0x64 0x64 0x64 0x64 > >> [ ? ?9.872579] [drm] ? Encoders: > >> [ ? ?9.875540] [drm] ? ? CRT2: INTERNAL_DAC2 > >> [ ? ?9.879541] [drm] ? ? DFP1: INTERNAL_TMDS1 > >> [ ? ?9.883646] [drm] Connector 2: > >> [ ? ?9.886695] [drm] ? S-video > >> [ ? ?9.889483] [drm] ? Encoders: > >> [ ? ?9.892463] [drm] ? ? TV1: INTERNAL_DAC2 > >> [ ? ?9.896392] i2c i2c-0: master_xfer[0] W, addr=0x50, len=1 > >> [ ? ?9.901796] i2c i2c-0: master_xfer[1] R, addr=0x50, len=128 > >> [ ? ?9.909246] i2c i2c-0: NAK from device addr 0x50 msg #0 > >> [ ? ?9.914564] i2c i2c-1: master_xfer[0] W, addr=0x50, len=1 > >> [ ? ?9.919957] i2c i2c-1: master_xfer[1] R, addr=0x50, len=128 > >> [ ? ?9.927413] i2c i2c-1: NAK from device addr 0x50 msg #0 > > > > So can we get it fixed, please? > > Ingo, > > got the full dmesg? Yes, see my report in this thread. Full bootlog up to the hang (serial captured) was attached, alongside the kernel config. > and lspci -vvnn Attached below. > the bug reporting needs work, this snippet hasn't the useful info in it. Linus quoted only the relevant portion of my full bugreport. All the other info is in the full mail he quoted. Ingo ------------------> 00:00.0 Memory controller [0580]: nVidia Corporation CK804 Memory Controller [10de:005e] (rev a3) Subsystem: ASUSTeK Computer Inc. A8N-E Mainboard [1043:815a] Control: I/O- Mem+ BusMaster+ SpecCycle- MemWINV- VGASnoop- ParErr- Stepping- SERR- FastB2B- Status: Cap+ 66MHz+ UDF- FastB2B+ ParErr- DEVSEL=fast >TAbort- <TAbort- <MAbort- >SERR- <PERR- Latency: 0 Capabilities: <access denied> 00:01.0 ISA bridge [0601]: nVidia Corporation CK804 ISA Bridge [10de:0050] (rev a3) Subsystem: ASUSTeK Computer Inc. K8N4-E or A8N-E Mainboard [1043:815a] Control: I/O+ Mem+ BusMaster+ SpecCycle+ MemWINV- VGASnoop- ParErr- Stepping- SERR- FastB2B- Status: Cap- 66MHz+ UDF- FastB2B+ ParErr- DEVSEL=fast >TAbort- <TAbort- <MAbort- >SERR- <PERR- Latency: 0 00:01.1 SMBus [0c05]: nVidia Corporation CK804 SMBus [10de:0052] (rev a2) Subsystem: ASUSTeK Computer Inc. K8N4-E or A8N-E Mainboard [1043:815a] Control: I/O+ Mem- BusMaster- SpecCycle- MemWINV- VGASnoop- ParErr- Stepping- SERR- FastB2B- Status: Cap+ 66MHz+ UDF- FastB2B+ ParErr- DEVSEL=fast >TAbort- <TAbort- <MAbort- >SERR- <PERR- Interrupt: pin A routed to IRQ 0 Region 0: I/O ports at dc00 [size=32] Region 4: I/O ports at 4c00 [size=64] Region 5: I/O ports at 4c40 [size=64] Capabilities: <access denied> 00:02.0 USB Controller [0c03]: nVidia Corporation CK804 USB Controller [10de:005a] (rev a2) (prog-if 10 [OHCI]) Subsystem: ASUSTeK Computer Inc. K8N4-E or A8N-E Mainboard [1043:815a] Control: I/O+ Mem+ BusMaster- SpecCycle- MemWINV- VGASnoop- ParErr- Stepping- SERR- FastB2B- Status: Cap+ 66MHz+ UDF- FastB2B+ ParErr- DEVSEL=fast >TAbort- <TAbort- <MAbort- >SERR- <PERR- Interrupt: pin A routed to IRQ 0 Region 0: Memory at da102000 (32-bit, non-prefetchable) [size=4K] Capabilities: <access denied> 00:02.1 USB Controller [0c03]: nVidia Corporation CK804 USB Controller [10de:005b] (rev a3) (prog-if 20 [EHCI]) Subsystem: ASUSTeK Computer Inc. K8N4-E or A8N-E Mainboard [1043:815a] Control: I/O- Mem+ BusMaster- SpecCycle- MemWINV- VGASnoop- ParErr- Stepping- SERR- FastB2B- Status: Cap+ 66MHz+ UDF- FastB2B+ ParErr- DEVSEL=fast >TAbort- <TAbort- <MAbort- >SERR- <PERR- Interrupt: pin B routed to IRQ 0 Region 0: Memory at feb00000 (32-bit, non-prefetchable) [size=256] Capabilities: <access denied> 00:04.0 Multimedia audio controller [0401]: nVidia Corporation CK804 AC'97 Audio Controller [10de:0059] (rev a2) Subsystem: ASUSTeK Computer Inc. K8N4-E or A8N-E Mainboard [1043:812a] Control: I/O+ Mem+ BusMaster+ SpecCycle- MemWINV- VGASnoop- ParErr- Stepping- SERR- FastB2B- Status: Cap+ 66MHz+ UDF- FastB2B+ ParErr- DEVSEL=fast >TAbort- <TAbort- <MAbort- >SERR- <PERR- Latency: 0 (500ns min, 1250ns max) Interrupt: pin A routed to IRQ 3 Region 0: I/O ports at d400 [size=256] Region 1: I/O ports at d800 [size=256] Region 2: Memory at da101000 (32-bit, non-prefetchable) [size=4K] Capabilities: <access denied> 00:06.0 IDE interface [0101]: nVidia Corporation CK804 IDE [10de:0053] (rev f2) (prog-if 8a [Master SecP PriP]) Subsystem: ASUSTeK Computer Inc. K8N4-E or A8N-E Mainboard [1043:815a] Control: I/O+ Mem- BusMaster+ SpecCycle- MemWINV- VGASnoop- ParErr- Stepping- SERR- FastB2B- Status: Cap+ 66MHz+ UDF- FastB2B+ ParErr- DEVSEL=fast >TAbort- <TAbort- <MAbort- >SERR- <PERR- Latency: 0 (750ns min, 250ns max) Region 0: [virtual] Memory at 000001f0 (32-bit, non-prefetchable) [disabled] [size=8] Region 1: [virtual] Memory at 000003f0 (type 3, non-prefetchable) [disabled] [size=1] Region 2: [virtual] Memory at 00000170 (32-bit, non-prefetchable) [disabled] [size=8] Region 3: [virtual] Memory at 00000370 (type 3, non-prefetchable) [disabled] [size=1] Region 4: I/O ports at f000 [size=16] Capabilities: <access denied> 00:09.0 PCI bridge [0604]: nVidia Corporation CK804 PCI Bridge [10de:005c] (rev a2) (prog-if 01 [Subtractive decode]) Control: I/O+ Mem+ BusMaster+ SpecCycle- MemWINV- VGASnoop- ParErr- Stepping- SERR+ FastB2B- Status: Cap- 66MHz+ UDF- FastB2B+ ParErr- DEVSEL=fast >TAbort- <TAbort- <MAbort- >SERR- <PERR- Latency: 0 Bus: primary=00, secondary=05, subordinate=05, sec-latency=128 I/O behind bridge: 0000c000-0000cfff Memory behind bridge: da000000-da0fffff Secondary status: 66MHz- FastB2B+ ParErr- DEVSEL=medium >TAbort- <TAbort- <MAbort+ <SERR- <PERR- BridgeCtl: Parity- SERR+ NoISA- VGA- MAbort- >Reset- FastB2B- 00:0a.0 Bridge [0680]: nVidia Corporation CK804 Ethernet Controller [10de:0057] (rev a3) Subsystem: ASUSTeK Computer Inc. K8N4-E or A8N-E Mainboard [1043:8141] Control: I/O+ Mem+ BusMaster+ SpecCycle- MemWINV- VGASnoop- ParErr- Stepping- SERR- FastB2B- Status: Cap+ 66MHz+ UDF- FastB2B+ ParErr- DEVSEL=fast >TAbort- <TAbort- <MAbort- >SERR- <PERR- Latency: 0 (250ns min, 5000ns max) Interrupt: pin A routed to IRQ 11 Region 0: Memory at da100000 (32-bit, non-prefetchable) [size=4K] Region 1: I/O ports at d000 [size=8] Capabilities: <access denied> 00:0b.0 PCI bridge [0604]: nVidia Corporation CK804 PCIE Bridge [10de:005d] (rev a3) (prog-if 00 [Normal decode]) Control: I/O+ Mem+ BusMaster+ SpecCycle- MemWINV- VGASnoop- ParErr- Stepping- SERR+ FastB2B- Status: Cap+ 66MHz- UDF- FastB2B- ParErr- DEVSEL=fast >TAbort- <TAbort- <MAbort- >SERR- <PERR- Latency: 0, Cache Line Size: 32 bytes Bus: primary=00, secondary=04, subordinate=04, sec-latency=0 Secondary status: 66MHz- FastB2B- ParErr- DEVSEL=fast >TAbort- <TAbort- <MAbort- <SERR- <PERR- BridgeCtl: Parity- SERR+ NoISA- VGA- MAbort- >Reset- FastB2B- Capabilities: <access denied> 00:0c.0 PCI bridge [0604]: nVidia Corporation CK804 PCIE Bridge [10de:005d] (rev a3) (prog-if 00 [Normal decode]) Control: I/O+ Mem+ BusMaster+ SpecCycle- MemWINV- VGASnoop- ParErr- Stepping- SERR+ FastB2B- Status: Cap+ 66MHz- UDF- FastB2B- ParErr- DEVSEL=fast >TAbort- <TAbort- <MAbort- >SERR- <PERR- Latency: 0, Cache Line Size: 32 bytes Bus: primary=00, secondary=03, subordinate=03, sec-latency=0 Secondary status: 66MHz- FastB2B- ParErr- DEVSEL=fast >TAbort- <TAbort- <MAbort- <SERR- <PERR- BridgeCtl: Parity- SERR+ NoISA- VGA- MAbort- >Reset- FastB2B- Capabilities: <access denied> 00:0d.0 PCI bridge [0604]: nVidia Corporation CK804 PCIE Bridge [10de:005d] (rev a3) (prog-if 00 [Normal decode]) Control: I/O+ Mem+ BusMaster+ SpecCycle- MemWINV- VGASnoop- ParErr- Stepping- SERR+ FastB2B- Status: Cap+ 66MHz- UDF- FastB2B- ParErr- DEVSEL=fast >TAbort- <TAbort- <MAbort- >SERR- <PERR- Latency: 0, Cache Line Size: 32 bytes Bus: primary=00, secondary=02, subordinate=02, sec-latency=0 Secondary status: 66MHz- FastB2B- ParErr- DEVSEL=fast >TAbort- <TAbort- <MAbort- <SERR- <PERR- BridgeCtl: Parity- SERR+ NoISA- VGA- MAbort- >Reset- FastB2B- Capabilities: <access denied> 00:0e.0 PCI bridge [0604]: nVidia Corporation CK804 PCIE Bridge [10de:005d] (rev a3) (prog-if 00 [Normal decode]) Control: I/O+ Mem+ BusMaster+ SpecCycle- MemWINV- VGASnoop- ParErr- Stepping- SERR+ FastB2B- Status: Cap+ 66MHz- UDF- FastB2B- ParErr- DEVSEL=fast >TAbort- <TAbort- <MAbort- >SERR- <PERR- Latency: 0, Cache Line Size: 32 bytes Bus: primary=00, secondary=01, subordinate=01, sec-latency=0 I/O behind bridge: 0000b000-0000bfff Memory behind bridge: d8000000-d9ffffff Prefetchable memory behind bridge: 00000000d0000000-00000000d7ffffff Secondary status: 66MHz- FastB2B- ParErr- DEVSEL=fast >TAbort- <TAbort- <MAbort- <SERR- <PERR- BridgeCtl: Parity- SERR+ NoISA- VGA+ MAbort- >Reset- FastB2B- Capabilities: <access denied> 00:18.0 Host bridge [0600]: Advanced Micro Devices [AMD] K8 [Athlon64/Opteron] HyperTransport Technology Configuration [1022:1100] Control: I/O- Mem- BusMaster- SpecCycle- MemWINV- VGASnoop- ParErr- Stepping- SERR- FastB2B- Status: Cap+ 66MHz- UDF- FastB2B- ParErr- DEVSEL=fast >TAbort- <TAbort- <MAbort- >SERR- <PERR- Capabilities: <access denied> 00:18.1 Host bridge [0600]: Advanced Micro Devices [AMD] K8 [Athlon64/Opteron] Address Map [1022:1101] Control: I/O- Mem- BusMaster- SpecCycle- MemWINV- VGASnoop- ParErr- Stepping- SERR- FastB2B- Status: Cap- 66MHz- UDF- FastB2B- ParErr- DEVSEL=fast >TAbort- <TAbort- <MAbort- >SERR- <PERR- 00:18.2 Host bridge [0600]: Advanced Micro Devices [AMD] K8 [Athlon64/Opteron] DRAM Controller [1022:1102] Control: I/O- Mem- BusMaster- SpecCycle- MemWINV- VGASnoop- ParErr- Stepping- SERR- FastB2B- Status: Cap- 66MHz- UDF- FastB2B- ParErr- DEVSEL=fast >TAbort- <TAbort- <MAbort- >SERR- <PERR- 00:18.3 Host bridge [0600]: Advanced Micro Devices [AMD] K8 [Athlon64/Opteron] Miscellaneous Control [1022:1103] Control: I/O- Mem- BusMaster- SpecCycle- MemWINV- VGASnoop- ParErr- Stepping- SERR- FastB2B- Status: Cap- 66MHz- UDF- FastB2B- ParErr- DEVSEL=fast >TAbort- <TAbort- <MAbort- >SERR- <PERR- 01:00.0 VGA compatible controller [0300]: ATI Technologies Inc RV370 5B60 [Radeon X300 (PCIE)] [1002:5b60] (prog-if 00 [VGA]) Subsystem: PC Partner Limited Unknown device [174b:0500] Control: I/O+ Mem+ BusMaster+ SpecCycle- MemWINV- VGASnoop- ParErr- Stepping- SERR- FastB2B- Status: Cap+ 66MHz- UDF- FastB2B- ParErr- DEVSEL=fast >TAbort- <TAbort- <MAbort- >SERR- <PERR- Latency: 0, Cache Line Size: 32 bytes Interrupt: pin A routed to IRQ 5 Region 0: Memory at d0000000 (32-bit, prefetchable) [size=128M] Region 1: I/O ports at b000 [size=256] Region 2: Memory at d9000000 (32-bit, non-prefetchable) [size=64K] [virtual] Expansion ROM at d8000000 [disabled] [size=128K] Capabilities: <access denied> 01:00.1 Display controller [0380]: ATI Technologies Inc RV370 [Radeon X300SE] [1002:5b70] Subsystem: PC Partner Limited Unknown device [174b:0501] Control: I/O- Mem- BusMaster- SpecCycle- MemWINV- VGASnoop- ParErr- Stepping- SERR- FastB2B- Status: Cap+ 66MHz- UDF- FastB2B- ParErr- DEVSEL=fast >TAbort- <TAbort- <MAbort- >SERR- <PERR- Region 0: Memory at d9010000 (32-bit, non-prefetchable) [disabled] [size=64K] Capabilities: <access denied> 05:07.0 Ethernet controller [0200]: Realtek Semiconductor Co., Ltd. RTL-8139/8139C/8139C+ [10ec:8139] (rev 10) Subsystem: Realtek Semiconductor Co., Ltd. RT8139 [10ec:8139] Control: I/O+ Mem+ BusMaster+ SpecCycle- MemWINV- VGASnoop- ParErr- Stepping- SERR- FastB2B- Status: Cap+ 66MHz- UDF- FastB2B+ ParErr- DEVSEL=medium >TAbort- <TAbort- <MAbort- >SERR- <PERR- Latency: 32 (8000ns min, 16000ns max) Interrupt: pin A routed to IRQ 11 Region 0: I/O ports at c000 [size=256] Region 1: Memory at da000000 (32-bit, non-prefetchable) [size=256] Capabilities: <access denied> ^ permalink raw reply [flat|nested] 64+ messages in thread
* Re: hung bootup with "drm/radeon/kms: move radeon KMS on/off switch out of staging." 2010-02-04 19:18 ` Alex Deucher 2010-02-04 19:24 ` Linus Torvalds @ 2010-02-04 19:32 ` Ingo Molnar 2010-02-04 19:53 ` Jesse Barnes 1 sibling, 1 reply; 64+ messages in thread From: Ingo Molnar @ 2010-02-04 19:32 UTC (permalink / raw) To: Alex Deucher Cc: Matthew Garrett, Dave Airlie, torvalds, linux-kernel, dri-devel * Alex Deucher <alexdeucher@gmail.com> wrote: > On Thu, Feb 4, 2010 at 2:06 PM, Ingo Molnar <mingo@elte.hu> wrote: > > > > * Alex Deucher <alexdeucher@gmail.com> wrote: > > > >> On Thu, Feb 4, 2010 at 1:12 PM, Ingo Molnar <mingo@elte.hu> wrote: > >> > > >> > * Matthew Garrett <mjg59@srcf.ucam.org> wrote: > >> > > >> >> On Thu, Feb 04, 2010 at 06:54:45PM +0100, Ingo Molnar wrote: > >> >> > >> >> > But you could claim that it's not a regression because 1) technically the > >> >> > code got introduced in drivers/staging/, and staging drivers are not on > >> >> > the regression list 2) the Kconfig value is default-off so it can only > >> >> > harm those who got lured by a new Kconfig value popping up in -rc7 in a > >> >> > well working driver they already have enabled. > >> >> > > >> >> > So the moving of driver functionality from drivers/staging/ to drivers/ > >> >> > is a grey area it appears. Wouldnt it have been better to do this in the > >> >> > next merge window, as all other drivers do? It's not new hardware > >> >> > enablement either, it's feature enablement for an existing driver. > >> >> > >> >> The reason the option was in staging (as has been mentioned before) was > >> >> because the ABI wasn't felt to be stable enough. Upstream is now willing to > >> >> commit to that stability, so now seems as good a time to move it as any. > >> >> There's no code change and there's no default configuration change, so I > >> >> really can't see any way that it can be classed as a regression. > >> > > >> > But that argument in essence renders the regression policy meaningless for > >> > such code: just about any new driver feature under the sun could be shaped as > >> > a Kconfig option, introduced via a drivers/staging Kconfig entry, and then > >> > activated via a twoliner commit in a later -rc. > >> > > >> > IMHO the point of tracking regressions is to reduce the bugginess of the > >> > kernel and thus to help users, not to give ground for legalistic arguments. > >> > > >> > There _are_ common-sense exceptions from the regression rules, such as the > >> > introduction of a new piece of hardware that was previously unsupported > >> > (hence there's no expectation of stability) - but the tweaking of an > >> > existing, widely used driver (even if the new opion is default-off) hardly > >> > seems to qualify for that. > >> > > >> > >> This is a completely new driver. ?It's only part of the existing drm for > >> compatibility reasons. ?It requires an entirely different graphics stack > >> above it and works very differently from the old drm stack. > > > > Will the user know? IMHO what matters in the end is user expectation. > > > > Lets walk through what a current kernel tester of the drm/radeon driver sees > > when he types 'make oldconfig' after installing the (to-be-released) .33-rc7 > > kernel. Firstly, the user with a brand-new distro already has this enabled: > > > > ?CONFIG_DRM_RADEON=y > > > > and knows the driver, and it performs adequately. Then in -rc7 he gets a new > > option: > > > > ?ATI Radeon (DRM_RADEON) [Y/n/?] y > > ? ?Enable modesetting on radeon by default (DRM_RADEON_KMS) [N/y/?] (NEW) > > > > The user might easily go: "Hey this is a driver i already have, and there's a > > new sub-option for this well-working driver. Sure, enable it, these kernel > > folks know what they are doing and i rarely see any crashes past -rc2 > > kernels." > > > > Does this new option tell him what you just told me, that: > > > > ?> This is a completely new driver. ?It's only part of the existing drm for > > ?> compatibility reasons. ?It requires an entirely different graphics stack > > ?> above it and works very differently from the old drm stack. > > > > ? > > > > it doesnt. Even if he types '?', it tells: > > > > ?CONFIG_DRM_RADEON_KMS: > > > > ?Choose this option if you want kernel modesetting enabled by default, > > ?and you have a new enough userspace to support this. Running old > > ?userspaces with this enabled will cause pain. > > > > The user will likely go "cool I have a fresh distro with recent Xorg, lets > > try it". > > > > And if it crashes, he'll report a bug and we'll fix it. Nobody has reacted to my related boot hang bugreport yet - and it's detailed and fully reproducible (so i can test any proposed fixes as well in short order). I.e. my limited testing has triggered two separate bugs in the same driver - and this will show up in -rc7. It might be all OK and no-one else will see trouble. Or past patterns might repeat themselves and i might simply be an early bird for trouble to come. My (oft repeated) point is that adding new sub-features to existing drivers is not what we do in late -rc's: there's simply not enough time to shake out bugs/regressions in them. We introduce new functionality to existing drivers in the merge window - in the two weeks following a stable kernel's release. In late -rc's we only try to fix regressions. Sometimes we make exceptions for pragmatic reasons, but then we are straightforward about those reasons and try to warn users about our zeal to help them with cool, new, not-to-be-missed GPU functionality ;-) Thanks, Ingo ^ permalink raw reply [flat|nested] 64+ messages in thread
* Re: hung bootup with "drm/radeon/kms: move radeon KMS on/off switch out of staging." 2010-02-04 19:32 ` Ingo Molnar @ 2010-02-04 19:53 ` Jesse Barnes 2010-02-04 20:22 ` Ingo Molnar 0 siblings, 1 reply; 64+ messages in thread From: Jesse Barnes @ 2010-02-04 19:53 UTC (permalink / raw) To: Ingo Molnar Cc: Alex Deucher, Matthew Garrett, Dave Airlie, torvalds, linux-kernel, dri-devel On Thu, 4 Feb 2010 20:32:32 +0100 Ingo Molnar <mingo@elte.hu> wrote: > Nobody has reacted to my related boot hang bugreport yet - and it's > detailed and fully reproducible (so i can test any proposed fixes as > well in short order). I.e. my limited testing has triggered two > separate bugs in the same driver - and this will show up in -rc7. > > It might be all OK and no-one else will see trouble. Or past patterns > might repeat themselves and i might simply be an early bird for > trouble to come. > > My (oft repeated) point is that adding new sub-features to existing > drivers is not what we do in late -rc's: there's simply not enough > time to shake out bugs/regressions in them. > > We introduce new functionality to existing drivers in the merge > window - in the two weeks following a stable kernel's release. This is the .config issue right? It doesn't sound like the bug is new, you're just seeing now it because of the way you run tests. It shouldn't affect any more or fewer users than it did before, and reverting the "move radeon KMS out of staging" won't fix the bug at all or prevent anyone from seeing it. People using KMS will still use KMS and people without it won't, because no one actually uses allyes configs, and the option defaults to N anyway. > In late -rc's we only try to fix regressions. Sometimes we make > exceptions for pragmatic reasons, but then we are straightforward > about those reasons and try to warn users about our zeal to help them > with cool, new, not-to-be-missed GPU functionality ;-) Agree, I just don't think this is a regression or an exception. -- Jesse Barnes, Intel Open Source Technology Center ^ permalink raw reply [flat|nested] 64+ messages in thread
* Re: hung bootup with "drm/radeon/kms: move radeon KMS on/off switch out of staging." 2010-02-04 19:53 ` Jesse Barnes @ 2010-02-04 20:22 ` Ingo Molnar 2010-02-04 20:27 ` david ` (2 more replies) 0 siblings, 3 replies; 64+ messages in thread From: Ingo Molnar @ 2010-02-04 20:22 UTC (permalink / raw) To: Jesse Barnes Cc: Alex Deucher, Matthew Garrett, Dave Airlie, torvalds, linux-kernel, dri-devel * Jesse Barnes <jbarnes@virtuousgeek.org> wrote: > On Thu, 4 Feb 2010 20:32:32 +0100 > Ingo Molnar <mingo@elte.hu> wrote: > > Nobody has reacted to my related boot hang bugreport yet - and it's > > detailed and fully reproducible (so i can test any proposed fixes as > > well in short order). I.e. my limited testing has triggered two > > separate bugs in the same driver - and this will show up in -rc7. > > > > It might be all OK and no-one else will see trouble. Or past patterns > > might repeat themselves and i might simply be an early bird for > > trouble to come. > > > > My (oft repeated) point is that adding new sub-features to existing > > drivers is not what we do in late -rc's: there's simply not enough > > time to shake out bugs/regressions in them. > > > > We introduce new functionality to existing drivers in the merge > > window - in the two weeks following a stable kernel's release. > > This is the .config issue right? It doesn't sound like the bug is new, > you're just seeing now it because of the way you run tests. It shouldn't > affect any more or fewer users than it did before, and reverting the "move > radeon KMS out of staging" won't fix the bug at all or prevent anyone from > seeing it. People using KMS will still use KMS and people without it > won't, [...] I think you are missing my point. My point is very simple: existing non-KMS users of CONFIG_DRM_RADON=y (a pre-existing driver) might turn on the new sub-feature (CONFIG_DRM_RADEON_KMS=y), in the expectation that this is a safe addition to his currently well-working driver. ( I have to confess i do that all the time for drivers that work well for me, and if it pops up in a late -rc i sure expect it to be safe to enable. I dont even read the help text most of the time - if the single-line summary sounds useful i enable it. Especially if the Kconfig help entry says it's safe with a new distro, it's not CONFIG_EXPERIMENTAL, it's not marked CONFIG_BROKEN, it's not in CONFIG_STAGING, etc. ) That action might hang or crash his kernel, and if that user then reports: " Hey, -rc7 just hung on me after enabling this new .config option it offered for the radeon driver i am using, please add this to the list of regressions. " is this really the right kind of reply: " Since we moved it from drivers/staging/ to drivers/ this hang you are seeing is technically not a regression, we might or might not fix it. " ? I doubt the user would be overly enthusiastic about that kind of reply ;-) Guys, you should really _think_ about it a minute and realize what the purpose of a regression policy is. It's not to be a PITA to subsystem maintainers, it's not an annoyance just to keep you from doing cool stuff. It's not something which you should try to lawyer your way out of via an as narrow interpretation as you can. A regression policy is something that generally helps the quality of Linux, so it's worth interpreting broadly and generously in spirit not just in letter. If there's a single most prominent complaint i hear about the upstream kernel is that it breaks too often. (right after 'it doesnt support my graphics hardware' - so i sure can relate to the pragmatic reasons of pushing KMS strongly!) If i run into a crash and a hang, you can bet that others will as well. Ingo ^ permalink raw reply [flat|nested] 64+ messages in thread
* Re: hung bootup with "drm/radeon/kms: move radeon KMS on/off switch out of staging." 2010-02-04 20:22 ` Ingo Molnar @ 2010-02-04 20:27 ` david 2010-02-04 20:33 ` Jesse Barnes 2010-02-04 20:48 ` Matthew Garrett 2 siblings, 0 replies; 64+ messages in thread From: david @ 2010-02-04 20:27 UTC (permalink / raw) To: Ingo Molnar Cc: Jesse Barnes, Alex Deucher, Matthew Garrett, Dave Airlie, torvalds, linux-kernel, dri-devel On Thu, 4 Feb 2010, Ingo Molnar wrote: > * Jesse Barnes <jbarnes@virtuousgeek.org> wrote: > >> On Thu, 4 Feb 2010 20:32:32 +0100 >> Ingo Molnar <mingo@elte.hu> wrote: >>> Nobody has reacted to my related boot hang bugreport yet - and it's >>> detailed and fully reproducible (so i can test any proposed fixes as >>> well in short order). I.e. my limited testing has triggered two >>> separate bugs in the same driver - and this will show up in -rc7. >>> >>> It might be all OK and no-one else will see trouble. Or past patterns >>> might repeat themselves and i might simply be an early bird for >>> trouble to come. >>> >>> My (oft repeated) point is that adding new sub-features to existing >>> drivers is not what we do in late -rc's: there's simply not enough >>> time to shake out bugs/regressions in them. >>> >>> We introduce new functionality to existing drivers in the merge >>> window - in the two weeks following a stable kernel's release. >> >> This is the .config issue right? It doesn't sound like the bug is new, >> you're just seeing now it because of the way you run tests. It shouldn't >> affect any more or fewer users than it did before, and reverting the "move >> radeon KMS out of staging" won't fix the bug at all or prevent anyone from >> seeing it. People using KMS will still use KMS and people without it >> won't, [...] > > I think you are missing my point. My point is very simple: existing non-KMS > users of CONFIG_DRM_RADON=y (a pre-existing driver) might turn on the new > sub-feature (CONFIG_DRM_RADEON_KMS=y), in the expectation that this is a safe > addition to his currently well-working driver. > > ( I have to confess i do that all the time for drivers that work well for me, > and if it pops up in a late -rc i sure expect it to be safe to enable. I > dont even read the help text most of the time - if the single-line summary > sounds useful i enable it. Especially if the Kconfig help entry says it's > safe with a new distro, it's not CONFIG_EXPERIMENTAL, it's not marked > CONFIG_BROKEN, it's not in CONFIG_STAGING, etc. ) forget the people testing the rc kernels, what about people who will see this in the released kernel? David Lang ^ permalink raw reply [flat|nested] 64+ messages in thread
* Re: hung bootup with "drm/radeon/kms: move radeon KMS on/off switch out of staging." 2010-02-04 20:22 ` Ingo Molnar 2010-02-04 20:27 ` david @ 2010-02-04 20:33 ` Jesse Barnes 2010-02-04 20:57 ` Ingo Molnar 2010-02-04 20:48 ` Matthew Garrett 2 siblings, 1 reply; 64+ messages in thread From: Jesse Barnes @ 2010-02-04 20:33 UTC (permalink / raw) To: Ingo Molnar Cc: Alex Deucher, Matthew Garrett, Dave Airlie, torvalds, linux-kernel, dri-devel On Thu, 4 Feb 2010 21:22:54 +0100 Ingo Molnar <mingo@elte.hu> wrote: > > This is the .config issue right? It doesn't sound like the bug is > > new, you're just seeing now it because of the way you run tests. > > It shouldn't affect any more or fewer users than it did before, and > > reverting the "move radeon KMS out of staging" won't fix the bug at > > all or prevent anyone from seeing it. People using KMS will still > > use KMS and people without it won't, [...] > > I think you are missing my point. My point is very simple: existing > non-KMS users of CONFIG_DRM_RADON=y (a pre-existing driver) might > turn on the new sub-feature (CONFIG_DRM_RADEON_KMS=y), in the > expectation that this is a safe addition to his currently > well-working driver. Oh I thought it was you who was missing the point, thus my explanation. :) Enabling KMS support is documented in Kconfig and doesn't default to 'y', so I don't know how valid your concern is, even though I understand it. > ( I have to confess i do that all the time for drivers that work well > for me, and if it pops up in a late -rc i sure expect it to be safe > to enable. I dont even read the help text most of the time - if the > single-line summary sounds useful i enable it. Especially if the > Kconfig help entry says it's safe with a new distro, it's not > CONFIG_EXPERIMENTAL, it's not marked CONFIG_BROKEN, it's not in > CONFIG_STAGING, etc. ) > > That action might hang or crash his kernel, and if that user then > reports: > > " Hey, -rc7 just hung on me after enabling this new .config option > it offered for the radeon driver i am using, please add this to the > list of regressions. " > > is this really the right kind of reply: > > " Since we moved it from drivers/staging/ to drivers/ this hang you > are seeing is technically not a regression, we might or might not fix > it. " > > ? > > I doubt the user would be overly enthusiastic about that kind of > reply ;-) Whether or not it's a regression is mostly irrelevant, it's a real bug and the radeon guys are working on fixing it. I really don't think they'll be flooded with reports of this issue with the removal of the staging dependency, but that's just my guess. > Guys, you should really _think_ about it a minute and realize what > the purpose of a regression policy is. Everyone understands it, but really: - this is *not* a driver regression, the code is the same, you just don't need to enable staging to get it anymore - using allyesconfig or enabling non-default options requires thought and preferably reading the Kconfig text, so making this option more available should be generally safe (that doesn't mean it's bug free as you've discovered though). > It's not to be a PITA to subsystem maintainers, it's not an annoyance > just to keep you from doing cool stuff. It's not something which you > should try to lawyer your way out of via an as narrow interpretation > as you can. I'm certainly not trying to split hairs here, I just think you're overreacting to this issue by labeling it a regression and implying that the commit should be reverted. > A regression policy is something that generally helps the quality of > Linux, so it's worth interpreting broadly and generously in spirit > not just in letter. If there's a single most prominent complaint i > hear about the upstream kernel is that it breaks too often. (right > after 'it doesnt support my graphics hardware' - so i sure can relate > to the pragmatic reasons of pushing KMS strongly!) No one's going to say we shouldn't shoot for high quality, but hiding things under a config option doesn't fix regressions, and making config options easier to enable doesn't introduce them, this is still ultimately a .config issue, not a new code regression. But we've made too big a deal of this already; my interest in this bug is purely academic. I think it should be solved, and preferably not by hiding the config option again, since that's totally irrelevant to the real issue. -- Jesse Barnes, Intel Open Source Technology Center ^ permalink raw reply [flat|nested] 64+ messages in thread
* Re: hung bootup with "drm/radeon/kms: move radeon KMS on/off switch out of staging." 2010-02-04 20:33 ` Jesse Barnes @ 2010-02-04 20:57 ` Ingo Molnar 0 siblings, 0 replies; 64+ messages in thread From: Ingo Molnar @ 2010-02-04 20:57 UTC (permalink / raw) To: Jesse Barnes Cc: Alex Deucher, Matthew Garrett, Dave Airlie, torvalds, linux-kernel, dri-devel * Jesse Barnes <jbarnes@virtuousgeek.org> wrote: [...] > > That action might hang or crash his kernel, and if that user then > > reports: > > > > " Hey, -rc7 just hung on me after enabling this new .config option > > it offered for the radeon driver i am using, please add this to the > > list of regressions. " > > > > is this really the right kind of reply: > > > > " Since we moved it from drivers/staging/ to drivers/ this hang you > > are seeing is technically not a regression, we might or might not fix > > it. " > > > > ? > > > > I doubt the user would be overly enthusiastic about that kind of > > reply ;-) > > Whether or not it's a regression is mostly irrelevant, it's a real bug and > the radeon guys are working on fixing it. [...] Fortunately it's being worked on. I beg to differ with your argument about it not mattering whether a bug is categorized as a regression: Rafael's regression list is far more prominent and the bugs listed there get fixed with a high likelhood. Note that there's clear evidence of that in this very thread: the hang bug was ignored as a "plain" DRM non-regression bugreport, _despite_ the prior scrutiny in the thread, up to the moment Linus pointed it out and turned it into a de-facto regression ... There's also another purpose of categorizing bugs as regressions: tester timeliness. We tend to treat bugs as 'plain bugs' when they are reported too late after a few kernel releases of the bug having been in the wild. We do this to encourage testers to test earlier -rc's as well, as there's a real tangible benefit of the 'we dont do regressions' policy: bugs get fixed and testers feel involved, and it's also the stage were we _can_ fix bugs with a lower cost to all parties involved. But what 'timeliness of testing' can there be if new features are added in a late -rc and bugs are explicitly categorized as 'not a regression'? Ingo ^ permalink raw reply [flat|nested] 64+ messages in thread
* Re: hung bootup with "drm/radeon/kms: move radeon KMS on/off switch out of staging." 2010-02-04 20:22 ` Ingo Molnar 2010-02-04 20:27 ` david 2010-02-04 20:33 ` Jesse Barnes @ 2010-02-04 20:48 ` Matthew Garrett 2010-02-04 21:05 ` Ingo Molnar 2 siblings, 1 reply; 64+ messages in thread From: Matthew Garrett @ 2010-02-04 20:48 UTC (permalink / raw) To: Ingo Molnar Cc: Jesse Barnes, Alex Deucher, Dave Airlie, torvalds, linux-kernel, dri-devel On Thu, Feb 04, 2010 at 09:22:54PM +0100, Ingo Molnar wrote: > " Hey, -rc7 just hung on me after enabling this new .config option it > offered for the radeon driver i am using, please add this to the list of > regressions. " If the same configuration options hang on both an old kernel and a new kernel, how is that in any plausible way a regression? What's regressed? -- Matthew Garrett | mjg59@srcf.ucam.org ^ permalink raw reply [flat|nested] 64+ messages in thread
* Re: hung bootup with "drm/radeon/kms: move radeon KMS on/off switch out of staging." 2010-02-04 20:48 ` Matthew Garrett @ 2010-02-04 21:05 ` Ingo Molnar 2010-02-04 21:09 ` Matthew Garrett 2010-02-04 21:23 ` Andrew Morton 0 siblings, 2 replies; 64+ messages in thread From: Ingo Molnar @ 2010-02-04 21:05 UTC (permalink / raw) To: Matthew Garrett Cc: Jesse Barnes, Alex Deucher, Dave Airlie, torvalds, linux-kernel, dri-devel, Andrew Morton * Matthew Garrett <mjg59@srcf.ucam.org> wrote: > On Thu, Feb 04, 2010 at 09:22:54PM +0100, Ingo Molnar wrote: > > > " Hey, -rc7 just hung on me after enabling this new .config option it > > offered for the radeon driver i am using, please add this to the list of > > regressions. " > > If the same configuration options hang on both an old kernel and a new > kernel, how is that in any plausible way a regression? What's regressed? Regressions are not limited to 'same config' kernels, last i checked. If that has changed (or if i'm misunderstanding it) then it would be nice to hear a clarification about that from Linus. The way i understand it is that there are narrow exceptions from the regression rules, such as completely new drivers for which there can be no prior expectation of stability by users. (but for even them we are generally on the safer side to list bugs in them as regressions as well - especially if we expect many users to enable it.) AFAIK there's no exception for new sub-features of existing facilities or drivers, even if it's default-disabled. This issue materially affects quite a few bugs i'm handling as a maintainer. Many of them are under default-off config options - most new aspects to existing code are introduced in such a way. It would remove quite a bit of urgent-workload from my workflow if i could strike them from Rafael's list and could deprioritize them as "plain bugs", to be fixed as time permits. IMHO it would be rather counter-productive to kernel quality if we did that kind of regression-lawyering though. Ingo ^ permalink raw reply [flat|nested] 64+ messages in thread
* Re: hung bootup with "drm/radeon/kms: move radeon KMS on/off switch out of staging." 2010-02-04 21:05 ` Ingo Molnar @ 2010-02-04 21:09 ` Matthew Garrett 2010-02-05 7:56 ` Ingo Molnar 2010-02-04 21:23 ` Andrew Morton 1 sibling, 1 reply; 64+ messages in thread From: Matthew Garrett @ 2010-02-04 21:09 UTC (permalink / raw) To: Ingo Molnar Cc: Jesse Barnes, Alex Deucher, Dave Airlie, torvalds, linux-kernel, dri-devel, Andrew Morton On Thu, Feb 04, 2010 at 10:05:59PM +0100, Ingo Molnar wrote: > Regressions are not limited to 'same config' kernels, last i checked. If that > has changed (or if i'm misunderstanding it) then it would be nice to hear a > clarification about that from Linus. If an option has *never* worked on a given configuration, then it's not a regression. That's not a matter of taste, it's a matter of language. We prioritise regressions because they mean that someone's previously working configuration no longer works. Tying the word "regression" to other bugs just to get someone to look at them faster is counterproductive. -- Matthew Garrett | mjg59@srcf.ucam.org ^ permalink raw reply [flat|nested] 64+ messages in thread
* Re: hung bootup with "drm/radeon/kms: move radeon KMS on/off switch out of staging." 2010-02-04 21:09 ` Matthew Garrett @ 2010-02-05 7:56 ` Ingo Molnar 2010-02-05 8:34 ` Dave Airlie 0 siblings, 1 reply; 64+ messages in thread From: Ingo Molnar @ 2010-02-05 7:56 UTC (permalink / raw) To: Matthew Garrett Cc: Jesse Barnes, Alex Deucher, Dave Airlie, torvalds, linux-kernel, dri-devel, Andrew Morton * Matthew Garrett <mjg59@srcf.ucam.org> wrote: > On Thu, Feb 04, 2010 at 10:05:59PM +0100, Ingo Molnar wrote: > > > Regressions are not limited to 'same config' kernels, last i checked. If that > > has changed (or if i'm misunderstanding it) then it would be nice to hear a > > clarification about that from Linus. > > If an option has *never* worked on a given configuration, then it's not a > regression. [...] The *main driver* (CONFIG_DRM_RADEON=y, as far as the user is concerned) is many years old and it certainly worked just fine for tens of thousands of test iterations on this box, up until that commit. That box alone has done in excess of half a million boot iterations in the past 2+ years. About 28% of the tests had CONFIG_DRM_RADEON=y, so the number of successful bootups with CONFIG_DRM_RADEON=y is in excess of one hundred thousand. There was not a single failed bootup in those two years due to the CONFIG_DRM_RADEON driver that i can remember. If it now does not boot up if all its sub-options are enabled, even of some of those sub-options are new, does that count as a driver regression? Sure it does to me ... IMHO you are trying to put a narrow technical distinction into it which does not exist for users. You argue that it's a new default-off sub-option of an existing driver, hence it cannot be a regression. The option shows up as a sub-option to an existing driver in make oldconfig, with a fairly innocious sounding help text, so to a user it certainly looks as if it's one unit and that it is the radeon driver that regressed. *If* we make a driver feature available in a popular driver and make it Kconfig visible without obvious warnings (i.e. lure the user to enable it with the notion that it's just one coherent unit with a trusted, existing driver), we should also hold up the other side of the deal and treat the *bugs* as a coherent unit as well. I.e. treat the driver as a coherent whole not only when it's convenient to us, but also when it's somewhat inconvenient to do. We cannot have it both ways. Ingo ^ permalink raw reply [flat|nested] 64+ messages in thread
* Re: hung bootup with "drm/radeon/kms: move radeon KMS on/off switch out of staging." 2010-02-05 7:56 ` Ingo Molnar @ 2010-02-05 8:34 ` Dave Airlie 2010-02-05 9:00 ` Ingo Molnar 0 siblings, 1 reply; 64+ messages in thread From: Dave Airlie @ 2010-02-05 8:34 UTC (permalink / raw) To: Ingo Molnar Cc: Matthew Garrett, linux-kernel, Jesse Barnes, dri-devel, Alex Deucher, Andrew Morton, torvalds > If it now does not boot up if all its sub-options are enabled, even of some > of those sub-options are new, does that count as a driver regression? Sure it > does to me ... But it doesn't to anyone else under any reasonable meaning of the word regression. The config option states "Choose this option if you want kernel modesetting enabled by default, and you have a new enough userspace to support this. Running old userspaces with this enabled will cause pain." Will cause pain sounds painful to me, I can make it seem much worse if you'd like. Dave. ^ permalink raw reply [flat|nested] 64+ messages in thread
* Re: hung bootup with "drm/radeon/kms: move radeon KMS on/off switch out of staging." 2010-02-05 8:34 ` Dave Airlie @ 2010-02-05 9:00 ` Ingo Molnar 2010-02-05 9:18 ` Dave Airlie 0 siblings, 1 reply; 64+ messages in thread From: Ingo Molnar @ 2010-02-05 9:00 UTC (permalink / raw) To: Dave Airlie Cc: Matthew Garrett, linux-kernel, Jesse Barnes, dri-devel, Alex Deucher, Andrew Morton, torvalds * Dave Airlie <airlied@linux.ie> wrote: > > > If it now does not boot up if all its sub-options are enabled, even of some > > of those sub-options are new, does that count as a driver regression? Sure it > > does to me ... > > But it doesn't to anyone else under any reasonable meaning of the word > regression. There are reactions in this thread that contradict your 'anyone else' point. > The config option states > "Choose this option if you want kernel modesetting enabled by default, > and you have a new enough userspace to support this. Running old > userspaces with this enabled will cause pain." > > Will cause pain sounds painful to me, I can make it seem much worse if > you'd like. Except you are missing that the hang (and the first crash as well) happens on brand-new user-space just as much - not just on 'old userspaces'. The bugs i've triggered are independent of any user-space component - it happens with a fresh distro just as much. As i suggested before, at least the text should be updated to include what has been written about CONFIG_DRM_RADEON_KMS in this thread before: > This is a completely new driver. It's only part of the existing drm for > compatibility reasons. It requires an entirely different graphics stack > above it and works very differently from the old drm stack. Thanks, Ingo ^ permalink raw reply [flat|nested] 64+ messages in thread
* Re: hung bootup with "drm/radeon/kms: move radeon KMS on/off switch out of staging." 2010-02-05 9:00 ` Ingo Molnar @ 2010-02-05 9:18 ` Dave Airlie 2010-02-05 10:47 ` Ingo Molnar 0 siblings, 1 reply; 64+ messages in thread From: Dave Airlie @ 2010-02-05 9:18 UTC (permalink / raw) To: Ingo Molnar Cc: Dave Airlie, Matthew Garrett, linux-kernel, Jesse Barnes, dri-devel, Alex Deucher, Andrew Morton, torvalds [-- Attachment #1: Type: text/plain, Size: 1594 bytes --] On Fri, Feb 5, 2010 at 7:00 PM, Ingo Molnar <mingo@elte.hu> wrote: > > * Dave Airlie <airlied@linux.ie> wrote: > >> >> > If it now does not boot up if all its sub-options are enabled, even of some >> > of those sub-options are new, does that count as a driver regression? Sure it >> > does to me ... >> >> But it doesn't to anyone else under any reasonable meaning of the word >> regression. > > There are reactions in this thread that contradict your 'anyone else' point. > >> The config option states >> "Choose this option if you want kernel modesetting enabled by default, >> and you have a new enough userspace to support this. Running old >> userspaces with this enabled will cause pain." >> >> Will cause pain sounds painful to me, I can make it seem much worse if >> you'd like. > > Except you are missing that the hang (and the first crash as well) happens on > brand-new user-space just as much - not just on 'old userspaces'. > > The bugs i've triggered are independent of any user-space component - it > happens with a fresh distro just as much. > > As i suggested before, at least the text should be updated to include what > has been written about CONFIG_DRM_RADEON_KMS in this thread before: > > > This is a completely new driver. It's only part of the existing drm for > > compatibility reasons. It requires an entirely different graphics stack > > above it and works very differently from the old drm stack. > Okay I've attached a patch with a revised Kconfig in it. Does this sound more like reality? Dave. [-- Attachment #2: 0001-drm-radeon-kms-change-Kconfig-text-to-reflect-the-ne.patch --] [-- Type: application/octet-stream, Size: 1663 bytes --] From 0a0c28103e9abf77ac6cf579821e51557f0194aa Mon Sep 17 00:00:00 2001 From: Dave Airlie <airlied@redhat.com> Date: Fri, 5 Feb 2010 19:02:24 +1000 Subject: [PATCH] drm/radeon/kms: change Kconfig text to reflect the new option. Ingo pointed out that we really don't give the user enough warning to make a decision here. So revise the Kconfig text with a better warning. Signed-off-by: Dave Airlie <airlied@redhat.com> --- drivers/gpu/drm/radeon/Kconfig | 12 ++++++++---- 1 files changed, 8 insertions(+), 4 deletions(-) diff --git a/drivers/gpu/drm/radeon/Kconfig b/drivers/gpu/drm/radeon/Kconfig index 5982321..1c02d23 100644 --- a/drivers/gpu/drm/radeon/Kconfig +++ b/drivers/gpu/drm/radeon/Kconfig @@ -1,10 +1,14 @@ config DRM_RADEON_KMS - bool "Enable modesetting on radeon by default" + bool "Enable modesetting on radeon by default - NEW DRIVER" depends on DRM_RADEON help - Choose this option if you want kernel modesetting enabled by default, - and you have a new enough userspace to support this. Running old - userspaces with this enabled will cause pain. + Choose this option if you want kernel modesetting enabled by default. + + This is a completely new driver. It's only part of the existing drm + for compatibility reasons. It requires an entirely different graphics + stack above it and works very differently from the old drm stack. + i.e. don't enable this unless you know what you are doing it may + cause issues or bugs compared to the previous userspace driver stack. When kernel modesetting is enabled the IOCTL of radeon/drm driver are considered as invalid and an error message is printed -- 1.6.6 ^ permalink raw reply related [flat|nested] 64+ messages in thread
* Re: hung bootup with "drm/radeon/kms: move radeon KMS on/off switch out of staging." 2010-02-05 9:18 ` Dave Airlie @ 2010-02-05 10:47 ` Ingo Molnar 0 siblings, 0 replies; 64+ messages in thread From: Ingo Molnar @ 2010-02-05 10:47 UTC (permalink / raw) To: Dave Airlie Cc: Dave Airlie, Matthew Garrett, linux-kernel, Jesse Barnes, dri-devel, Alex Deucher, Andrew Morton, torvalds * Dave Airlie <airlied@gmail.com> wrote: > On Fri, Feb 5, 2010 at 7:00 PM, Ingo Molnar <mingo@elte.hu> wrote: > > > > * Dave Airlie <airlied@linux.ie> wrote: > > > >> > >> > If it now does not boot up if all its sub-options are enabled, even of some > >> > of those sub-options are new, does that count as a driver regression? Sure it > >> > does to me ... > >> > >> But it doesn't to anyone else under any reasonable meaning of the word > >> regression. > > > > There are reactions in this thread that contradict your 'anyone else' point. > > > >> The config option states > >> "Choose this option if you want kernel modesetting enabled by default, > >> ? ? ? ? ? and you have a new enough userspace to support this. Running old > >> ? ? ? ? ? userspaces with this enabled will cause pain." > >> > >> Will cause pain sounds painful to me, I can make it seem much worse if > >> you'd like. > > > > Except you are missing that the hang (and the first crash as well) happens on > > brand-new user-space just as much - not just on 'old userspaces'. > > > > The bugs i've triggered are independent of any user-space component - it > > happens with a fresh distro just as much. > > > > As i suggested before, at least the text should be updated to include what > > has been written about CONFIG_DRM_RADEON_KMS in this thread before: > > > > ?> This is a completely new driver. ?It's only part of the existing drm for > > ?> compatibility reasons. ?It requires an entirely different graphics stack > > ?> above it and works very differently from the old drm stack. > > > > Okay I've attached a patch with a revised Kconfig in it. > > Does this sound more like reality? Looks perfect to me! Acked-by: Ingo Molnar <mingo@elte.hu> Ingo ^ permalink raw reply [flat|nested] 64+ messages in thread
* Re: hung bootup with "drm/radeon/kms: move radeon KMS on/off switch out of staging." 2010-02-04 21:05 ` Ingo Molnar 2010-02-04 21:09 ` Matthew Garrett @ 2010-02-04 21:23 ` Andrew Morton 2010-02-04 21:34 ` Jesse Barnes ` (2 more replies) 1 sibling, 3 replies; 64+ messages in thread From: Andrew Morton @ 2010-02-04 21:23 UTC (permalink / raw) To: Ingo Molnar Cc: Matthew Garrett, Jesse Barnes, Alex Deucher, Dave Airlie, torvalds, linux-kernel, dri-devel On Thu, 4 Feb 2010 22:05:59 +0100 Ingo Molnar <mingo@elte.hu> wrote: > > * Matthew Garrett <mjg59@srcf.ucam.org> wrote: > > > On Thu, Feb 04, 2010 at 09:22:54PM +0100, Ingo Molnar wrote: > > > > > " Hey, -rc7 just hung on me after enabling this new .config option it > > > offered for the radeon driver i am using, please add this to the list of > > > regressions. " > > > > If the same configuration options hang on both an old kernel and a new > > kernel, how is that in any plausible way a regression? What's regressed? > > Regressions are not limited to 'same config' kernels, last i checked. If that > has changed (or if i'm misunderstanding it) then it would be nice to hear a > clarification about that from Linus. > > The way i understand it is that there are narrow exceptions from the > regression rules, such as completely new drivers for which there can be no > prior expectation of stability by users. (but for even them we are generally > on the safer side to list bugs in them as regressions as well - especially if > we expect many users to enable it.) > > AFAIK there's no exception for new sub-features of existing facilities or > drivers, even if it's default-disabled. > > This issue materially affects quite a few bugs i'm handling as a maintainer. > Many of them are under default-off config options - most new aspects to > existing code are introduced in such a way. It would remove quite a bit of > urgent-workload from my workflow if i could strike them from Rafael's list > and could deprioritize them as "plain bugs", to be fixed as time permits. > > IMHO it would be rather counter-productive to kernel quality if we did that > kind of regression-lawyering though. > Yes, it's mainly semantics. >From the user's point of view kernel N: boots, works, plays nethack kernel N+1: goes splat That kernel regressed for that user. He'll shrug and will go back to kernel N and we lost an N+1 tester. And the distros who ship N+1 get a lot of hack work to do. If the feature is this buggy, it was wrong to make it accessible in Kconfig. Anyway. The number of DRI regressions which have come in over the past few weeks is really quite extraordinary. We're now showing 31 open DRI regressions in bugzilla, but a lot of those are presumably defunct. It's been bad ever since the KMS stuff went in. That's understandable given the magnitude of the change, I guess, but the wheels really seem to have falled off in 2.6.32 and 2.6.33. ^ permalink raw reply [flat|nested] 64+ messages in thread
* Re: hung bootup with "drm/radeon/kms: move radeon KMS on/off switch out of staging." 2010-02-04 21:23 ` Andrew Morton @ 2010-02-04 21:34 ` Jesse Barnes 2010-02-04 21:35 ` Dave Airlie 2010-02-06 11:10 ` Felipe Contreras 2 siblings, 0 replies; 64+ messages in thread From: Jesse Barnes @ 2010-02-04 21:34 UTC (permalink / raw) To: Andrew Morton Cc: Ingo Molnar, Matthew Garrett, Airlie, linux-kernel, dri-devel, Alex Deucher, torvalds On Thu, 4 Feb 2010 13:23:46 -0800 Andrew Morton <akpm@linux-foundation.org> wrote: > On Thu, 4 Feb 2010 22:05:59 +0100 > Ingo Molnar <mingo@elte.hu> wrote: > > > > > * Matthew Garrett <mjg59@srcf.ucam.org> wrote: > > > > > On Thu, Feb 04, 2010 at 09:22:54PM +0100, Ingo Molnar wrote: > > > > > > > " Hey, -rc7 just hung on me after enabling this new .config > > > > option it offered for the radeon driver i am using, please add > > > > this to the list of regressions. " > > > > > > If the same configuration options hang on both an old kernel and > > > a new kernel, how is that in any plausible way a regression? > > > What's regressed? > > > > Regressions are not limited to 'same config' kernels, last i > > checked. If that has changed (or if i'm misunderstanding it) then > > it would be nice to hear a clarification about that from Linus. > > > > The way i understand it is that there are narrow exceptions from > > the regression rules, such as completely new drivers for which > > there can be no prior expectation of stability by users. (but for > > even them we are generally on the safer side to list bugs in them > > as regressions as well - especially if we expect many users to > > enable it.) > > > > AFAIK there's no exception for new sub-features of existing > > facilities or drivers, even if it's default-disabled. > > > > This issue materially affects quite a few bugs i'm handling as a > > maintainer. Many of them are under default-off config options - > > most new aspects to existing code are introduced in such a way. It > > would remove quite a bit of urgent-workload from my workflow if i > > could strike them from Rafael's list and could deprioritize them as > > "plain bugs", to be fixed as time permits. > > > > IMHO it would be rather counter-productive to kernel quality if we > > did that kind of regression-lawyering though. > > > > Yes, it's mainly semantics. > > >From the user's point of view > > kernel N: boots, works, plays nethack > kernel N+1: goes splat > > That kernel regressed for that user. He'll shrug and will go back to > kernel N and we lost an N+1 tester. And the distros who ship N+1 get > a lot of hack work to do. > > If the feature is this buggy, it was wrong to make it accessible in > Kconfig. > > > Anyway. The number of DRI regressions which have come in over the > past few weeks is really quite extraordinary. We're now showing 31 > open DRI regressions in bugzilla, but a lot of those are presumably > defunct. > > It's been bad ever since the KMS stuff went in. That's understandable > given the magnitude of the change, I guess, but the wheels really seem > to have falled off in 2.6.32 and 2.6.33. Yeah the number of regressions we have is out of hand. I expected a lot of bugs when moving all this code into the kernel though; after all we've just shifted many of the problems from one code base to another. We've eliminated whole classes of bugs with the KMS and memory management architecture in general, but fundamentally display management is a complex problem, there are a ton of configs to worry about so it's really hard to fix things or add features without breaking anything. Not that this excuses our big regression list... I'll make some time for tracking these things better and getting them assigned. -- Jesse Barnes, Intel Open Source Technology Center ^ permalink raw reply [flat|nested] 64+ messages in thread
* Re: hung bootup with "drm/radeon/kms: move radeon KMS on/off switch out of staging." 2010-02-04 21:23 ` Andrew Morton 2010-02-04 21:34 ` Jesse Barnes @ 2010-02-04 21:35 ` Dave Airlie 2010-02-06 11:10 ` Felipe Contreras 2 siblings, 0 replies; 64+ messages in thread From: Dave Airlie @ 2010-02-04 21:35 UTC (permalink / raw) To: Andrew Morton Cc: Ingo Molnar, Matthew Garrett, Jesse Barnes, Alex Deucher, Dave Airlie, torvalds, linux-kernel, dri-devel On Fri, Feb 5, 2010 at 7:23 AM, Andrew Morton <akpm@linux-foundation.org> wrote: > On Thu, 4 Feb 2010 22:05:59 +0100 > Ingo Molnar <mingo@elte.hu> wrote: > >> >> * Matthew Garrett <mjg59@srcf.ucam.org> wrote: >> >> > On Thu, Feb 04, 2010 at 09:22:54PM +0100, Ingo Molnar wrote: >> > >> > > " Hey, -rc7 just hung on me after enabling this new .config option it >> > > offered for the radeon driver i am using, please add this to the list of >> > > regressions. " >> > >> > If the same configuration options hang on both an old kernel and a new >> > kernel, how is that in any plausible way a regression? What's regressed? >> >> Regressions are not limited to 'same config' kernels, last i checked. If that >> has changed (or if i'm misunderstanding it) then it would be nice to hear a >> clarification about that from Linus. >> >> The way i understand it is that there are narrow exceptions from the >> regression rules, such as completely new drivers for which there can be no >> prior expectation of stability by users. (but for even them we are generally >> on the safer side to list bugs in them as regressions as well - especially if >> we expect many users to enable it.) >> >> AFAIK there's no exception for new sub-features of existing facilities or >> drivers, even if it's default-disabled. >> >> This issue materially affects quite a few bugs i'm handling as a maintainer. >> Many of them are under default-off config options - most new aspects to >> existing code are introduced in such a way. It would remove quite a bit of >> urgent-workload from my workflow if i could strike them from Rafael's list >> and could deprioritize them as "plain bugs", to be fixed as time permits. >> >> IMHO it would be rather counter-productive to kernel quality if we did that >> kind of regression-lawyering though. >> > > Yes, it's mainly semantics. > > From the user's point of view > > kernel N: boots, works, plays nethack > kernel N+1: goes splat > > That kernel regressed for that user. He'll shrug and will go back to > kernel N and we lost an N+1 tester. And the distros who ship N+1 get a > lot of hack work to do. If they used the same .config and it breaks then its a regression if not its not. both then intel and radeon KMS enable is also quite clear on the fact that'll it break your userspace, so I'd hope ppl are reading it. > > If the feature is this buggy, it was wrong to make it accessible in Kconfig. The bug was identified after we enabled the option, we have no record of a similiar problem occuring in Fedora or Ubuntu bug trackers, and my future sight is broken. > > Anyway. The number of DRI regressions which have come in over the past > few weeks is really quite extraordinary. We're now showing 31 open > DRI regressions in bugzilla, but a lot of those are presumably > defunct. > > It's been bad ever since the KMS stuff went in. That's understandable > given the magnitude of the change, I guess, but the wheels really seem > to have falled off in 2.6.32 and 2.6.33. > Its not unsurprising, also Intel vs Radeon KMS is an big distinction, the core KMS code hasn't seen much in the way of problems its driver related. The problem is the kernel is now exposed to the sort of things for years we've had in userspace, graphics drivers are hard. Add the interactions with ACPI, crazy BIOS writers, SMMs, suspend/resume, power management and it just is really really messy. I know in the Intel driver we've been backing out a lot of the new features as soon as we can identify if the hw or sw is at fault and I've been pushing the Intel guys to keep on top of the regession list better, hopefully they are doing so. Also things like the idr change that just bounced in/out broke all of the GEM drivers along with AGP changes in the x86 tree that broke shit. Dave. ^ permalink raw reply [flat|nested] 64+ messages in thread
* Re: hung bootup with "drm/radeon/kms: move radeon KMS on/off switch out of staging." 2010-02-04 21:23 ` Andrew Morton 2010-02-04 21:34 ` Jesse Barnes 2010-02-04 21:35 ` Dave Airlie @ 2010-02-06 11:10 ` Felipe Contreras 2 siblings, 0 replies; 64+ messages in thread From: Felipe Contreras @ 2010-02-06 11:10 UTC (permalink / raw) To: Andrew Morton Cc: Ingo Molnar, Matthew Garrett, Jesse Barnes, Alex Deucher, Dave Airlie, torvalds, linux-kernel, dri-devel On Thu, Feb 4, 2010 at 11:23 PM, Andrew Morton <akpm@linux-foundation.org> wrote: > On Thu, 4 Feb 2010 22:05:59 +0100 > Ingo Molnar <mingo@elte.hu> wrote: >> Regressions are not limited to 'same config' kernels, last i checked. If that >> has changed (or if i'm misunderstanding it) then it would be nice to hear a >> clarification about that from Linus. >> >> The way i understand it is that there are narrow exceptions from the >> regression rules, such as completely new drivers for which there can be no >> prior expectation of stability by users. (but for even them we are generally >> on the safer side to list bugs in them as regressions as well - especially if >> we expect many users to enable it.) >> >> AFAIK there's no exception for new sub-features of existing facilities or >> drivers, even if it's default-disabled. >> >> This issue materially affects quite a few bugs i'm handling as a maintainer. >> Many of them are under default-off config options - most new aspects to >> existing code are introduced in such a way. It would remove quite a bit of >> urgent-workload from my workflow if i could strike them from Rafael's list >> and could deprioritize them as "plain bugs", to be fixed as time permits. >> >> IMHO it would be rather counter-productive to kernel quality if we did that >> kind of regression-lawyering though. > > Yes, it's mainly semantics. > > From the user's point of view > > kernel N: boots, works, plays nethack > kernel N+1: goes splat > > That kernel regressed for that user. He'll shrug and will go back to > kernel N and we lost an N+1 tester. And the distros who ship N+1 get a > lot of hack work to do. > > If the feature is this buggy, it was wrong to make it accessible in Kconfig. That's why some features are marked as _experimental_ and disabled by default. If the feature is not marked as such, then yeah, I would consider it a regression. -- Felipe Contreras ^ permalink raw reply [flat|nested] 64+ messages in thread
* Re: [crash, PATCH] Revert "drm/radeon/kms: move radeon KMS on/off switch out of staging." 2010-02-02 8:17 ` [crash, PATCH] Revert "drm/radeon/kms: move radeon KMS on/off switch out of staging." Ingo Molnar 2010-02-02 8:25 ` Dave Airlie 2010-02-02 8:35 ` Dave Airlie @ 2010-02-02 8:58 ` Domenico Andreoli 2010-02-02 11:59 ` Jerome Glisse 2010-02-02 11:56 ` Jerome Glisse 3 siblings, 1 reply; 64+ messages in thread From: Domenico Andreoli @ 2010-02-02 8:58 UTC (permalink / raw) To: Dave Airlie; +Cc: linux-kernel, dri-devel On Tue, Feb 02, 2010 at 09:17:27AM +0100, Ingo Molnar wrote: > > * Dave Airlie <airlied@linux.ie> wrote: > > > > Hi Linus, > > > > > > Please pull the 'drm-linus' branch from > > > ssh://master.kernel.org/pub/scm/linux/kernel/git/airlied/drm-2.6.git drm-linus > > > > > FYI, this drm pull into mainline has triggered quick boot crashes in -tip > testing (even with the above fix applied), on an Athlon64 whitebox PC with: boot broke also here where unfortunately i have not a serial line to see what's happening. anyway disabling KMS restores a working 2.6.33-rc6-00072-gab65832 kernel. here is the broken config. in the next days i should be able to test it with a RV770. > 01:00.0 VGA compatible controller: ATI Technologies Inc RV370 5B60 [Radeon X300 (PCIE)] > 01:00.1 Display controller: ATI Technologies Inc RV370 [Radeon X300SE] 01:00.0 VGA compatible controller: ATI Technologies Inc RV515 [Radeon X1300] 01:00.1 Display controller: ATI Technologies Inc RV515 [Radeon X1300] (Secondary) # # Automatically generated make config: don't edit # Linux kernel version: 2.6.33-rc6 # Mon Feb 1 23:08:06 2010 # CONFIG_64BIT=y # CONFIG_X86_32 is not set CONFIG_X86_64=y CONFIG_X86=y CONFIG_OUTPUT_FORMAT="elf64-x86-64" CONFIG_ARCH_DEFCONFIG="arch/x86/configs/x86_64_defconfig" CONFIG_GENERIC_TIME=y CONFIG_GENERIC_CMOS_UPDATE=y CONFIG_CLOCKSOURCE_WATCHDOG=y CONFIG_GENERIC_CLOCKEVENTS=y CONFIG_GENERIC_CLOCKEVENTS_BROADCAST=y CONFIG_LOCKDEP_SUPPORT=y CONFIG_STACKTRACE_SUPPORT=y CONFIG_HAVE_LATENCYTOP_SUPPORT=y CONFIG_MMU=y CONFIG_ZONE_DMA=y CONFIG_GENERIC_ISA_DMA=y CONFIG_GENERIC_IOMAP=y CONFIG_GENERIC_BUG=y CONFIG_GENERIC_BUG_RELATIVE_POINTERS=y CONFIG_GENERIC_HWEIGHT=y CONFIG_GENERIC_GPIO=y CONFIG_ARCH_MAY_HAVE_PC_FDC=y CONFIG_RWSEM_GENERIC_SPINLOCK=y # CONFIG_RWSEM_XCHGADD_ALGORITHM is not set CONFIG_ARCH_HAS_CPU_IDLE_WAIT=y CONFIG_GENERIC_CALIBRATE_DELAY=y CONFIG_GENERIC_TIME_VSYSCALL=y CONFIG_ARCH_HAS_CPU_RELAX=y CONFIG_ARCH_HAS_DEFAULT_IDLE=y CONFIG_ARCH_HAS_CACHE_LINE_SIZE=y CONFIG_HAVE_SETUP_PER_CPU_AREA=y CONFIG_NEED_PER_CPU_EMBED_FIRST_CHUNK=y CONFIG_NEED_PER_CPU_PAGE_FIRST_CHUNK=y CONFIG_HAVE_CPUMASK_OF_CPU_MAP=y CONFIG_ARCH_HIBERNATION_POSSIBLE=y CONFIG_ARCH_SUSPEND_POSSIBLE=y CONFIG_ZONE_DMA32=y CONFIG_ARCH_POPULATES_NODE_MAP=y CONFIG_AUDIT_ARCH=y CONFIG_ARCH_SUPPORTS_OPTIMIZED_INLINING=y CONFIG_ARCH_SUPPORTS_DEBUG_PAGEALLOC=y CONFIG_GENERIC_HARDIRQS=y CONFIG_GENERIC_HARDIRQS_NO__DO_IRQ=y CONFIG_GENERIC_IRQ_PROBE=y CONFIG_GENERIC_PENDING_IRQ=y CONFIG_USE_GENERIC_SMP_HELPERS=y CONFIG_X86_64_SMP=y CONFIG_X86_HT=y CONFIG_X86_TRAMPOLINE=y # CONFIG_KTIME_SCALAR is not set CONFIG_DEFCONFIG_LIST="/lib/modules/$UNAME_RELEASE/.config" CONFIG_CONSTRUCTORS=y # # General setup # CONFIG_EXPERIMENTAL=y CONFIG_LOCK_KERNEL=y CONFIG_INIT_ENV_ARG_LIMIT=32 CONFIG_LOCALVERSION="" CONFIG_LOCALVERSION_AUTO=y CONFIG_HAVE_KERNEL_GZIP=y CONFIG_HAVE_KERNEL_BZIP2=y CONFIG_HAVE_KERNEL_LZMA=y CONFIG_HAVE_KERNEL_LZO=y CONFIG_KERNEL_GZIP=y # CONFIG_KERNEL_BZIP2 is not set # CONFIG_KERNEL_LZMA is not set # CONFIG_KERNEL_LZO is not set 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 # # RCU Subsystem # CONFIG_TREE_RCU=y # CONFIG_TREE_PREEMPT_RCU is not set # CONFIG_TINY_RCU is not set # CONFIG_RCU_TRACE is not set CONFIG_RCU_FANOUT=32 # CONFIG_RCU_FANOUT_EXACT is not set # CONFIG_TREE_RCU_TRACE is not set CONFIG_IKCONFIG=y CONFIG_IKCONFIG_PROC=y CONFIG_LOG_BUF_SHIFT=18 CONFIG_HAVE_UNSTABLE_SCHED_CLOCK=y # CONFIG_GROUP_SCHED is not set # CONFIG_CGROUPS is not set # CONFIG_SYSFS_DEPRECATED_V2 is not set # CONFIG_RELAY is not set 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_NET_NS is not set CONFIG_BLK_DEV_INITRD=y CONFIG_INITRAMFS_SOURCE="" CONFIG_RD_GZIP=y CONFIG_RD_BZIP2=y CONFIG_RD_LZMA=y CONFIG_RD_LZO=y # CONFIG_CC_OPTIMIZE_FOR_SIZE is not set CONFIG_SYSCTL=y CONFIG_ANON_INODES=y # CONFIG_EMBEDDED is not set CONFIG_UID16=y CONFIG_SYSCTL_SYSCALL=y CONFIG_KALLSYMS=y # CONFIG_KALLSYMS_EXTRA_PASS is not set CONFIG_HOTPLUG=y CONFIG_PRINTK=y CONFIG_BUG=y CONFIG_ELF_CORE=y CONFIG_PCSPKR_PLATFORM=y CONFIG_BASE_FULL=y CONFIG_FUTEX=y CONFIG_EPOLL=y CONFIG_SIGNALFD=y CONFIG_TIMERFD=y CONFIG_EVENTFD=y CONFIG_SHMEM=y CONFIG_AIO=y CONFIG_HAVE_PERF_EVENTS=y # # Kernel Performance Events And Counters # CONFIG_PERF_EVENTS=y # CONFIG_EVENT_PROFILE is not set # CONFIG_PERF_COUNTERS is not set CONFIG_VM_EVENT_COUNTERS=y CONFIG_PCI_QUIRKS=y # CONFIG_COMPAT_BRK is not set CONFIG_SLAB=y # CONFIG_SLUB is not set # CONFIG_SLOB is not set CONFIG_PROFILING=y CONFIG_TRACEPOINTS=y CONFIG_OPROFILE=m # CONFIG_OPROFILE_IBS is not set # CONFIG_OPROFILE_EVENT_MULTIPLEX is not set CONFIG_HAVE_OPROFILE=y # CONFIG_KPROBES is not set CONFIG_HAVE_EFFICIENT_UNALIGNED_ACCESS=y CONFIG_USER_RETURN_NOTIFIER=y CONFIG_HAVE_IOREMAP_PROT=y CONFIG_HAVE_KPROBES=y CONFIG_HAVE_KRETPROBES=y CONFIG_HAVE_ARCH_TRACEHOOK=y CONFIG_HAVE_DMA_ATTRS=y CONFIG_HAVE_DMA_API_DEBUG=y CONFIG_HAVE_HW_BREAKPOINT=y CONFIG_HAVE_USER_RETURN_NOTIFIER=y # # GCOV-based kernel profiling # # CONFIG_GCOV_KERNEL is not set # CONFIG_SLOW_WORK is not set # CONFIG_HAVE_GENERIC_DMA_COHERENT is not set CONFIG_SLABINFO=y CONFIG_RT_MUTEXES=y CONFIG_BASE_SMALL=0 CONFIG_MODULES=y # CONFIG_MODULE_FORCE_LOAD is not set CONFIG_MODULE_UNLOAD=y # CONFIG_MODULE_FORCE_UNLOAD is not set # CONFIG_MODVERSIONS is not set # CONFIG_MODULE_SRCVERSION_ALL is not set CONFIG_STOP_MACHINE=y CONFIG_BLOCK=y # CONFIG_BLK_DEV_BSG is not set # CONFIG_BLK_DEV_INTEGRITY is not set CONFIG_BLOCK_COMPAT=y # # IO Schedulers # CONFIG_IOSCHED_NOOP=y # CONFIG_IOSCHED_DEADLINE is not set CONFIG_IOSCHED_CFQ=y # CONFIG_DEFAULT_DEADLINE is not set CONFIG_DEFAULT_CFQ=y # CONFIG_DEFAULT_NOOP is not set CONFIG_DEFAULT_IOSCHED="cfq" CONFIG_PREEMPT_NOTIFIERS=y # CONFIG_INLINE_SPIN_TRYLOCK is not set # CONFIG_INLINE_SPIN_TRYLOCK_BH is not set # CONFIG_INLINE_SPIN_LOCK is not set # CONFIG_INLINE_SPIN_LOCK_BH is not set # CONFIG_INLINE_SPIN_LOCK_IRQ is not set # CONFIG_INLINE_SPIN_LOCK_IRQSAVE is not set # CONFIG_INLINE_SPIN_UNLOCK is not set # CONFIG_INLINE_SPIN_UNLOCK_BH is not set # CONFIG_INLINE_SPIN_UNLOCK_IRQ is not set # CONFIG_INLINE_SPIN_UNLOCK_IRQRESTORE is not set # CONFIG_INLINE_READ_TRYLOCK is not set # CONFIG_INLINE_READ_LOCK is not set # CONFIG_INLINE_READ_LOCK_BH is not set # CONFIG_INLINE_READ_LOCK_IRQ is not set # CONFIG_INLINE_READ_LOCK_IRQSAVE is not set # CONFIG_INLINE_READ_UNLOCK is not set # CONFIG_INLINE_READ_UNLOCK_BH is not set # CONFIG_INLINE_READ_UNLOCK_IRQ is not set # CONFIG_INLINE_READ_UNLOCK_IRQRESTORE is not set # CONFIG_INLINE_WRITE_TRYLOCK is not set # CONFIG_INLINE_WRITE_LOCK is not set # CONFIG_INLINE_WRITE_LOCK_BH is not set # CONFIG_INLINE_WRITE_LOCK_IRQ is not set # CONFIG_INLINE_WRITE_LOCK_IRQSAVE is not set # CONFIG_INLINE_WRITE_UNLOCK is not set # CONFIG_INLINE_WRITE_UNLOCK_BH is not set # CONFIG_INLINE_WRITE_UNLOCK_IRQ is not set # CONFIG_INLINE_WRITE_UNLOCK_IRQRESTORE is not set CONFIG_MUTEX_SPIN_ON_OWNER=y CONFIG_FREEZER=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=y # CONFIG_SPARSE_IRQ is not set # CONFIG_X86_MPPARSE is not set # CONFIG_X86_EXTENDED_PLATFORM is not set CONFIG_X86_SUPPORTS_MEMORY_FAILURE=y CONFIG_SCHED_OMIT_FRAME_POINTER=y # CONFIG_PARAVIRT_GUEST is not set # CONFIG_MEMTEST is not set # CONFIG_M386 is not set # CONFIG_M486 is not set # CONFIG_M586 is not set # CONFIG_M586TSC is not set # CONFIG_M586MMX is not set # CONFIG_M686 is not set # CONFIG_MPENTIUMII is not set # CONFIG_MPENTIUMIII is not set # CONFIG_MPENTIUMM is not set # CONFIG_MPENTIUM4 is not set # CONFIG_MK6 is not set # CONFIG_MK7 is not set # CONFIG_MK8 is not set # CONFIG_MCRUSOE is not set # CONFIG_MEFFICEON is not set # CONFIG_MWINCHIPC6 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=y # CONFIG_MATOM is not set # CONFIG_GENERIC_CPU is not set CONFIG_X86_CPU=y CONFIG_X86_INTERNODE_CACHE_SHIFT=6 CONFIG_X86_CMPXCHG=y CONFIG_X86_L1_CACHE_SHIFT=6 CONFIG_X86_WP_WORKS_OK=y CONFIG_X86_INTEL_USERCOPY=y CONFIG_X86_USE_PPRO_CHECKSUM=y CONFIG_X86_P6_NOP=y CONFIG_X86_TSC=y CONFIG_X86_CMPXCHG64=y CONFIG_X86_CMOV=y CONFIG_X86_MINIMUM_CPU_FAMILY=64 CONFIG_X86_DEBUGCTLMSR=y CONFIG_CPU_SUP_INTEL=y CONFIG_CPU_SUP_AMD=y CONFIG_CPU_SUP_CENTAUR=y # CONFIG_X86_DS is not set CONFIG_HPET_TIMER=y CONFIG_HPET_EMULATE_RTC=y CONFIG_DMI=y CONFIG_GART_IOMMU=y # CONFIG_CALGARY_IOMMU is not set # CONFIG_AMD_IOMMU is not set CONFIG_SWIOTLB=y CONFIG_IOMMU_HELPER=y # CONFIG_IOMMU_API is not set CONFIG_NR_CPUS=4 # CONFIG_SCHED_SMT is not set CONFIG_SCHED_MC=y # CONFIG_PREEMPT_NONE is not set # CONFIG_PREEMPT_VOLUNTARY is not set CONFIG_PREEMPT=y CONFIG_X86_LOCAL_APIC=y CONFIG_X86_IO_APIC=y # CONFIG_X86_REROUTE_FOR_BROKEN_BOOT_IRQS is not set CONFIG_X86_MCE=y CONFIG_X86_MCE_INTEL=y # CONFIG_X86_MCE_AMD is not set CONFIG_X86_MCE_THRESHOLD=y # CONFIG_X86_MCE_INJECT is not set CONFIG_X86_THERMAL_VECTOR=y # CONFIG_I8K is not set # CONFIG_MICROCODE is not set # CONFIG_X86_MSR is not set # CONFIG_X86_CPUID is not set CONFIG_ARCH_PHYS_ADDR_T_64BIT=y CONFIG_DIRECT_GBPAGES=y # CONFIG_NUMA is not set CONFIG_ARCH_PROC_KCORE_TEXT=y CONFIG_ARCH_SPARSEMEM_DEFAULT=y CONFIG_ARCH_SPARSEMEM_ENABLE=y CONFIG_ARCH_SELECT_MEMORY_MODEL=y CONFIG_ILLEGAL_POINTER_VALUE=0xdead000000000000 CONFIG_SELECT_MEMORY_MODEL=y # CONFIG_FLATMEM_MANUAL is not set # CONFIG_DISCONTIGMEM_MANUAL is not set CONFIG_SPARSEMEM_MANUAL=y CONFIG_SPARSEMEM=y CONFIG_HAVE_MEMORY_PRESENT=y CONFIG_SPARSEMEM_EXTREME=y CONFIG_SPARSEMEM_VMEMMAP_ENABLE=y CONFIG_SPARSEMEM_VMEMMAP=y # CONFIG_MEMORY_HOTPLUG is not set CONFIG_PAGEFLAGS_EXTENDED=y CONFIG_SPLIT_PTLOCK_CPUS=4 CONFIG_PHYS_ADDR_T_64BIT=y CONFIG_ZONE_DMA_FLAG=1 CONFIG_BOUNCE=y CONFIG_VIRT_TO_BUS=y CONFIG_MMU_NOTIFIER=y CONFIG_KSM=y CONFIG_DEFAULT_MMAP_MIN_ADDR=4096 CONFIG_ARCH_SUPPORTS_MEMORY_FAILURE=y # CONFIG_MEMORY_FAILURE is not set # CONFIG_X86_CHECK_BIOS_CORRUPTION is not set CONFIG_X86_RESERVE_LOW_64K=y CONFIG_MTRR=y # CONFIG_MTRR_SANITIZER is not set CONFIG_X86_PAT=y CONFIG_ARCH_USES_PG_UNCACHED=y # CONFIG_EFI is not set # CONFIG_SECCOMP is not set # CONFIG_CC_STACKPROTECTOR is not set # 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 is not set # CONFIG_CRASH_DUMP is not set CONFIG_PHYSICAL_START=0x1000000 # CONFIG_RELOCATABLE is not set CONFIG_PHYSICAL_ALIGN=0x1000000 CONFIG_HOTPLUG_CPU=y CONFIG_COMPAT_VDSO=y # CONFIG_CMDLINE_BOOL is not set CONFIG_ARCH_ENABLE_MEMORY_HOTPLUG=y # # Power management and ACPI options # CONFIG_ARCH_HIBERNATION_HEADER=y CONFIG_PM=y # CONFIG_PM_DEBUG is not set CONFIG_PM_SLEEP_SMP=y CONFIG_PM_SLEEP=y CONFIG_SUSPEND=y CONFIG_SUSPEND_FREEZER=y CONFIG_HIBERNATION_NVS=y CONFIG_HIBERNATION=y CONFIG_PM_STD_PARTITION="" # CONFIG_PM_RUNTIME is not set CONFIG_ACPI=y CONFIG_ACPI_SLEEP=y # CONFIG_ACPI_PROCFS is not set # CONFIG_ACPI_PROCFS_POWER is not set # CONFIG_ACPI_POWER_METER is not set CONFIG_ACPI_SYSFS_POWER=y # CONFIG_ACPI_PROC_EVENT is not set CONFIG_ACPI_AC=y # CONFIG_ACPI_BATTERY is not set CONFIG_ACPI_BUTTON=y CONFIG_ACPI_FAN=y # CONFIG_ACPI_DOCK is not set CONFIG_ACPI_PROCESSOR=y CONFIG_ACPI_HOTPLUG_CPU=y # CONFIG_ACPI_PROCESSOR_AGGREGATOR is not set CONFIG_ACPI_THERMAL=y # CONFIG_ACPI_CUSTOM_DSDT is not set CONFIG_ACPI_BLACKLIST_YEAR=0 # CONFIG_ACPI_DEBUG is not set # CONFIG_ACPI_PCI_SLOT is not set CONFIG_X86_PM_TIMER=y CONFIG_ACPI_CONTAINER=y # CONFIG_ACPI_SBS is not set # CONFIG_SFI 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 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 is not set CONFIG_CPU_FREQ_DEFAULT_GOV_ONDEMAND=y # CONFIG_CPU_FREQ_DEFAULT_GOV_CONSERVATIVE is not set CONFIG_CPU_FREQ_GOV_PERFORMANCE=y # CONFIG_CPU_FREQ_GOV_POWERSAVE is not set # CONFIG_CPU_FREQ_GOV_USERSPACE is not set CONFIG_CPU_FREQ_GOV_ONDEMAND=y # CONFIG_CPU_FREQ_GOV_CONSERVATIVE is not set # # CPUFreq processor drivers # CONFIG_X86_ACPI_CPUFREQ=y # CONFIG_X86_POWERNOW_K8 is not set # CONFIG_X86_SPEEDSTEP_CENTRINO is not set # CONFIG_X86_P4_CLOCKMOD is not set # # shared options # # CONFIG_X86_SPEEDSTEP_LIB is not set CONFIG_CPU_IDLE=y CONFIG_CPU_IDLE_GOV_LADDER=y CONFIG_CPU_IDLE_GOV_MENU=y # # Memory power savings # # CONFIG_I7300_IDLE is not set # # Bus options (PCI etc.) # CONFIG_PCI=y CONFIG_PCI_DIRECT=y CONFIG_PCI_MMCONFIG=y CONFIG_PCI_DOMAINS=y # CONFIG_DMAR is not set # CONFIG_INTR_REMAP is not set CONFIG_PCIEPORTBUS=y CONFIG_PCIEAER=y # CONFIG_PCIE_ECRC is not set # CONFIG_PCIEAER_INJECT is not set # CONFIG_PCIEASPM is not set CONFIG_ARCH_SUPPORTS_MSI=y CONFIG_PCI_MSI=y # CONFIG_PCI_LEGACY is not set # CONFIG_PCI_STUB is not set CONFIG_HT_IRQ=y # CONFIG_PCI_IOV is not set CONFIG_PCI_IOAPIC=y CONFIG_ISA_DMA_API=y CONFIG_K8_NB=y # CONFIG_PCCARD is not set # CONFIG_HOTPLUG_PCI is not set # # Executable file formats / Emulations # CONFIG_BINFMT_ELF=y CONFIG_COMPAT_BINFMT_ELF=y # CONFIG_CORE_DUMP_DEFAULT_ELF_HEADERS is not set # CONFIG_HAVE_AOUT is not set CONFIG_BINFMT_MISC=m CONFIG_IA32_EMULATION=y # CONFIG_IA32_AOUT is not set CONFIG_COMPAT=y CONFIG_COMPAT_FOR_U64_ALIGNMENT=y CONFIG_SYSVIPC_COMPAT=y 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 is not set # CONFIG_IP_ADVANCED_ROUTER is not set CONFIG_IP_FIB_HASH=y # CONFIG_IP_PNP is not set CONFIG_NET_IPIP=m # CONFIG_NET_IPGRE is not set # CONFIG_ARPD is not set CONFIG_SYN_COOKIES=y # 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=m # 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 is not set CONFIG_INET_DIAG=y CONFIG_INET_TCP_DIAG=y # CONFIG_TCP_CONG_ADVANCED is not set CONFIG_TCP_CONG_CUBIC=y CONFIG_DEFAULT_TCP_CONG="cubic" # CONFIG_TCP_MD5SIG is not set # CONFIG_IPV6 is not set # CONFIG_NETWORK_SECMARK is not set # CONFIG_NETFILTER is not set # CONFIG_IP_DCCP is not set # CONFIG_IP_SCTP is not set # CONFIG_RDS is not set # CONFIG_TIPC is not set # CONFIG_ATM is not set # CONFIG_BRIDGE is not set # CONFIG_NET_DSA is not set # CONFIG_VLAN_8021Q is not set # CONFIG_DECNET is not set # CONFIG_LLC2 is not set # CONFIG_IPX is not set # CONFIG_ATALK is not set # CONFIG_X25 is not set # CONFIG_LAPB is not set # CONFIG_ECONET is not set # CONFIG_WAN_ROUTER is not set # CONFIG_PHONET is not set # CONFIG_IEEE802154 is not set # CONFIG_NET_SCHED is not set # CONFIG_DCB is not set # # Network testing # # CONFIG_NET_PKTGEN is not set # CONFIG_NET_DROP_MONITOR is not set # CONFIG_HAMRADIO is not set # CONFIG_CAN is not set # CONFIG_IRDA is not set # CONFIG_BT is not set # CONFIG_AF_RXRPC is not set # CONFIG_WIRELESS is not set # CONFIG_WIMAX is not set # CONFIG_RFKILL is not set # CONFIG_NET_9P is not set # # Device Drivers # # # Generic Driver Options # CONFIG_UEVENT_HELPER_PATH="/sbin/hotplug" # CONFIG_DEVTMPFS is not set CONFIG_STANDALONE=y CONFIG_PREVENT_FIRMWARE_BUILD=y CONFIG_FW_LOADER=y # CONFIG_FIRMWARE_IN_KERNEL is not set CONFIG_EXTRA_FIRMWARE="" # CONFIG_SYS_HYPERVISOR is not set # CONFIG_CONNECTOR is not set # CONFIG_MTD is not set # CONFIG_PARPORT is not set CONFIG_PNP=y # CONFIG_PNP_DEBUG_MESSAGES 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=y CONFIG_BLK_DEV_CRYPTOLOOP=y # # DRBD disabled because PROC_FS, INET or CONNECTOR not selected # # 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_BLK_DEV_HD is not set # CONFIG_MISC_DEVICES is not set CONFIG_HAVE_IDE=y # CONFIG_IDE 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=y # CONFIG_BLK_DEV_SR_VENDOR is not set # CONFIG_CHR_DEV_SG is not set # CONFIG_CHR_DEV_SCH is not set # 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_SCSI_DH is not set # CONFIG_SCSI_OSD_INITIATOR is not set CONFIG_ATA=y # CONFIG_ATA_NONSTANDARD is not set # CONFIG_ATA_VERBOSE_ERROR is not set CONFIG_ATA_ACPI=y # CONFIG_SATA_PMP is not set CONFIG_SATA_AHCI=y # CONFIG_SATA_SIL24 is not set CONFIG_ATA_SFF=y # CONFIG_SATA_SVW is not set CONFIG_ATA_PIIX=y # CONFIG_SATA_MV is not set # CONFIG_SATA_NV is not set # CONFIG_PDC_ADMA is not set # CONFIG_SATA_QSTOR is not set # CONFIG_SATA_PROMISE is not set # CONFIG_SATA_SX4 is not set # CONFIG_SATA_SIL is not set # CONFIG_SATA_SIS is not set # CONFIG_SATA_ULI is not set # CONFIG_SATA_VIA is not set # CONFIG_SATA_VITESSE is not set # CONFIG_SATA_INIC162X is not set # CONFIG_PATA_ACPI is not set # CONFIG_PATA_ALI is not set # CONFIG_PATA_AMD is not set # CONFIG_PATA_ARTOP is not set # CONFIG_PATA_ATP867X is not set # CONFIG_PATA_ATIIXP is not set # CONFIG_PATA_CMD640_PCI is not set # CONFIG_PATA_CMD64X is not set # CONFIG_PATA_CS5520 is not set # CONFIG_PATA_CS5530 is not set # CONFIG_PATA_CYPRESS is not set # CONFIG_PATA_EFAR is not set # CONFIG_ATA_GENERIC is not set # CONFIG_PATA_HPT366 is not set # CONFIG_PATA_HPT37X is not set # CONFIG_PATA_HPT3X2N is not set # CONFIG_PATA_HPT3X3 is not set # CONFIG_PATA_IT821X is not set # CONFIG_PATA_IT8213 is not set CONFIG_PATA_JMICRON=y # CONFIG_PATA_TRIFLEX is not set # CONFIG_PATA_MARVELL is not set # CONFIG_PATA_MPIIX is not set # CONFIG_PATA_OLDPIIX is not set # CONFIG_PATA_NETCELL is not set # CONFIG_PATA_NINJA32 is not set # CONFIG_PATA_NS87410 is not set # CONFIG_PATA_NS87415 is not set # CONFIG_PATA_OPTI is not set # CONFIG_PATA_OPTIDMA is not set # CONFIG_PATA_PDC2027X is not set # CONFIG_PATA_PDC_OLD is not set # CONFIG_PATA_RADISYS is not set # CONFIG_PATA_RDC is not set # CONFIG_PATA_RZ1000 is not set # CONFIG_PATA_SC1200 is not set # CONFIG_PATA_SERVERWORKS is not set # CONFIG_PATA_SIL680 is not set # CONFIG_PATA_SIS is not set # CONFIG_PATA_TOSHIBA is not set # CONFIG_PATA_VIA is not set # CONFIG_PATA_WINBOND is not set # CONFIG_PATA_SCH is not set # CONFIG_MD is not set # CONFIG_FUSION is not set # # IEEE 1394 (FireWire) support # # # You can enable one or both FireWire driver stacks. # # # The newer stack is recommended. # # CONFIG_FIREWIRE is not set # CONFIG_IEEE1394 is not set # CONFIG_I2O is not set # CONFIG_MACINTOSH_DRIVERS is not set CONFIG_NETDEVICES=y # CONFIG_DUMMY is not set # CONFIG_BONDING is not set # CONFIG_MACVLAN is not set # CONFIG_EQUALIZER is not set CONFIG_TUN=y # CONFIG_VETH is not set # CONFIG_NET_SB1000 is not set # CONFIG_ARCNET is not set # CONFIG_NET_ETHERNET is not set CONFIG_NETDEV_1000=y # CONFIG_ACENIC is not set # CONFIG_DL2K is not set # CONFIG_E1000 is not set # CONFIG_E1000E is not set # CONFIG_IP1000 is not set # CONFIG_IGB is not set # CONFIG_IGBVF is not set # CONFIG_NS83820 is not set # CONFIG_HAMACHI is not set # CONFIG_YELLOWFIN is not set # CONFIG_R8169 is not set # CONFIG_SIS190 is not set # CONFIG_SKGE is not set CONFIG_SKY2=y # CONFIG_SKY2_DEBUG is not set # CONFIG_VIA_VELOCITY is not set # CONFIG_TIGON3 is not set # CONFIG_BNX2 is not set # CONFIG_CNIC is not set # CONFIG_QLA3XXX is not set # CONFIG_ATL1 is not set # CONFIG_ATL1E is not set # CONFIG_ATL1C is not set # CONFIG_JME is not set # CONFIG_NETDEV_10000 is not set # CONFIG_TR is not set # CONFIG_WLAN is not set # # Enable WiMAX (Networking options) to see the WiMAX drivers # # # 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 is not set # CONFIG_NETPOLL is not set # CONFIG_NET_POLL_CONTROLLER is not set # CONFIG_VMXNET3 is not set # 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 # CONFIG_INPUT_SPARSEKMAP is not set # # Userland interfaces # CONFIG_INPUT_MOUSEDEV=y # CONFIG_INPUT_MOUSEDEV_PSAUX is not set CONFIG_INPUT_MOUSEDEV_SCREEN_X=1024 CONFIG_INPUT_MOUSEDEV_SCREEN_Y=768 # CONFIG_INPUT_JOYDEV is not set CONFIG_INPUT_EVDEV=y # CONFIG_INPUT_EVBUG is not set # # Input Device Drivers # CONFIG_INPUT_KEYBOARD=y # CONFIG_KEYBOARD_ADP5588 is not set CONFIG_KEYBOARD_ATKBD=y # CONFIG_QT2160 is not set # CONFIG_KEYBOARD_LKKBD is not set # CONFIG_KEYBOARD_GPIO is not set # CONFIG_KEYBOARD_MATRIX is not set # CONFIG_KEYBOARD_MAX7359 is not set # CONFIG_KEYBOARD_NEWTON is not set # CONFIG_KEYBOARD_OPENCORES is not set # CONFIG_KEYBOARD_STOWAWAY is not set # CONFIG_KEYBOARD_SUNKBD is not set # CONFIG_KEYBOARD_XTKBD is not set # CONFIG_INPUT_MOUSE 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=y # CONFIG_SERIO_CT82C710 is not set # CONFIG_SERIO_PCIPS2 is not set CONFIG_SERIO_LIBPS2=y # CONFIG_SERIO_RAW is not set # CONFIG_SERIO_ALTERA_PS2 is not set # CONFIG_GAMEPORT is not set # # Character devices # CONFIG_VT=y CONFIG_CONSOLE_TRANSLATIONS=y CONFIG_VT_CONSOLE=y CONFIG_HW_CONSOLE=y # CONFIG_VT_HW_CONSOLE_BINDING is not set # CONFIG_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=y # CONFIG_SERIAL_8250_MANY_PORTS is not set CONFIG_SERIAL_8250_SHARE_IRQ=y # CONFIG_SERIAL_8250_DETECT_IRQ is not set # CONFIG_SERIAL_8250_RSA 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_DEVPTS_MULTIPLE_INSTANCES is not set # CONFIG_LEGACY_PTYS is not set # CONFIG_IPMI_HANDLER is not set # CONFIG_HW_RANDOM is not set # CONFIG_NVRAM is not set CONFIG_RTC=y # CONFIG_R3964 is not set # CONFIG_APPLICOM is not set # CONFIG_MWAVE is not set # CONFIG_PC8736x_GPIO is not set # CONFIG_RAW_DRIVER is not set CONFIG_HPET=y 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=y CONFIG_I2C_BOARDINFO=y CONFIG_I2C_COMPAT=y CONFIG_I2C_CHARDEV=y CONFIG_I2C_HELPER_AUTO=y CONFIG_I2C_ALGOBIT=y # # I2C Hardware Bus support # # # PC SMBus host controller drivers # # CONFIG_I2C_ALI1535 is not set # CONFIG_I2C_ALI1563 is not set # CONFIG_I2C_ALI15X3 is not set # CONFIG_I2C_AMD756 is not set # CONFIG_I2C_AMD8111 is not set CONFIG_I2C_I801=y # CONFIG_I2C_ISCH is not set # CONFIG_I2C_PIIX4 is not set # CONFIG_I2C_NFORCE2 is not set # CONFIG_I2C_SIS5595 is not set # CONFIG_I2C_SIS630 is not set # CONFIG_I2C_SIS96X is not set # CONFIG_I2C_VIA is not set # CONFIG_I2C_VIAPRO is not set # # ACPI drivers # # CONFIG_I2C_SCMI is not set # # I2C system bus drivers (mostly embedded / system-on-chip) # # CONFIG_I2C_GPIO is not set # CONFIG_I2C_OCORES is not set # CONFIG_I2C_SIMTEC is not set # # External I2C/SMBus adapter drivers # # CONFIG_I2C_PARPORT_LIGHT is not set # CONFIG_I2C_TAOS_EVM is not set # CONFIG_I2C_TINY_USB is not set # # Other I2C/SMBus bus drivers # # CONFIG_I2C_PCA_PLATFORM is not set # CONFIG_I2C_STUB is not set # # Miscellaneous I2C Chip support # # 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 # # PPS support # # CONFIG_PPS is not set CONFIG_ARCH_WANT_OPTIONAL_GPIOLIB=y CONFIG_GPIOLIB=y CONFIG_GPIO_SYSFS=y # # Memory mapped GPIO expanders: # # # I2C GPIO expanders: # # CONFIG_GPIO_MAX732X is not set # CONFIG_GPIO_PCA953X is not set # CONFIG_GPIO_PCF857X is not set # CONFIG_GPIO_ADP5588 is not set # # PCI GPIO expanders: # # CONFIG_GPIO_CS5535 is not set # CONFIG_GPIO_LANGWELL is not set # # SPI GPIO expanders: # # # AC97 GPIO expanders: # # 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_BATTERY_DS2782 is not set # CONFIG_BATTERY_BQ27x00 is not set # CONFIG_BATTERY_MAX17040 is not set CONFIG_HWMON=y # CONFIG_HWMON_VID is not set # CONFIG_HWMON_DEBUG_CHIP is not set # # Native drivers # # CONFIG_SENSORS_ABITUGURU is not set # CONFIG_SENSORS_ABITUGURU3 is not set # CONFIG_SENSORS_AD7414 is not set # CONFIG_SENSORS_AD7418 is not set # CONFIG_SENSORS_ADM1021 is not set # CONFIG_SENSORS_ADM1025 is not set # CONFIG_SENSORS_ADM1026 is not set # CONFIG_SENSORS_ADM1029 is not set # CONFIG_SENSORS_ADM1031 is not set # CONFIG_SENSORS_ADM9240 is not set # CONFIG_SENSORS_ADT7462 is not set # CONFIG_SENSORS_ADT7470 is not set # CONFIG_SENSORS_ADT7473 is not set # CONFIG_SENSORS_ADT7475 is not set # CONFIG_SENSORS_K8TEMP is not set # CONFIG_SENSORS_K10TEMP is not set # CONFIG_SENSORS_ASB100 is not set # CONFIG_SENSORS_ATXP1 is not set # CONFIG_SENSORS_DS1621 is not set # CONFIG_SENSORS_I5K_AMB is not set # CONFIG_SENSORS_F71805F is not set # CONFIG_SENSORS_F71882FG is not set # CONFIG_SENSORS_F75375S is not set # CONFIG_SENSORS_FSCHMD is not set # CONFIG_SENSORS_G760A is not set # CONFIG_SENSORS_GL518SM is not set # CONFIG_SENSORS_GL520SM is not set CONFIG_SENSORS_CORETEMP=y # CONFIG_SENSORS_IT87 is not set # CONFIG_SENSORS_LM63 is not set # CONFIG_SENSORS_LM73 is not set # CONFIG_SENSORS_LM75 is not set # CONFIG_SENSORS_LM77 is not set # CONFIG_SENSORS_LM78 is not set # CONFIG_SENSORS_LM80 is not set # CONFIG_SENSORS_LM83 is not set # CONFIG_SENSORS_LM85 is not set # CONFIG_SENSORS_LM87 is not set # CONFIG_SENSORS_LM90 is not set # CONFIG_SENSORS_LM92 is not set # CONFIG_SENSORS_LM93 is not set # CONFIG_SENSORS_LTC4215 is not set # CONFIG_SENSORS_LTC4245 is not set # CONFIG_SENSORS_LM95241 is not set # CONFIG_SENSORS_MAX1619 is not set # CONFIG_SENSORS_MAX6650 is not set # CONFIG_SENSORS_PC87360 is not set # CONFIG_SENSORS_PC87427 is not set # CONFIG_SENSORS_PCF8591 is not set # CONFIG_SENSORS_SHT15 is not set # CONFIG_SENSORS_SIS5595 is not set # CONFIG_SENSORS_DME1737 is not set # CONFIG_SENSORS_SMSC47M1 is not set # CONFIG_SENSORS_SMSC47M192 is not set # CONFIG_SENSORS_SMSC47B397 is not set # CONFIG_SENSORS_ADS7828 is not set # CONFIG_SENSORS_AMC6821 is not set # CONFIG_SENSORS_THMC50 is not set # CONFIG_SENSORS_TMP401 is not set # CONFIG_SENSORS_TMP421 is not set # CONFIG_SENSORS_VIA_CPUTEMP is not set # CONFIG_SENSORS_VIA686A is not set # CONFIG_SENSORS_VT1211 is not set # CONFIG_SENSORS_VT8231 is not set # CONFIG_SENSORS_W83781D is not set # CONFIG_SENSORS_W83791D is not set # CONFIG_SENSORS_W83792D is not set # CONFIG_SENSORS_W83793 is not set # CONFIG_SENSORS_W83L785TS is not set # CONFIG_SENSORS_W83L786NG is not set # CONFIG_SENSORS_W83627HF is not set # CONFIG_SENSORS_W83627EHF is not set # CONFIG_SENSORS_HDAPS is not set # CONFIG_SENSORS_LIS3_I2C is not set # CONFIG_SENSORS_APPLESMC is not set # # ACPI drivers # CONFIG_SENSORS_ATK0110=y # CONFIG_SENSORS_LIS3LV02D is not set CONFIG_THERMAL=y # CONFIG_THERMAL_HWMON is not set # CONFIG_WATCHDOG is not set CONFIG_SSB_POSSIBLE=y # # Sonics Silicon Backplane # # CONFIG_SSB is not set # # Multifunction device drivers # # CONFIG_MFD_CORE is not set # CONFIG_MFD_SM501 is not set # CONFIG_HTC_PASIC3 is not set # CONFIG_TPS65010 is not set # CONFIG_TWL4030_CORE is not set # CONFIG_MFD_TMIO is not set # CONFIG_PMIC_DA903X is not set # CONFIG_PMIC_ADP5520 is not set # CONFIG_MFD_WM8400 is not set # CONFIG_MFD_WM831X is not set # CONFIG_MFD_WM8350_I2C is not set # CONFIG_MFD_PCF50633 is not set # CONFIG_AB3100_CORE is not set # CONFIG_MFD_88PM8607 is not set # CONFIG_REGULATOR is not set CONFIG_MEDIA_SUPPORT=y # # Multimedia core support # CONFIG_VIDEO_DEV=y CONFIG_VIDEO_V4L2_COMMON=y # CONFIG_VIDEO_ALLOW_V4L1 is not set CONFIG_VIDEO_V4L1_COMPAT=y # CONFIG_DVB_CORE is not set CONFIG_VIDEO_MEDIA=y # # Multimedia drivers # CONFIG_IR_CORE=y CONFIG_VIDEO_IR=y CONFIG_MEDIA_ATTACH=y CONFIG_MEDIA_TUNER=y # CONFIG_MEDIA_TUNER_CUSTOMISE is not set CONFIG_MEDIA_TUNER_SIMPLE=y CONFIG_MEDIA_TUNER_TDA8290=y CONFIG_MEDIA_TUNER_TDA9887=y CONFIG_MEDIA_TUNER_TEA5761=y CONFIG_MEDIA_TUNER_TEA5767=y CONFIG_MEDIA_TUNER_MT20XX=y CONFIG_MEDIA_TUNER_XC2028=y CONFIG_MEDIA_TUNER_XC5000=y CONFIG_MEDIA_TUNER_MC44S803=y CONFIG_VIDEO_V4L2=y CONFIG_VIDEOBUF_GEN=m CONFIG_VIDEOBUF_DMA_SG=m CONFIG_VIDEOBUF_VMALLOC=m CONFIG_VIDEO_BTCX=m CONFIG_VIDEO_TVEEPROM=m CONFIG_VIDEO_TUNER=m CONFIG_VIDEO_CAPTURE_DRIVERS=y # CONFIG_VIDEO_ADV_DEBUG is not set # CONFIG_VIDEO_FIXED_MINOR_RANGES is not set CONFIG_VIDEO_HELPER_CHIPS_AUTO=y CONFIG_VIDEO_IR_I2C=y CONFIG_VIDEO_TVAUDIO=m CONFIG_VIDEO_TDA7432=m CONFIG_VIDEO_MSP3400=m CONFIG_VIDEO_SAA6588=m CONFIG_VIDEO_MT9V011=m CONFIG_VIDEO_SAA711X=m CONFIG_VIDEO_TVP5150=m CONFIG_VIDEO_VIVI=m CONFIG_VIDEO_BT848=m # CONFIG_VIDEO_SAA5246A is not set # CONFIG_VIDEO_SAA5249 is not set # CONFIG_VIDEO_ZORAN 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_IVTV is not set # CONFIG_VIDEO_CAFE_CCIC is not set # CONFIG_SOC_CAMERA is not set CONFIG_V4L_USB_DRIVERS=y CONFIG_USB_VIDEO_CLASS=m CONFIG_USB_VIDEO_CLASS_INPUT_EVDEV=y # CONFIG_USB_GSPCA is not set # CONFIG_VIDEO_PVRUSB2 is not set # CONFIG_VIDEO_HDPVR is not set CONFIG_VIDEO_EM28XX=m CONFIG_VIDEO_EM28XX_ALSA=m # CONFIG_VIDEO_CX231XX 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_PWC_INPUT_EVDEV is not set # CONFIG_USB_ZR364XX is not set # CONFIG_USB_STKWEBCAM is not set # CONFIG_USB_S2255 is not set # CONFIG_RADIO_ADAPTERS is not set # CONFIG_DAB is not set # # Graphics support # # CONFIG_AGP is not set CONFIG_VGA_ARB=y CONFIG_DRM=y CONFIG_DRM_KMS_HELPER=y CONFIG_DRM_TTM=y # CONFIG_DRM_TDFX is not set # CONFIG_DRM_R128 is not set CONFIG_DRM_RADEON=y CONFIG_DRM_RADEON_KMS=y # CONFIG_DRM_MGA 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=y # CONFIG_FIRMWARE_EDID is not set # CONFIG_FB_DDC is not set # CONFIG_FB_BOOT_VESA_SUPPORT is not set CONFIG_FB_CFB_FILLRECT=y CONFIG_FB_CFB_COPYAREA=y CONFIG_FB_CFB_IMAGEBLIT=y # CONFIG_FB_CFB_REV_PIXELS_IN_BYTE is not set # CONFIG_FB_SYS_FILLRECT is not set # CONFIG_FB_SYS_COPYAREA is not set # CONFIG_FB_SYS_IMAGEBLIT is not set # CONFIG_FB_FOREIGN_ENDIAN is not set # CONFIG_FB_SYS_FOPS is not set # CONFIG_FB_SVGALIB is not set # CONFIG_FB_MACMODES is not set # CONFIG_FB_BACKLIGHT is not set # CONFIG_FB_MODE_HELPERS is not set # CONFIG_FB_TILEBLITTING is not set # # Frame buffer hardware drivers # # CONFIG_FB_CIRRUS is not set # CONFIG_FB_PM2 is not set # CONFIG_FB_CYBER2000 is not set # CONFIG_FB_ARC is not set # CONFIG_FB_ASILIANT is not set # CONFIG_FB_IMSTT is not set # CONFIG_FB_VGA16 is not set # CONFIG_FB_VESA is not set # CONFIG_FB_N411 is not set # CONFIG_FB_HGA is not set # CONFIG_FB_S1D13XXX is not set # CONFIG_FB_NVIDIA is not set # CONFIG_FB_RIVA is not set # CONFIG_FB_LE80578 is not set # CONFIG_FB_MATROX is not set # CONFIG_FB_RADEON is not set # CONFIG_FB_ATY128 is not set # CONFIG_FB_ATY is not set # CONFIG_FB_S3 is not set # CONFIG_FB_SAVAGE is not set # CONFIG_FB_SIS is not set # CONFIG_FB_VIA is not set # CONFIG_FB_NEOMAGIC is not set # CONFIG_FB_KYRO is not set # CONFIG_FB_3DFX is not set # CONFIG_FB_VOODOO1 is not set # CONFIG_FB_VT8623 is not set # CONFIG_FB_TRIDENT is not set # CONFIG_FB_ARK is not set # CONFIG_FB_PM3 is not set # CONFIG_FB_CARMINE is not set # CONFIG_FB_GEODE is not set # CONFIG_FB_VIRTUAL is not set # CONFIG_FB_METRONOME is not set # CONFIG_FB_MB862XX is not set # CONFIG_FB_BROADSHEET is not set # CONFIG_BACKLIGHT_LCD_SUPPORT is not set # # Display device support # # CONFIG_DISPLAY_SUPPORT is not set # # Console display driver support # CONFIG_VGA_CONSOLE=y CONFIG_VGACON_SOFT_SCROLLBACK=y CONFIG_VGACON_SOFT_SCROLLBACK_SIZE=64 CONFIG_DUMMY_CONSOLE=y CONFIG_FRAMEBUFFER_CONSOLE=y # CONFIG_FRAMEBUFFER_CONSOLE_DETECT_PRIMARY 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 CONFIG_SOUND=y # CONFIG_SOUND_OSS_CORE is not set CONFIG_SND=y CONFIG_SND_TIMER=y CONFIG_SND_PCM=y # CONFIG_SND_SEQUENCER is not set # CONFIG_SND_MIXER_OSS is not set # CONFIG_SND_PCM_OSS is not set # CONFIG_SND_HRTIMER is not set CONFIG_SND_RTCTIMER=y CONFIG_SND_DYNAMIC_MINORS=y # 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 CONFIG_SND_VMASTER=y CONFIG_SND_DMA_SGBUF=y # CONFIG_SND_RAWMIDI_SEQ is not set # CONFIG_SND_OPL3_LIB_SEQ is not set # CONFIG_SND_OPL4_LIB_SEQ is not set # CONFIG_SND_SBAWE_SEQ is not set # CONFIG_SND_EMU10K1_SEQ is not set # CONFIG_SND_DRIVERS is not set CONFIG_SND_PCI=y # CONFIG_SND_AD1889 is not set # CONFIG_SND_ALS300 is not set # CONFIG_SND_ALS4000 is not set # CONFIG_SND_ALI5451 is not set # CONFIG_SND_ATIIXP is not set # CONFIG_SND_ATIIXP_MODEM is not set # CONFIG_SND_AU8810 is not set # CONFIG_SND_AU8820 is not set # CONFIG_SND_AU8830 is not set # CONFIG_SND_AW2 is not set # CONFIG_SND_AZT3328 is not set # CONFIG_SND_BT87X is not set # CONFIG_SND_CA0106 is not set # CONFIG_SND_CMIPCI is not set # CONFIG_SND_OXYGEN is not set # CONFIG_SND_CS4281 is not set # CONFIG_SND_CS46XX is not set # CONFIG_SND_CS5530 is not set # CONFIG_SND_CS5535AUDIO is not set # CONFIG_SND_CTXFI is not set # CONFIG_SND_DARLA20 is not set # CONFIG_SND_GINA20 is not set # CONFIG_SND_LAYLA20 is not set # CONFIG_SND_DARLA24 is not set # CONFIG_SND_GINA24 is not set # CONFIG_SND_LAYLA24 is not set # CONFIG_SND_MONA is not set # CONFIG_SND_MIA is not set # CONFIG_SND_ECHO3G is not set # CONFIG_SND_INDIGO is not set # CONFIG_SND_INDIGOIO is not set # CONFIG_SND_INDIGODJ is not set # CONFIG_SND_INDIGOIOX is not set # CONFIG_SND_INDIGODJX is not set # CONFIG_SND_EMU10K1 is not set # CONFIG_SND_EMU10K1X is not set # CONFIG_SND_ENS1370 is not set # CONFIG_SND_ENS1371 is not set # CONFIG_SND_ES1938 is not set # CONFIG_SND_ES1968 is not set # CONFIG_SND_FM801 is not set CONFIG_SND_HDA_INTEL=y # CONFIG_SND_HDA_HWDEP is not set # CONFIG_SND_HDA_INPUT_BEEP is not set # CONFIG_SND_HDA_INPUT_JACK is not set # CONFIG_SND_HDA_PATCH_LOADER is not set # CONFIG_SND_HDA_CODEC_REALTEK is not set CONFIG_SND_HDA_CODEC_ANALOG=y # CONFIG_SND_HDA_CODEC_SIGMATEL is not set # CONFIG_SND_HDA_CODEC_VIA is not set # CONFIG_SND_HDA_CODEC_ATIHDMI is not set # CONFIG_SND_HDA_CODEC_NVHDMI is not set # CONFIG_SND_HDA_CODEC_INTELHDMI is not set # CONFIG_SND_HDA_CODEC_CIRRUS is not set # CONFIG_SND_HDA_CODEC_CONEXANT is not set # CONFIG_SND_HDA_CODEC_CA0110 is not set # CONFIG_SND_HDA_CODEC_CMEDIA is not set # CONFIG_SND_HDA_CODEC_SI3054 is not set # CONFIG_SND_HDA_GENERIC is not set # CONFIG_SND_HDA_POWER_SAVE is not set # CONFIG_SND_HDSP is not set # CONFIG_SND_HDSPM is not set # CONFIG_SND_HIFIER is not set # CONFIG_SND_ICE1712 is not set # CONFIG_SND_ICE1724 is not set # CONFIG_SND_INTEL8X0 is not set # CONFIG_SND_INTEL8X0M is not set # CONFIG_SND_KORG1212 is not set # CONFIG_SND_LX6464ES is not set # CONFIG_SND_MAESTRO3 is not set # CONFIG_SND_MIXART is not set # CONFIG_SND_NM256 is not set # CONFIG_SND_PCXHR is not set # CONFIG_SND_RIPTIDE is not set # CONFIG_SND_RME32 is not set # CONFIG_SND_RME96 is not set # CONFIG_SND_RME9652 is not set # CONFIG_SND_SONICVIBES is not set # CONFIG_SND_TRIDENT is not set # CONFIG_SND_VIA82XX is not set # CONFIG_SND_VIA82XX_MODEM is not set # CONFIG_SND_VIRTUOSO is not set # CONFIG_SND_VX222 is not set # CONFIG_SND_YMFPCI is not set # CONFIG_SND_USB is not set # CONFIG_SND_SOC is not set # CONFIG_SOUND_PRIME is not set CONFIG_HID_SUPPORT=y CONFIG_HID=y # CONFIG_HIDRAW is not set # # USB Input Devices # CONFIG_USB_HID=y # CONFIG_HID_PID is not set # CONFIG_USB_HIDDEV is not set # # Special HID drivers # CONFIG_HID_A4TECH=y CONFIG_HID_APPLE=y CONFIG_HID_BELKIN=y CONFIG_HID_CHERRY=y CONFIG_HID_CHICONY=y CONFIG_HID_CYPRESS=y CONFIG_HID_DRAGONRISE=y # CONFIG_DRAGONRISE_FF is not set CONFIG_HID_EZKEY=y CONFIG_HID_KYE=y CONFIG_HID_GYRATION=y CONFIG_HID_TWINHAN=y CONFIG_HID_KENSINGTON=y CONFIG_HID_LOGITECH=y # CONFIG_LOGITECH_FF is not set # CONFIG_LOGIRUMBLEPAD2_FF is not set CONFIG_HID_MICROSOFT=y CONFIG_HID_MONTEREY=y CONFIG_HID_NTRIG=y CONFIG_HID_PANTHERLORD=y # CONFIG_PANTHERLORD_FF is not set CONFIG_HID_PETALYNX=y CONFIG_HID_SAMSUNG=y CONFIG_HID_SONY=y CONFIG_HID_SUNPLUS=y CONFIG_HID_GREENASIA=y # CONFIG_GREENASIA_FF is not set CONFIG_HID_SMARTJOYPLUS=y # CONFIG_SMARTJOYPLUS_FF is not set CONFIG_HID_TOPSEED=y CONFIG_HID_THRUSTMASTER=y # CONFIG_THRUSTMASTER_FF is not set CONFIG_HID_ZEROPLUS=y # CONFIG_ZEROPLUS_FF is not set CONFIG_USB_SUPPORT=y CONFIG_USB_ARCH_HAS_HCD=y CONFIG_USB_ARCH_HAS_OHCI=y CONFIG_USB_ARCH_HAS_EHCI=y CONFIG_USB=y # CONFIG_USB_DEBUG is not set CONFIG_USB_ANNOUNCE_NEW_DEVICES=y # # Miscellaneous USB options # CONFIG_USB_DEVICEFS=y # CONFIG_USB_DEVICE_CLASS is not set CONFIG_USB_DYNAMIC_MINORS=y CONFIG_USB_SUSPEND=y # CONFIG_USB_OTG is not set # CONFIG_USB_MON is not set # CONFIG_USB_WUSB is not set # CONFIG_USB_WUSB_CBAF is not set # # USB Host Controller Drivers # # CONFIG_USB_C67X00_HCD is not set # CONFIG_USB_XHCI_HCD is not set CONFIG_USB_EHCI_HCD=y # CONFIG_USB_EHCI_ROOT_HUB_TT is not set # CONFIG_USB_EHCI_TT_NEWSCHED is not set # CONFIG_USB_OXU210HP_HCD is not set # CONFIG_USB_ISP116X_HCD is not set # CONFIG_USB_ISP1760_HCD is not set # CONFIG_USB_ISP1362_HCD is not set # CONFIG_USB_OHCI_HCD is not set CONFIG_USB_UHCI_HCD=y # CONFIG_USB_SL811_HCD is not set # CONFIG_USB_R8A66597_HCD is not set # CONFIG_USB_WHCI_HCD is not set # CONFIG_USB_HWA_HCD is not set # # USB Device Class drivers # CONFIG_USB_ACM=y # CONFIG_USB_PRINTER is not set # CONFIG_USB_WDM is not set # CONFIG_USB_TMC is not set # # NOTE: USB_STORAGE depends on SCSI but BLK_DEV_SD may # # # also be needed; see USB_STORAGE Help for more info # CONFIG_USB_STORAGE=y # CONFIG_USB_STORAGE_DEBUG is not set # CONFIG_USB_STORAGE_DATAFAB is not set # CONFIG_USB_STORAGE_FREECOM is not set # CONFIG_USB_STORAGE_ISD200 is not set # CONFIG_USB_STORAGE_USBAT is not set # CONFIG_USB_STORAGE_SDDR09 is not set # CONFIG_USB_STORAGE_SDDR55 is not set # CONFIG_USB_STORAGE_JUMPSHOT is not set # CONFIG_USB_STORAGE_ALAUDA is not set # CONFIG_USB_STORAGE_ONETOUCH is not set # CONFIG_USB_STORAGE_KARMA is not set # CONFIG_USB_STORAGE_CYPRESS_ATACB is not set # CONFIG_USB_LIBUSUAL is not set # # USB Imaging devices # # CONFIG_USB_MDC800 is not set # CONFIG_USB_MICROTEK is not set # # USB port drivers # CONFIG_USB_SERIAL=y CONFIG_USB_SERIAL_CONSOLE=y # CONFIG_USB_EZUSB is not set CONFIG_USB_SERIAL_GENERIC=y # CONFIG_USB_SERIAL_AIRCABLE is not set # CONFIG_USB_SERIAL_ARK3116 is not set # CONFIG_USB_SERIAL_BELKIN is not set # CONFIG_USB_SERIAL_CH341 is not set # CONFIG_USB_SERIAL_WHITEHEAT is not set # CONFIG_USB_SERIAL_DIGI_ACCELEPORT is not set # CONFIG_USB_SERIAL_CP210X is not set # CONFIG_USB_SERIAL_CYPRESS_M8 is not set # CONFIG_USB_SERIAL_EMPEG is not set CONFIG_USB_SERIAL_FTDI_SIO=y # 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_QUALCOMM is not set # CONFIG_USB_SERIAL_SPCP8X5 is not set # CONFIG_USB_SERIAL_HP4X is not set # CONFIG_USB_SERIAL_SAFE is not set # CONFIG_USB_SERIAL_SIEMENS_MPI is not set # CONFIG_USB_SERIAL_SIERRAWIRELESS is not set # CONFIG_USB_SERIAL_SYMBOL is not set # CONFIG_USB_SERIAL_TI is not set # CONFIG_USB_SERIAL_CYBERJACK is not set # CONFIG_USB_SERIAL_XIRCOM is not set # CONFIG_USB_SERIAL_OPTION is not set # CONFIG_USB_SERIAL_OMNINET is not set # CONFIG_USB_SERIAL_OPTICON is not set # CONFIG_USB_SERIAL_DEBUG is not set # # USB Miscellaneous drivers # # CONFIG_USB_EMI62 is not set # CONFIG_USB_EMI26 is not set # CONFIG_USB_ADUTUX is not set # CONFIG_USB_SEVSEG is not set # CONFIG_USB_RIO500 is not set # CONFIG_USB_LEGOTOWER is not set # CONFIG_USB_LCD is not set # CONFIG_USB_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_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_VST is not set # CONFIG_USB_GADGET is not set # # OTG and related infrastructure # # CONFIG_USB_GPIO_VBUS is not set # CONFIG_NOP_USB_XCEIV is not set # CONFIG_UWB is not set # CONFIG_MMC is not set # CONFIG_MEMSTICK is not set # CONFIG_NEW_LEDS 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_AUXDISPLAY is not set # CONFIG_UIO is not set # # TI VLYNQ # # CONFIG_STAGING is not set # CONFIG_X86_PLATFORM_DEVICES is not set # # Firmware Drivers # # CONFIG_EDD is not set CONFIG_FIRMWARE_MEMMAP=y # CONFIG_DELL_RBU is not set # CONFIG_DCDBAS is not set # CONFIG_DMIID is not set # CONFIG_ISCSI_IBFT_FIND is not set # # File systems # CONFIG_EXT2_FS=y # CONFIG_EXT2_FS_XATTR is not set # CONFIG_EXT2_FS_XIP is not set CONFIG_EXT3_FS=y # CONFIG_EXT3_DEFAULTS_TO_ORDERED is not set # CONFIG_EXT3_FS_XATTR is not set CONFIG_EXT4_FS=y # CONFIG_EXT4_FS_XATTR is not set # CONFIG_EXT4_DEBUG is not set CONFIG_JBD=y # CONFIG_JBD_DEBUG is not set CONFIG_JBD2=y # CONFIG_JBD2_DEBUG is not set CONFIG_REISERFS_FS=y # CONFIG_REISERFS_CHECK is not set # CONFIG_REISERFS_PROC_INFO is not set # CONFIG_REISERFS_FS_XATTR is not set # CONFIG_JFS_FS is not set # CONFIG_FS_POSIX_ACL is not set # CONFIG_XFS_FS is not set # CONFIG_GFS2_FS is not set # CONFIG_OCFS2_FS is not set # CONFIG_BTRFS_FS is not set # CONFIG_NILFS2_FS is not set CONFIG_FILE_LOCKING=y CONFIG_FSNOTIFY=y # CONFIG_DNOTIFY is not set 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 # CONFIG_CUSE is not set # # Caches # # CONFIG_FSCACHE is not set # # CD-ROM/DVD Filesystems # CONFIG_ISO9660_FS=m 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=437 CONFIG_FAT_DEFAULT_IOCHARSET="iso8859-1" # CONFIG_NTFS_FS is not set # # Pseudo filesystems # CONFIG_PROC_FS=y CONFIG_PROC_KCORE=y CONFIG_PROC_SYSCTL=y CONFIG_PROC_PAGE_MONITOR=y CONFIG_SYSFS=y CONFIG_TMPFS=y # CONFIG_TMPFS_POSIX_ACL is not set # CONFIG_HUGETLBFS is not set # CONFIG_HUGETLB_PAGE is not set # CONFIG_CONFIGFS_FS is not set CONFIG_MISC_FILESYSTEMS=y # CONFIG_ADFS_FS is not set # CONFIG_AFFS_FS is not set # CONFIG_HFS_FS is not set # CONFIG_HFSPLUS_FS is not set # CONFIG_BEFS_FS is not set # CONFIG_BFS_FS is not set # CONFIG_EFS_FS is not set # CONFIG_CRAMFS is not set # CONFIG_SQUASHFS is not set # CONFIG_VXFS_FS is not set # CONFIG_MINIX_FS is not set # CONFIG_OMFS_FS is not set # CONFIG_HPFS_FS is not set # CONFIG_QNX4FS_FS is not set # CONFIG_ROMFS_FS is not set # CONFIG_SYSV_FS is not set # CONFIG_UFS_FS is not set CONFIG_NETWORK_FILESYSTEMS=y CONFIG_NFS_FS=m CONFIG_NFS_V3=y # CONFIG_NFS_V3_ACL is not set # CONFIG_NFS_V4 is not set # CONFIG_NFSD is not set CONFIG_LOCKD=m CONFIG_LOCKD_V4=y CONFIG_NFS_COMMON=y CONFIG_SUNRPC=m # CONFIG_RPCSEC_GSS_KRB5 is not set # CONFIG_RPCSEC_GSS_SPKM3 is not set # CONFIG_SMB_FS is not set # CONFIG_CIFS 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=y # CONFIG_ACORN_PARTITION is not set # CONFIG_OSF_PARTITION is not set # CONFIG_AMIGA_PARTITION is not set # CONFIG_ATARI_PARTITION is not set # CONFIG_MAC_PARTITION is not set CONFIG_MSDOS_PARTITION=y # CONFIG_BSD_DISKLABEL is not set # CONFIG_MINIX_SUBPARTITION is not set # CONFIG_SOLARIS_X86_PARTITION is not set # CONFIG_UNIXWARE_DISKLABEL is not set # CONFIG_LDM_PARTITION is not set # CONFIG_SGI_PARTITION is not set # CONFIG_ULTRIX_PARTITION is not set # CONFIG_SUN_PARTITION is not set # CONFIG_KARMA_PARTITION is not set # CONFIG_EFI_PARTITION is not set # CONFIG_SYSV68_PARTITION is not set CONFIG_NLS=y CONFIG_NLS_DEFAULT="iso8859-1" 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=4096 CONFIG_MAGIC_SYSRQ=y # CONFIG_STRIP_ASM_SYMS is not set CONFIG_UNUSED_SYMBOLS=y CONFIG_DEBUG_FS=y # CONFIG_HEADERS_CHECK is not set # CONFIG_DEBUG_KERNEL is not set CONFIG_STACKTRACE=y CONFIG_DEBUG_BUGVERBOSE=y CONFIG_DEBUG_MEMORY_INIT=y CONFIG_ARCH_WANT_FRAME_POINTERS=y # CONFIG_FRAME_POINTER is not set # CONFIG_RCU_CPU_STALL_DETECTOR is not set # CONFIG_LATENCYTOP is not set # CONFIG_SYSCTL_SYSCALL_CHECK is not set CONFIG_USER_STACKTRACE_SUPPORT=y CONFIG_NOP_TRACER=y CONFIG_HAVE_FUNCTION_TRACER=y CONFIG_HAVE_FUNCTION_GRAPH_TRACER=y CONFIG_HAVE_FUNCTION_GRAPH_FP_TEST=y CONFIG_HAVE_FUNCTION_TRACE_MCOUNT_TEST=y CONFIG_HAVE_DYNAMIC_FTRACE=y CONFIG_HAVE_FTRACE_MCOUNT_RECORD=y CONFIG_HAVE_SYSCALL_TRACEPOINTS=y CONFIG_RING_BUFFER=y CONFIG_EVENT_TRACING=y CONFIG_CONTEXT_SWITCH_TRACER=y CONFIG_RING_BUFFER_ALLOW_SWAP=y CONFIG_TRACING=y CONFIG_TRACING_SUPPORT=y # CONFIG_FTRACE is not set # CONFIG_PROVIDE_OHCI1394_DMA_INIT is not set # CONFIG_DYNAMIC_DEBUG is not set # CONFIG_DMA_API_DEBUG is not set # CONFIG_SAMPLES is not set CONFIG_HAVE_ARCH_KGDB=y CONFIG_HAVE_ARCH_KMEMCHECK=y # CONFIG_STRICT_DEVMEM is not set CONFIG_X86_VERBOSE_BOOTUP=y CONFIG_EARLY_PRINTK=y # CONFIG_EARLY_PRINTK_DBGP is not set # CONFIG_IOMMU_STRESS is not set CONFIG_HAVE_MMIOTRACE_SUPPORT=y CONFIG_IO_DELAY_TYPE_0X80=0 CONFIG_IO_DELAY_TYPE_0XED=1 CONFIG_IO_DELAY_TYPE_UDELAY=2 CONFIG_IO_DELAY_TYPE_NONE=3 CONFIG_IO_DELAY_0X80=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_OPTIMIZE_INLINING is not set # # Security options # # CONFIG_KEYS is not set # CONFIG_SECURITY is not set # CONFIG_SECURITYFS is not set # CONFIG_DEFAULT_SECURITY_SELINUX is not set # CONFIG_DEFAULT_SECURITY_SMACK is not set # CONFIG_DEFAULT_SECURITY_TOMOYO is not set CONFIG_DEFAULT_SECURITY_DAC=y CONFIG_DEFAULT_SECURITY="" CONFIG_CRYPTO=y # # Crypto core or helper # CONFIG_CRYPTO_ALGAPI=y CONFIG_CRYPTO_ALGAPI2=y CONFIG_CRYPTO_AEAD2=y CONFIG_CRYPTO_BLKCIPHER=y CONFIG_CRYPTO_BLKCIPHER2=y CONFIG_CRYPTO_HASH=y CONFIG_CRYPTO_HASH2=y CONFIG_CRYPTO_RNG2=y CONFIG_CRYPTO_PCOMP=y CONFIG_CRYPTO_MANAGER=y CONFIG_CRYPTO_MANAGER2=y # CONFIG_CRYPTO_GF128MUL is not set # CONFIG_CRYPTO_NULL is not set CONFIG_CRYPTO_WORKQUEUE=y # 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=y # CONFIG_CRYPTO_CTR is not set # CONFIG_CRYPTO_CTS is not set CONFIG_CRYPTO_ECB=y # CONFIG_CRYPTO_LRW is not set # CONFIG_CRYPTO_PCBC is not set # CONFIG_CRYPTO_XTS is not set # # Hash modes # # CONFIG_CRYPTO_HMAC is not set # CONFIG_CRYPTO_XCBC is not set # CONFIG_CRYPTO_VMAC is not set # # Digest # CONFIG_CRYPTO_CRC32C=m # CONFIG_CRYPTO_CRC32C_INTEL is not set # CONFIG_CRYPTO_GHASH is not set # CONFIG_CRYPTO_MD4 is not set # CONFIG_CRYPTO_MD5 is not set CONFIG_CRYPTO_MICHAEL_MIC=y # CONFIG_CRYPTO_RMD128 is not set # CONFIG_CRYPTO_RMD160 is not set # CONFIG_CRYPTO_RMD256 is not set # CONFIG_CRYPTO_RMD320 is not set CONFIG_CRYPTO_SHA1=y CONFIG_CRYPTO_SHA256=y CONFIG_CRYPTO_SHA512=y # CONFIG_CRYPTO_TGR192 is not set # CONFIG_CRYPTO_WP512 is not set # CONFIG_CRYPTO_GHASH_CLMUL_NI_INTEL is not set # # Ciphers # CONFIG_CRYPTO_AES=y CONFIG_CRYPTO_AES_X86_64=m # CONFIG_CRYPTO_AES_NI_INTEL is not set # CONFIG_CRYPTO_ANUBIS is not set CONFIG_CRYPTO_ARC4=y # CONFIG_CRYPTO_BLOWFISH is not set # CONFIG_CRYPTO_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_X86_64 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_X86_64 is not set # # Compression # # CONFIG_CRYPTO_DEFLATE is not set # CONFIG_CRYPTO_ZLIB is not set # CONFIG_CRYPTO_LZO is not set # # Random Number Generation # # CONFIG_CRYPTO_ANSI_CPRNG is not set # CONFIG_CRYPTO_HW is not set CONFIG_HAVE_KVM=y CONFIG_HAVE_KVM_IRQCHIP=y CONFIG_HAVE_KVM_EVENTFD=y CONFIG_KVM_APIC_ARCHITECTURE=y CONFIG_VIRTUALIZATION=y CONFIG_KVM=m CONFIG_KVM_INTEL=m # CONFIG_KVM_AMD is not set # CONFIG_VIRTIO_PCI is not set # CONFIG_VIRTIO_BALLOON is not set CONFIG_BINARY_PRINTF=y # # Library routines # CONFIG_BITREVERSE=y CONFIG_GENERIC_FIND_FIRST_BIT=y CONFIG_GENERIC_FIND_NEXT_BIT=y CONFIG_GENERIC_FIND_LAST_BIT=y # CONFIG_CRC_CCITT is not set CONFIG_CRC16=y # CONFIG_CRC_T10DIF is not set CONFIG_CRC_ITU_T=m CONFIG_CRC32=y # CONFIG_CRC7 is not set # CONFIG_LIBCRC32C is not set CONFIG_ZLIB_INFLATE=y CONFIG_LZO_DECOMPRESS=y CONFIG_DECOMPRESS_GZIP=y CONFIG_DECOMPRESS_BZIP2=y CONFIG_DECOMPRESS_LZMA=y CONFIG_DECOMPRESS_LZO=y CONFIG_HAS_IOMEM=y CONFIG_HAS_IOPORT=y CONFIG_HAS_DMA=y CONFIG_NLATTR=y -----[ Domenico Andreoli, aka cavok --[ http://www.dandreoli.com/gpgkey.asc ---[ 3A0F 2F80 F79C 678A 8936 4FEE 0677 9033 A20E BC50 ^ permalink raw reply [flat|nested] 64+ messages in thread
* Re: [crash, PATCH] Revert "drm/radeon/kms: move radeon KMS on/off switch out of staging." 2010-02-02 8:58 ` [crash, PATCH] Revert " Domenico Andreoli @ 2010-02-02 11:59 ` Jerome Glisse 2010-02-02 15:11 ` Domenico Andreoli 0 siblings, 1 reply; 64+ messages in thread From: Jerome Glisse @ 2010-02-02 11:59 UTC (permalink / raw) To: Dave Airlie, linux-kernel, dri-devel On Tue, Feb 02, 2010 at 09:58:20AM +0100, Domenico Andreoli wrote: > On Tue, Feb 02, 2010 at 09:17:27AM +0100, Ingo Molnar wrote: > > > > * Dave Airlie <airlied@linux.ie> wrote: > > > > > > Hi Linus, > > > > > > > > Please pull the 'drm-linus' branch from > > > > ssh://master.kernel.org/pub/scm/linux/kernel/git/airlied/drm-2.6.git drm-linus > > > > > > > > FYI, this drm pull into mainline has triggered quick boot crashes in -tip > > testing (even with the above fix applied), on an Athlon64 whitebox PC with: > > boot broke also here where unfortunately i have not a serial line > to see what's happening. anyway disabling KMS restores a working > 2.6.33-rc6-00072-gab65832 kernel. here is the broken config. > > in the next days i should be able to test it with a RV770. > > > 01:00.0 VGA compatible controller: ATI Technologies Inc RV370 5B60 [Radeon X300 (PCIE)] > > 01:00.1 Display controller: ATI Technologies Inc RV370 [Radeon X300SE] > > 01:00.0 VGA compatible controller: ATI Technologies Inc RV515 [Radeon X1300] > 01:00.1 Display controller: ATI Technologies Inc RV515 [Radeon X1300] (Secondary) > > Can you boot in runlevel 3 and with radeon.modeset=0. Then modprobe radeon modeset=1 (you might need to rmmod first), this should allow you capture dmesg log with the failure. (Do the modprobe/rmmod through ssh as you won't have a console in the process). Note that here RV515 works like a charm :) Cheers, Jerome ^ permalink raw reply [flat|nested] 64+ messages in thread
* Re: [crash, PATCH] Revert "drm/radeon/kms: move radeon KMS on/off switch out of staging." 2010-02-02 11:59 ` Jerome Glisse @ 2010-02-02 15:11 ` Domenico Andreoli 0 siblings, 0 replies; 64+ messages in thread From: Domenico Andreoli @ 2010-02-02 15:11 UTC (permalink / raw) To: Jerome Glisse; +Cc: Dave Airlie, linux-kernel, dri-devel On Tue, Feb 02, 2010 at 12:59:13PM +0100, Jerome Glisse wrote: > On Tue, Feb 02, 2010 at 09:58:20AM +0100, Domenico Andreoli wrote: > > > > boot broke also here where unfortunately i have not a serial line > > to see what's happening. anyway disabling KMS restores a working > > 2.6.33-rc6-00072-gab65832 kernel. here is the broken config. > > Can you boot in runlevel 3 and with radeon.modeset=0. Then modprobe radeon modeset=1 > (you might need to rmmod first), this should allow you capture dmesg log with the failure. > (Do the modprobe/rmmod through ssh as you won't have a console in the process). good, this is what I was missing to dig further into it. > Note that here RV515 works like a charm :) indeed it works also here :) given that, I returned to my initial config, with radeon module built-in, and re-enabled KMS. kernel was actually trying to load firmware blob radeon/R520_cp.bin which no filesystem was ready to provide, idling for 60 long seconds and making me reporting a false bug. thank you for the quick response. [ 113.133716] [drm] radeon kernel modesetting enabled. [ 113.133799] radeon 0000:01:00.0: PCI INT A -> GSI 16 (level, low) -> IRQ 16 [ 113.133842] radeon 0000:01:00.0: setting latency timer to 64 [ 113.135000] [drm] radeon: Initializing kernel modesetting. [ 113.136538] [drm] register mmio base: 0xFE8E0000 [ 113.136578] [drm] register mmio size: 65536 [ 113.136659] ATOM BIOS: RV515LE [ 113.136906] [drm] GPU reset succeed (RBBM_STATUS=0x10000140) [ 113.136953] [drm] Generation 2 PCI interface, using max accessible memory [ 113.136993] [drm] radeon: VRAM 128M [ 113.137032] [drm] radeon: VRAM from 0x00000000 to 0x07FFFFFF [ 113.137071] [drm] radeon: GTT 512M [ 113.137109] [drm] radeon: GTT from 0x20000000 to 0x3FFFFFFF [ 113.137186] radeon 0000:01:00.0: irq 31 for MSI/MSI-X [ 113.137190] [drm] radeon: using MSI. [ 113.137246] [drm] radeon: irq initialized. [ 113.138965] [drm] Detected VRAM RAM=128M, BAR=256M [ 113.139007] [drm] RAM width 64bits DDR [ 113.139087] [TTM] Zone kernel: Available graphics memory: 1028586 kiB. [ 113.139137] [drm] radeon: 128M of VRAM memory ready [ 113.139176] [drm] radeon: 512M of GTT memory ready. [ 113.139227] [drm] GART: num cpu pages 131072, num gpu pages 131072 [ 113.141872] [drm] RB2D reset succeed (RBBM_STATUS=0x10000140) [ 113.141927] [drm] radeon: 1 quad pipes, 1 z pipes initialized. [ 113.142003] [drm] PCIE GART of 512M enabled (table at 0x00040000). [ 113.142050] [drm] radeon: cp idle (0x10000C03) [ 113.142115] [drm] Loading R500 Microcode [ 113.142158] platform radeon_cp.0: firmware: requesting radeon/R520_cp.bin [ 113.152774] [drm] radeon: ring at 0x0000000020000000 [ 113.152846] [drm] ring test succeeded in 10 usecs [ 113.153249] [drm] radeon: ib pool ready. [ 113.153380] [drm] ib test succeeded in 0 usecs [ 113.153515] [drm] Default TV standard: PAL [ 113.153620] [drm] Radeon Display Connectors [ 113.153659] [drm] Connector 0: [ 113.153697] [drm] VGA [ 113.153735] [drm] DDC: 0x7e40 0x7e40 0x7e44 0x7e44 0x7e48 0x7e48 0x7e4c 0x7e4c [ 113.153787] [drm] Encoders: [ 113.153824] [drm] CRT1: INTERNAL_KLDSCP_DAC1 [ 113.153863] [drm] Connector 1: [ 113.153900] [drm] S-video [ 113.153938] [drm] Encoders: [ 113.153975] [drm] TV1: INTERNAL_KLDSCP_DAC2 [ 113.154014] [drm] Connector 2: [ 113.154051] [drm] DVI-I [ 113.154088] [drm] HPD2 [ 113.154126] [drm] DDC: 0x7e50 0x7e50 0x7e54 0x7e54 0x7e58 0x7e58 0x7e5c 0x7e5c [ 113.154179] [drm] Encoders: [ 113.154216] [drm] CRT2: INTERNAL_KLDSCP_DAC2 [ 113.154254] [drm] DFP3: INTERNAL_LVTM1 [ 113.204918] [drm:edid_is_valid] *ERROR* EDID checksum is invalid, remainder is 58 [ 113.204968] [drm:edid_is_valid] *ERROR* Raw EDID: [ 113.205005] <3>00 ff ff ff ff ff ff 00 04 72 29 ad b5 04 20 45 .........r)... E [ 113.205006] <3>34 0e 01 03 68 26 1e 6b 2a c3 15 a4 59 4b a0 24 4...h&.k*...YK.$ [ 113.205008] <3>14 4f 54 bf ef 00 81 8f 81 80 71 4f 71 40 61 4f .OT.......qOq@aO [ 113.205009] <3>61 40 45 4f 45 40 30 2a 00 98 51 00 2a 40 30 70 a@EOE@0*..Q.*@0p [ 113.205010] <3>13 00 78 2d 11 00 00 1e 00 00 00 ff 00 45 54 4c ..x-.........ETL [ 113.205012] <3>32 39 30 38 a0 00 31 0a 20 20 00 00 00 fd 00 37 2908..1. .....7 [ 113.205013] <3>4b 1e 53 0e 00 0a 20 20 20 20 20 20 00 00 00 fc K.S... .... [ 113.205014] <3>00 41 63 65 72 20 41 4c 31 39 31 32 0a 20 00 31 .Acer AL1912. .1 [ 113.205015] [ 113.255375] [drm:edid_is_valid] *ERROR* EDID checksum is invalid, remainder is 58 [ 113.255425] [drm:edid_is_valid] *ERROR* Raw EDID: [ 113.255461] <3>00 ff ff ff ff ff ff 00 04 72 29 ad b5 04 20 45 .........r)... E [ 113.255462] <3>34 0e 01 03 68 26 1e 6b 2a c3 15 a4 59 4b a0 24 4...h&.k*...YK.$ [ 113.255464] <3>14 4f 54 bf ef 00 81 8f 81 80 71 4f 71 40 61 4f .OT.......qOq@aO [ 113.255465] <3>61 40 45 4f 45 40 30 2a 00 98 51 00 2a 40 30 70 a@EOE@0*..Q.*@0p [ 113.255466] <3>13 00 78 2d 11 00 00 1e 00 00 00 ff 00 45 54 4c ..x-.........ETL [ 113.255467] <3>32 39 30 38 a0 00 31 0a 20 20 00 00 00 fd 00 37 2908..1. .....7 [ 113.255469] <3>4b 1e 53 0e 00 0a 20 20 20 20 20 20 00 00 00 fc K.S... .... [ 113.255470] <3>00 41 63 65 72 20 41 4c 31 39 31 32 0a 20 00 31 .Acer AL1912. .1 [ 113.255471] [ 113.305843] [drm:edid_is_valid] *ERROR* EDID checksum is invalid, remainder is 58 [ 113.305892] [drm:edid_is_valid] *ERROR* Raw EDID: [ 113.305929] <3>00 ff ff ff ff ff ff 00 04 72 29 ad b5 04 20 45 .........r)... E [ 113.305930] <3>34 0e 01 03 68 26 1e 6b 2a c3 15 a4 59 4b a0 24 4...h&.k*...YK.$ [ 113.305931] <3>14 4f 54 bf ef 00 81 8f 81 80 71 4f 71 40 61 4f .OT.......qOq@aO [ 113.305933] <3>61 40 45 4f 45 40 30 2a 00 98 51 00 2a 40 30 70 a@EOE@0*..Q.*@0p [ 113.305934] <3>13 00 78 2d 11 00 00 1e 00 00 00 ff 00 45 54 4c ..x-.........ETL [ 113.305935] <3>32 39 30 38 a0 00 31 0a 20 20 00 00 00 fd 00 37 2908..1. .....7 [ 113.305936] <3>4b 1e 53 0e 00 0a 20 20 20 20 20 20 00 00 00 fc K.S... .... [ 113.305938] <3>00 41 63 65 72 20 41 4c 31 39 31 32 0a 20 00 31 .Acer AL1912. .1 [ 113.305939] [ 113.356292] [drm:edid_is_valid] *ERROR* EDID checksum is invalid, remainder is 58 [ 113.356342] [drm:edid_is_valid] *ERROR* Raw EDID: [ 113.356378] <3>00 ff ff ff ff ff ff 00 04 72 29 ad b5 04 20 45 .........r)... E [ 113.356379] <3>34 0e 01 03 68 26 1e 6b 2a c3 15 a4 59 4b a0 24 4...h&.k*...YK.$ [ 113.356381] <3>14 4f 54 bf ef 00 81 8f 81 80 71 4f 71 40 61 4f .OT.......qOq@aO [ 113.356382] <3>61 40 45 4f 45 40 30 2a 00 98 51 00 2a 40 30 70 a@EOE@0*..Q.*@0p [ 113.356383] <3>13 00 78 2d 11 00 00 1e 00 00 00 ff 00 45 54 4c ..x-.........ETL [ 113.356385] <3>32 39 30 38 a0 00 31 0a 20 20 00 00 00 fd 00 37 2908..1. .....7 [ 113.356386] <3>4b 1e 53 0e 00 0a 20 20 20 20 20 20 00 00 00 fc K.S... .... [ 113.356387] <3>00 41 63 65 72 20 41 4c 31 39 31 32 0a 20 00 31 .Acer AL1912. .1 [ 113.356388] [ 113.356423] radeon 0000:01:00.0: VGA-1: EDID invalid. [ 113.421077] [drm:edid_is_valid] *ERROR* EDID checksum is invalid, remainder is 58 [ 113.421127] [drm:edid_is_valid] *ERROR* Raw EDID: [ 113.421163] <3>00 ff ff ff ff ff ff 00 04 72 29 ad b5 04 20 45 .........r)... E [ 113.421164] <3>34 0e 01 03 68 26 1e 6b 2a c3 15 a4 59 4b a0 24 4...h&.k*...YK.$ [ 113.421166] <3>14 4f 54 bf ef 00 81 8f 81 80 71 4f 71 40 61 4f .OT.......qOq@aO [ 113.421167] <3>61 40 45 4f 45 40 30 2a 00 98 51 00 2a 40 30 70 a@EOE@0*..Q.*@0p [ 113.421168] <3>13 00 78 2d 11 00 00 1e 00 00 00 ff 00 45 54 4c ..x-.........ETL [ 113.421170] <3>32 39 30 38 a0 00 31 0a 20 20 00 00 00 fd 00 37 2908..1. .....7 [ 113.421171] <3>4b 1e 53 0e 00 0a 20 20 20 20 20 20 00 00 00 fc K.S... .... [ 113.421172] <3>00 41 63 65 72 20 41 4c 31 39 31 32 0a 20 00 31 .Acer AL1912. .1 [ 113.421173] [ 113.471540] [drm:edid_is_valid] *ERROR* EDID checksum is invalid, remainder is 58 [ 113.471589] [drm:edid_is_valid] *ERROR* Raw EDID: [ 113.471626] <3>00 ff ff ff ff ff ff 00 04 72 29 ad b5 04 20 45 .........r)... E [ 113.471627] <3>34 0e 01 03 68 26 1e 6b 2a c3 15 a4 59 4b a0 24 4...h&.k*...YK.$ [ 113.471628] <3>14 4f 54 bf ef 00 81 8f 81 80 71 4f 71 40 61 4f .OT.......qOq@aO [ 113.471629] <3>61 40 45 4f 45 40 30 2a 00 98 51 00 2a 40 30 70 a@EOE@0*..Q.*@0p [ 113.471631] <3>13 00 78 2d 11 00 00 1e 00 00 00 ff 00 45 54 4c ..x-.........ETL [ 113.471632] <3>32 39 30 38 a0 00 31 0a 20 20 00 00 00 fd 00 37 2908..1. .....7 [ 113.471633] <3>4b 1e 53 0e 00 0a 20 20 20 20 20 20 00 00 00 fc K.S... .... [ 113.471634] <3>00 41 63 65 72 20 41 4c 31 39 31 32 0a 20 00 31 .Acer AL1912. .1 [ 113.471635] [ 113.521994] [drm:edid_is_valid] *ERROR* EDID checksum is invalid, remainder is 58 [ 113.522044] [drm:edid_is_valid] *ERROR* Raw EDID: [ 113.522081] <3>00 ff ff ff ff ff ff 00 04 72 29 ad b5 04 20 45 .........r)... E [ 113.522082] <3>34 0e 01 03 68 26 1e 6b 2a c3 15 a4 59 4b a0 24 4...h&.k*...YK.$ [ 113.522083] <3>14 4f 54 bf ef 00 81 8f 81 80 71 4f 71 40 61 4f .OT.......qOq@aO [ 113.522084] <3>61 40 45 4f 45 40 30 2a 00 98 51 00 2a 40 30 70 a@EOE@0*..Q.*@0p [ 113.522086] <3>13 00 78 2d 11 00 00 1e 00 00 00 ff 00 45 54 4c ..x-.........ETL [ 113.522087] <3>32 39 30 38 a0 00 31 0a 20 20 00 00 00 fd 00 37 2908..1. .....7 [ 113.522088] <3>4b 1e 53 0e 00 0a 20 20 20 20 20 20 00 00 00 fc K.S... .... [ 113.522090] <3>00 41 63 65 72 20 41 4c 31 39 31 32 0a 20 00 31 .Acer AL1912. .1 [ 113.522090] [ 113.572455] [drm:edid_is_valid] *ERROR* EDID checksum is invalid, remainder is 58 [ 113.572514] [drm:edid_is_valid] *ERROR* Raw EDID: [ 113.572550] <3>00 ff ff ff ff ff ff 00 04 72 29 ad b5 04 20 45 .........r)... E [ 113.572552] <3>34 0e 01 03 68 26 1e 6b 2a c3 15 a4 59 4b a0 24 4...h&.k*...YK.$ [ 113.572553] <3>14 4f 54 bf ef 00 81 8f 81 80 71 4f 71 40 61 4f .OT.......qOq@aO [ 113.572554] <3>61 40 45 4f 45 40 30 2a 00 98 51 00 2a 40 30 70 a@EOE@0*..Q.*@0p [ 113.572555] <3>13 00 78 2d 11 00 00 1e 00 00 00 ff 00 45 54 4c ..x-.........ETL [ 113.572557] <3>32 39 30 38 a0 00 31 0a 20 20 00 00 00 fd 00 37 2908..1. .....7 [ 113.572558] <3>4b 1e 53 0e 00 0a 20 20 20 20 20 20 00 00 00 fc K.S... .... [ 113.572559] <3>00 41 63 65 72 20 41 4c 31 39 31 32 0a 20 00 31 .Acer AL1912. .1 [ 113.572560] [ 113.572595] radeon 0000:01:00.0: VGA-1: EDID invalid. [ 113.572637] [drm:radeon_vga_detect] *ERROR* VGA-1: probed a monitor but no|invalid EDID [ 113.623019] [drm:edid_is_valid] *ERROR* EDID checksum is invalid, remainder is 58 [ 113.623068] [drm:edid_is_valid] *ERROR* Raw EDID: [ 113.623105] <3>00 ff ff ff ff ff ff 00 04 72 29 ad b5 04 20 45 .........r)... E [ 113.623106] <3>34 0e 01 03 68 26 1e 6b 2a c3 15 a4 59 4b a0 24 4...h&.k*...YK.$ [ 113.623107] <3>14 4f 54 bf ef 00 81 8f 81 80 71 4f 71 40 61 4f .OT.......qOq@aO [ 113.623109] <3>61 40 45 4f 45 40 30 2a 00 98 51 00 2a 40 30 70 a@EOE@0*..Q.*@0p [ 113.623110] <3>13 00 78 2d 11 00 00 1e 00 00 00 ff 00 45 54 4c ..x-.........ETL [ 113.623111] <3>32 39 30 38 a0 00 31 0a 20 20 00 00 00 fd 00 37 2908..1. .....7 [ 113.623113] <3>4b 1e 53 0e 00 0a 20 20 20 20 20 20 00 00 00 fc K.S... .... [ 113.623114] <3>00 41 63 65 72 20 41 4c 31 39 31 32 0a 20 00 31 .Acer AL1912. .1 [ 113.623115] [ 113.673495] [drm:edid_is_valid] *ERROR* EDID checksum is invalid, remainder is 58 [ 113.673544] [drm:edid_is_valid] *ERROR* Raw EDID: [ 113.673581] <3>00 ff ff ff ff ff ff 00 04 72 29 ad b5 04 20 45 .........r)... E [ 113.673582] <3>34 0e 01 03 68 26 1e 6b 2a c3 15 a4 59 4b a0 24 4...h&.k*...YK.$ [ 113.673583] <3>14 4f 54 bf ef 00 81 8f 81 80 71 4f 71 40 61 4f .OT.......qOq@aO [ 113.673585] <3>61 40 45 4f 45 40 30 2a 00 98 51 00 2a 40 30 70 a@EOE@0*..Q.*@0p [ 113.673586] <3>13 00 78 2d 11 00 00 1e 00 00 00 ff 00 45 54 4c ..x-.........ETL [ 113.673587] <3>32 39 30 38 a0 00 31 0a 20 20 00 00 00 fd 00 37 2908..1. .....7 [ 113.673588] <3>4b 1e 53 0e 00 0a 20 20 20 20 20 20 00 00 00 fc K.S... .... [ 113.673590] <3>00 41 63 65 72 20 41 4c 31 39 31 32 0a 20 00 31 .Acer AL1912. .1 [ 113.673591] [ 113.723964] [drm:edid_is_valid] *ERROR* EDID checksum is invalid, remainder is 58 [ 113.724014] [drm:edid_is_valid] *ERROR* Raw EDID: [ 113.724050] <3>00 ff ff ff ff ff ff 00 04 72 29 ad b5 04 20 45 .........r)... E [ 113.724051] <3>34 0e 01 03 68 26 1e 6b 2a c3 15 a4 59 4b a0 24 4...h&.k*...YK.$ [ 113.724053] <3>14 4f 54 bf ef 00 81 8f 81 80 71 4f 71 40 61 4f .OT.......qOq@aO [ 113.724054] <3>61 40 45 4f 45 40 30 2a 00 98 51 00 2a 40 30 70 a@EOE@0*..Q.*@0p [ 113.724055] <3>13 00 78 2d 11 00 00 1e 00 00 00 ff 00 45 54 4c ..x-.........ETL [ 113.724056] <3>32 39 30 38 a0 00 31 0a 20 20 00 00 00 fd 00 37 2908..1. .....7 [ 113.724058] <3>4b 1e 53 0e 00 0a 20 20 20 20 20 20 00 00 00 fc K.S... .... [ 113.724059] <3>00 41 63 65 72 20 41 4c 31 39 31 32 0a 20 00 31 .Acer AL1912. .1 [ 113.724060] [ 113.774428] [drm:edid_is_valid] *ERROR* EDID checksum is invalid, remainder is 58 [ 113.774477] [drm:edid_is_valid] *ERROR* Raw EDID: [ 113.774513] <3>00 ff ff ff ff ff ff 00 04 72 29 ad b5 04 20 45 .........r)... E [ 113.774515] <3>34 0e 01 03 68 26 1e 6b 2a c3 15 a4 59 4b a0 24 4...h&.k*...YK.$ [ 113.774516] <3>14 4f 54 bf ef 00 81 8f 81 80 71 4f 71 40 61 4f .OT.......qOq@aO [ 113.774517] <3>61 40 45 4f 45 40 30 2a 00 98 51 00 2a 40 30 70 a@EOE@0*..Q.*@0p [ 113.774518] <3>13 00 78 2d 11 00 00 1e 00 00 00 ff 00 45 54 4c ..x-.........ETL [ 113.774520] <3>32 39 30 38 a0 00 31 0a 20 20 00 00 00 fd 00 37 2908..1. .....7 [ 113.774521] <3>4b 1e 53 0e 00 0a 20 20 20 20 20 20 00 00 00 fc K.S... .... [ 113.774522] <3>00 41 63 65 72 20 41 4c 31 39 31 32 0a 20 00 31 .Acer AL1912. .1 [ 113.774523] [ 113.774558] radeon 0000:01:00.0: VGA-1: EDID invalid. [ 113.893751] [drm] fb mappable at 0xD00C0000 [ 113.893790] [drm] vram apper at 0xD0000000 [ 113.893828] [drm] size 3145728 [ 113.893866] [drm] fb depth is 24 [ 113.893903] [drm] pitch is 4096 [ 113.926724] Console: switching to colour frame buffer device 128x48 [ 113.928980] fb0: radeondrmfb frame buffer device [ 113.929004] registered panic notifier [ 113.929024] [drm] Initialized radeon 2.0.0 20080528 for 0000:01:00.0 on minor 0 cheers, Domenico -----[ Domenico Andreoli, aka cavok --[ http://www.dandreoli.com/gpgkey.asc ---[ 3A0F 2F80 F79C 678A 8936 4FEE 0677 9033 A20E BC50 ^ permalink raw reply [flat|nested] 64+ messages in thread
* Re: [crash, PATCH] Revert "drm/radeon/kms: move radeon KMS on/off switch out of staging." 2010-02-02 8:17 ` [crash, PATCH] Revert "drm/radeon/kms: move radeon KMS on/off switch out of staging." Ingo Molnar ` (2 preceding siblings ...) 2010-02-02 8:58 ` [crash, PATCH] Revert " Domenico Andreoli @ 2010-02-02 11:56 ` Jerome Glisse 2010-02-02 15:42 ` Ingo Molnar 3 siblings, 1 reply; 64+ messages in thread From: Jerome Glisse @ 2010-02-02 11:56 UTC (permalink / raw) To: Ingo Molnar; +Cc: Dave Airlie, torvalds, linux-kernel, dri-devel [-- Attachment #1: Type: text/plain, Size: 3073 bytes --] On Tue, Feb 02, 2010 at 09:17:27AM +0100, Ingo Molnar wrote: > > * Dave Airlie <airlied@linux.ie> wrote: > > > > Hi Linus, > > > > > > Please pull the 'drm-linus' branch from > > > ssh://master.kernel.org/pub/scm/linux/kernel/git/airlied/drm-2.6.git drm-linus > > > > > > > I've also added an oops fix I seem to lose off my radar to this tree. > > > > commit 17aafccab4352b422aa01fa6ebf82daff693a5b3 > > Author: Michel D??nzer <daenzer@vmware.com> > > Date: Fri Jan 22 09:20:00 2010 +0100 > > > > drm/radeon/kms: Fix oops after radeon_cs_parser_init() failure. > > FYI, this drm pull into mainline has triggered quick boot crashes in -tip > testing (even with the above fix applied), on an Athlon64 whitebox PC with: > > 01:00.0 VGA compatible controller: ATI Technologies Inc RV370 5B60 [Radeon X300 (PCIE)] > 01:00.1 Display controller: ATI Technologies Inc RV370 [Radeon X300SE] > > the crash is: > > [ 7.111003] radeon 0000:01:00.0: Disabling GPU acceleration > [ 7.273547] Failed to wait GUI idle while programming pipes. Bad things might happen. > [ 7.436296] [drm:r100_cp_fini] *ERROR* Wait for CP idle timeout, shutting down CP. > [ 7.598755] Failed to wait GUI idle while programming pipes. Bad things might happen. > [ 7.599306] BUG: unable to handle kernel paging request at f8380000 > [ 7.599999] IP: [<c149f0de>] rv370_pcie_gart_set_page+0x2d/0x3c > [ 7.599999] *pde = 36d44067 *pte = 00000000 > [ 7.599999] Oops: 0002 [#1] SMP DEBUG_PAGEALLOC > [ 7.599999] last sysfs file: > > i have bisected it back to: > > | 97b94ccb9aa1b82ed7a9a045d0ae5b32c99b84a0 is the first bad commit > | commit 97b94ccb9aa1b82ed7a9a045d0ae5b32c99b84a0 > | Author: Dave Airlie <airlied@redhat.com> > | Date: Fri Jan 29 15:31:47 2010 +1000 > | > | drm/radeon/kms: fix incorrect logic in DP vs eDP connector checking. > | > | This makes displayport work again here. > > Unfortunately even with that patch reverted it still crashes. Config and > bootlog attached. > > It's the moving of radeom KMS out of staging after -rc6 that causes it, > because it brought it into the scope of my testing: > > f71d018: drm/radeon/kms: move radeon KMS on/off switch out of staging. > > So at least on this box it's clearly not ready for mainline enablement yet. > I've attached the revert patch further below. > > Ingo > Attached is a patch which will fix the oops, still it's strange that CP fails to init on your config. Do you have IOMMU enabled ? I haven't played with iommu stuff thus i wonder if we are missing somethings in this area. Anyway the root issue of the oops made me wonder if we shouldn't explore some kind of stack based GPU block initialization, when we init a GPU block we push and when we want to deinit we pop the stack thus block should be deinited in right order. We are having a lot of different path in the driver and the failure path are not as well tested as they might be. Anyway such change is more a long term idea that might be good to look into (maybe for 2.6.35). Cheers, Jerome [-- Attachment #2: 0001-drm-radeon-kms-don-t-call-suspend-path-before-cleani.patch --] [-- Type: text/plain, Size: 10372 bytes --] >From b31f021587f79d0d60c283e6fccf82f18a540de0 Mon Sep 17 00:00:00 2001 From: Jerome Glisse <jglisse@redhat.com> Date: Tue, 2 Feb 2010 11:51:45 +0100 Subject: [PATCH] drm/radeon/kms: don't call suspend path before cleaning up GPU In suspend path we unmap the GART table while in cleaning up path we will unbind buffer and thus try to write to unmapped GART leading to oops. In order to avoid this we don't call the suspend path in cleanup path. Cleanup path is clever enough to desactive GPU like the suspend path is doing, thus this was redondant. Tested on: RV370, R420, RV515, RV570, RV610, RV770 (all PCIE) Signed-off-by: Jerome Glisse <jglisse@redhat.com> --- drivers/gpu/drm/radeon/r100.c | 4 +--- drivers/gpu/drm/radeon/r300.c | 5 ++--- drivers/gpu/drm/radeon/r420.c | 3 +-- drivers/gpu/drm/radeon/r520.c | 3 +-- drivers/gpu/drm/radeon/r600.c | 21 +++++++++++++-------- drivers/gpu/drm/radeon/radeon.h | 1 + drivers/gpu/drm/radeon/rs400.c | 2 -- drivers/gpu/drm/radeon/rs600.c | 2 -- drivers/gpu/drm/radeon/rs690.c | 2 -- drivers/gpu/drm/radeon/rv515.c | 4 +--- drivers/gpu/drm/radeon/rv770.c | 12 ++++++------ 11 files changed, 26 insertions(+), 33 deletions(-) diff --git a/drivers/gpu/drm/radeon/r100.c b/drivers/gpu/drm/radeon/r100.c index 11c9a3f..5689580 100644 --- a/drivers/gpu/drm/radeon/r100.c +++ b/drivers/gpu/drm/radeon/r100.c @@ -3369,7 +3369,6 @@ int r100_suspend(struct radeon_device *rdev) void r100_fini(struct radeon_device *rdev) { - r100_suspend(rdev); r100_cp_fini(rdev); r100_wb_fini(rdev); r100_ib_fini(rdev); @@ -3481,13 +3480,12 @@ int r100_init(struct radeon_device *rdev) if (r) { /* Somethings want wront with the accel init stop accel */ dev_err(rdev->dev, "Disabling GPU acceleration\n"); - r100_suspend(rdev); r100_cp_fini(rdev); r100_wb_fini(rdev); r100_ib_fini(rdev); + radeon_irq_kms_fini(rdev); if (rdev->flags & RADEON_IS_PCI) r100_pci_gart_fini(rdev); - radeon_irq_kms_fini(rdev); rdev->accel_working = false; } return 0; diff --git a/drivers/gpu/drm/radeon/r300.c b/drivers/gpu/drm/radeon/r300.c index 0051d11..e699e6d 100644 --- a/drivers/gpu/drm/radeon/r300.c +++ b/drivers/gpu/drm/radeon/r300.c @@ -1327,7 +1327,6 @@ int r300_suspend(struct radeon_device *rdev) void r300_fini(struct radeon_device *rdev) { - r300_suspend(rdev); r100_cp_fini(rdev); r100_wb_fini(rdev); r100_ib_fini(rdev); @@ -1418,15 +1417,15 @@ int r300_init(struct radeon_device *rdev) if (r) { /* Somethings want wront with the accel init stop accel */ dev_err(rdev->dev, "Disabling GPU acceleration\n"); - r300_suspend(rdev); r100_cp_fini(rdev); r100_wb_fini(rdev); r100_ib_fini(rdev); + radeon_irq_kms_fini(rdev); if (rdev->flags & RADEON_IS_PCIE) rv370_pcie_gart_fini(rdev); if (rdev->flags & RADEON_IS_PCI) r100_pci_gart_fini(rdev); - radeon_irq_kms_fini(rdev); + radeon_agp_fini(rdev); rdev->accel_working = false; } return 0; diff --git a/drivers/gpu/drm/radeon/r420.c b/drivers/gpu/drm/radeon/r420.c index 4526faa..d937324 100644 --- a/drivers/gpu/drm/radeon/r420.c +++ b/drivers/gpu/drm/radeon/r420.c @@ -389,16 +389,15 @@ int r420_init(struct radeon_device *rdev) if (r) { /* Somethings want wront with the accel init stop accel */ dev_err(rdev->dev, "Disabling GPU acceleration\n"); - r420_suspend(rdev); r100_cp_fini(rdev); r100_wb_fini(rdev); r100_ib_fini(rdev); + radeon_irq_kms_fini(rdev); if (rdev->flags & RADEON_IS_PCIE) rv370_pcie_gart_fini(rdev); if (rdev->flags & RADEON_IS_PCI) r100_pci_gart_fini(rdev); radeon_agp_fini(rdev); - radeon_irq_kms_fini(rdev); rdev->accel_working = false; } return 0; diff --git a/drivers/gpu/drm/radeon/r520.c b/drivers/gpu/drm/radeon/r520.c index 9a18907..ddf5731 100644 --- a/drivers/gpu/drm/radeon/r520.c +++ b/drivers/gpu/drm/radeon/r520.c @@ -294,13 +294,12 @@ int r520_init(struct radeon_device *rdev) if (r) { /* Somethings want wront with the accel init stop accel */ dev_err(rdev->dev, "Disabling GPU acceleration\n"); - rv515_suspend(rdev); r100_cp_fini(rdev); r100_wb_fini(rdev); r100_ib_fini(rdev); + radeon_irq_kms_fini(rdev); rv370_pcie_gart_fini(rdev); radeon_agp_fini(rdev); - radeon_irq_kms_fini(rdev); rdev->accel_working = false; } return 0; diff --git a/drivers/gpu/drm/radeon/r600.c b/drivers/gpu/drm/radeon/r600.c index 1b6d000..fd1fea8 100644 --- a/drivers/gpu/drm/radeon/r600.c +++ b/drivers/gpu/drm/radeon/r600.c @@ -1654,6 +1654,12 @@ void r600_ring_init(struct radeon_device *rdev, unsigned ring_size) rdev->cp.align_mask = 16 - 1; } +void r600_cp_fini(struct radeon_device *rdev) +{ + r600_cp_stop(rdev); + radeon_ring_fini(rdev); +} + /* * GPU scratch registers helpers function. @@ -2055,9 +2061,11 @@ int r600_init(struct radeon_device *rdev) rdev->accel_working = true; r = r600_startup(rdev); if (r) { - r600_suspend(rdev); + dev_err(rdev->dev, "disabling GPU acceleration\n"); + r600_cp_fini(rdev); r600_wb_fini(rdev); - radeon_ring_fini(rdev); + r600_irq_fini(rdev); + radeon_irq_kms_fini(rdev); r600_pcie_gart_fini(rdev); rdev->accel_working = false; } @@ -2083,20 +2091,17 @@ int r600_init(struct radeon_device *rdev) void r600_fini(struct radeon_device *rdev) { - /* Suspend operations */ - r600_suspend(rdev); - r600_audio_fini(rdev); r600_blit_fini(rdev); + r600_cp_fini(rdev); + r600_wb_fini(rdev); r600_irq_fini(rdev); radeon_irq_kms_fini(rdev); - radeon_ring_fini(rdev); - r600_wb_fini(rdev); r600_pcie_gart_fini(rdev); + radeon_agp_fini(rdev); radeon_gem_fini(rdev); radeon_fence_driver_fini(rdev); radeon_clocks_fini(rdev); - radeon_agp_fini(rdev); radeon_bo_fini(rdev); radeon_atombios_fini(rdev); kfree(rdev->bios); diff --git a/drivers/gpu/drm/radeon/radeon.h b/drivers/gpu/drm/radeon/radeon.h index 2d5f2bf..11b0a2b 100644 --- a/drivers/gpu/drm/radeon/radeon.h +++ b/drivers/gpu/drm/radeon/radeon.h @@ -1143,6 +1143,7 @@ extern bool r600_card_posted(struct radeon_device *rdev); extern void r600_cp_stop(struct radeon_device *rdev); extern void r600_ring_init(struct radeon_device *rdev, unsigned ring_size); extern int r600_cp_resume(struct radeon_device *rdev); +extern void r600_cp_fini(struct radeon_device *rdev); extern int r600_count_pipe_bits(uint32_t val); extern int r600_gart_clear_page(struct radeon_device *rdev, int i); extern int r600_mc_wait_for_idle(struct radeon_device *rdev); diff --git a/drivers/gpu/drm/radeon/rs400.c b/drivers/gpu/drm/radeon/rs400.c index 9f54189..eeeb0d6 100644 --- a/drivers/gpu/drm/radeon/rs400.c +++ b/drivers/gpu/drm/radeon/rs400.c @@ -448,7 +448,6 @@ int rs400_suspend(struct radeon_device *rdev) void rs400_fini(struct radeon_device *rdev) { - rs400_suspend(rdev); r100_cp_fini(rdev); r100_wb_fini(rdev); r100_ib_fini(rdev); @@ -527,7 +526,6 @@ int rs400_init(struct radeon_device *rdev) if (r) { /* Somethings want wront with the accel init stop accel */ dev_err(rdev->dev, "Disabling GPU acceleration\n"); - rs400_suspend(rdev); r100_cp_fini(rdev); r100_wb_fini(rdev); r100_ib_fini(rdev); diff --git a/drivers/gpu/drm/radeon/rs600.c b/drivers/gpu/drm/radeon/rs600.c index d525575..c381856 100644 --- a/drivers/gpu/drm/radeon/rs600.c +++ b/drivers/gpu/drm/radeon/rs600.c @@ -610,7 +610,6 @@ int rs600_suspend(struct radeon_device *rdev) void rs600_fini(struct radeon_device *rdev) { - rs600_suspend(rdev); r100_cp_fini(rdev); r100_wb_fini(rdev); r100_ib_fini(rdev); @@ -689,7 +688,6 @@ int rs600_init(struct radeon_device *rdev) if (r) { /* Somethings want wront with the accel init stop accel */ dev_err(rdev->dev, "Disabling GPU acceleration\n"); - rs600_suspend(rdev); r100_cp_fini(rdev); r100_wb_fini(rdev); r100_ib_fini(rdev); diff --git a/drivers/gpu/drm/radeon/rs690.c b/drivers/gpu/drm/radeon/rs690.c index cd31da9..06e2771 100644 --- a/drivers/gpu/drm/radeon/rs690.c +++ b/drivers/gpu/drm/radeon/rs690.c @@ -676,7 +676,6 @@ int rs690_suspend(struct radeon_device *rdev) void rs690_fini(struct radeon_device *rdev) { - rs690_suspend(rdev); r100_cp_fini(rdev); r100_wb_fini(rdev); r100_ib_fini(rdev); @@ -756,7 +755,6 @@ int rs690_init(struct radeon_device *rdev) if (r) { /* Somethings want wront with the accel init stop accel */ dev_err(rdev->dev, "Disabling GPU acceleration\n"); - rs690_suspend(rdev); r100_cp_fini(rdev); r100_wb_fini(rdev); r100_ib_fini(rdev); diff --git a/drivers/gpu/drm/radeon/rv515.c b/drivers/gpu/drm/radeon/rv515.c index 6275671..0e1e6b8 100644 --- a/drivers/gpu/drm/radeon/rv515.c +++ b/drivers/gpu/drm/radeon/rv515.c @@ -537,7 +537,6 @@ void rv515_set_safe_registers(struct radeon_device *rdev) void rv515_fini(struct radeon_device *rdev) { - rv515_suspend(rdev); r100_cp_fini(rdev); r100_wb_fini(rdev); r100_ib_fini(rdev); @@ -615,13 +614,12 @@ int rv515_init(struct radeon_device *rdev) if (r) { /* Somethings want wront with the accel init stop accel */ dev_err(rdev->dev, "Disabling GPU acceleration\n"); - rv515_suspend(rdev); r100_cp_fini(rdev); r100_wb_fini(rdev); r100_ib_fini(rdev); + radeon_irq_kms_fini(rdev); rv370_pcie_gart_fini(rdev); radeon_agp_fini(rdev); - radeon_irq_kms_fini(rdev); rdev->accel_working = false; } return 0; diff --git a/drivers/gpu/drm/radeon/rv770.c b/drivers/gpu/drm/radeon/rv770.c index afd9e82..1f04d0a 100644 --- a/drivers/gpu/drm/radeon/rv770.c +++ b/drivers/gpu/drm/radeon/rv770.c @@ -1065,9 +1065,11 @@ int rv770_init(struct radeon_device *rdev) rdev->accel_working = true; r = rv770_startup(rdev); if (r) { - rv770_suspend(rdev); + dev_err(rdev->dev, "disabling GPU acceleration\n"); + r600_cp_fini(rdev); r600_wb_fini(rdev); - radeon_ring_fini(rdev); + r600_irq_fini(rdev); + radeon_irq_kms_fini(rdev); rv770_pcie_gart_fini(rdev); rdev->accel_working = false; } @@ -1089,13 +1091,11 @@ int rv770_init(struct radeon_device *rdev) void rv770_fini(struct radeon_device *rdev) { - rv770_suspend(rdev); - r600_blit_fini(rdev); + r600_cp_fini(rdev); + r600_wb_fini(rdev); r600_irq_fini(rdev); radeon_irq_kms_fini(rdev); - radeon_ring_fini(rdev); - r600_wb_fini(rdev); rv770_pcie_gart_fini(rdev); radeon_gem_fini(rdev); radeon_fence_driver_fini(rdev); -- 1.6.6 ^ permalink raw reply related [flat|nested] 64+ messages in thread
* Re: [crash, PATCH] Revert "drm/radeon/kms: move radeon KMS on/off switch out of staging." 2010-02-02 11:56 ` Jerome Glisse @ 2010-02-02 15:42 ` Ingo Molnar 2010-02-02 23:15 ` Jerome Glisse 0 siblings, 1 reply; 64+ messages in thread From: Ingo Molnar @ 2010-02-02 15:42 UTC (permalink / raw) To: Jerome Glisse; +Cc: Dave Airlie, torvalds, linux-kernel, dri-devel [-- Warning: decoded text below may be mangled, UTF-8 assumed --] [-- Attachment #1: Type: text/plain; charset=unknown-8bit, Size: 3390 bytes --] * Jerome Glisse <glisse@freedesktop.org> wrote: > On Tue, Feb 02, 2010 at 09:17:27AM +0100, Ingo Molnar wrote: > > > > * Dave Airlie <airlied@linux.ie> wrote: > > > > > > Hi Linus, > > > > > > > > Please pull the 'drm-linus' branch from > > > > ssh://master.kernel.org/pub/scm/linux/kernel/git/airlied/drm-2.6.git drm-linus > > > > > > > > > > I've also added an oops fix I seem to lose off my radar to this tree. > > > > > > commit 17aafccab4352b422aa01fa6ebf82daff693a5b3 > > > Author: Michel D??nzer <daenzer@vmware.com> > > > Date: Fri Jan 22 09:20:00 2010 +0100 > > > > > > drm/radeon/kms: Fix oops after radeon_cs_parser_init() failure. > > > > FYI, this drm pull into mainline has triggered quick boot crashes in -tip > > testing (even with the above fix applied), on an Athlon64 whitebox PC with: > > > > 01:00.0 VGA compatible controller: ATI Technologies Inc RV370 5B60 [Radeon X300 (PCIE)] > > 01:00.1 Display controller: ATI Technologies Inc RV370 [Radeon X300SE] > > > > the crash is: > > > > [ 7.111003] radeon 0000:01:00.0: Disabling GPU acceleration > > [ 7.273547] Failed to wait GUI idle while programming pipes. Bad things might happen. > > [ 7.436296] [drm:r100_cp_fini] *ERROR* Wait for CP idle timeout, shutting down CP. > > [ 7.598755] Failed to wait GUI idle while programming pipes. Bad things might happen. > > [ 7.599306] BUG: unable to handle kernel paging request at f8380000 > > [ 7.599999] IP: [<c149f0de>] rv370_pcie_gart_set_page+0x2d/0x3c > > [ 7.599999] *pde = 36d44067 *pte = 00000000 > > [ 7.599999] Oops: 0002 [#1] SMP DEBUG_PAGEALLOC > > [ 7.599999] last sysfs file: > > > > i have bisected it back to: > > > > | 97b94ccb9aa1b82ed7a9a045d0ae5b32c99b84a0 is the first bad commit > > | commit 97b94ccb9aa1b82ed7a9a045d0ae5b32c99b84a0 > > | Author: Dave Airlie <airlied@redhat.com> > > | Date: Fri Jan 29 15:31:47 2010 +1000 > > | > > | drm/radeon/kms: fix incorrect logic in DP vs eDP connector checking. > > | > > | This makes displayport work again here. > > > > Unfortunately even with that patch reverted it still crashes. Config and > > bootlog attached. > > > > It's the moving of radeom KMS out of staging after -rc6 that causes it, > > because it brought it into the scope of my testing: > > > > f71d018: drm/radeon/kms: move radeon KMS on/off switch out of staging. > > > > So at least on this box it's clearly not ready for mainline enablement yet. > > I've attached the revert patch further below. > > > > Ingo > > > > Attached is a patch which will fix the oops, still it's strange that CP > fails to init on your config. [...] Thanks, that fixes the crash here! Tested-by: Ingo Molnar <mingo@elte.hu> > [...] Do you have IOMMU enabled ? I haven't played with iommu stuff thus i > wonder if we are missing somethings in this area. No IOMMU here - this is a 5 years old box. (beyond GART that is) Your patch fixes a bona-fide illegal-access bug in the DRM code, that's more than enough to crash the box ;-) Btw., there's a new warning in the DRM code drivers/gpu/drm/ati_pcigart.c: In function ‘drm_ati_pcigart_init’: drivers/gpu/drm/ati_pcigart.c:115: warning: format ‘%Lx’ expects type ‘long long unsigned int’, but argument 3 has type ‘dma_addr_t’ Please fix that too, the kernel build is noisy enough as-is. Thanks, Ingo ^ permalink raw reply [flat|nested] 64+ messages in thread
* Re: [crash, PATCH] Revert "drm/radeon/kms: move radeon KMS on/off switch out of staging." 2010-02-02 15:42 ` Ingo Molnar @ 2010-02-02 23:15 ` Jerome Glisse 0 siblings, 0 replies; 64+ messages in thread From: Jerome Glisse @ 2010-02-02 23:15 UTC (permalink / raw) To: Ingo Molnar; +Cc: Dave Airlie, torvalds, linux-kernel, dri-devel On Tue, Feb 02, 2010 at 04:42:21PM +0100, Ingo Molnar wrote: > > * Jerome Glisse <glisse@freedesktop.org> wrote: > > > On Tue, Feb 02, 2010 at 09:17:27AM +0100, Ingo Molnar wrote: > > > > > > * Dave Airlie <airlied@linux.ie> wrote: > > > > > > > > Hi Linus, > > > > > > > > > > Please pull the 'drm-linus' branch from > > > > > ssh://master.kernel.org/pub/scm/linux/kernel/git/airlied/drm-2.6.git drm-linus > > > > > > > > > > > > > I've also added an oops fix I seem to lose off my radar to this tree. > > > > > > > > commit 17aafccab4352b422aa01fa6ebf82daff693a5b3 > > > > Author: Michel D??nzer <daenzer@vmware.com> > > > > Date: Fri Jan 22 09:20:00 2010 +0100 > > > > > > > > drm/radeon/kms: Fix oops after radeon_cs_parser_init() failure. > > > > > > FYI, this drm pull into mainline has triggered quick boot crashes in -tip > > > testing (even with the above fix applied), on an Athlon64 whitebox PC with: > > > > > > 01:00.0 VGA compatible controller: ATI Technologies Inc RV370 5B60 [Radeon X300 (PCIE)] > > > 01:00.1 Display controller: ATI Technologies Inc RV370 [Radeon X300SE] > > > > > > the crash is: > > > > > > [ 7.111003] radeon 0000:01:00.0: Disabling GPU acceleration > > > [ 7.273547] Failed to wait GUI idle while programming pipes. Bad things might happen. > > > [ 7.436296] [drm:r100_cp_fini] *ERROR* Wait for CP idle timeout, shutting down CP. > > > [ 7.598755] Failed to wait GUI idle while programming pipes. Bad things might happen. > > > [ 7.599306] BUG: unable to handle kernel paging request at f8380000 > > > [ 7.599999] IP: [<c149f0de>] rv370_pcie_gart_set_page+0x2d/0x3c > > > [ 7.599999] *pde = 36d44067 *pte = 00000000 > > > [ 7.599999] Oops: 0002 [#1] SMP DEBUG_PAGEALLOC > > > [ 7.599999] last sysfs file: > > > > > > i have bisected it back to: > > > > > > | 97b94ccb9aa1b82ed7a9a045d0ae5b32c99b84a0 is the first bad commit > > > | commit 97b94ccb9aa1b82ed7a9a045d0ae5b32c99b84a0 > > > | Author: Dave Airlie <airlied@redhat.com> > > > | Date: Fri Jan 29 15:31:47 2010 +1000 > > > | > > > | drm/radeon/kms: fix incorrect logic in DP vs eDP connector checking. > > > | > > > | This makes displayport work again here. > > > > > > Unfortunately even with that patch reverted it still crashes. Config and > > > bootlog attached. > > > > > > It's the moving of radeom KMS out of staging after -rc6 that causes it, > > > because it brought it into the scope of my testing: > > > > > > f71d018: drm/radeon/kms: move radeon KMS on/off switch out of staging. > > > > > > So at least on this box it's clearly not ready for mainline enablement yet. > > > I've attached the revert patch further below. > > > > > > Ingo > > > > > > > Attached is a patch which will fix the oops, still it's strange that CP > > fails to init on your config. [...] > > Thanks, that fixes the crash here! > > Tested-by: Ingo Molnar <mingo@elte.hu> > > > [...] Do you have IOMMU enabled ? I haven't played with iommu stuff thus i > > wonder if we are missing somethings in this area. > > No IOMMU here - this is a 5 years old box. (beyond GART that is) > > Your patch fixes a bona-fide illegal-access bug in the DRM code, that's more > than enough to crash the box ;-) > > Btw., there's a new warning in the DRM code > > drivers/gpu/drm/ati_pcigart.c: In function ‘drm_ati_pcigart_init’: > drivers/gpu/drm/ati_pcigart.c:115: warning: format ‘%Lx’ expects type ‘long long unsigned int’, but argument 3 has type ‘dma_addr_t’ > > Please fix that too, the kernel build is noisy enough as-is. > > Thanks, > > Ingo I think i saw a patch for this, it's often a nice thing to let people do their first patch on this kind of thing, but i try to fix such thing when i run into it, thought i haven't always been a well behaving kid in the % format area. Cheers, Jerome ^ permalink raw reply [flat|nested] 64+ messages in thread
end of thread, other threads:[~2010-02-06 11:15 UTC | newest] Thread overview: 64+ messages (download: mbox.gz follow: Atom feed -- links below jump to the message on this page -- 2010-02-01 2:20 [git pull] drm fixes Dave Airlie 2010-02-01 2:53 ` Dave Airlie 2010-02-02 8:17 ` [crash, PATCH] Revert "drm/radeon/kms: move radeon KMS on/off switch out of staging." Ingo Molnar 2010-02-02 8:25 ` Dave Airlie 2010-02-02 15:44 ` Ingo Molnar 2010-02-04 20:39 ` Dave Airlie 2010-02-04 20:46 ` Ingo Molnar 2010-02-04 21:14 ` Dave Airlie 2010-02-05 0:43 ` Dave Airlie 2010-02-05 7:32 ` Ingo Molnar 2010-02-02 8:35 ` Dave Airlie 2010-02-02 8:37 ` Dave Airlie 2010-02-02 15:42 ` Ingo Molnar 2010-02-02 15:46 ` Ingo Molnar 2010-02-02 20:34 ` Dave Airlie 2010-02-04 6:26 ` Ingo Molnar 2010-02-04 6:39 ` Dave Airlie 2010-02-04 7:36 ` Ingo Molnar 2010-02-04 7:49 ` Dave Airlie 2010-02-04 7:17 ` hung bootup with " Ingo Molnar 2010-02-04 16:48 ` Matthew Garrett 2010-02-04 17:08 ` Ingo Molnar 2010-02-04 17:15 ` Linus Torvalds 2010-02-04 17:36 ` Ingo Molnar 2010-02-04 17:36 ` Matthew Garrett 2010-02-04 17:54 ` Ingo Molnar 2010-02-04 17:59 ` Matthew Garrett 2010-02-04 18:12 ` Ingo Molnar 2010-02-04 18:15 ` Matthew Garrett 2010-02-04 18:56 ` Ingo Molnar 2010-02-04 19:00 ` Matthew Garrett 2010-02-04 19:19 ` Ingo Molnar 2010-02-04 19:28 ` Jerome Glisse 2010-02-04 20:34 ` Ingo Molnar 2010-02-04 18:30 ` Alex Deucher 2010-02-04 19:06 ` Ingo Molnar 2010-02-04 19:18 ` Alex Deucher 2010-02-04 19:24 ` Linus Torvalds 2010-02-04 19:34 ` Dave Airlie 2010-02-04 20:27 ` Ingo Molnar 2010-02-04 19:32 ` Ingo Molnar 2010-02-04 19:53 ` Jesse Barnes 2010-02-04 20:22 ` Ingo Molnar 2010-02-04 20:27 ` david 2010-02-04 20:33 ` Jesse Barnes 2010-02-04 20:57 ` Ingo Molnar 2010-02-04 20:48 ` Matthew Garrett 2010-02-04 21:05 ` Ingo Molnar 2010-02-04 21:09 ` Matthew Garrett 2010-02-05 7:56 ` Ingo Molnar 2010-02-05 8:34 ` Dave Airlie 2010-02-05 9:00 ` Ingo Molnar 2010-02-05 9:18 ` Dave Airlie 2010-02-05 10:47 ` Ingo Molnar 2010-02-04 21:23 ` Andrew Morton 2010-02-04 21:34 ` Jesse Barnes 2010-02-04 21:35 ` Dave Airlie 2010-02-06 11:10 ` Felipe Contreras 2010-02-02 8:58 ` [crash, PATCH] Revert " Domenico Andreoli 2010-02-02 11:59 ` Jerome Glisse 2010-02-02 15:11 ` Domenico Andreoli 2010-02-02 11:56 ` Jerome Glisse 2010-02-02 15:42 ` Ingo Molnar 2010-02-02 23:15 ` Jerome Glisse
This is a public inbox, see mirroring instructions for how to clone and mirror all data and code used for this inbox; as well as URLs for NNTP newsgroup(s).