[ALSA PATCH] alsa-git merge request

2007-05-09 Thread Jaroslav Kysela
Linus, please pull from [the linus branch at]: master.kernel.org:/pub/scm/linux/kernel/git/perex/alsa.git linus gitweb interface: http://www.kernel.org/git/?p=linux/kernel/git/perex/alsa.git The GNU patch is available at:

Re: Bogus section mismatch errors?

2007-05-09 Thread Paul Mundt
On Tue, May 08, 2007 at 01:52:20PM +0200, Sam Ravnborg wrote: On Tue, May 08, 2007 at 12:17:59PM +0100, Russell King wrote: WARNING: mm/built-in.o - Section mismatch: reference to .init.text: from .text between 'kmem_cache_create' (at offset 0x1bd94) and 'cache_reap' WARNING:

Re: [PATCH 7/10] i386 sg: add support for chaining scatterlists

2007-05-09 Thread Herbert Xu
Jens Axboe [EMAIL PROTECTED] wrote: diff --git a/include/asm-i386/scatterlist.h b/include/asm-i386/scatterlist.h index d7e45a8..794b68c 100644 --- a/include/asm-i386/scatterlist.h +++ b/include/asm-i386/scatterlist.h @@ -8,8 +8,11 @@ struct scatterlist { unsigned int offset;

Re: [PATCH 1/5] fallocate() implementation in i86, x86_64 and powerpc

2007-05-09 Thread Suparna Bhattacharya
On Fri, May 04, 2007 at 02:41:50PM +1000, Paul Mackerras wrote: Andrew Morton writes: On Thu, 26 Apr 2007 23:33:32 +0530 Amit K. Arora [EMAIL PROTECTED] wrote: This patch implements the fallocate() system call and adds support for i386, x86_64 and powerpc. ...

[patch 9/9] lguest: the documentation, example launcher

2007-05-09 Thread akpm
From: Rusty Russell [EMAIL PROTECTED] A brief document describing how to use lguest. Because lguest doesn't have an ABI we also include an example launcher in the Documentation directory. [EMAIL PROTECTED]: Fix up nat example in documentation] Signed-off-by: Rusty Russell [EMAIL PROTECTED] Cc:

Re: [patch 2/9] lguest: the guest code

2007-05-09 Thread Pekka Enberg
Hi Rusty, On 5/9/07, [EMAIL PROTECTED] [EMAIL PROTECTED] wrote: +static void add_lguest_device(unsigned int index) +{ + struct lguest_device *new; + + lguest_devices[index].status |= LGUEST_DEVICE_S_ACKNOWLEDGE; + new = kmalloc(sizeof(struct lguest_device), GFP_KERNEL); +

D-Link DFE-580TX 4 port NIC problems

2007-05-09 Thread Mario Doering
Hello, we have a D-Link DFE-580TX 4 port network card in our main router. It works pretty well most of the time, even though an error message pops up in dmesg every now and then (sometimes once a day sometimes once every few hours). But every few weeks those error messages increase rapidly,

Re: [PATCH 7/10] i386 sg: add support for chaining scatterlists

2007-05-09 Thread Andrew Morton
On Wed, 09 May 2007 20:03:29 +1000 Herbert Xu [EMAIL PROTECTED] wrote: Jens Axboe [EMAIL PROTECTED] wrote: diff --git a/include/asm-i386/scatterlist.h b/include/asm-i386/scatterlist.h index d7e45a8..794b68c 100644 --- a/include/asm-i386/scatterlist.h +++

Re: [PATCH] Intel IXP4xx network drivers v.3 - QMGR

2007-05-09 Thread Lennert Buytenhek
On Tue, May 08, 2007 at 06:59:36PM +0200, Krzysztof Halasa wrote: There may be up to 6 Ethernet ports (not sure about hardware status, not yet supported even by Intel) - 7 queues * 128 entries each = ~ 3.5 KB. Add 2 long queues (RX) for HSS and something for TX, and then crypto, and maybe

Re: [ASoC] Mic record is not working with wm9713 ASoC driver

2007-05-09 Thread Andrew Morton
On Wed, 9 May 2007 14:48:54 +0530 Nobin Mathew [EMAIL PROTECTED] wrote: I am trying to record mic with AsoC wm9713 driver. My Mic is connected Mic 1. My settings 'Mic A Source' - Mic 1 'Mic Boost (+20dB)' [on] 'Capture' [on] 'Left Capture Source' Mic 1 'Right Capture Source' Mic 1

Re: [2.6.21] kernel panic

2007-05-09 Thread Jiri Kosina
On Mon, 7 May 2007, Jiri Kosina wrote: OK, I think the patch below should solve this. I am pretty surprised though that this bug wasn't triggered/reported by anyone anytime sooner, it has been there for ages too (but ok, the race window should be pretty small and hiddev is usually not

Re: [patch 8/9] lguest: the block driver

2007-05-09 Thread Pekka Enberg
On 5/9/07, [EMAIL PROTECTED] [EMAIL PROTECTED] wrote: +/* Jens gave me this nice helper to end all chunks of a request. */ +static void end_entire_request(struct request *req, int uptodate) +{ + if (end_that_request_first(req, uptodate, req-hard_nr_sectors)) + BUG(); +

Re: [PATCH 7/10] i386 sg: add support for chaining scatterlists

2007-05-09 Thread Herbert Xu
On Wed, May 09, 2007 at 03:19:15AM -0700, Andrew Morton wrote: BTW, the crypto layer's scatterlist already has a chaining mechanism using the existing structure. The only difference is that the chained pointer is stored inside the 'struct page *' rather than a new pointer.

Re: [patch 7/9] lguest: the net driver

2007-05-09 Thread Herbert Xu
[EMAIL PROTECTED] wrote: + if (desc-features LGUEST_NET_F_NOCSUM) + dev-features |= NETIF_F_NO_CSUM; Any reason why you're using NO_CSUM here instead of HW_CSUM? Practically there is no difference but NO_CSUM could be treated differently in future and I'm not sure whether

Re: [PATCH] doc: volatile considered evil

2007-05-09 Thread David Rientjes
On Wed, 9 May 2007, Alan Cox wrote: When Might You Need volatile ? -- When you are implementing the locking primitives on a new platform. When you are implementing the I/O and atomic prmitives on a new platform. Also in inline gcc assembler where volatile is

Re: [PATCH 3/3] AFS: Implement basic file write support

2007-05-09 Thread David Howells
Andrew Morton [EMAIL PROTECTED] wrote: + BUG_ON(i_size 0x); // TODO: use 64-bit store You're sure this isn't user-triggerable? Hmmm... I'm not. I'll whip up a patch for this. kmap_atomic() could be used here and is better. Yeah. It used to have something that slept in the

Re: D-Link DFE-580TX 4 port NIC problems

2007-05-09 Thread Andrew Morton
On Wed, 9 May 2007 12:01:42 +0200 Mario Doering [EMAIL PROTECTED] wrote: Hello, we have a D-Link DFE-580TX 4 port network card in our main router. It works pretty well most of the time, even though an error message pops up in dmesg every now and then (sometimes once a day sometimes once

Re: Long file names in VFAT broken with iocharset=utf8

2007-05-09 Thread Andrey Borzenkov
On Monday 07 May 2007, Roland Kuhn wrote: Hi! On 7 May 2007, at 20:27, OGAWA Hirofumi wrote: Roland Kuhn [EMAIL PROTECTED] writes: PATH_MAX specifically counts _bytes_ not characters, so UTF-8 does not matter. ISTR that PATH_MAX was 256 at some point, but I just quickly grepped

Re: [GIT PATCHES] V4L/DVB updates

2007-05-09 Thread Mauro Carvalho Chehab
Hi Geert, Em Qua, 2007-05-09 às 08:30 +0200, Geert Uytterhoeven escreveu: On Fri, 27 Apr 2007, Mauro Carvalho Chehab wrote: A short changelog: - New drivers: ivtv driver for Hauppauge PVR series and similar boards; Can we please have proper Kconfig dependencies instead of

Re: [PATCH 1/2] LogFS proper

2007-05-09 Thread Jörn Engel
On Tue, 8 May 2007 17:01:01 -0700, Greg KH wrote: On Wed, May 09, 2007 at 01:10:09AM +0200, J??rn Engel wrote: The remaining question is how to deal with kernel-only code that uses be64. Convert that to __be64 as well? Or introduce be64 in include/linix/types.h instead? I say leave

Re: retry [PATCH] partition : add support for sysv68 partitions

2007-05-09 Thread Wouter Verhelst
On Tue, May 08, 2007 at 10:21:12PM +0200, Geert Uytterhoeven wrote: Hi Philippe, On Fri, 13 Apr 2007, Philippe De Muyter wrote: Add support for the Motorola sysv68 disk partition table (slices in motorola doc). Signed-off-by: Philippe De Muyter [EMAIL PROTECTED] diff -r

Re: [PATCH 7/10] i386 sg: add support for chaining scatterlists

2007-05-09 Thread Jens Axboe
On Wed, May 09 2007, Herbert Xu wrote: Jens Axboe [EMAIL PROTECTED] wrote: diff --git a/include/asm-i386/scatterlist.h b/include/asm-i386/scatterlist.h index d7e45a8..794b68c 100644 --- a/include/asm-i386/scatterlist.h +++ b/include/asm-i386/scatterlist.h @@ -8,8 +8,11 @@ struct

Re: [patch 8/9] lguest: the block driver

2007-05-09 Thread Jens Axboe
On Wed, May 09 2007, Pekka Enberg wrote: On 5/9/07, [EMAIL PROTECTED] [EMAIL PROTECTED] wrote: +/* Jens gave me this nice helper to end all chunks of a request. */ +static void end_entire_request(struct request *req, int uptodate) +{ + if (end_that_request_first(req, uptodate,

Re: [PATCH 7/10] i386 sg: add support for chaining scatterlists

2007-05-09 Thread Jens Axboe
On Wed, May 09 2007, Andrew Morton wrote: On Wed, 09 May 2007 20:03:29 +1000 Herbert Xu [EMAIL PROTECTED] wrote: Jens Axboe [EMAIL PROTECTED] wrote: diff --git a/include/asm-i386/scatterlist.h b/include/asm-i386/scatterlist.h index d7e45a8..794b68c 100644 ---

Re: [PATCH] Intel IXP4xx network drivers v.2 - Ethernet and HSS

2007-05-09 Thread Mikael Pettersson
On Wed, 9 May 2007 11:35:03 +0200, Marcus Better wrote: Lennert Buytenhek wrote: Does that mean that the Debian ARM people have their heads so far up their collective asses that they think that every form of change is bad and are unable to accept that some forms of change might be for the

Re: [2.6.21] kernel panic

2007-05-09 Thread folkert
Hi, OK, I think the patch below should solve this. I am pretty surprised though that this bug wasn't triggered/reported by anyone anytime sooner, it has been there for ages too (but ok, the race window should be pretty small and hiddev is usually not high-throughput interface). Could

Re: [PATCH 3/3] AFS: Implement basic file write support

2007-05-09 Thread Andrew Morton
On Wed, 09 May 2007 11:25:47 +0100 David Howells [EMAIL PROTECTED] wrote: + set_page_dirty(page); + + if (PageDirty(page)) + _debug(dirtied); + + return 0; +} One would normally run mark_inode_dirty() after any i_size_write()? Not in this case, I assume,

Re: [SOLVED] Serial buffer corruption [was Re: FTDI usb-serial possible bug]

2007-05-09 Thread Gene Heskett
On Saturday 05 May 2007, Oliver Neukum wrote: Am Samstag, 5. Mai 2007 20:08 schrieb Antonino Ingargiola: Now I don't want to abuse your kindness, but I (personally) would be *really* interested in a similar fix for the FTDI usb-serial driver, because many measurements I do use an FTDI device.

Re: 2.6.21-mm2 -- Compile error: include/linux/power_supply.h:125: error: field ‘changed_work’ has incomplete type

2007-05-09 Thread Miles Lane
CC drivers/power/power_supply_core.o In file included from drivers/power/power_supply_core.c:18: include/linux/power_supply.h:125: error: field 'changed_work' has incomplete type drivers/power/power_supply_core.c: In function 'power_supply_changed_work':

Re: [ASoC] Mic record is not working with wm9713 ASoC driver

2007-05-09 Thread Nobin Mathew
Liam Sorry for disturbing you again, I could not find that reply on alsa devel mailing list Can u send that to me Thanks On 5/9/07, Liam Girdwood [EMAIL PROTECTED] wrote: On Wed, 2007-05-09 at 14:48 +0530, Nobin Mathew wrote: I am trying to record mic with AsoC wm9713 driver. My Mic is

Re: [patch 128/197] freezer: add try_to_freeze calls to all kernel threads

2007-05-09 Thread Stefan Richter
[EMAIL PROTECTED] wrote: From: Rafael J. Wysocki [EMAIL PROTECTED] Add try_to_freeze() calls to the remaining kernel threads that do not call try_to_freeze() already, although they set PF_NOFREEZE. In the future we are going to replace PF_NOFREEZE with a set of flags that will be set to

Re: [patch 8/9] lguest: the block driver

2007-05-09 Thread Pekka J Enberg
On Wed, 9 May 2007, Jens Axboe wrote: Lets do it after it is merged, as not to create a hold-up point for lguest. Once it's in, I'll fix it up. Ok. Seems pointless, though, as it's only a matter of: Pekka From: Jens Axboe [EMAIL PROTECTED] Add a new

Re: [ASoC] Mic record is not working with wm9713 ASoC driver

2007-05-09 Thread Liam Girdwood
On Wed, 2007-05-09 at 14:48 +0530, Nobin Mathew wrote: I am trying to record mic with AsoC wm9713 driver. My Mic is connected Mic 1. I've replied to this duplicate post on alsa-dev. Liam - To unsubscribe from this list: send the line unsubscribe linux-kernel in the body of a message to

Re: [patch 128/197] freezer: add try_to_freeze calls to all kernel threads

2007-05-09 Thread Pavel Machek
Hi! Add try_to_freeze() calls to the remaining kernel threads that do not call try_to_freeze() already, although they set PF_NOFREEZE. In the future we are going to replace PF_NOFREEZE with a set of flags that will be set to indicate in which situations the task should not be frozen

Re: 2.6.21-mm2 -- Compile error : include/linux/power_supply.h:125: error: field ‘changed_work’ has incomplete type

2007-05-09 Thread Anton Vorontsov
On Wed, May 09, 2007 at 03:43:34AM -0700, Miles Lane wrote: CC drivers/power/power_supply_core.o In file included from drivers/power/power_supply_core.c:18: include/linux/power_supply.h:125: error: field 'changed_work' has incomplete type drivers/power/power_supply_core.c: In

Re: [PATCH 1/5] fallocate() implementation in i86, x86_64 and powerpc

2007-05-09 Thread Paul Mackerras
Suparna Bhattacharya writes: This looks like it will have the same problem on s390 as sys_sync_file_range. Maybe the prototype should be: asmlinkage long sys_fallocate(loff_t offset, loff_t len, int fd, int mode) Yes, but the trouble is that there was a contrary viewpoint preferring

Re: [patches] [PATCH] [21/22] x86_64: Extend bzImage protocol for relocatable bzImage

2007-05-09 Thread Eric W. Biederman
H. Peter Anvin [EMAIL PROTECTED] writes: yhlu wrote: so the kexec tools need to scan the pci devices list, and find out how to set real_mode.isVGA and orig_video_mode, also need to parse the comand line about vga console. BTW, welcome to the hell of bypassing setup. Well in this case

Re: [patch 8/9] lguest: the block driver

2007-05-09 Thread Jens Axboe
On Wed, May 09 2007, Pekka J Enberg wrote: On Wed, 9 May 2007, Jens Axboe wrote: Lets do it after it is merged, as not to create a hold-up point for lguest. Once it's in, I'll fix it up. Ok. Seems pointless, though, as it's only a matter of: Yes I'm very well aware of that, my point is

Fwd: [ASoC] Mic record is not working with wm9713 ASoC driver

2007-05-09 Thread Nobin Mathew
-- Forwarded message -- From: Nobin Mathew [EMAIL PROTECTED] Date: May 9, 2007 4:25 PM Subject: Re: [ASoC] Mic record is not working with wm9713 ASoC driver To: Liam Girdwood [EMAIL PROTECTED] Liam i got the mail. I am not setting any audio paths in my machine driver On

Re: [PATCH] Intel IXP4xx network drivers v.2 - Ethernet and HSS

2007-05-09 Thread Tomasz Chmielewski
On Wed, 9 May 2007 11:35:03 +0200, Marcus Better wrote: Lennert Buytenhek wrote: Does that mean that the Debian ARM people have their heads so far up their collective asses that they think that every form of change is bad and are unable to accept that some forms of change might be for the

Re: [PATCH] Intel IXP4xx network drivers v.2 - Ethernet and HSS

2007-05-09 Thread Lennert Buytenhek
On Wed, May 09, 2007 at 11:35:03AM +0200, Marcus Better wrote: Does that mean that the Debian ARM people have their heads so far up their collective asses that they think that every form of change is bad and are unable to accept that some forms of change might be for the better? Well,

Re: [SOLVED] Serial buffer corruption [was Re: FTDI usb-serial possible bug]

2007-05-09 Thread Gene Heskett
On Saturday 05 May 2007, Oliver Neukum wrote: Am Samstag, 5. Mai 2007 20:08 schrieb Antonino Ingargiola: Now I don't want to abuse your kindness, but I (personally) would be *really* interested in a similar fix for the FTDI usb-serial driver, because many measurements I do use an FTDI device.

Re: [PATCH 3/3] AFS: Implement basic file write support

2007-05-09 Thread David Howells
Andrew Morton [EMAIL PROTECTED] wrote: set_page_dirty() will set I_DIRTY_PAGES only. ie: the inode has dirty pagecache data. To tell the VFS that the inode itself is dirty one needs to run mark_inode_dirty(). But what's the difference in this case? I don't need to write the inode back

Re: [PATCH] Intel IXP4xx network drivers v.2 - Ethernet and HSS

2007-05-09 Thread Lennert Buytenhek
On Wed, May 09, 2007 at 12:35:40PM +0200, Mikael Pettersson wrote: Does that mean that the Debian ARM people have their heads so far up their collective asses that they think that every form of change is bad and are unable to accept that some forms of change might be for the better?

Re: [PATCH 1/5] fallocate() implementation in i86, x86_64 and powerpc

2007-05-09 Thread Suparna Bhattacharya
On Wed, May 09, 2007 at 08:50:44PM +1000, Paul Mackerras wrote: Suparna Bhattacharya writes: This looks like it will have the same problem on s390 as sys_sync_file_range. Maybe the prototype should be: asmlinkage long sys_fallocate(loff_t offset, loff_t len, int fd, int mode)

Re: nbd problem.

2007-05-09 Thread Rogier Wolff
On Tue, May 08, 2007 at 01:33:52PM -0700, Satyam Sharma wrote: On 5/8/07, Rogier Wolff [EMAIL PROTECTED] wrote: Hi, The nbd client still reliably hangs when I use it. Someone suggested to use http://git.kernel.org/?p=linux/kernel/git/axboe/linux-2.6-block.git;a=summary and that fixed

[patch] Add the device IDs for A MD/ATI SB700

2007-05-09 Thread Henry Su
From: [EMAIL PROTECTED] Adding the device ID for AMD/ATI SB700. Signed-off-by:henry su [EMAIL PROTECTED] -- --- linux-2.6.21.1.orig/include/linux/pci_ids.h 2007-05-10 06:30:23.0 +0800 +++ linux-2.6.21.1/include/linux/pci_ids.h 2007-05-10

Re: [PATCH 0/9] Kconfig: cleanup s390 v2.

2007-05-09 Thread Martin Schwidefsky
On Mon, 2007-04-23 at 10:45 -0700, Andrew Morton wrote: Andrew: I plan to add patches 1-5 to the for-andrew branch of the git390 repository if that is fine with you. The only thing that will be missing in the tree is the patch that disables wireless for s390. The code does compile but

Re: [patches] [PATCH] [21/22] x86_64: Extend bzImage protocol for relocatable bzImage

2007-05-09 Thread Eric W. Biederman
Gerd Hoffmann [EMAIL PROTECTED] writes: Hi, Since the whole point is to detect the case where we don't have a screen at all it makes sense to check several additional variables and make certain that they are all 0. Agreed? Like in the attached patch? Looks good to me. cheers, Gerd

Re: [patch] CFS scheduler, -v10

2007-05-09 Thread Al Boldi
Ingo Molnar wrote: i'm pleased to announce release -v10 of the CFS scheduler patchset. (The main goal of CFS is to implement desktop scheduling with as high quality as technically possible.) Thanks! I like this one a lot. There is one workload that is still handled a bit strange, though.

[PATCH] small cleanup in gpt partition handling

2007-05-09 Thread Olaf Hering
Remove unused argument in is_pmbr_valid() Remove unneeded initialization of local variable legacy_mbr Compile-tested. Signed-off-by: Olaf Hering [EMAIL PROTECTED] --- fs/partitions/efi.c | 12 +--- 1 file changed, 5 insertions(+), 7 deletions(-) --- a/fs/partitions/efi.c +++

Re: [PATCH 1/5] fallocate() implementation in i86, x86_64 and powerpc

2007-05-09 Thread Paul Mackerras
Suparna Bhattacharya writes: Of course the interface used by an application program would have the fd first. Glibc can do the translation. I think that was understood. OK, then what does it matter what the glibc/kernel interface is, as long as it works? It's only a minor point; the

Re: [patch 3/3] clockevents: Fix resume logic - updated version

2007-05-09 Thread Rafael J. Wysocki
On Wednesday, 9 May 2007 10:59, Thomas Gleixner wrote: On Wed, 2007-05-09 at 01:31 -0700, Andrew Morton wrote: I suspect I just tested the wrong thing yesterday. Let me recheck just these patches against 2.6.21. yup, same hang with just these three: origin

Re: [PATCH 2/2] leds:arch/sh/boards/landisk LEDs supports

2007-05-09 Thread kogiidena
Hi Richard-san As far as I can tell, the existing timer trigger can do everything the blink trigger can (and more besides). I want to blink LED in the initial state. Because that of the existing timer trigger was impossible, I made BLINK. I thought about another solution. Can the change that

[PATCH 1/6] IB/ehca: Serialize hypervisor calls in ehca_register_mr()

2007-05-09 Thread Joachim Fenkes
From: Stefan Roscher [EMAIL PROTECTED] Some pSeries hypervisor versions show a race condition in the allocate MR hCall. Serialize this call per adapter to circumvent this problem. Signed-off-by: Joachim Fenkes [EMAIL PROTECTED] --- drivers/infiniband/hw/ehca/ehca_classes.h |1 +

[PATCH 5/6] IB/ehca: beautify sysfs attribute code, fix compiler warnings

2007-05-09 Thread Joachim Fenkes
eHCA's sysfs attributes are now being created via sysfs_create_group(), making the process neatly table-driven. The return value is checked, thus fixing a few compiler warnings. Signed-off-by: Joachim Fenkes [EMAIL PROTECTED] --- drivers/infiniband/hw/ehca/ehca_main.c | 86

[PATCH 2/6] IB/ehca: correctly set GRH mask bit in ehca_modify_qp()

2007-05-09 Thread Joachim Fenkes
The driver needs to always supply the GRH present flag to the hypervisor, whether it's true or false. Not supplying it (i.e. not setting the corresponding mask bit) amounts to a perhaps, which we don't want. Signed-off-by: Joachim Fenkes [EMAIL PROTECTED] --- drivers/infiniband/hw/ehca/ehca_qp.c

[PATCH 4/6] IB/ehca: remove _irqsave, move #ifdef

2007-05-09 Thread Joachim Fenkes
- In ehca_process_eq(), we're IRQ safe throughout the whole function, so we don't need another _irqsave in the middle of flight. - take_over_work() is only called by comp_pool_callback(), so it can move into the same #ifdef block. Signed-off-by: Joachim Fenkes [EMAIL PROTECTED] ---

[PATCH 3/6] IB/ehca: Fix AQP0/1 QP number

2007-05-09 Thread Joachim Fenkes
From: Hoang-Nam Nguyen [EMAIL PROTECTED] AQP0/1 should report qp_num={0|1} and the actual QP# should be stored in struct ehca_qp, not the other way round. Signed-off-by: Joachim Fenkes [EMAIL PROTECTED] --- drivers/infiniband/hw/ehca/ehca_qp.c |5 +++-- 1 files changed, 3 insertions(+), 2

[PATCH 6/6] IB/ehca: disable scaling code by default, bump version number

2007-05-09 Thread Joachim Fenkes
- Scaling code is still considered experimental, so disable it by default - Increase version to SVNEHCA_0023 Signed-off-by: Joachim Fenkes [EMAIL PROTECTED] --- drivers/infiniband/hw/ehca/ehca_main.c |6 +++--- 1 files changed, 3 insertions(+), 3 deletions(-) diff --git

Re: [patch 7/9] lguest: the net driver

2007-05-09 Thread Rusty Russell
On Wed, 2007-05-09 at 20:12 +1000, Herbert Xu wrote: [EMAIL PROTECTED] wrote: + if (desc-features LGUEST_NET_F_NOCSUM) + dev-features |= NETIF_F_NO_CSUM; Any reason why you're using NO_CSUM here instead of HW_CSUM? Practically there is no difference but NO_CSUM

[KJ PATCH] Replacing alloc_pages(gfp,0) with alloc_page(gfp) in arch/i386/mm/pageattr.c.

2007-05-09 Thread Shani Moideen
Hi, Replacing alloc_pages(gfp,0) with alloc_page(gfp) in arch/i386/mm/pageattr.c. Signed-off-by: Shani Moideen [EMAIL PROTECTED] diff --git a/arch/i386/mm/pageattr.c b/arch/i386/mm/pageattr.c index 412ebbd..12f7f14 100644 --- a/arch/i386/mm/pageattr.c +++ b/arch/i386/mm/pageattr.c @@

[PATCH 1/3] rtc:rtc-rs5c313.c : error and warning are fixed.

2007-05-09 Thread kogiidena
The following patch is a patch that corrects the compile error and warning. Please apply. Signed-off-by: kogiidena [EMAIL PROTECTED] --- diff -urpN OLD/drivers/rtc/Kconfig NEW/drivers/rtc/Kconfig --- OLD/drivers/rtc/Kconfig 2007-05-07 12:12:02.0 +0900 +++ NEW/drivers/rtc/Kconfig

Re: [patch 2/9] lguest: the guest code

2007-05-09 Thread Rusty Russell
On Wed, 2007-05-09 at 13:16 +0300, Pekka Enberg wrote: Hi Rusty, On 5/9/07, [EMAIL PROTECTED] [EMAIL PROTECTED] wrote: +static void add_lguest_device(unsigned int index) +{ + struct lguest_device *new; + + lguest_devices[index].status |= LGUEST_DEVICE_S_ACKNOWLEDGE; +

[PATCH 2/3] rtc:rtc-rs5c313.c : rtc_time value are fixed.

2007-05-09 Thread kogiidena
The following patch is a patch that corrects an initial value of suruct rtc_ time. please apply. Signed-off-by: kogiidena [EMAIL PROTECTED] --- diff -urpN OLD/drivers/rtc/rtc-rs5c313.c NEW/drivers/rtc/rtc-rs5c313.c --- OLD/drivers/rtc/rtc-rs5c313.c 2007-05-08 19:42:05.0 +0900 +++

[PATCH 3/3] rtc:rtc-rs5c313.c : add error handling toavoidhardware hangup.

2007-05-09 Thread kogiidena
It is a patch that adds error processing. Hanging up by an infinite loop is evaded. Please apply. Signed-off-by: kogiidena [EMAIL PROTECTED] --- diff -urpN OLD/drivers/rtc/rtc-rs5c313.c NEW/drivers/rtc/rtc-rs5c313.c --- OLD/drivers/rtc/rtc-rs5c313.c 2007-05-08 19:52:11.0 +0900 +++

Re: [SOLVED] Serial buffer corruption [was Re: FTDI usb-serial possible bug]

2007-05-09 Thread Gene Heskett
On Saturday 05 May 2007, Oliver Neukum wrote: You are included this time David because 3 messages I posted this morning, whose text should resemble this one, the first of those 3, were also /dev/nulled. this is BS when I can't even discuss a patch in the same manner as others can. So whats

Re: [PATCH 1/5] fallocate() implementation in i86, x86_64 and powerpc

2007-05-09 Thread Martin Schwidefsky
On 5/9/07, Paul Mackerras [EMAIL PROTECTED] wrote: Suparna Bhattacharya writes: Of course the interface used by an application program would have the fd first. Glibc can do the translation. I think that was understood. OK, then what does it matter what the glibc/kernel interface is, as

Re: [patch 7/9] lguest: the net driver

2007-05-09 Thread Herbert Xu
Hi Rusty: On Wed, May 09, 2007 at 09:55:25PM +1000, Rusty Russell wrote: NO_CSUM because it really doesn't need a checksum. The LGUEST_NET_F_NOCSUM is only set for local inter-guest networking. If some guest were to route the packets outside the machine, this would be an issue,

[KJ PATCH] Replacing alloc_pages(gfp,0) with alloc_page(gfp) in arch/i386/mm/pgtable.c.

2007-05-09 Thread Shani Moideen
Hi, Replacing alloc_pages(gfp,0) with alloc_page(gfp) in arch/i386/mm/pgtable.c. Signed-off-by: Shani Moideen [EMAIL PROTECTED] diff --git a/arch/i386/mm/pgtable.c b/arch/i386/mm/pgtable.c index fa0cfbd..5d2b0fb 100644 --- a/arch/i386/mm/pgtable.c +++ b/arch/i386/mm/pgtable.c @@ -191,9

[PATCH] Fix a bad bug in read_cache_page_async()

2007-05-09 Thread David Howells
Fix a bad bug in read_cache_page_async() introduced in commit: 6fe6900e1e5b6fa9e5c59aa5061f244fe3f467e2 This adds: mark_page_accessed(page) into the error handling path in read_cache_page_async(). In such a case, 'page' holds the error code. Signed-off-by: David Howells

Re: [PATCH 1/5] fallocate() implementation in i86, x86_64 and powerpc

2007-05-09 Thread Amit K. Arora
On Wed, May 09, 2007 at 09:37:22PM +1000, Paul Mackerras wrote: Suparna Bhattacharya writes: Of course the interface used by an application program would have the fd first. Glibc can do the translation. I think that was understood. OK, then what does it matter what the

Re: [patch 128/197] freezer: add try_to_freeze calls to all kernel threads

2007-05-09 Thread Stefan Richter
Pavel Machek wrote: Add try_to_freeze() calls to the remaining kernel threads that do not call try_to_freeze() already, although they set PF_NOFREEZE. In the future we are going to replace PF_NOFREEZE with a set of flags that will be set to indicate in which situations the task should

Re: [PATCH] Fix a bad bug in read_cache_page_async()

2007-05-09 Thread Glauber de Oliveira Costa
page = __read_cache_page(mapping, index, filler, data); if (IS_ERR(page)) - goto out; + goto error; any reason for not simply returning page here? page = ERR_PTR(err); + goto error; same -- Glauber de Oliveira Costa.

Re: Fwd: [ASoC] Mic record is not working with wm9713 ASoC driver

2007-05-09 Thread Liam Girdwood
It's probably best to keep this thread on alsa-dev otherwise things start to get confusing when cross posting occurs. Liam - 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: [rfc] lock bitops

2007-05-09 Thread Nikita Danilov
Nick Piggin writes: Hi, [...] /** + * clear_bit_unlock - Clears a bit in memory with release + * @nr: Bit to clear + * @addr: Address to start counting from + * + * clear_bit() is atomic and may not be reordered. It does s/clear_bit/clear_bit_unlock/ ? + * contain a

Re: [patch 7/9] lguest: the net driver

2007-05-09 Thread Rusty Russell
On Wed, 2007-05-09 at 22:00 +1000, Herbert Xu wrote: Hi Rusty: On Wed, May 09, 2007 at 09:55:25PM +1000, Rusty Russell wrote: NO_CSUM because it really doesn't need a checksum. The LGUEST_NET_F_NOCSUM is only set for local inter-guest networking. If some guest were to route the

Re: [patch 2/9] lguest: the guest code

2007-05-09 Thread Pekka Enberg
Hi Rusty, On 5/9/07, Rusty Russell [EMAIL PROTECTED] wrote: Hmm, where would the error go? Let it propagate: scan_devices - lguest_bus_init - do_initcalls. We probably don't want to panic() if bus_register and device_register fail there either. - To unsubscribe from this list: send

Re: [PATCH 2/2] leds:arch/sh/boards/landisk LEDs supports

2007-05-09 Thread Richard Purdie
On Wed, 2007-05-09 at 20:42 +0900, kogiidena wrote: As far as I can tell, the existing timer trigger can do everything the blink trigger can (and more besides). I want to blink LED in the initial state. Are you after to set that per LED or would some standard configurable default for all LEDs

Re: [patch 128/197] freezer: add try_to_freeze calls to all kernel threads

2007-05-09 Thread Gautham R Shenoy
Hi Stefan, On Wed, May 09, 2007 at 02:06:05PM +0200, Stefan Richter wrote: Pavel Machek wrote: Add try_to_freeze() calls to the remaining kernel threads that do not call try_to_freeze() already, although they set PF_NOFREEZE. In the future we are going to replace PF_NOFREEZE

Re: [PATCH] Fix a bad bug in read_cache_page_async()

2007-05-09 Thread Nick Piggin
On Wed, May 09, 2007 at 01:02:01PM +0100, David Howells wrote: Fix a bad bug in read_cache_page_async() introduced in commit: 6fe6900e1e5b6fa9e5c59aa5061f244fe3f467e2 This adds: mark_page_accessed(page) into the error handling path in read_cache_page_async(). In such a

Re: [rfc] lock bitops

2007-05-09 Thread Nick Piggin
On Wed, May 09, 2007 at 04:08:41PM +0400, Nikita Danilov wrote: Nick Piggin writes: Hi, [...] /** + * clear_bit_unlock - Clears a bit in memory with release + * @nr: Bit to clear + * @addr: Address to start counting from + * + * clear_bit() is atomic and may not be

Re: [patch 3/3] clockevents: Fix resume logic - updated version

2007-05-09 Thread Thomas Gleixner
On Wed, 2007-05-09 at 13:45 +0200, Rafael J. Wysocki wrote: On Wednesday, 9 May 2007 10:59, Thomas Gleixner wrote: On Wed, 2007-05-09 at 01:31 -0700, Andrew Morton wrote: I suspect I just tested the wrong thing yesterday. Let me recheck just these patches against 2.6.21. yup,

Re: [PATCH] Fix a bad bug in read_cache_page_async()

2007-05-09 Thread David Howells
Glauber de Oliveira Costa [EMAIL PROTECTED] wrote: any reason for not simply returning page here? Not particularly. David - To unsubscribe from this list: send the line unsubscribe linux-kernel in the body of a message to [EMAIL PROTECTED] More majordomo info at

[PATCH] pci-quirks: disable MSI on RS400-200 and RS480, take #2

2007-05-09 Thread Tejun Heo
MSI doesn't work on RS400-200 and RS480 requiring pci=nomsi kernel boot parameter for ahci to work. This patch renames quirk_svw_msi() to quirk_disable_all_msi() and use it to disable MSI on those chips. http://thread.gmane.org/gmane.linux.ide/17820

Re: [linux-usb-devel] Bug creating USB endpoints in 2.6.20.x (kernel bug 8198)

2007-05-09 Thread Chris Rankin
--- Tejun Heo [EMAIL PROTECTED] wrote: So, we can fix the problem Chris is seeing by breaking module unload (by allowing it to unload too early). It doesn't sound too hot but module unloading race is much less likely than sysfs node deletion/open race. Yikes! Just temporary breakage, I hope

Re: kmem_cache_init failure (was Re: 2.6.21-mm1)

2007-05-09 Thread Frederik Deweerdt
On Wed, May 09, 2007 at 11:00:46AM +0200, Andi Kleen wrote: On Wed, May 09, 2007 at 09:40:24AM +0200, Jan Beulich wrote: I've bisected it down to the x86_64-mm-cpa-kerneltext.patch and the + if (!pte_present(*kpte)) + return 0; I the most recent version of the

Re: [patch 7/9] lguest: the net driver

2007-05-09 Thread Jeff Garzik
[EMAIL PROTECTED] wrote: +static void transfer_packet(struct net_device *dev, + struct sk_buff *skb, + unsigned int peernum) +{ + struct lguestnet_info *info = dev-priv; + struct lguest_dma dma; + + skb_to_dma(skb,

Re: [GIT PATCH] UIO patches for 2.6.21

2007-05-09 Thread Pavel Machek
Hi! I agree, if we make it entirely clear that the flag is nonpolitical. Hm, I don't know, what makes this different from the fact that we can mmap PCI device space today through the proc and sysfs entries? That's how X gets direct access to the hardware for a number of different

Re: [patch 2/9] lguest: the guest code

2007-05-09 Thread Rusty Russell
On Wed, 2007-05-09 at 15:13 +0300, Pekka Enberg wrote: Hi Rusty, On 5/9/07, Rusty Russell [EMAIL PROTECTED] wrote: Hmm, where would the error go? Let it propagate: scan_devices - lguest_bus_init - do_initcalls. We probably don't want to panic() if bus_register and device_register

Re: 2.6.22 -mm merge plans -- vm bugfixes

2007-05-09 Thread Nick Piggin
Hugh Dickins wrote: On Wed, 2 May 2007, Nick Piggin wrote: But I'm pretty sure (to use your words!) regular truncate was not racy before: I believe Andrea's sequence count was handling that case fine, without a second unmap_mapping_range. OK, I think you're right. I _think_ it should also

Re: [patch] Add the device IDs for AMD/ATI SB700

2007-05-09 Thread Jeff Garzik
Henry Su wrote: From: [EMAIL PROTECTED] Adding the device ID for AMD/ATI SB700. Signed-off-by:henry su [EMAIL PROTECTED] Time to train new people... You need to split up your patches: * send I2C and PCI quirk patches to GregKH * send drivers/ide/* stuff to Bart * send drivers/ata/* patches to

Re: Please revert 5adc55da4a7758021bcc374904b0f8b076508a11 (PCI_MULTITHREAD_PROBE)

2007-05-09 Thread Cornelia Huck
On Wed, 9 May 2007 11:16:06 +0200, Duncan Sands [EMAIL PROTECTED] wrote: The main difficulties encountered with usbatm were: (1) avoiding race conditions on device disconnect; (2) providing a way to cancel heavy_init. As mentioned in my original email, heavy_init could run forever depending

Re: nbd problem.

2007-05-09 Thread Rogier Wolff
On Wed, May 09, 2007 at 01:10:49PM +0200, Rogier Wolff wrote: On Tue, May 08, 2007 at 01:33:52PM -0700, Satyam Sharma wrote: On 5/8/07, Rogier Wolff [EMAIL PROTECTED] wrote: Hi, The nbd client still reliably hangs when I use it. Someone suggested to use

Re: [patch 7/9] lguest: the net driver

2007-05-09 Thread Andi Kleen
__pa() should not be used in any driver. Besides that was always not supposed to work. RELOC_HIDE or __pa_symbol. -Andi - To unsubscribe from this list: send the line unsubscribe linux-kernel in the body of a message to [EMAIL PROTECTED] More majordomo info at

[PATCH] Fix a bad bug in read_cache_page_async() [try #2]

2007-05-09 Thread David Howells
Fix a bad bug in read_cache_page_async() introduced in commit: 6fe6900e1e5b6fa9e5c59aa5061f244fe3f467e2 This adds: mark_page_accessed(page) into the error handling path in read_cache_page_async(). In such a case, 'page' holds the error code. Signed-off-by: David Howells

[PATCH] AFS: Write support fixes

2007-05-09 Thread David Howells
AFS write support fixes: (1) Support large files using the 64-bit file access operations if available on the server. (2) Use kmap_atomic() rather than kmap() in afs_prepare_page(). (3) Don't do stuff in afs_writepage() that's done by the caller. Signed-off-by: David Howells [EMAIL

[PATCH 0/6] IB/ehca: Assorted patches

2007-05-09 Thread Joachim Fenkes
Here's a set of patches containing various improvements and bugfixes for the IBM eHCA InfiniBand driver, bumping the version number to SVNEHCA_0023. The patches are, in detail: #1 - Serialize hypervisor calls in ehca_register_mr() #2 - correctly set GRH mask bit in ehca_modify_qp() #3 - Fix

Re: [patch 3/3] clockevents: Fix resume logic - updated version

2007-05-09 Thread Rafael J. Wysocki
On Wednesday, 9 May 2007 13:45, Rafael J. Wysocki wrote: On Wednesday, 9 May 2007 10:59, Thomas Gleixner wrote: On Wed, 2007-05-09 at 01:31 -0700, Andrew Morton wrote: I suspect I just tested the wrong thing yesterday. Let me recheck just these patches against 2.6.21. yup, same

BUG: soft lockup detected on CPU#0!

2007-05-09 Thread Ralf Hildebrandt
I got this after starting 2.6.21.1 (see below, I posted complete dmesg output): Linux version 2.6.21.1 ([EMAIL PROTECTED]) (gcc version 4.1.2 20061115 (prerelease) (Debian 4.1.1-21)) #1 SMP Thu May 3 15:48:38 CEST 2007 BIOS-provided physical RAM map: sanitize start sanitize end copy_e820_map()

<    3   4   5   6   7   8   9   10   11   12   >