[5/6] 2.6.21-rc2: known regressions

2007-03-04 Thread Adrian Bunk
This email lists some known regressions in 2.6.21-rc2 compared to 2.6.20 that are not yet fixed in Linus' tree. If you find your name in the Cc header, you are either submitter of one of the bugs, maintainer of an affectected subsystem or driver, a patch of you caused a breakage or I'm

[4/6] 2.6.21-rc2: known regressions

2007-03-04 Thread Adrian Bunk
This email lists some known regressions in 2.6.21-rc2 compared to 2.6.20 that are not yet fixed in Linus' tree. If you find your name in the Cc header, you are either submitter of one of the bugs, maintainer of an affectected subsystem or driver, a patch of you caused a breakage or I'm

[-mm patch] fix the ROMFS_* dependencies

2007-03-04 Thread Adrian Bunk
On Sun, Mar 04, 2007 at 03:35:14PM +, David Howells wrote: > Adrian Bunk <[EMAIL PROTECTED]> wrote: > > > Is > > > > CONFIG_BLOCK=y > > CONFIG_ROMFS_FS=y > > CONFIG_ROMFS_ON_BLOCK=n > > CONFIG_ROMFS_ON_MTD=y > > > > a reasonable configuration that should be supported, or can we turn > >

[-mm patch] drivers/video/hecubafb.c: make 4 functions static

2007-03-04 Thread Adrian Bunk
On Fri, Mar 02, 2007 at 03:00:26AM -0800, Andrew Morton wrote: >... > Changes since 2.6.20-mm2: >... > +fbdev-hecuba-framebuffer-driver.patch >... > fbdev updates >... This patch makes the following needlessly global functions static: - hcb_wait_for_ack() - hcb_wait_for_ack_clear() -

[2.6 patch] make drivers/isdn/capi/capiutil.c:cdebbuf_alloc()

2007-03-04 Thread Adrian Bunk
This patch makes the needlessly global cdebbuf_alloc() static. Signed-off-by: Adrian Bunk <[EMAIL PROTECTED]> --- drivers/isdn/capi/capiutil.c |8 +--- include/linux/isdn/capiutil.h |1 - 2 files changed, 1 insertion(+), 8 deletions(-) ---

[-mm patch] drivers/net/bonding/bond_main.c:make 3 functions static

2007-03-04 Thread Adrian Bunk
This patch makes the following needlessly global functions static: - bond_mode_name() - bond_sethwaddr() - bond_mii_monitor() Signed-off-by: Adrian Bunk <[EMAIL PROTECTED]> --- drivers/net/bonding/bond_main.c |7 --- drivers/net/bonding/bonding.h |3 --- 2 files changed, 4

[2.6 patch] i386/x86_64 early_printk.c: make simnow_init() static

2007-03-04 Thread Adrian Bunk
This patch makes the needlessly global simnow_init() static. Signed-off-by: Adrian Bunk <[EMAIL PROTECTED]> --- --- linux-2.6.21-rc2-mm1/arch/x86_64/kernel/early_printk.c.old 2007-03-04 20:25:46.0 +0100 +++ linux-2.6.21-rc2-mm1/arch/x86_64/kernel/early_printk.c 2007-03-04

[2.6 patch] make arch/i386/kernel/vmi.c:vmi_pmd_clear() static

2007-03-04 Thread Adrian Bunk
This patch makes the needlessly global vmi_pmd_clear() static. Signed-off-by: Adrian Bunk <[EMAIL PROTECTED]> --- --- linux-2.6.21-rc2-mm1/arch/i386/kernel/vmi.c.old 2007-03-04 20:32:08.0 +0100 +++ linux-2.6.21-rc2-mm1/arch/i386/kernel/vmi.c 2007-03-04 20:33:51.0 +0100 @@

[-mm patch] make drivers/char/drm/drm_vm.c:drm_io_prot() static

2007-03-04 Thread Adrian Bunk
On Fri, Mar 02, 2007 at 03:00:26AM -0800, Andrew Morton wrote: >... > Changes since 2.6.20-mm2: >... > git-drm.patch >... > git trees >... This patch makes the needlessly global drm_io_prot() static. Signed-off-by: Adrian Bunk <[EMAIL PROTECTED]> --- ---

[-mm patch] drivers/cpuidle/: make code static

2007-03-04 Thread Adrian Bunk
On Fri, Mar 02, 2007 at 03:00:26AM -0800, Andrew Morton wrote: >... > Changes since 2.6.20-mm2: >... > git-acpi.patch >... > git trees >... This patch makes the following needlessly global code static: - driver.c: __cpuidle_find_driver() - governor.c: __cpuidle_find_governor() - ladder.c:

2.6.21-rc2-mm1: drivers/usb/host/ohci-ssb.c doesn't compile

2007-03-04 Thread Adrian Bunk
On Fri, Mar 02, 2007 at 03:00:26AM -0800, Andrew Morton wrote: >... > Changes since 2.6.20-mm2: >... > git-wireless.patch >... > git trees >... <-- snip --> ... CC drivers/usb/host/ohci-hcd.o In file included from

2.6.21-rc2-mm1: drivers/net/wireless/ compile error

2007-03-04 Thread Adrian Bunk
On Fri, Mar 02, 2007 at 03:00:26AM -0800, Andrew Morton wrote: >... > Changes since 2.6.20-mm2: >... > git-wireless.patch >... > git trees >... Multiple copies of the same drivers are a problem: <-- snip --> ... LD drivers/net/wireless/built-in.o

