Linux SDIO card Support updates?

2007-05-23 Thread krishans
Hi Pierre, I saw a mail thread about you working on SDIO support in existing MMC stack in Linux, I was wondering whether you have some updates (patches) on this. As we have a plan to develop the SDIO layer and use the existing MMC stack (for memory portion of combo cards and memory only cards).

[PATCH] [POWERPC] suppress modpost warnings for references from the .toc

2007-05-23 Thread Stephen Rothwell
We should do better here by effetively dereferencing references to the .toc (or the .got2) section, but that is much harder. Signed-off-by: Stephen Rothwell [EMAIL PROTECTED] --- scripts/mod/modpost.c |5 - 1 files changed, 4 insertions(+), 1 deletions(-) -- Cheers, Stephen Rothwell

Re: [PATCH 6/6] UNUSUAL_DEV: Sync up some reported devices from Ubuntu

2007-05-23 Thread Phil Dibowitz
Ben Collins wrote: Various unusual dev entries accumulated from Ubuntu bug reports. CC: Phil Dibowitz [EMAIL PROTECTED] NACK. Two fixes I'd like to see fixed. +/* SanDisk that has a second LUN for a driver ISO, reported by + * Ben Collins [EMAIL PROTECTED] */ +UNUSUAL_DEV( 0x0781, 0x5406,

Re: maximum count of thermal zones and fans in acpi?

2007-05-23 Thread Len Brown
On Wednesday 23 May 2007 13:07, Nico Golde wrote: Hi, I am currently implementing a general purpose shared library for acpi focused on all the tools giving acpi information like battery, thermal zones, fans, etc. Note that /proc/acpi is going away in the long term. The ideal is that things

how to allow board writers to customize driver behavior (watchdog here)

2007-05-23 Thread Mike Frysinger
the Blackfin on-chip watchdog has controllable behavior ... it can be configured to reset the processor (like a normal watchdog), or it can be configured to simply generate an interrupt. i can see embedded systems where simply resetting the system is not desirable ... perhaps it's the control

Re: How to produce a core

2007-05-23 Thread gshan
Willy Tarreau wrote: On Thu, May 24, 2007 at 11:28:15AM +0800, gshan wrote: This morning, I tried command kill -7 [pid] but didn't see the core file. Anybody has ideas? do the following before starting your program : # ulimit -c unlimited You can check before and after that the core

[PATCH netdev] wrong timeout value in sk_wait_data()

2007-05-23 Thread Vasily Averin
sys_setsockopt() do not check properly timeout values for SO_RCVTIMEO/SO_SNDTIMEO, for example it's possible to set negative timeout values. POSIX do not defines behaviour for sys_setsockopt in case negative timeouts, but requires that setsockopt() shall fail with -EDOM if the send and receive

Re: [RFC] LZO de/compression support - take 3

2007-05-23 Thread Nitin Gupta
Hi Satyam, Thanks for you comments. On 5/24/07, Satyam Sharma [EMAIL PROTECTED] wrote: On 5/23/07, Nitin Gupta [EMAIL PROTECTED] wrote: diff --git a/include/linux/lzo1x.h b/include/linux/lzo1x.h [...] +/* Size of temp buffer (workmem) required by lzo1x_compress */ +#define

Re: [PATCH netdev] wrong timeout value in sk_wait_data()

2007-05-23 Thread Eric Dumazet
Vasily Averin a écrit : sys_setsockopt() do not check properly timeout values for SO_RCVTIMEO/SO_SNDTIMEO, for example it's possible to set negative timeout values. POSIX do not defines behaviour for sys_setsockopt in case negative timeouts, but requires that setsockopt() shall fail with -EDOM

Re: [PATCH] add notime boot option

2007-05-23 Thread Rene Herman
On 05/23/2007 10:55 PM, Randy Dunlap wrote: That's a good source of confusion. To me, notime means something like don't bother calculating time, instead of the proposed behavior. Can't it be something like 'nologts' (no log timestamps) or nots or notimestamps or nologtime instead

Re: [PATCH] add notime boot option

2007-05-23 Thread Randy Dunlap
Rene Herman wrote: On 05/23/2007 10:55 PM, Randy Dunlap wrote: That's a good source of confusion. To me, notime means something like don't bother calculating time, instead of the proposed behavior. Can't it be something like 'nologts' (no log timestamps) or nots or notimestamps or

Re: [PATCH] add notime boot option

2007-05-23 Thread Rene Herman
On 05/24/2007 07:08 AM, Randy Dunlap wrote: Rene Herman wrote: Okay. I would by the way not be against turning the timestamping off by default and turning it _on_ with a timestamps or logtime or whatever option. The information is sometimes handy for seeing the (clustering of) event times

[rfe] easier customization of kconfig for non-Linux projects

2007-05-23 Thread Mike Frysinger
since kconfig is such a nice build system, more projects other than the Linux kernel have started to integrate it (like uClibc and busybox) ... it'd be nice if it were easier to customize for each project so that when we pull down the latest version, we dont have to go through and tweak all of the

Re: Google are using linux kernel - what do you know about the source?

2007-05-23 Thread Jan Engelhardt
On May 23 2007 19:57, Jan Engelhardt wrote: Please read the FAQ at http://www.tux.org/lkml/ There you will notice that use of Linux KERNEL does not mean that your must publish sources for your proprietary application, or to make it easy for somebody to make a distribution competeting with

