| From | Subject | Date |
|---|---|---|
| Bernardo Innocenti | [PATCH] GEODE: decouple sleep/resume from powerdown/powerup ...
This patch merges the fb_powerup and fb_powerdown hooks in a single
operation fb_power with an additional "state" parameter ranging
from 0 (running) to 3 (poweroff).
The geodefb uses state 2 as an intermediate low-power mode, where
the LX or GX video unit is turned off, but the GPU may still be working.
Notably, the GPU register set does not get overwritten when resuming
to state 0, so the system can safely keep using the GPU while in state 2.
The DCON driver now uses this new suspend state to let ...
| Sep 23, 10:19 pm 2007 |
| Peer Chen | Re: Re: [PATCH] ahci: Add MCP79 support to AHCI driver
Code change, remove some Device IDs.
Signed-off-by: Peer Chen <peerchen@gmail.com>
---
--- linux-2.6.23-rc7/drivers/ata/ahci.c.orig 2007-09-20 11:01:55.000000000 -0400
+++ linux-2.6.23-rc7/drivers/ata/ahci.c 2007-09-24 10:08:03.000000000 -0400
@@ -472,6 +472,14 @@ static const struct pci_device_id ahci_p
{ PCI_VDEVICE(NVIDIA, 0x0ad9), board_ahci }, /* MCP77 */
{ PCI_VDEVICE(NVIDIA, 0x0ada), board_ahci }, /* MCP77 */
{ PCI_VDEVICE(NVIDIA, 0x0adb), board_ahci }, /* MCP77 */
+ { PCI_V...
| Sep 23, 10:16 pm 2007 |
| Peer Chen | Re: Re: [PATCH] ahci: Add MCP79 support to AHCI driver
Yes,it's necessary because our RAID controller also use the ahci driver.
------------------
Peer Chen
2007-09-24
-------------------------------------------------------------
| Sep 23, 10:02 pm 2007 |
| Bernardo Innocenti | [PATCH] GEODE: decouple sleep/resume from powerdown/powerup
This patch merges the fb_powerup and fb_powerdown hooks in a single
operation fb_power with an additional "state" parameter ranging
from 0 (running) to 3 (poweroff).
The geodefb uses state 2 as an intermediate low-power mode, where
the LX or GX video unit is turned off, but the GPU may still be working.
Notably, the GPU register set does not get overwritten when resuming
to state 0, so the system can safely keep using the GPU while in state 2.
The DCON driver now uses this new suspend state to let ...
| Sep 23, 7:11 pm 2007 |
| hce | Ethernet driver on 2.6.22
Hi,
I am upgrading from kernel 2.6.11 to 2.6.22 on ARM S3C2400A and found
a following issue on 2.6.22.
On 2.6.11, I selected CONFIG_ISA, CONFIG_NET_PCI and CONFIG_CS89X0 to
build CS8900A Ethernet driver to kernel, it was running perfect.
But on 2.6.22, I made the same configuration for CS8900A, the cs89x0.o
could not be compiled in to the kernel (or as a module when I tried to
CONFIG_CS89X0=m) unless I commented out depends statement in
drivers/net/Kconfig. I double checked all three are CON...
| Sep 23, 6:52 pm 2007 |
| Randy Dunlap | Re: Ethernet driver on 2.6.22
I didn't look in 2.6.11 Kconfig files, but in 2.6.22, this driver is
limited to 3 specific boards:
config CS89x0
tristate "CS89x0 support"
depends on NET_PCI && (ISA || MACH_IXDP2351 || ARCH_IXDP2X01 || ARCH_PNX010X)
Does ARM S3C2400A qualify as any of those? (MACH_... or ARCH_...)
(latter: ARCH_PNX010X is not used anywhere else AFAICT)
---
~Randy
Phaedrus says that Quality is about caring.
-
| Sep 23, 9:34 pm 2007 |
| hce | Re: Ethernet driver on 2.6.22
Thanks Randy.
I can run CS89x0 for ARM S3C2400 in 2.6.11, at least I can say yes,
the ARM S3C2400A qualifies those in 2.6.11, I don't know the 2.6.22
Thank you.
Kind regards,
Jim
-
| Sep 23, 10:40 pm 2007 |
| Randy Dunlap | Re: Ethernet driver on 2.6.22
Right.
I don't have any problem building CS89x0 for X86_32:
make defconfig then enable ISA (what!?!? why not in defconfig?)
and then enable CS89x0.
Please send your .config file.
---
~Randy
Phaedrus says that Quality is about caring.
-
| Sep 23, 11:39 pm 2007 |
| Davide Libenzi | [patch 3/3] new timerfd API - un-break CONFIG_TIMERFD
Remove the broken status to CONFIG_TIMERFD.
Signed-off-by: Davide Libenzi <davidel@xmailserver.org>
- Davide
---
init/Kconfig | 1 -
1 file changed, 1 deletion(-)
Index: linux-2.6.mod/init/Kconfig
===================================================================
--- linux-2.6.mod.orig/init/Kconfig 2007-09-23 15:18:06.000000000 -0700
+++ linux-2.6.mod/init/Kconfig 2007-09-23 15:28:54.000000000 -0700
@@ -488,7 +488,6 @@
config TIMERFD
bool "Enable timerfd() system ca...
| Sep 23, 6:49 pm 2007 |
| Davide Libenzi | [patch 2/3] new timerfd API - wire the new timerfd API to th...
Wires up the new timerfd API to the x86 family.
Signed-off-by: Davide Libenzi <davidel@xmailserver.org>
- Davide
---
arch/i386/kernel/syscall_table.S | 5 ++++-
arch/x86_64/ia32/ia32entry.S | 4 +++-
include/asm-i386/unistd.h | 6 ++++--
include/asm-x86_64/unistd.h | 8 ++++++--
4 files changed, 17 insertions(+), 6 deletions(-)
Index: linux-2.6.mod/arch/i386/kernel/syscall_table.S
===================================================================...
| Sep 23, 6:49 pm 2007 |
| Davide Libenzi | [patch 1/3] new timerfd API - new timerfd API
This is the new timerfd API as it is implemented by the following patch:
int timerfd_create(int clockid);
int timerfd_settime(int ufd, int flags,
const struct itimerspec *utmr,
struct itimerspec *otmr);
int timerfd_gettime(int ufd, struct itimerspec *otmr);
The timerfd_create() API creates an un-programmed timerfd fd. The "clockid"
parameter can be either CLOCK_MONOTONIC or CLOCK_REALTIME.
The timerfd_settime() API give new settings by the timerfd fd, by optionally
retrieving the pr...
| Sep 23, 6:49 pm 2007 |
| osth | Xen kernel 2.6.23-rc7 bug at xen_mc_flush (arch/i386/xen/mul...
Using kernel 2.6.23-rc7 as xen domU client system I observe a kernel bug
which occurs reproducibly when calling a shell from midnight commander F2
context menu or with testcase given below (However most other programs seem
to
be well behaved and do not trigger this bug). - A kernel compiled with debug
info gives:
Kernel BUG at c01037dc [verbose debug info unavailable]
invalid opcode: 0000 [#5]
PREEMPT SMP
...
Call Trace:
[<c0103de9>] <0> [<c015d1d1>] <0> [<c0190078&g...
| Sep 23, 5:55 pm 2007 |
| Willy Tarreau | Linux 2.4.35.3
I've just released Linux 2.4.35.3.
This version fixes CVE-2007-4573 which may lead to local privilege escalation
on x86_64.
It also fixes another problem reported by Gilles Espinasse: If the ATM module
is loaded with CLIP support but the CLIP module is not loaded yet, any user
reading /proc/net/atm/arp would cause a kernel panic to occur.
Both x86_64 and ATM users are encouraged to upgrade. Note that USB DSL modems
often use ATM.
The patch and changelog will appear soon at the following l...
| Sep 23, 6:20 pm 2007 |
| Hector Martin | Coding FATX support for 2.6
Most xbox-linux users are stuck using 2.4, since there is no FATX driver
for 2.6 and the 2.4 one is unmaintained. I've been thinking about
writing FATX support into 2.6, to finally end this problem (this is
basically the only thing holding up 2.6 for Xbox Linux distros). While I
have done a little kernel coding in the past, I've never messed with
filesystems in Linux and I'm not entirely sure what the best approach
would be here. I would like to do it in such a way that it can be
included in mainline...
| Sep 23, 4:51 pm 2007 |
| Diego Calleja | Re: Coding FATX support for 2.6
FUSE could be an acceptable solution.
-
| Sep 23, 6:25 pm 2007 |
| Hector Martin | Re: Coding FATX support for 2.6
Not really. Booting Xbox-Linux from an image file on a FATX partition is
common. I don't think FUSE would work very well there.
--
Hector Martin (hector@marcansoft.com)
Public Key: http://www.marcansoft.com/marcan.asc
-
| Sep 23, 6:34 pm 2007 |
| Steve Wise | [PATCH v3] iw_cxgb3: Support "iwarp-only" interfaces to avoi...
iw_cxgb3: Support "iwarp-only" interfaces to avoid 4-tuple conflicts.
Version 3:
- don't use list_del_init() where list_del() is sufficient.
Version 2:
- added a per-device mutex for the address and listening endpoints lists.
- wait for all replies if sending multiple passive_open requests to rnic.
- log warning if no addresses are available when a listen is issued.
- tested
---
Design:
The sysadmin creates "for iwarp use only" alias interfaces of the form
"devname:iw*" wher...
| Sep 23, 4:36 pm 2007 |
| Jochen Friedrich | [PATCH4/4] [POWERPC] Fix cpm_uart driver
In cpm_uart_core, functions cpm_uart_init_bd and cpm_uart_init_scc
an offset into DP RAM is calculated by substracting a physical
memory constant from an virtual address. This patch fixes the
problem by converting the virtual address into a physical
first.
Signed-off-by: Jochen Friedrich <jochen@scram.de>
---
drivers/serial/cpm_uart/cpm_uart_core.c | 12 ++++++++----
1 files changed, 8 insertions(+), 4 deletions(-)
| Sep 23, 4:17 pm 2007 |
| Jochen Friedrich | [PATCH3/4] [PPC] Compile fix for 8xx CPM Ehernet driver
Add #include <asm/cacheflush.h> for flush_dcache_range
to make the driver compile again.
CC arch/ppc/8xx_io/enet.o
arch/ppc/8xx_io/enet.c: In function 'scc_enet_start_xmit':
arch/ppc/8xx_io/enet.c:240: error: implicit declaration of function
'flush_dcache_range'
make[1]: *** [arch/ppc/8xx_io/enet.o] Error 1
make: *** [arch/ppc/8xx_io] Error 2
Signed-off-by: Jochen Friedrich <jochen@scram.de>
---
arch/ppc/8xx_io/enet.c | 1 +
1 files changed, 1 insertions(+), 0 deletio...
| Sep 23, 4:17 pm 2007 |
| Jochen Friedrich | [PATCH2/4] [PPC] Fix cpm_dpram_addr returning phys mem inste...
cpm_dpram_addr returns physical memory of the DP RAM instead of
iomapped virtual memory. As there usually is a 1:1 MMU map of
the IMMR area, this is often not noticed. However, cpm_dpram_phys
assumes this iomapped virtual memory and returns garbage on the
1:1 mapped memory causing CPM1 uart console to fail.
This patch fixes the problem (copied from the powerpc tree).
Signed-off-by: Jochen Friedrich <jochen@scram.de>
---
arch/ppc/8xx_io/commproc.c | 2 +-
1 files changed, 1 insertion...
| Sep 23, 4:17 pm 2007 |
| Jochen Friedrich | [PATCH1/4] [POWERPC] Fix copy'n'paste typo in commproc.c
The powerpc version of commproc.c doesn't export cpm_dpram_addr twice
and cpm_dpram_phys not at all due to a typo. This patch fixes this
problem.
CC arch/powerpc/sysdev/commproc.o
arch/powerpc/sysdev/commproc.c:398: error: redefinition of '__kcrctab_cpm_dpram_addr'
arch/powerpc/sysdev/commproc.c:392: error: previous definition of '__kcrctab_cpm_dpram_addr' was here
arch/powerpc/sysdev/commproc.c:398: error: redefinition of '__kstrtab_cpm_dpram_addr'
arch/powerpc/sysdev/commproc.c:392: error:...
| Sep 23, 4:17 pm 2007 |
| Jochen Friedrich | [PATCH0/4] Various bug fixes
Here is a series fixing some bugs for 8xx powerpc CPUs.
1. [POWERPC] Fix copy'n'paste typo in commproc.c
2. [PPC] Fix cpm_dpram_addr returning phys mem instead of virt mem
3. [PPC] Compile fix for 8xx CPM Ehernet driver
4. [POWERPC] Fix cpm_uart driver
This series can be pulled from git://git.bocc.de/dbox2.git ppc-fixes
Thanks,
Jochen
-
| Sep 23, 4:16 pm 2007 |
| Roland Dreier | [GIT PULL] please pull infiniband.git
Linus, please pull from
master.kernel.org:/pub/scm/linux/kernel/git/roland/infiniband.git for-linus
This tree is also available from kernel.org mirrors at:
git://git.kernel.org/pub/scm/linux/kernel/git/roland/infiniband.git for-linus
This will get one fix for a data corruption bug in 2.6.23-rc7:
Jack Morgenstein (1):
IB/mlx4: Fix data corruption triggered by wrong headroom marking order
drivers/infiniband/hw/mlx4/qp.c | 62 ++++++++++++++++++++++++++++++--------
1 files ...
| Sep 23, 4:06 pm 2007 |
| infomailer11 | EURO MILLION ONLINE INT S.L
Sir/Madam,
You have won 760,000.00 Euro in EURO MILLION ONLINE INT S.L
SPAIN.Forfurther development for Clarification and procedure
please Contact Mr.Martin john
Email:info_martinjohnsp@ozu.es
(1) Tic Nr: 6460DGH
(2) Sr Nr: 0909AOB09
(3) LU Nr: 726726XZJHN
(4) BT Nr: 2GH267XZZ1-5-42
(5) RF Nr 9527BCV-33-7-7-7
Regards.
Mrs.Emma Jones
------------------------------------------------------
Leggi GRATIS le tue mail con il telefonino i-mode di Wind
http://i-mode.wind.it/
-
| Sep 23, 1:54 pm 2007 |
| Diego Calleja | Urgent bugzilla mainteinance needed
Take a look at http://bugzilla.kernel.org/show_bug.cgi?id=3710
bugzilla tries to send a mail to the reporter, it fails ("unknown user account"),
but the error failure is appended as a bugzilla comment. Then bugzilla tries to
send that comment to everyone involved in the bug, including the reporter,
so it fails again.....Houston, we've a endless loop.
There're 540 comments in that bug report already, and the bugme-daemon
mail list is being spammed....
-
| Sep 23, 1:58 pm 2007 |
| Natalie Protasevich | Re: Urgent bugzilla mainteinance needed
I just sent emails to those who maintain bugzilla software and systems
that run it, hope someone will be online soon to help alleviate
-
| Sep 23, 2:08 pm 2007 |
| David Woodhouse | Re: Urgent bugzilla mainteinance needed
Bugzilla really shouldn't be accepting any mail with empty reverse-path
(MAIL FROM:<>)
--
dwmw2
-
| Sep 23, 2:30 pm 2007 |
| Natalie Protasevich | Re: Urgent bugzilla mainteinance needed
Ah, then should be easy fix then. I don't have access to the system
-
| Sep 23, 2:34 pm 2007 |
| Martin J. Bligh | Re: Urgent bugzilla mainteinance needed
Sorry, can't fix this - I don't have direct access to the system,
and I don't think the others will be back until Monday ;-(
M.
-
| Sep 23, 11:22 pm 2007 |
| Carl-Daniel Hailfinger | 2.6.23-rc7-git3: MTD cafe_nand warning
Hi,
when compiling 2.6.23-rc7-git3 with a config which resembles
allmodconfig, I get the following warning in modpost:
WARNING: Can't handle masks in drivers/mtd/nand/cafe_nand:FFFF0
Regards,
Carl-Daniel
-
| Sep 23, 10:37 am 2007 |
| Miloslav Semler | [PATCH] sysfs: backport of sysfs_readdir fix from 2.6.22.y t...
This patch solves CVE-2007-3104 - sysfs_readdir oops.
More can be found here:
http://git.kernel.org/?p=linux/kernel/git/stable/linux-2.6.22.y.git;a=commit;h=dc35125...
Signed-off-by: Miloslav Semler
---
diff -uprN linux-2.6.16.53/fs/sysfs/dir.c linux-2.6.16.53-new/fs/sysfs/dir.c
--- linux-2.6.16.53/fs/sysfs/dir.c 2007-07-25 23:05:45.000000000 +0200
+++ linux-2.6.16.53-new/fs/sysfs/dir.c 2007-09-23 18:18:09.000000000 +0200
@@ -29,6 +29,14 @@ static struct dentr...
| Sep 23, 12:49 pm 2007 |
| Mike Galbraith | Re: [git] CFS-devel, updates
Yeah, I was wondering that too, but it does seem to be needed. If I
make it a noop, and run the pinned tasks with an unpinned make -j2 test,
Xorg at nice -5 still takes hits...
se.wait_max : 11.513462
se.wait_max : 6.250911
se.wait_max : 15.181511
se.wait_max : 188.963625
se.wait_max : 4.951569
se.wait_max : 11.391749
...which begs the question "gee...
| Sep 23, 11:53 am 2007 |
| Simon Arlott | [PATCH 1/2] cxacru: Use appropriate logging for errors
When an error occurs, existing logging uses dbg() so the cause of a
problem is hard to determine. Error conditions shouldn't only be
properly reported with debugging enabled.
A side effect of this change is that when an uninitialised device
is started, a log message similar to the following is sent:
cxacru 5-2:1.0: receive of cm 0x90 failed (-104)
This is normal - the device did not respond so firmware will be
loaded.
Signed-Off-By: Simon Arlott <simon@fire.lp0.eu>
---
This could be...
| Sep 23, 11:32 am 2007 |
| Duncan Sands | Re: [PATCH 1/2] cxacru: Use appropriate logging for errors
Hi Simon, don't these error messages (except the first) risk spamming
the log if something goes wrong (like the modem being unplugged)? How
about rate-limiting them, like usbatm does?
Ciao,
Duncan.
-
| Sep 23, 12:17 pm 2007 |
| Simon Arlott | [PATCH 1/2 (v2)] cxacru: Use appropriate logging for errors
When an error occurs, existing logging uses dbg() so the cause of a
problem is hard to determine. Error conditions shouldn't only be
properly reported with debugging enabled.
A side effect of this change is that when an uninitialised device
is started, a log message similar to the following is sent:
cxacru 5-2:1.0: receive of cm 0x90 failed (-104)
This is normal - the device did not respond so firmware will be
loaded.
Signed-Off-By: Simon Arlott <simon@fire.lp0.eu>
---
Ok.
dri...
| Sep 23, 2:44 pm 2007 |
| Duncan Sands | Re: [PATCH 1/2 (v2)] cxacru: Use appropriate logging for err...
etc
Acked-by: Duncan Sands <baldrick@free.fr>
-
| Sep 23, 3:26 pm 2007 |
| Simon Arlott | Re: [PATCH 3/3] cxacru: Cleanup code by removing "ret = ret;...
Cleanup code by removing "ret = ret;" assignments.
Signed-Off-By: Simon Arlott <simon@fire.lp0.eu>
---
drivers/usb/atm/cxacru.c | 4 ----
1 files changed, 0 insertions(+), 4 deletions(-)
diff --git a/drivers/usb/atm/cxacru.c b/drivers/usb/atm/cxacru.c
index 35308a8..bb3169c 100644
--- a/drivers/usb/atm/cxacru.c
+++ b/drivers/usb/atm/cxacru.c
@@ -496,7 +496,6 @@ static int cxacru_cm(struct cxacru_data *instance, enum cxacru_cm_request cm,
if (ret < 0) {
usb_err(instance->u...
| Sep 23, 11:36 am 2007 |
| Duncan Sands | Re: [PATCH 3/3] cxacru: Cleanup code by removing "ret = ret;...
Acked-by: Duncan Sands <baldrick@free.fr>
-
| Sep 23, 12:20 pm 2007 |
| Simon Arlott | Re: [PATCH 3/3] cxacru: Cleanup code by removing "ret = ret;...
Nacked-by: Simon Arlott <simon@fire.lp0.eu>
I'm only going to create a merge conflict with myself with this :|
It'll be included with 1/3 shortly.
--
Simon Arlott
-
| Sep 23, 2:36 pm 2007 |
| Simon Arlott | [PATCH 2/3] cxacru: Reduce initialisation delay
Since card status updates appear to only occur every second, a delay
of 1000ms on startup may not be sufficient - change to 1500ms.
The long delay of 4000ms is likely to be related to the time required
for the ADSL line to come up - the driver should not need to do this.
Overall delay when loading firmware will change from 5000ms to 1500ms.
Signed-Off-By: Simon Arlott <simon@fire.lp0.eu>
---
drivers/usb/atm/cxacru.c | 9 +++++----
1 files changed, 5 insertions(+), 4 deletions(-)
d...
| Sep 23, 11:34 am 2007 |
| Duncan Sands | Re: [PATCH 2/3] cxacru: Reduce initialisation delay
maybe these should be debug messages. When are they useful?
Ciao,
Duncan.
-
| Sep 23, 12:23 pm 2007 |
| Simon Arlott | Re: [PATCH 2/3] cxacru: Reduce initialisation delay
They are probably only useful as debug messages - although it
may be desirable to know when the configuration has been set.
Also... it doesn't make sense to load the configuration only
in heavy_init - if the configuration is changed then there's
no way in the module to resend it without powering the device
down and up. Some sysfs parameters to change configuration
could be useful... except there's no information as to what
these settings are.
--
Simon Arlott
-
| Sep 23, 2:33 pm 2007 |
| Matthew Wilcox | Needed: advansys driver testers
I've removed all uses of bus_to_virt[1] and virt_to_bus from the advansys
driver for the narrow card; it's now at the point where I can get 8MB/s
on a parisc machine [2]. But I don't have a wide advansys card, and the code
paths in the driver are very, very different. I think I know everything
that needs to be done to make it work, but not having a card to test with,
and not being infallible makes life tricky.
So, anyone got a *wide* advansys card that they would like to test with?
Bonus points...
| Sep 23, 10:16 am 2007 |
| lepton | [PATCH] 2.6.22.6 user-mode linux: fix error in check_sysemu
it is a error do count++ here, it will let the following compare (after 8 lines) " if (!count)" always be false.
Signed-off-by: Lepton Wu <ytht.net@gmail.com>
diff -X linux-2.6.22.6/Documentation/dontdiff -pr -U 8 linux-2.6.22.6/arch/um/os-Linux/start_up.c linux-2.6.22.6-uml/arch/um/os-Linux/start_up.c
--- linux-2.6.22.6/arch/um/os-Linux/start_up.c 2007-09-14 17:41:10.000000000 +0800
+++ linux-2.6.22.6-uml/arch/um/os-Linux/start_up.c 2007-09-23 20:14:08.000000000 +0800
@@ -250,17 +250,16 ...
| Sep 23, 8:26 am 2007 |
| Denis Cheng | [PATCH] vfs: use the predefined d_unhashed inline function i...
Signed-off-by: Denis Cheng <crquan@gmail.com>
---
fs/dcache.c | 2 +-
1 files changed, 1 insertions(+), 1 deletions(-)
diff --git a/fs/dcache.c b/fs/dcache.c
index 678d39d..62e1800 100644
--- a/fs/dcache.c
+++ b/fs/dcache.c
@@ -1546,7 +1546,7 @@ static void d_move_locked(struct dentry * dentry, struct dentry * target)
}
/* Move the dentry to the target hash queue, if on different bucket */
- if (dentry->d_flags & DCACHE_UNHASHED)
+ if (d_unhashed(dentry))
goto alrea...
| Sep 23, 7:14 am 2007 |
| Rafael J. Wysocki | 2.6.23-rc4-mm1 and -rc6-mm1: boot failure on HP nx6325, rela...
Hi Thomas,
Unfortunately, my observation that the patch series:
http://tglx.de/projects/hrtimers/2.6.23-rc4/patch-2.6.23-rc4-hrt1.patches.tar.bz2
worked with 2.6.23-rc4 was wrong. It _sometimes_ works, but usually doesn't
boot, just like 2.6.23-rc4-mm1, 2.6.23-rc6-mm1 and everything in between with
the above patch series applied. I've also tried:
http://tglx.de/projects/hrtimers/2.6.23-rc5/patch-2.6.23-rc5-hrt1.patches.tar.bz2
[ message continues ] " title="http://tglx.de/projects/hrtimers/2.6.23-rc6/patch-2.6.23-rc6-hrt...">http://tglx.de/projects/hrtimers/2.6.23-rc6/patch-2.6.23-rc6-hrt... | Sep 23, 6:57 am 2007 |
| Thomas Gleixner | Re: 2.6.23-rc4-mm1 and -rc6-mm1: boot failure on HP nx6325, ...
Ok, lets track it down. Is there any difference when you add:
nohz=off
highres=off
noapictimer
or any combinations of the above to the kernel command line ?
tglx
-
| Sep 23, 3:10 pm 2007 |
| Rafael J. Wysocki | Re: 2.6.23-rc4-mm1 and -rc6-mm1: boot failure on HP nx6325, ...
First, for now, I build all kernels with NO_HZ and HIGH_RES_TIMERS unset
(.config for 2.6.23-rc6-mm1 is attached).
Second, noacpitimer added to the command line makes all of the kernels, up to
and including 2.6.23-rc6-mm1, boot (this seems to be 100% reproducible).
Greetings,
Rafael
| Sep 23, 4:08 pm 2007 |
| Thomas Gleixner | Re: 2.6.23-rc4-mm1 and -rc6-mm1: boot failure on HP nx6325, ...
That's valuable information. Can you please provide a boot log of one of
those with an additional "apic=verbose" on the command line ?
Thanks,
tglx
-
| Sep 23, 3:59 pm 2007 |
| Rafael J. Wysocki | Re: 2.6.23-rc4-mm1 and -rc6-mm1: boot failure on HP nx6325, ...
Attached is the dmesg output from the 2.6.23-rc6 kernel with the patchset:
http://tglx.de/projects/hrtimers/2.6.23-rc4/patch-2.6.23-rc4-hrt1.patches.tar.bz2
applied. I also have the 2.6.23-rc6-mm1 dmesg output ready, but there's some
-mm-specific noise in it. Please let me know if you want it, though.
Greetings,
Rafael
| Sep 23, 4:52 pm 2007 |
| previous day | today | next day |
|---|---|---|
| September 22, 2007 | September 23, 2007 | September 24, 2007 |
| Dave Hansen | [RFC][PATCH 0/4] kernel-based checkpoint restart |
| Greg KH | [GIT PATCH] driver core patches against 2.6.24 |
| Bart Van Assche | Integration of SCST in the mainstream Linux kernel |
| Eric Paris | [RFC 0/5] [TALPA] Intro to a linux interface for on access scanning |
git: | |
| David Miller | Re: [GIT]: Networking |
| Natalie Protasevich | [BUG] New Kernel Bugs |
| Gerrit Renker | [PATCH 27/37] dccp: Integration of dynamic feature activation - part 2 (server side) |
| Jarek Poplawski | Re: [PATCH] pkt_sched: Destroy gen estimators under rtnl_lock(). |