[-mm patch] saa7134: fix MODULES=n compilation

2007-03-04 Thread Adrian Bunk
On Fri, Mar 02, 2007 at 03:00:26AM -0800, Andrew Morton wrote: >... > Changes since 2.6.20-mm2: >... > git-dvb.patch >... > git trees >... This patch fixes the following compile error with CONFIG_MODULES=n: <-- snip --> ... CC drivers/media/video/saa7134/saa7134-core.o

Re: Questions about the SYSVIPC share memory on NOMMU uClinuxarchitecture

2007-03-04 Thread Wu, Bryan
On Fri, 2007-03-02 at 05:33 -0500, Wu, Bryan wrote: > Hi folks, > > Recently, I was struggling in a bug about the shm->nattch. Actually, > the > test case is from LTP kernel/syscall/ipc/shmctl/shmctl01.c code. We > ported it to the uClinux-blackfin platform. > Sorry for dropping the kernel

Re: Wanted: simple, safe x86 stack overflow detection

2007-03-04 Thread Arnd Bergmann
On Wednesday 28 February 2007, Chuck Ebbert wrote: > Can we just put a canary in the threadinfo and check it on every > task switch? What are the drawbacks? It's not completely reliable, in case of functions that allocate far too much stack space. You might want to take a look at the gcc support

Re: Recent wireless breakage (ipw2200, iwconfig, NetworkManager)

2007-03-04 Thread Greg KH
On Sun, Mar 04, 2007 at 06:25:50PM -0600, Matt Mackall wrote: > On Mon, Mar 05, 2007 at 12:39:24AM +0100, Johannes Berg wrote: > > [adding linux-wireless to CC] > > > > On Sun, 2007-03-04 at 16:08 -0600, Matt Mackall wrote: > > > Recent kernels are having troubles with wireless for me. Two

Re: 2.6.21-rc2-mm1

2007-03-04 Thread Andrew Morton
On Mon, 5 Mar 2007 01:11:33 +0100 "J.A. Magallón" <[EMAIL PROTECTED]> wrote: > On Fri, 2 Mar 2007 03:00:26 -0800, Andrew Morton <[EMAIL PROTECTED]> wrote: > > > > > Temporarily at > > > > http://userweb.kernel.org/~akpm/2.6.21-rc2-mm1/ > > > > Will appear later at > > > > > >

Re: Recent wireless breakage (ipw2200, iwconfig, NetworkManager)

2007-03-04 Thread Greg KH
On Sun, Mar 04, 2007 at 04:08:57PM -0600, Matt Mackall wrote: > Recent kernels are having troubles with wireless for me. Two seemingly > related problems: > > a) NetworkManager seems oblivious to the existence of my IPW2200 > b) Manual iwconfig waits for 60s and then reports: > > Error for

Re: [ANNOUNCE] RSDL completely fair starvation free interactive cpu scheduler

2007-03-04 Thread Gene Heskett
On Sunday 04 March 2007, Willy Tarreau wrote: >On Mon, Mar 05, 2007 at 08:49:29AM +1100, Con Kolivas wrote: >(...) > >> > That's just what it did, but when you "nice make -j4", things >> > (gears) start to stutter. Is that due to the staircase? >> >> gears isn't an interactive task. Apart from

RE: [PATCH 7/9] mtd: Fix number of free oob spaces in onenand driver

2007-03-04 Thread Kyungmin Park
Hello Richard Purdie, NAK, Even though we can use it. it's out of Spec. It's reason I don't add it. In your swap patch, swap device only uses 4 bytes. so it's enough in current driver. so we don't need to patch it. +struct swpdev_oobdata { + u16 magic; + u16 type; +}

Re: Recent wireless breakage (ipw2200, iwconfig, NetworkManager)

2007-03-04 Thread Adrian Bunk
On Sun, Mar 04, 2007 at 04:45:25PM -0800, Andrew Morton wrote: > On Sun, 4 Mar 2007 18:25:50 -0600 Matt Mackall <[EMAIL PROTECTED]> wrote: > > > On Mon, Mar 05, 2007 at 12:39:24AM +0100, Johannes Berg wrote: > > > [adding linux-wireless to CC] > > > > > > On Sun, 2007-03-04 at 16:08 -0600, Matt

Re: [Cbe-oss-dev] [PATCH 14/22] spufs: use SPU master control to prevent wild SPU execution

2007-03-04 Thread Arnd Bergmann
On Friday 02 March 2007, Michael Ellerman wrote: > There's also the error case for spu_run_init() which skips the master > stop. I guess that's ok because we've only set the master control in the > backing store, and the only way that will ever get propagated to an > actual spu is by coming back

Regression between 2.6.20 and 2.6.21-rc1: NCQ problem with ahci and Hitachi drive