Re: [RFC PATCH] PCI MMCONFIG: add validation against ACPI motherboard resources

2007-05-23 Thread Robert Hancock
Jesse Barnes wrote: On Wednesday, May 23, 2007 8:20:14 Linus Torvalds wrote: On Wed, 23 May 2007, Linus Torvalds wrote: Sure. I think mmconfig is perfectly sane if it falls back to conf1 accesses for legacy stuff.. .. but without a regression, it's obviously a post-2.6.22 thing, I guess I

Re: 2.6.21.1 fails to suspend/resume to disk (sort of)

2007-05-23 Thread Romano Giannetti
On Wed, 2007-05-23 at 18:57 +0200, Rafael J. Wysocki wrote: On Wednesday, 23 May 2007 11:57, Romano Giannetti wrote: On Wed, 2007-05-23 at 11:05 +0200, Rafael J. Wysocki wrote: Hi, On Wednesday, 23 May 2007 09:25, Romano Giannetti wrote: http://lkml.org/lkml/2007/5/23/38

Re: how to allow board writers to customize driver behavior (watchdog here)

2007-05-23 Thread Paul Mundt
On Thu, May 24, 2007 at 12:21:47AM -0400, Mike Frysinger wrote: is this completely bad mojo ? is there some other mechanism that provides what i want and i just dont know about it ? or do i just make people change the driver to fit their application, thus throwing out the idea of keeping all

[PATCH netdev] wrong timeout value in sk_wait_data() v2

2007-05-23 Thread Vasily Averin
sys_setsockopt() do not check properly timeout values for SO_RCVTIMEO/SO_SNDTIMEO, for example it's possible to set negative timeout values. POSIX do not defines behaviour for sys_setsockopt in case negative timeouts, but requires that setsockopt() shall fail with -EDOM if the send and receive

Re: [PATCH] [scsi] Remove __GFP_DMA

2007-05-23 Thread Robert Hancock
Alan Cox wrote: On Wed, 23 May 2007 15:17:08 -0400 Salyzyn, Mark [EMAIL PROTECTED] wrote: The 31 bit limit for some of these cards is a problem, we currently only do __GFP_DMA for bounce buffer sg elements allocated for user supplied references in ioctls. I figure we should be using

Re: [PATCH] Fix crash with irqpoll due to the IRQF_IRQPOLL flag

2007-05-23 Thread Vivek Goyal
On Wed, May 23, 2007 at 09:01:04AM -0700, Linus Torvalds wrote: On Tue, 22 May 2007, Bernhard Walle wrote: o System crashes if booted with irqpoll command line option. o Problem happens because Inside note_interrupt() we are accessing desc-action-flag without taking the

Nvidiafb issues on Inspiron 8100

2007-05-23 Thread Dmitry Torokhov
Hi Antonino, I am having the following issues on my Dell Inspiron 8100. They are not new but I just got around to report them. With CONFIG_FB_NVIDIA_I2C I get 1600x1200 resolution but pixels swarming and it is unuseable. There are following messages in dmesg (note complaints from i2c): May 24

Re: [INPUT] i8042 not detecting AUX port

2007-05-23 Thread Dmitry Torokhov
On Wednesday 23 May 2007 16:41, Emmanuel Fusté wrote: Hi, Hi, On Tuesday 22 May 2007 18:23, Emmanuel Fusté wrote: Hello, Just to let you know that since I jumped from 2.6.16 to 2.6.20.7 and 2.6.21, I need the i8042.noloop option to get the AUX port detected. Without this

Re: bad networking related lag in v2.6.22-rc2

2007-05-23 Thread Patrick McHardy
David Miller wrote: * Herbert Xu [EMAIL PROTECTED] wrote: [NET_SCHED]: Fix qdisc_restart return value when dequeue is empty Applied, thanks everyone. Even though it didn't fix this problem, this patch I sent earlier is also needed. [NET_SCHED]: sch_htb: fix event cache time calculation The

[GIT PULL] MMC updates

2007-05-23 Thread Pierre Ossman
Linus, please pull from git://git.kernel.org/pub/scm/linux/kernel/git/drzeus/mmc.git for-linus to receive the following updates: MAINTAINERS | 29 + drivers/mmc/card/block.c | 18 -- drivers/mmc/card/queue.c | 35

raw format of gitweb does not work.

2007-05-23 Thread Romano Giannetti
Try: http://git.kernel.org/?p=linux/kernel/git/torvalds/linux-2.6.git;a=blobdiff;f=kernel/power/main.c;h=b98b80ccf4373d980f080d1e468a5d68244acf36;hp=40d56a31245e96e7e70557faaea98de382286614;hb=52ade9b3b97fd3bea42842a056fe0786c28d0555;hpb=7b104bcb8e460e45a1aebe3da9b86aacdb4cab12 and then press

Re: NCPFS 255 character support?

2007-05-23 Thread Chris Malton
Alan, If NCPFS has little use these days, how are the linux users meant to sign on to Novell networks without using the (IMHO) bloatware provided by Novell? In fact, Novell's client only work on SLED first time lucky (everything else needs extra libs and a lot of work) so it's hardly much

<    6   7   8   9   10   11