linux-kernel mailing list

FromSubjectsort iconDate
Oliver Neukum
[PATCH 19/37] Input: xpad - don't use GFP_ATOMIC
GFP_ATOMIC should not be used when GFP_KERNEL can be used. Signed-off-by: Oliver Neukum <oneukum@suse.de> Signed-off-by: Dmitry Torokhov <dtor@mail.ru> --- drivers/input/joystick/xpad.c | 4 ++-- 1 files changed, 2 insertions(+), 2 deletions(-) diff --git a/drivers/input/joystick/xpad.c b/drivers/input/joystick/xpad.c index ebf8303..d4d289e 100644 --- a/drivers/input/joystick/xpad.c +++ b/drivers/input/joystick/xpad.c @@ -497,7 +497,7 @@ static int xpad_init_output(struct usb_i...
Apr 3, 4:19 pm 2008
Anssi Hannula
[PATCH 14/37] Input: xpad - add more xbox 360 controller ids
Add Mad Catz and 0x0e6f xbox360 controllers which are already found in xpad_device[] table in xpad.c into the vendor id list. Also add Logitech into the vendor list for Logitech Chillstream gamepads. Also add the RedOctane Guitar Hero X-plorer. Signed-off-by: Anssi Hannula <anssi.hannula@gmail.com> Signed-off-by: Dmitry Torokhov <dtor@mail.ru> --- drivers/input/joystick/xpad.c | 6 ++++++ 1 files changed, 6 insertions(+), 0 deletions(-) diff --git a/drivers/input/joystick/xpad.c...
Apr 3, 4:18 pm 2008
Brian Magnuson
[PATCH 18/37] Input: xpad - add support for wireless xbox360...
Signed-off-by: Brian Magnuson <bdmagnuson@gmail.com> Signed-off-by: Anssi Hannula <anssi.hannula@gmail.com> Signed-off-by: Dmitry Torokhov <dtor@mail.ru> --- drivers/input/joystick/xpad.c | 164 +++++++++++++++++++++++++++++++++++++---- 1 files changed, 148 insertions(+), 16 deletions(-) diff --git a/drivers/input/joystick/xpad.c b/drivers/input/joystick/xpad.c index 7188eec..ebf8303 100644 --- a/drivers/input/joystick/xpad.c +++ b/drivers/input/joystick/xpad.c @@ -92,7 +92,8...
Apr 3, 4:19 pm 2008
Anssi Hannula
[PATCH 16/37] Input: xpad - enable force feedback on xbox 36...
Commit 4994cd8dadcf9d484ab3ec19f3c7c7a4e5353c1c introduced a regression which causes xpad to report force feedback cababilities for non-360 controllers too, even while there is no actual support for those. Fix that by adding a check for XTYPE_XBOX360 to xpad_init_ff(). Signed-off-by: Anssi Hannula <anssi.hannula@gmail.com> Signed-off-by: Dmitry Torokhov <dtor@mail.ru> --- drivers/input/joystick/xpad.c | 3 +++ 1 files changed, 3 insertions(+), 0 deletions(-) diff --git a/driv...
Apr 3, 4:18 pm 2008
Anssi Hannula
[PATCH 12/37] Input: xpad - fix dpad handling of unknown dev...
For devices not specifically listed in xpad.c, xpad->dpad_mapping is initially set to MAP_DPAD_UNKNOWN. In xpad_probe() it gets changed to either MAP_DPAD_TO_BUTTONS or MAP_DPAD_TO_AXES, depending on the module parameter dpad_to_buttons. However, MAP_DPAD_UNKNOWN is defined as -1, while the field is u8. This results in actual value of 255, causing the MAP_DPAD_UNKNOWN check in xpad_probe() to fail. Fix that by defining MAP_DPAD_UNKNOWN as 2 instead. Also, setting module parameter dpad_to_butt...
Apr 3, 4:18 pm 2008
Anssi Hannula
[PATCH 11/37] Input: xpad - match xbox 360 devices with inte...
Match Xbox 360 controllers using the interface info, i.e. interface class 255 (Vendor specific), subclass 93 and protocol 1, instead of specifying the device ids individually. As the class is vendor-specific, we have to still match against vendor id as well, though. Signed-off-by: Anssi Hannula <anssi.hannula@gmail.com> Signed-off-by: Dmitry Torokhov <dtor@mail.ru> --- drivers/input/joystick/xpad.c | 21 ++++++++++++++++----- 1 files changed, 16 insertions(+), 5 deletions(-) diff...
Apr 3, 4:17 pm 2008
Anssi Hannula
[PATCH 15/37] Input: xpad - do not report nonexistent button...
The buttons BTN_C and BTN_Z are only used in the original xbox controller, not in xbox360 controller. Therefore only add them to keybit when the controller is a non-360 one. Signed-off-by: Anssi Hannula <anssi.hannula@gmail.com> Signed-off-by: Dmitry Torokhov <dtor@mail.ru> --- drivers/input/joystick/xpad.c | 18 ++++++++++++++---- 1 files changed, 14 insertions(+), 4 deletions(-) diff --git a/drivers/input/joystick/xpad.c b/drivers/input/joystick/xpad.c index 8952495..b48f705 10...
Apr 3, 4:18 pm 2008
Anssi Hannula
[PATCH 17/37] Input: xpad - drop obsolete driver versioning
The driver version numbers and changelog have not been updated in a long while to reflect actual changes. Remove the version number and add a notice that later changes can be tracked in SCM. Signed-off-by: Anssi Hannula <anssi.hannula@gmail.com> Signed-off-by: Dmitry Torokhov <dtor@mail.ru> --- drivers/input/joystick/xpad.c | 7 ++++--- 1 files changed, 4 insertions(+), 3 deletions(-) diff --git a/drivers/input/joystick/xpad.c b/drivers/input/joystick/xpad.c index fd80113..7188e...
Apr 3, 4:19 pm 2008
Anssi Hannula
[PATCH 13/37] Input: xpad - fix inverted Y and RY axes
The commit ae91d10aab2762f81733e9194cb56eff99c8d808 inverted Y and RY axes on xbox360 so that up is positive and down is negative. This is wrong, as axes on game controllers have up as negative per convention. Also, even xpad itself reports HAT0X with up as negative. Fix that by inverting them again. Also, according to http://bugzilla.kernel.org/show_bug.cgi?id=10337 the original xbox controllers also have the Y and RY axes inverted. Fix that by inverting them as well. Cc: Brian Magnuson <b...
Apr 3, 4:18 pm 2008
Johannes Berg
debugfs_remove() vs. anything that is dynamic
Consider the following trivial module: --- %< --- #include <linux/module.h> #include <linux/debugfs.h> static struct dentry *f; static u32 tmp; int __init mod_enter(void) { f =3D debugfs_create_u32("tmp-test", 0666, NULL, &tmp); return 0; } void __exit mod_leave(void) { debugfs_remove(f); } module_init(mod_enter); module_exit(mod_leave); MODULE_LICENSE("GPL"); --- >% --- How do I make that safe? FWIW, the problem is: thread 1 thread 2 fd ...
Apr 3, 7:56 pm 2008
Johannes Berg
cpu_clock confusion (was: printk time confusion?)
That didn't help, so it's not the lockdep patches causing it. I'm still seeing printk timestamps like this: [ 2.764009 (3/3)] [ 4.272241 (2/2)] [ 4.272322 (2/2)] [ 4.272375 (2/2)] [ 2.948002 (3/3)] As you can see, I added printk_cpu and smp_processor_id() to the printk timestamp output and thus it is obvious that the different times come from different CPUs. I have to admit that I do not understand the cpu_clock() implementation, but I can only point out that the bug seems ...
Apr 3, 12:34 pm 2008
Rafael J. Wysocki
2.6.25-rc1 on Sun Ultra 40- HPET clocksource which causes it...
The following report is on the current list of known regressions from 2.6.24. Please verify if the issue is still present in the mainline. Bug-Entry : http://bugzilla.kernel.org/show_bug.cgi?id=9980 Subject : 2.6.25-rc1 on Sun Ultra 40- HPET clocksource which causes it to hang Submitter : Jasper Bryant-Greene <jasper@unix.geek.nz> Date : 2008-02-13 12:25 (51 days old) References : http://lkml.org/lkml/2008/2/13/181 --
Apr 3, 7:05 pm 2008
Rafael J. Wysocki
2.6.25-rc1: volanoMark regression
The following report is on the current list of known regressions from 2.6.24. Please verify if the issue is still present in the mainline. Bug-Entry : http://bugzilla.kernel.org/show_bug.cgi?id=9978 Subject : 2.6.25-rc1: volanoMark regression Submitter : Zhang, Yanmin <yanmin_zhang@linux.intel.com> Date : 2008-02-13 10:30 (51 days old) References : http://lkml.org/lkml/2008/2/13/128 Handled-By : Srivatsa Vaddagiri <vatsa@linux.vnet.ibm.com> --
Apr 3, 6:50 pm 2008
Rafael J. Wysocki
2.6.25-rc8-git2: Reported regressions from 2.6.24
[This time I'm going to do something new: I'll send a series of messages with individual regression entries CCed to the people involved in handling them in replies to this message. Let's see how this works, fingers crossed. Thx. R.] This message contains a list of some regressions from 2.6.24, for which there are no fixes in the mainline I know of. If any of them have been fixed already, please let me know. If you know of any other unresolved regressions from 2.6.24, please let me know either ...
Apr 3, 6:49 pm 2008
Rafael J. Wysocki
2.6.25-rc6-git2: warn_on_slowpath for tcp_simple_retransmit
The following report is on the current list of known regressions from 2.6.24. Please verify if the issue is still present in the mainline. Bug-Entry : http://bugzilla.kernel.org/show_bug.cgi?id=10384 Subject : 2.6.25-rc6-git2: warn_on_slowpath for tcp_simple_retransmit Submitter : Alessandro Suardi <alessandro.suardi@gmail.com> Date : 2008-04-02 00:28 (2 days old) References : http://lkml.org/lkml/2008/4/1/408 Handled-By : Ilpo Jarvinen <ilpo.jarvinen@helsinki.fi> --
Apr 3, 7:30 pm 2008
Rafael J. Wysocki
Oops while reading /proc/ioports or /proc/iomem
The following report is on the current list of known regressions from 2.6.24. Please verify if the issue is still present in the mainline. Bug-Entry : http://bugzilla.kernel.org/show_bug.cgi?id=10390 Subject : Oops while reading /proc/ioports or /proc/iomem Submitter : Jan Kara <jack@suse.cz> Date : 2008-04-03 15:25 (1 days old) References : http://lkml.org/lkml/2008/4/3/149 --
Apr 3, 7:22 pm 2008
Rafael J. Wysocki
2.6.25-rc7/8: Another resume regression
The following report is on the current list of known regressions from 2.6.24. Please verify if the issue is still present in the mainline. Bug-Entry : http://bugzilla.kernel.org/show_bug.cgi?id=10391 Subject : 2.6.25-rc7/8: Another resume regression Submitter : Mark Lord <lkml@rtr.ca> Date : 2008-04-03 15:06 (1 days old) References : http://lkml.org/lkml/2008/4/3/283 --
Apr 3, 7:22 pm 2008
Rafael J. Wysocki
rc6+ regression - backlight reset to 0 on boot after 7c0ea45...
The following report is on the current list of known regressions from 2.6.24. Please verify if the issue is still present in the mainline. Bug-Entry : http://bugzilla.kernel.org/show_bug.cgi?id=10387 Subject : rc6+ regression - backlight reset to 0 on boot after 7c0ea45be4f114d85ee35caeead8e1660699c46f Submitter : Andrey Borzenkov <arvidjaar@mail.ru> Date : 2008-04-02 22:53 (2 days old) References : http://lkml.org/lkml/2008/4/2/366 --
Apr 3, 7:22 pm 2008
Rafael J. Wysocki
2.6.25-rc5.git4 regression PS/2 mouse not detected/working
The following report is on the current list of known regressions from 2.6.24. Please verify if the issue is still present in the mainline. Bug-Entry : http://bugzilla.kernel.org/show_bug.cgi?id=10382 Subject : 2.6.25-rc5.git4 regression PS/2 mouse not detected/working Submitter : Yanko Kaneti <yaneti@declera.com> Date : 2008-04-02 10:59 (2 days old) References : http://lkml.org/lkml/2008/4/2/210 Handled-By : Dmitry Torokhov <dmitry.torokhov@gmail.com> Balaji Rao <balajirra...
Apr 3, 7:22 pm 2008
Rafael J. Wysocki
The never ending BEEEEP/__smp_call_function_mask with 2.6.25...
The following report is on the current list of known regressions from 2.6.24. Please verify if the issue is still present in the mainline. Bug-Entry : http://bugzilla.kernel.org/show_bug.cgi?id=10369 Subject : The never ending BEEEEP/__smp_call_function_mask with 2.6.25-rc7 Submitter : Chr <chunkeey@web.de> Date : 2008-03-30 21:09 (5 days old) References : http://lkml.org/lkml/2008/3/30/87 --
Apr 3, 7:22 pm 2008
Rafael J. Wysocki
Kernel freezes during boot when AC is unplugged
The following report is on the current list of known regressions from 2.6.24. Please verify if the issue is still present in the mainline. Bug-Entry : http://bugzilla.kernel.org/show_bug.cgi?id=10377 Subject : Kernel freezes during boot when AC is unplugged Submitter : Roman Jarosz <kedgedev@centrum.cz> Date : 2008-04-01 16:23 (3 days old) --
Apr 3, 7:22 pm 2008
Rafael J. Wysocki
[2.6.25-rc6] possible regression: X server dying
The following report is on the current list of known regressions from 2.6.24. Please verify if the issue is still present in the mainline. Bug-Entry : http://bugzilla.kernel.org/show_bug.cgi?id=10344 Subject : [2.6.25-rc6] possible regression: X server dying Submitter : Tilman Schmidt <tilman@imap.cc> Date : 2008-03-24 23:38 (11 days old) References : http://lkml.org/lkml/2008/3/24/260 Handled-By : Dave Airlie <airlied@gmail.com> --
Apr 3, 7:22 pm 2008
Rafael J. Wysocki
2.6.25-rc7: warn_on_slowpath triggered
The following report is on the current list of known regressions from 2.6.24. Please verify if the issue is still present in the mainline. Bug-Entry : http://bugzilla.kernel.org/show_bug.cgi?id=10366 Subject : 2.6.25-rc7: warn_on_slowpath triggered Submitter : Bob Tracy <rct@frus.com> Date : 2008-03-29 17:29 (6 days old) References : http://lkml.org/lkml/2008/3/29/125 Handled-By : Bjoern Steinbrink <B.Steinbrink@gmx.de> Patch : http://lkml.org/lkml/2008/3/30/245 --
Apr 3, 7:22 pm 2008
Rafael J. Wysocki
slub compile error
The following report is on the current list of known regressions from 2.6.24. Please verify if the issue is still present in the mainline. Bug-Entry : http://bugzilla.kernel.org/show_bug.cgi?id=10373 Subject : slub compile error Submitter : Toralf Foerster <toralf.foerster@gmx.de> Date : 2008-03-31 14:46 (4 days old) References : http://lkml.org/lkml/2008/3/31/120 Handled-By : Christoph Lameter <clameter@sgi.com> Patch : http://lkml.org/lkml/2008/3/31/261 --
Apr 3, 7:22 pm 2008
Rafael J. Wysocki
usb-storage, error reading the last 8 sectors, regression in...
The following report is on the current list of known regressions from 2.6.24. Please verify if the issue is still present in the mainline. Bug-Entry : http://bugzilla.kernel.org/show_bug.cgi?id=10365 Subject : usb-storage, error reading the last 8 sectors, regression in 2.6.25-rc7 Submitter : Sergey Dolgov <solkaa@gmail.com> Date : 2008-03-30 11:49 (5 days old) References : http://lkml.org/lkml/2008/3/30/11 --
Apr 3, 7:22 pm 2008
Rafael J. Wysocki
regression: am-utils stopped working in 2.6.25-rc*
The following report is on the current list of known regressions from 2.6.24. Please verify if the issue is still present in the mainline. Bug-Entry : http://bugzilla.kernel.org/show_bug.cgi?id=10349 Subject : regression: am-utils stopped working in 2.6.25-rc* Submitter : Meelis Roos <mroos@linux.ee> Date : 2008-03-28 15:20 (7 days old) References : http://lkml.org/lkml/2008/3/28/174 --
Apr 3, 7:22 pm 2008
Rafael J. Wysocki
Linux 2.6.25-rc6: WARNING: at net/ipv4/tcp_input.c:2510
The following report is on the current list of known regressions from 2.6.24. Please verify if the issue is still present in the mainline. Bug-Entry : http://bugzilla.kernel.org/show_bug.cgi?id=10346 Subject : Linux 2.6.25-rc6: WARNING: at net/ipv4/tcp_input.c:2510 Submitter : Georgi Chorbadzhiyski <gf@unixsol.org> Date : 2008-03-27 17:29 (8 days old) References : http://lkml.org/lkml/2008/3/27/246 --
Apr 3, 7:22 pm 2008
Rafael J. Wysocki
inconsistent lock state in net_rx_action
The following report is on the current list of known regressions from 2.6.24. Please verify if the issue is still present in the mainline. Bug-Entry : http://bugzilla.kernel.org/show_bug.cgi?id=10326 Subject : inconsistent lock state in net_rx_action Submitter : Marcus Better <marcus@better.se> Date : 2008-03-25 13:21 (10 days old) Patch : http://bugzilla.kernel.org/show_bug.cgi?id=10326#c20 --
Apr 3, 7:22 pm 2008
Rafael J. Wysocki
kernel panic ip_route_input
The following report is on the current list of known regressions from 2.6.24. Please verify if the issue is still present in the mainline. Bug-Entry : http://bugzilla.kernel.org/show_bug.cgi?id=10324 Subject : kernel panic ip_route_input Submitter : Denys Fedoryshchenko <nuclearcat@nuclearcat.com> Date : 2008-03-25 12:48 (10 days old) --
Apr 3, 7:22 pm 2008
Rafael J. Wysocki
rt2x00 does not associate or give scan results
The following report is on the current list of known regressions from 2.6.24. Please verify if the issue is still present in the mainline. Bug-Entry : http://bugzilla.kernel.org/show_bug.cgi?id=10320 Subject : rt2x00 does not associate or give scan results Submitter : Marcus Better <marcus@better.se> Date : 2008-03-25 06:04 (10 days old) --
Apr 3, 7:22 pm 2008
Rafael J. Wysocki
panic using bridging on linus kernel 2.6.25-rc6
The following report is on the current list of known regressions from 2.6.24. Please verify if the issue is still present in the mainline. Bug-Entry : http://bugzilla.kernel.org/show_bug.cgi?id=10323 Subject : panic using bridging on linus kernel 2.6.25-rc6 Submitter : Andy Gospodarek <andy@greyhouse.net> Date : 2008-03-25 11:40 (10 days old) --
Apr 3, 7:22 pm 2008
Rafael J. Wysocki
2.6.25-rc6 regression - hang on resume
The following report is on the current list of known regressions from 2.6.24. Please verify if the issue is still present in the mainline. Bug-Entry : http://bugzilla.kernel.org/show_bug.cgi?id=10319 Subject : 2.6.25-rc6 regression - hang on resume Submitter : Soeren Sonnenburg <kernel@nn7.de> Date : 2008-03-25 04:44 (10 days old) --
Apr 3, 7:22 pm 2008
Rafael J. Wysocki
volume wheel does not work in 2.6.25-rc6
The following report is on the current list of known regressions from 2.6.24. Please verify if the issue is still present in the mainline. Bug-Entry : http://bugzilla.kernel.org/show_bug.cgi?id=10300 Subject : volume wheel does not work in 2.6.25-rc6 Submitter : Romano Giannetti <romano.giannetti@gmail.com> Date : 2008-03-21 11:42 (14 days old) --
Apr 3, 7:22 pm 2008
Rafael J. Wysocki
[BUG] Linux 2.6.25-rc6 - kernel BUG at fs/mpage.c:476! on po...
The following report is on the current list of known regressions from 2.6.24. Please verify if the issue is still present in the mainline. Bug-Entry : http://bugzilla.kernel.org/show_bug.cgi?id=10290 Subject : [BUG] Linux 2.6.25-rc6 - kernel BUG at fs/mpage.c:476! on powerpc Submitter : Kamalesh Babulal <kamalesh@linux.vnet.ibm.com> Date : 2008-03-20 13:13 (15 days old) References : http://lkml.org/lkml/2008/3/20/39 --
Apr 3, 7:22 pm 2008
Rafael J. Wysocki
2.6.25-git regression with snd-hda-intel on Dell XPS M1330, ...
The following report is on the current list of known regressions from 2.6.24. Please verify if the issue is still present in the mainline. Bug-Entry : http://bugzilla.kernel.org/show_bug.cgi?id=10302 Subject : 2.6.25-git regression with snd-hda-intel on Dell XPS M1330, no analog sound Submitter : Andre Tomt <andre@tomt.net> Date : 2008-03-21 20:03 (14 days old) References : http://lkml.org/lkml/2008/3/21/295 Handled-By : Matthew Ranostay <mranostay@embeddedalley.com> --
Apr 3, 7:22 pm 2008
Rafael J. Wysocki
2.6.25-current-git hangs on boot unless CONFIG_CPU_IDLE=n - ...
The following report is on the current list of known regressions from 2.6.24. Please verify if the issue is still present in the mainline. Bug-Entry : http://bugzilla.kernel.org/show_bug.cgi?id=10093 Subject : 2.6.25-current-git hangs on boot unless CONFIG_CPU_IDLE=n - Apple Submitter : Soeren Sonnenburg <kernel@nn7.de> Date : 2008-02-23 18:55 (41 days old) References : http://lkml.org/lkml/2008/2/23/263 http://marc.info/?l=linux-acpi&m=120387537018467&w=4 Handled-B...
Apr 3, 7:22 pm 2008
Rafael J. Wysocki
INFO: possible circular locking in the resume
The following report is on the current list of known regressions from 2.6.24. Please verify if the issue is still present in the mainline. Bug-Entry : http://bugzilla.kernel.org/show_bug.cgi?id=10133 Subject : INFO: possible circular locking in the resume Submitter : Zdenek Kabelac <zdenek.kabelac@gmail.com> Date : 2008-02-27 (37 days old) References : http://lkml.org/lkml/2008/2/26/479 Handled-By : Gautham R Shenoy <ego@in.ibm.com> --
Apr 3, 7:22 pm 2008
Rafael J. Wysocki
kvm: INFO: inconsistent lock state
The following report is on the current list of known regressions from 2.6.24. Please verify if the issue is still present in the mainline. Bug-Entry : http://bugzilla.kernel.org/show_bug.cgi?id=10172 Subject : kvm: INFO: inconsistent lock state Submitter : Zdenek Kabelac <zdenek.kabelac@gmail.com> Date : 2008-03-05 03:26 (30 days old) --
Apr 3, 7:22 pm 2008
Rafael J. Wysocki
KVM & Qemu crashed with infinite recursive kernel lo...
The following report is on the current list of known regressions from 2.6.24. Please verify if the issue is still present in the mainline. Bug-Entry : http://bugzilla.kernel.org/show_bug.cgi?id=10156 Subject : KVM & Qemu crashed with infinite recursive kernel loop in the guest Submitter : Zdenek Kabelac <zdenek.kabelac@gmail.com> Date : 2008-02-28 11:25 (36 days old) References : http://lkml.org/lkml/2008/2/28/106 --
Apr 3, 7:22 pm 2008
Rafael J. Wysocki
2.6.25-current-git hangs on boot (pci=nommconf helps)
The following report is on the current list of known regressions from 2.6.24. Please verify if the issue is still present in the mainline. Bug-Entry : http://bugzilla.kernel.org/show_bug.cgi?id=10117 Subject : 2.6.25-current-git hangs on boot (pci=nommconf helps) Submitter : Soeren Sonnenburg <kernel@nn7.de> Date : 2008-02-23 18:55 (41 days old) References : http://lkml.org/lkml/2008/2/23/263 --
Apr 3, 7:22 pm 2008
Rafael J. Wysocki
2.6.25-rc2-git4 - Kernel oops while running kernbench and t...
The following report is on the current list of known regressions from 2.6.24. Please verify if the issue is still present in the mainline. Bug-Entry : http://bugzilla.kernel.org/show_bug.cgi?id=10082 Subject : 2.6.25-rc2-git4 - Kernel oops while running kernbench and tbench on powerpc Submitter : Kamalesh Babulal <kamalesh@linux.vnet.ibm.com> Date : 2008-02-20 16:01 (44 days old) References : http://lkml.org/lkml/2008/2/20/218 http://lkml.org/lkml/2008/1/18/71 --
Apr 3, 7:22 pm 2008
Rafael J. Wysocki
TUNER_TDA8290=y, VIDEO_DEV=n build error
The following report is on the current list of known regressions from 2.6.24. Please verify if the issue is still present in the mainline. Bug-Entry : http://bugzilla.kernel.org/show_bug.cgi?id=10067 Subject : TUNER_TDA8290=y, VIDEO_DEV=n build error Submitter : Toralf Foerster <toralf.foerster@gmx.de> Date : 2008-02-22 10:36 (42 days old) References : http://lkml.org/lkml/2008/2/19/262 --
Apr 3, 7:20 pm 2008
Linus Torvalds
Re: 2.6.25-rc8-git2: Reported regressions from 2.6.24
This sounds very much like some module registered IO ports/memory and was then unloaded without unregistering them. It's a bit hard to guess which module it is, though. The oops says "[last unloaded: parport]", so that's likely to be the area. So I *suspect* this patch might be relevant. Bug apparently introduced in f63fd7e299ee13da071ecfce2b90b58c5e1562b1 ("parport_pc: detection for SuperIO IT87XX POST") by Petr Cvek. Petr? Linus --- drivers/parport/parport_pc.c | 3 +-- ...
Apr 3, 7:59 pm 2008
Rafael J. Wysocki
[PATCH 0/3] PM: New suspend and hibernation callbacks
Hi Greg, The following patches are intended to start the redesign of the suspend and hibernation framework for devices. The first one introduces new callbacks for suspend and hibernation (7th revision). It also updates the PM core to use the new callbacks at the top level, allowing it to use the existing callbacks if the new ones are not defined. The other two patches implement the new suspend and hibernation callbacks for the platform and PCI bus types (3rd revision of both). The patches al...
Apr 3, 7:11 pm 2008
Rafael J. Wysocki
[PATCH 2/3] PM: New suspend and hibernation callbacks for pl...
From: Rafael J. Wysocki <rjw@sisk.pl> Implement new suspend and hibernation callbacks for the platform bus type. Signed-off-by: Rafael J. Wysocki <rjw@sisk.pl> Acked-by: Pavel Machek <pavel@ucw.cz> Acked-by: Jesse Barnes <jbarnes@virtuousgeek.org> --- drivers/base/platform.c | 296 ++++++++++++++++++++++++++++++++++++++-- include/linux/platform_device.h | 1 2 files changed, 289 insertions(+), 8 deletions(-) Index: linux-2.6/include/linux/platform_device...
Apr 3, 7:13 pm 2008
Rafael J. Wysocki
[PATCH 3/3] PM: New suspend and hibernation callbacks for PC...
From: Rafael J. Wysocki <rjw@sisk.pl> Implement new suspend and hibernation callbacks for the PCI bus type. Signed-off-by: Rafael J. Wysocki <rjw@sisk.pl> Acked-by: Pavel Machek <pavel@ucw.cz> Acked-by: Jesse Barnes <jbarnes@virtuousgeek.org> --- drivers/pci/pci-driver.c | 371 ++++++++++++++++++++++++++++++++++++++++++----- include/linux/pci.h | 2 2 files changed, 334 insertions(+), 39 deletions(-) Index: linux-2.6/drivers/pci/pci-driver.c ===============...
Apr 3, 7:15 pm 2008
Rafael J. Wysocki
[PATCH 1/3] PM: Introduce new top level suspend and hibernat...
From: Rafael J. Wysocki <rjw@sisk.pl> Introduce 'struct pm_ops' and 'struct pm_ext_ops' ('ext' meaning 'extended') representing suspend and hibernation operations for bus types, device classes, device types and device drivers. Modify the PM core to use 'struct pm_ops' and 'struct pm_ext_ops' objects, if defined, instead of the ->suspend(), ->resume(), ->suspend_late(), and ->resume_early() callbacks (the old callbacks will be considered as legacy and gradually phased out). Th...
Apr 3, 7:12 pm 2008
Hugh Dickins
[PATCH] x86: MPSC should use P6 NOPs
I've now noticed that the machine I call MPENTIUM4 for 32-bit kernels is called MPSC for 64-bit kernels, and in that case it still doesn't get the P6 NOPs it ought to. hpa explains that MK8 should still be excluded, so it's just a matter of including MPSC along with MPENTIUM4. Signed-off-by: Hugh Dickins <hugh@veritas.com> --- arch/x86/Kconfig.cpu | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) --- 2.6.25-rc8/arch/x86/Kconfig.cpu 2008-03-05 10:47:37.000000000 +0000 +++ linux/...
Apr 3, 6:48 pm 2008
H. Peter Anvin
Re: [PATCH] x86: MPSC should use P6 NOPs
Acked-by: H. Peter Anvin <hpa@zytor.com> --
Apr 3, 6:48 pm 2008
Hiroshi Shimamoto
[RESEND][RFC v3 PATCH] RTTIME watchdog timer proc interface
From: Hiroshi Shimamoto <h-shimamoto@ct.jp.nec.com> Introduce new proc interface for RTTIME watchdog. It makes administrator able to set RTTIME watchdog to exisiting real-time applications without impact. It's useful we don't want to change software stack, but want to use RTTIME watchdog for that software. New proc files: /proc/<pid>/rttime /proc/<pid>/task/<tid>/rttime these files have same content. $ cat /proc/<pid>/rttime 10000000 20000000 It shows current...
Apr 3, 6:43 pm 2008
previous daytodaynext day
April 2, 2008April 3, 2008April 4, 2008