2007-03-04 Thread Mathieu Bérard
Hello, I have and laptop with an ICH6M SATA Controller and an Hitachi hard drive. While it worked well using the ahci module and with NCQ enabled using Linux 2.6.20, it does not work anymore (hang at boot) with 2.6.21-rc* My drive is among those that were recently blacklisted (see lkml post

Re: Recent wireless breakage (ipw2200, iwconfig, NetworkManager)

2007-03-04 Thread Andrew Morton
On Sun, 4 Mar 2007 18:25:50 -0600 Matt Mackall <[EMAIL PROTECTED]> wrote: > On Mon, Mar 05, 2007 at 12:39:24AM +0100, Johannes Berg wrote: > > [adding linux-wireless to CC] > > > > On Sun, 2007-03-04 at 16:08 -0600, Matt Mackall wrote: > > > Recent kernels are having troubles with wireless for

Re: Recent wireless breakage (ipw2200, iwconfig, NetworkManager)

2007-03-04 Thread Ian McDonald
On 3/5/07, Matt Mackall <[EMAIL PROTECTED]> wrote: > This is due to the recent sysfs restructuring I think. IIRC the fix is > to upgrade hal to a current git version. If that's the cause, the fix is to back out whatever was done to break userspace. Breaking userspace is not ok. Upgrading from

Re: [RFC] Heads up on sys_fallocate()

2007-03-04 Thread Arnd Bergmann
On Monday 05 March 2007, Anton Altaparmakov wrote: > An alternative would be to allocate blocks and then when the data is   > written perform the compression and free any blocks you do not need   > any more because the data has shrunk sufficiently.  Depending on the   > implementation details this

[ANNOUNCE] Guilt v0.21

2007-03-04 Thread Josef Sipek
Guilt v0.21 is available for download (once it mirrors out on kernel.org). Guilt (Git Quilt) is a series of bash scripts which add a Mercurial queues-like functionality and interface to git. Tarballs: http://www.kernel.org/pub/linux/kernel/people/jsipek/guilt/ Git repo:

Re: Recent wireless breakage (ipw2200, iwconfig, NetworkManager)

2007-03-04 Thread Matt Mackall
On Mon, Mar 05, 2007 at 12:39:24AM +0100, Johannes Berg wrote: > [adding linux-wireless to CC] > > On Sun, 2007-03-04 at 16:08 -0600, Matt Mackall wrote: > > Recent kernels are having troubles with wireless for me. Two seemingly > > related problems: > > I don't think they are related actually.

Re: [RFC] Heads up on sys_fallocate()

2007-03-04 Thread Arnd Bergmann
On Monday 05 March 2007, Jörn Engel wrote: > That actually causes an interesting problem for compressing filesystems. > The space consumed by blocks depends on their contents and how well it > compresses.  At the moment, the only option I see to support > posix_fallocate for LogFS is to set an

Re: [RFC] Heads up on sys_fallocate()

2007-03-04 Thread Anton Altaparmakov
On 5 Mar 2007, at 00:32, Anton Altaparmakov wrote: On 5 Mar 2007, at 00:16, Jörn Engel wrote: On Sun, 4 March 2007 14:38:13 -0800, Ulrich Drepper wrote: When you do it like this, who can the kernel/filesystem *guarantee* that when the data is written there actually is room on the

Re: [RFC] Heads up on sys_fallocate()

2007-03-04 Thread Anton Altaparmakov
On 5 Mar 2007, at 00:16, Jörn Engel wrote: On Sun, 4 March 2007 14:38:13 -0800, Ulrich Drepper wrote: When you do it like this, who can the kernel/filesystem *guarantee* that when the data is written there actually is room on the harddrive? What you described seems like using

Re: 2.6.21-rc2-mm1

2007-03-04 Thread Andrew Morton
On Mon, 5 Mar 2007 01:11:33 +0100 "J.A. Magallón" <[EMAIL PROTECTED]> wrote: > On Fri, 2 Mar 2007 03:00:26 -0800, Andrew Morton <[EMAIL PROTECTED]> wrote: > > > > > Temporarily at > > > > http://userweb.kernel.org/~akpm/2.6.21-rc2-mm1/ > > > > Will appear later at > > > > > >

[RFC PATCH 3/3] change schedule_timeout to use hrtimers

2007-03-04 Thread Arnd Bergmann
According to the new timer statistics, many of the timers that expire come from schedule_timeout. Since the regular timer infrastructure is optimized for timers that don't expire, this might be a useful optimization. This also changes the timer stats to show the caller of schedule_timeout in the

[RFC PATCH 2/3] use hrtimer in select and pselect

2007-03-04 Thread Arnd Bergmann
This changes the select and pselect system calls to use the new schedule_timeout_hr function. Since many applications use the select function instead of nanosleep, this provides a higher resolution sleep to them. BUG: the same needs to be done for the compat syscalls, the current patch breaks

[RFC PATCH 1/3] introduce schedule_timeout_hr

2007-03-04 Thread Arnd Bergmann
The new schedule_timeout_hr function is a variant of schedule_timeout that uses hrtimers internally. Consequently, its argument and return value are ktime_t. Signed-off-by: Arnd Bergmann <[EMAIL PROTECTED]> Index: linux-cg/include/linux/sched.h

[RFC PATCH 0/3] RFC: using hrtimers for in-kernel timeouts

2007-03-04 Thread Arnd Bergmann
I've played around with the new timer statistics to see which timers might benefit of being moved from traditional timers to hrtimers. Since my understanding is that timer_list timers are not really meant to expire, this seems to include a lot of what comes in through schedule_timeout, in

Re: [1/3] Bugfix: Don't use the TSC in sched_clock if unstable

2007-03-04 Thread Guillaume Chazarain
2007/3/5, Andi Kleen <[EMAIL PROTECTED]>: An older one (Banias) I assume? (please post /proc/cpuinfo) No, a Dothan. I attached cpuinfo in the previous mail, but here is it again: processor : 0 vendor_id : GenuineIntel cpu family : 6 model : 13 model name :

Re: [ANNOUNCE] RSDL completely fair starvation free interactive cpu scheduler

2007-03-04 Thread Con Kolivas
On Monday 05 March 2007 10:13, Willy Tarreau wrote: > I've now given it a try with HZ=250 on my dual-athlon. Great, thanks. The HZ should make very little difference, except for slightly lower latencies as you increase the HZ. > It works > beautifully. I also quickly checked that playing mp3

Re: 2.6.21-rc2-mm1

2007-03-04 Thread J.A. Magallón
On Fri, 2 Mar 2007 03:00:26 -0800, Andrew Morton <[EMAIL PROTECTED]> wrote: > > Temporarily at > > http://userweb.kernel.org/~akpm/2.6.21-rc2-mm1/ > > Will appear later at > > > ftp://ftp.kernel.org/pub/linux/kernel/people/akpm/patches/2.6/2.6.21-rc2/2.6.21-rc2-mm1/ > nfs blocks

Re: BUG 2.6.20-git14

2007-03-04 Thread Adrian Bunk
On Tue, Feb 27, 2007 at 07:18:45AM -0800, Matthew L Foster wrote: > > Hi, is this a single bit error or something else? FYI this is with > 2.6.20-git14 Is this still present with a recent -git? > BUG: unable to handle kernel paging request at virtual address 0400 > printing eip: >

Re: [ck] Re: [ANNOUNCE] RSDL completely fair starvation free interactive cpu scheduler

2007-03-04 Thread jos poortvliet
Op Monday 05 March 2007, schreef Willy Tarreau: > On Mon, Mar 05, 2007 at 08:49:29AM +1100, Con Kolivas wrote: > (...) > > > > That's just what it did, but when you "nice make -j4", things (gears) > > > start to stutter. Is that due to the staircase? > > > > gears isn't an interactive task. Apart

Re: 2.6.21-rc1: known regressions (v2) (part 1)

2007-03-04 Thread Adrian Bunk
On Thu, Mar 01, 2007 at 11:45:35AM +0800, Jeff Chua wrote: > On 3/1/07, Michael S. Tsirkin <[EMAIL PROTECTED]> wrote: > > >with 2.6.20, pressing Fn/F4 generates an ACPI event and triggers suspend > >to RAM. > > > >On 2.6.21-rc2, after resume (when the box is accessible from network), > >pressing

Re: [PATCH] USB/gadget: PXA27x USB device support

2007-03-04 Thread Richard Purdie
On Fri, 2007-03-02 at 18:47 +0100, Rodolfo Giometti wrote: > Hello, > > here my new proposal for PXA27x USB device support. In this version I > fixed the power management support (suspend/resume). > > As already mentioned in my previous, I know this driver is quite far > from perfection but, in

Re: [PATCH] libata: warn if speed limited due to 40-wire cable (v2)

2007-03-04 Thread Stephen Clark
Bill Davidsen wrote: Stephen Clark wrote: Bill Davidsen wrote: Alan Cox wrote: it seems broken to manipulate xfer_mask after returning from the driver's ->mode_filter hook. this patch is more than just a speed-limited warning printk, afaics I actually

Re: CK804 SATA Errors (still got them)

2007-03-04 Thread Jeff Garzik
Alistair John Strachan wrote: On Sunday 04 March 2007 23:25, Robert Hancock wrote: Alistair John Strachan wrote: Can you try reverting commit 721449bf0d51213fe3abf0ac3e3561ef9ea7827a (link below) and see what effect that has?

Re: CK804 SATA Errors (still got them)

2007-03-04 Thread Robert Hancock
Alistair John Strachan wrote: Interesting. Can you try un-reverting that patch, and applying this one? Sorry for the newbie question, but is it adequate to do a: git reset --hard v2.6.21-rc2 To ensure a patch is "unreverted" (I reverted it with "git revert"), before applying your

Re: 2.6.21-rc2 : Oops in rtc_cmos...

2007-03-04 Thread Adrian Bunk
Hi Paul, does the patch in http://lkml.org/lkml/2007/2/23/184 fix your problem? cu Adrian On Sun, Mar 04, 2007 at 07:43:52PM +0100, Paul Rolland wrote: > Hello, > > My machine is Oopsing at boot time, and ends up in a panic when I have : > CONFIG_RTC_DRV_CMOS=y > in my .config > > Here is a

Re: CK804 SATA Errors (still got them)

2007-03-04 Thread Jeff Garzik
Robert Hancock wrote: Alistair John Strachan wrote: Can you try reverting commit 721449bf0d51213fe3abf0ac3e3561ef9ea7827a (link below) and see what effect that has? http://git.kernel.org/?p=linux/kernel/git/torvalds/linux-2.6.git;a=commit;h =721449bf0d51213fe3abf0ac3e3561ef9ea7827a

Re: CK804 SATA Errors (still got them)

2007-03-04 Thread Alistair John Strachan
On Sunday 04 March 2007 23:25, Robert Hancock wrote: > Alistair John Strachan wrote: > >> Can you try reverting commit 721449bf0d51213fe3abf0ac3e3561ef9ea7827a > >> (link below) and see what effect that has? > >> > >> http://git.kernel.org/?p=linux/kernel/git/torvalds/linux-2.6.git;a=commi > >>t;h

Re: Recent wireless breakage (ipw2200, iwconfig, NetworkManager)

2007-03-04 Thread Johannes Berg
[adding linux-wireless to CC] On Sun, 2007-03-04 at 16:08 -0600, Matt Mackall wrote: > Recent kernels are having troubles with wireless for me. Two seemingly > related problems: I don't think they are related actually. > a) NetworkManager seems oblivious to the existence of my IPW2200 This is

Re: [patch] timer/hrtimer: take per cpu locks in sane order

2007-03-04 Thread Matt Mackall
On Fri, Mar 02, 2007 at 11:47:52PM +0100, Heiko Carstens wrote: > /* > + * Locks two spinlocks l1 and l2. > + * l1_first indicates if spinlock l1 should be taken first. > + */ > +static inline void double_spin_lock(spinlock_t *l1, spinlock_t *l2, > + bool l1_first)

Re: CONFIG_PREEMPT -> crash under load in 2.6.20?

2007-03-04 Thread Corey Hickey
Nix wrote: >>> I can't tell if magic sysrq dies, because as far as I know there's no >>> way to get magic sysrq to do much visible when you're in X, and I can't >>> get anything to go over the network kernel syslog because the network is >>> dead. >> You should still be able to use SysRQ even in

Re: [1/3] Bugfix: Don't use the TSC in sched_clock if unstable

2007-03-04 Thread Andi Kleen
On Sunday 04 March 2007 19:33, Guillaume Chazarain wrote: > 2007/3/4, Andi Kleen <[EMAIL PROTECTED]>: > > > On what hardware? > > Pentium M 798 MHz -> 2GHz An older one (Banias) I assume? (please post /proc/cpuinfo) Assuming that: > > And how many frequency transitions do you have per

Re: CK804 SATA Errors (still got them)

2007-03-04 Thread Robert Hancock
Alistair John Strachan wrote: Can you try reverting commit 721449bf0d51213fe3abf0ac3e3561ef9ea7827a (link below) and see what effect that has? http://git.kernel.org/?p=linux/kernel/git/torvalds/linux-2.6.git;a=commit;h =721449bf0d51213fe3abf0ac3e3561ef9ea7827a Obviously, I'll let you know if

Re: [RFC] Heads up on sys_fallocate()

2007-03-04 Thread Anton Altaparmakov
Hi, On 4 Mar 2007, at 22:38, Ulrich Drepper wrote: Anton Altaparmakov wrote: And that is it. No zeroing needs to happen at all because we have not updated the initialized size of the inode! When you do it like this, who can the kernel/filesystem *guarantee* that when the data is written

Re: [ANNOUNCE] RSDL completely fair starvation free interactive cpu scheduler

2007-03-04 Thread Willy Tarreau
On Mon, Mar 05, 2007 at 08:49:29AM +1100, Con Kolivas wrote: (...) > > That's just what it did, but when you "nice make -j4", things (gears) start > > to stutter. Is that due to the staircase? > > gears isn't an interactive task. Apart from using it as a background load to > check for

Re: Raid 10 Problems?

2007-03-04 Thread Marc Perkel
--- Jan Engelhardt <[EMAIL PROTECTED]> wrote: > > On Mar 4 2007 08:25, Marc Perkel wrote: > >I'm running the latest OpenVZ kernel 2.6.18. I'm > not > >sure if this is a factor or not as the problem > occurs > >without starting any VEs. > > > >I've never used raid 10 before (stripes on top of 2

Re: CONFIG_PREEMPT -> crash under load in 2.6.20?

2007-03-04 Thread Nix
On 4 Mar 2007, Corey Hickey told this: > Nix wrote: >> I can't tell if magic sysrq dies, because as far as I know there's no >> way to get magic sysrq to do much visible when you're in X, and I can't >> get anything to go over the network kernel syslog because the network is >> dead. > > You

Re: [PATCH] libata: warn if speed limited due to 40-wire cable (v2)

2007-03-04 Thread Bill Davidsen
Stephen Clark wrote: Bill Davidsen wrote: Alan Cox wrote: it seems broken to manipulate xfer_mask after returning from the driver's ->mode_filter hook. this patch is more than just a speed-limited warning printk, afaics I actually suggested that order because the only way the

Re: [patch 00/13] Syslets, "Threadlets", generic AIO support, v3

2007-03-04 Thread Davide Libenzi
On Sun, 4 Mar 2007, Kirk Kuchov wrote: > I don't give a shit. Here's another good use of /dev/null: *PLONK* - Davide - To unsubscribe from this list: send the line "unsubscribe linux-kernel" in the body of a message to [EMAIL PROTECTED] More majordomo info at

Re: [patch 00/13] Syslets, "Threadlets", generic AIO support, v3

2007-03-04 Thread Kirk Kuchov
On 3/4/07, Davide Libenzi wrote: On Sun, 4 Mar 2007, Kirk Kuchov wrote: > On 3/3/07, Davide Libenzi wrote: > > > > > > Those *other* (tons?!?) interfaces can be created *when* the need comes > > (see Linus signalfd [1] example to show how urgent that was). *When* > > the need comes, they

Re: [RFC] Heads up on sys_fallocate()

2007-03-04 Thread Ulrich Drepper
Anton Altaparmakov wrote: > And that is it. No zeroing needs to happen at all because we > have not updated the initialized size of the inode! When you do it like this, who can the kernel/filesystem *guarantee* that when the data is written there actually is room on the harddrive? What you

Re: 2.6.20-mm2

2007-03-04 Thread Rafael J. Wysocki
On Friday, 23 February 2007 17:36, David Brownell wrote: > > > > > rtc_cmos 00:02: rtc core: registered rtc_cmos as rtc0 > > > > > Unable to handle kernel NULL pointer dereference at 0030 > > > > > RIP: > > > > > [] rtc_sysfs_remove_device+0x23/0x50 > > The bug isn't in rtc_cmos,

Re: [PATCH] [RSDL 1/6] lists: add list splice tail

2007-03-04 Thread Con Kolivas
On Monday 05 March 2007 04:33, Gerald Britton wrote: > On Sun, Mar 04, 2007 at 06:02:13PM +1100, Con Kolivas wrote: > > Add a list_splice_tail variant of list_splice. > > > > Patch-by: Peter Zijlstra <[EMAIL PROTECTED]> > > Signed-off-by: Con Kolivas <[EMAIL PROTECTED]> > > ... > > > @@ -360,6

Re: [ANNOUNCE] RSDL completely fair starvation free interactive cpu scheduler

2007-03-04 Thread Con Kolivas
On Monday 05 March 2007 09:19, Simon Arlott wrote: > On 04/03/07 21:49, Con Kolivas wrote: > > On Monday 05 March 2007 07:35, Al Boldi wrote: > >> Con Kolivas wrote: > >>> This means that if you heavily load up your machine without the use of > >>> 'nice' then your interactive tasks _will_ slow

Recent wireless breakage (ipw2200, iwconfig, NetworkManager)

2007-03-04 Thread Matt Mackall
Recent kernels are having troubles with wireless for me. Two seemingly related problems: a) NetworkManager seems oblivious to the existence of my IPW2200 b) Manual iwconfig waits for 60s and then reports: Error for wireless request "Set Encode" (8B2A) : SET failed on device eth1 ; Operation

[PATCH -mm] file capabilities: accomodate future 64-bit caps

2007-03-04 Thread Serge E. Hallyn
From: Serge E. Hallyn <[EMAIL PROTECTED]> Subject: [PATCH -mm] file capabilities: accomodate future 64-bit caps (Changelog: fixed syntax error in dummy version of check_cap_sanity()) As the capability set changes and distributions start tagging binaries with capabilities, we would like for

Re: [PATCH] baycom_ser_fdx: also allow i/o ports >= 0x1000 and enhanced failure logging

2007-03-04 Thread Folkert van Heusden
> > The baycom_ser_fdx driver did not allow i/o ports >= 0x1000. Now that > > there are pci cards (with rs232 ports) which use for example 0xb800 this > > limit should not exists. > The IRQ test is also wrong for PCI systems the moment an APIC is present. > NR_IRQS is the define to use. Ok,

Re: [ANNOUNCE] RSDL completely fair starvation free interactive cpu scheduler

2007-03-04 Thread Con Kolivas
On Monday 05 March 2007 07:35, Al Boldi wrote: > Con Kolivas wrote: > > > >> >> >This message is to announce the first general public release of > > > >> >> > the "Rotating Staircase DeadLine" cpu scheduler. > > Thanks a lot! You're welcome. > > > Just to make it clear. The purpose of this

Re: [PATCH] baycom_ser_fdx: also allow i/o ports >= 0x1000 and enhanced failure logging

2007-03-04 Thread Alan Cox
> The baycom_ser_fdx driver did not allow i/o ports >= 0x1000. Now that > there are pci cards (with rs232 ports) which use for example 0xb800 this > limit should not exists. The IRQ test is also wrong for PCI systems the moment an APIC is present. NR_IRQS is the define to use. > Also, for non

Re: module builds need improvement / top Makefile not good enough

2007-03-04 Thread Oleg Verych
> From: "FN" > Newsgroups: gmane.linux.kernel > Subject: module builds need improvement / top Makefile not good enough > Date: Fri, 02 Mar 2007 09:14:22 -0800 > Hello list, Hallo. > I am unhappy with the direction the 2.6 kernel builds have taken. > Very much like Micro$loth DDKs we (linux

[PATCH] baycom_ser_fdx: also allow i/o ports >= 0x1000 and enhanced failure logging

2007-03-04 Thread Folkert van Heusden
Hi, The baycom_ser_fdx driver did not allow i/o ports >= 0x1000. Now that there are pci cards (with rs232 ports) which use for example 0xb800 this limit should not exists. Also, for non kernel coders find the cause of problems was challenging so I added extra logging. Signed-off-by: Folkert van

Re: [PATCH] KCONFIG: Add some extra info regarding the kernel localversion.

2007-03-04 Thread Sam Ravnborg
On Sun, Mar 04, 2007 at 12:10:18PM -0500, Robert P. J. Day wrote: > On Sun, 4 Mar 2007, Randy Dunlap wrote: > > > On Sun, 4 Mar 2007 06:01:17 -0500 (EST) Robert P. J. Day wrote: > > > > > > > > A small formatting fix, and add a few lines describing the origin of > > > the git-based

Re: bugs in kernel 2.6.21 (both two release candidates) and kernel 2.6.20

2007-03-04 Thread Linus Torvalds
On Sat, 3 Mar 2007, Uwe Bugla wrote: > > Hi folks, Hi Uwe. The thing is, nobody really reads your emails. Why? - you're too abrasive. Hey, I'm not the most polite person either, but when you complain about other maintainers doing badly, you'd better try to show that you can do

Re: [patch 00/13] Syslets, "Threadlets", generic AIO support, v3

2007-03-04 Thread Davide Libenzi
On Sun, 4 Mar 2007, Kirk Kuchov wrote: > On 3/3/07, Davide Libenzi wrote: > > > > > > Those *other* (tons?!?) interfaces can be created *when* the need comes > > (see Linus signalfd [1] example to show how urgent that was). *When* > > the need comes, they will work with existing POSIX

Re: [GIT PULL][RETRY] KVM updates for Linux 2.6.21-rc2

2007-03-04 Thread Linus Torvalds
On Sun, 4 Mar 2007, Avi Kivity wrote: > > The changes fall into three broad categories: > - initial kvm paravirtulization support > - the first batch of the stable userspace interface changes > - fixes, fixes, fixes This is the absolute last time I say this. WAY too late. You'd better get

Re: [PATCH][libata] pata_pdc202xx_old: fix data corruption and other problems

2007-03-04 Thread Alan Cox
On Sun, 4 Mar 2007 01:58:43 +0100 Bartlomiej Zolnierkiewicz <[EMAIL PROTECTED]> wrote: > > [PATCH] pata_pdc202xx_old: fix data corruption and other problems > > Fix wrong "port" calculations in pdc202xx_configure_piomode() > and pdc202xx_set_dmamode(), it was horribly broken which resulted > in

Re: [RFC] Heads up on sys_fallocate()

2007-03-04 Thread Arnd Bergmann
On Sunday 04 March 2007, Anton Altaparmakov wrote: > > A generic_fallocate makes sense to me iff we can do it in the kernel > > more significantly more efficiently than in glibc, e.g. by using only > > a single page in page cache instead of one for each page to be   > > preallocated. > > > > If  

Re: should RTS init in serial core be tied to CRTSCTS

2007-03-04 Thread Robin Getz
On Sun 4 Mar 2007 14:46, Russell King pondered: > On Thu, Mar 01, 2007 at 07:03:02PM -0500, Mike Frysinger wrote: > > the console= bootcmd allows for controlling of the initial state of > > flow control by adding/omitting the 'r' suffix ... > > The console command *only* sets the state for the

Re: [ANNOUNCE] RSDL completely fair starvation free interactive cpu scheduler

2007-03-04 Thread Al Boldi
Con Kolivas wrote: > > >> >> >This message is to announce the first general public release of > > >> >> > the "Rotating Staircase DeadLine" cpu scheduler. Thanks a lot! > Just to make it clear. The purpose of this scheduler is at all costs to > maintain absolute fairness no matter what type of

Re: [RFC] Heads up on sys_fallocate()

2007-03-04 Thread Anton Altaparmakov
On 3 Mar 2007, at 22:45, Arnd Bergmann wrote: On Friday 02 March 2007 00:38:19 Christoph Hellwig wrote: Forgive me if I haven't put enough thought into it, but would it be useful to create a generic_fallocate() that writes zeroed pages for any non-existent pages in the range? I don't know

Re: [RFC] BadRAM still not ready for inclusion ? (was: Re: Free Linux Driver Development!)

2007-03-04 Thread debian developer
The feature is not supported most prolly cos of lack of volunteers pushing it into mainline, or it might be deprecated(is it??). You are right in pointing out tht this could really save some ppl lots of trouble. am ready to help. pls contact for further queries On 3/5/07, [EMAIL PROTECTED]

Re: should RTS init in serial core be tied to CRTSCTS

2007-03-04 Thread Russell King
On Thu, Mar 01, 2007 at 07:03:02PM -0500, Mike Frysinger wrote: > the console= bootcmd allows for controlling of the initial state of > flow control by adding/omitting the 'r' suffix ... The console command *only* sets the state for the kernel's use of one serial port. It does not affect any

Re: CONFIG_PREEMPT -> crash under load in 2.6.20?

2007-03-04 Thread Corey Hickey
Nix wrote: > The lockups are almost total: network traffic ceases, the keyboard goes > dead, nothing hits the disk. Once, however, it locked up while I was > playing an ogg (emu10k1 / SB Live), and the sound did *not* die, but > instead went into a ~1.5s-long tight loop. (Perhaps this was the card

Re: Suspend/resume semantics for ISDN drivers (was: NAK new drivers without proper power management?)

2007-03-04 Thread Rafael J. Wysocki
On Saturday, 3 March 2007 23:48, Tilman Schmidt wrote: > Ok, I've thought some more but I still don't know ... > > On 12.02.2007 01:10 I wrote: > > I don't doubt your basic assessment. However it doesn't translate that > > easily into a real implementation. In my case, I maintain a USB driver, >

Re: [PATCH] [RSDL 1/6] lists: add list splice tail

2007-03-04 Thread Gerald Britton
On Sun, Mar 04, 2007 at 06:02:13PM +1100, Con Kolivas wrote: > Add a list_splice_tail variant of list_splice. > > Patch-by: Peter Zijlstra <[EMAIL PROTECTED]> > Signed-off-by: Con Kolivas <[EMAIL PROTECTED]> ... > @@ -360,6 +386,22 @@ static inline void list_splice_init(stru > } > > /** > + *

[PATCH][RFC] Make entire ACPI submenu dependent on PM.

2007-03-04 Thread Robert P. J. Day
Make the visibility of the entire ACPI submenu dependent on PM. Signed-off-by: Robert P. J. Day <[EMAIL PROTECTED]> --- given that de-selecting Power Management (PM) de-activates the entire contents of the ACPI submenu, it seems pointless to leave the top-level menu entry visible. but

2.6.21-rc2 : Oops in rtc_cmos...

2007-03-04 Thread Paul Rolland
Hello, My machine is Oopsing at boot time, and ends up in a panic when I have : CONFIG_RTC_DRV_CMOS=y in my .config Here is a transcript of the Oops - no serial console at the moment - I made my best to copy without a mistake ! rtc_cmos 00:03: rtc core: registered rtc_cmos as rtc0 Unable to

macbook pro suspend to ram broken in linux-2.6.git HEAD

2007-03-04 Thread Soeren Sonnenburg
a rather long git bisect session between v2.6.20 and HEAD identified the commit below this as the cause. please note that the machine does not return from resume and although all PM debug was turned on there is nothing in the logs. happens with a minimalistic setup (console only no audio/network

Re: [1/3] Bugfix: Don't use the TSC in sched_clock if unstable

2007-03-04 Thread Guillaume Chazarain
2007/3/4, Andi Kleen <[EMAIL PROTECTED]>: On what hardware? Pentium M 798 MHz -> 2GHz And how many frequency transitions do you have per second? 10 in a kernel compile exhibiting audio skips. Anyway, the "Clocksource tsc unstable (delta = -263211549 ns)" line in the dmesg I attached to

[PATCH] Fix 2.6.21 rfcomm lockups (2.6.21 regression)

2007-03-04 Thread Mark Lord
Mark Lord wrote: Any attempt to open/use a bluetooth rfcomm device locks up scheduling completely on my machine. Interrupts (ping, alt-sysrq) seem to be alive, but nothing else. This was working fine in 2.6.20, broken now in 2.6.21-rc2-git* Further info: Reverting this change (below) fixes

Re: [PATCH] libata: warn if speed limited due to 40-wire cable (v2)

2007-03-04 Thread Stephen Clark
Bill Davidsen wrote: Alan Cox wrote: it seems broken to manipulate xfer_mask after returning from the driver's ->mode_filter hook. this patch is more than just a speed-limited warning printk, afaics I actually suggested that order because the only way the printk can be done

Re: [Regression] Bluetooth RFComm: using it locks up the machine

2007-03-04 Thread Mark Lord
Mark Lord wrote: Mark Lord wrote: Any attempt to open/use a bluetooth rfcomm device locks up scheduling completely on my machine. Interrupts (ping, alt-sysrq) seem to be alive, but nothing else. This was working fine in 2.6.20, broken now in 2.6.21-rc2-git* Further info: Reverting this

Re: [patch 00/13] Syslets, "Threadlets", generic AIO support, v3

2007-03-04 Thread Kyle Moffett
On Mar 04, 2007, at 11:23:37, Kirk Kuchov wrote: So here we are, 2007. epoll() works with files, pipes, sockets, inotify and anything pollable (file descriptors) but aio, timers, signals and user-defined event. Can we please get those working with epoll ? Something as simple as: [code

[PATCH] dvb-core: Fix several locking related problems.

2007-03-04 Thread Simon Arlott
Fix several instances of dvb-core functions using mutex_lock_interruptible and returning -ERESTARTSYS where the calling function will either never retry or never check the return value. These cause a race condition with dvb_dmxdev_filter_free and dvb_dvr_release, both of which are filesystem

Warning (Realtime Scanner): Infected attachment(s) was detected!

2007-03-04 Thread eTrust_Antivirus_Option_for_Lotus_Notes_Domino%COFARES
eTrust Antivirus ha detectado un documento adjunto bloqueado/infectado en un mensaje de correo electrónico de [EMAIL PROTECTED] a [EMAIL PROTECTED] con el asunto [ ]. Documentos adjuntos: [message.zip] Estado: Error en la desinfección, archivo renombrado - To unsubscribe from this list: send

Re: 2.6.21-rc2-git3 soft lockup detected on CPU#0 (crash dump kernel)

2007-03-04 Thread Thomas Gleixner
On Sun, 2007-03-04 at 18:15 +0100, Michal Piotrowski wrote: > > http://www.stardust.webpages.pl/files/tbf/bitis-gabonica/2.6.21-rc2-git3-kdump/log2.txt > Kernel command line: irqpoll Misrouted IRQ fixup and polling support enabled It might be related to irqpoll. Not sure how to track

Re: Raid 10 Problems?

2007-03-04 Thread Jan Engelhardt
On Mar 4 2007 08:25, Marc Perkel wrote: >I'm running the latest OpenVZ kernel 2.6.18. I'm not >sure if this is a factor or not as the problem occurs >without starting any VEs. > >I've never used raid 10 before (stripes on top of 2 >mirrors) so I don't have anything to compare this >with. I'm just

Re: kernel threads locking data

2007-03-04 Thread Kyle McMartin
On Sun, Mar 04, 2007 at 08:04:48PM +0300, Mockern wrote: > hi, > > how is better to lock data (a buffer) which is used by 2 kernel threads? > if it's only used by the threads, and not by anything running in interrupt context, use a mutex. Documentation/mutex-design.txt has most of the info

Re: [lm-sensors] Could the k8temp driver be interfering with ACPI?

2007-03-04 Thread Rudolf Marek
Hello again, I produced some code which I proposed in mail above. The patch is not for review it is just a PoC to better show what I'm trying to do. It is a test case for my motherboard which has W83627EHF chip and ACPI thermal method and w83627ehf compete the device. When no driver is loaded,

<    1   2   3   4   5   6   >