Re: [PATCH] cpuset and sched domains: sched_load_balance flag

2007-10-03 Thread Nick Piggin
On Tuesday 02 October 2007 04:15, Paul Jackson wrote: Nick wrote: which you could equally achieve by adding a second set of sched domains (and the global domains could keep globally balancing). Hmmm ... this could be the key to this discussion. Nick - can two sched domains overlap? And

Re: [PATCH] Fix SH DMAC code to handle PVR2 cascade

2007-10-03 Thread Paul Mundt
On Tue, Oct 02, 2007 at 10:09:27PM +0100, Adrian McMenamin wrote: Fix SH DMAC code to correctly handle PVR2 cascade DMA. This updates http://lkml.org/lkml/2007/10/2/276 (I decided it was better to have the true size of the transfer put in via the API and refactor this here. And

Re: [PATCH] mark read_crX() asm code as volatile

2007-10-03 Thread H. Peter Anvin
Nick Piggin wrote: This should work because the result gets used before reading again: read_cr3(a); write_cr3(a | 1); read_cr3(a); But this might be reordered so that b gets read before the write: read_cr3(a); write_cr3(a | 1); read_cr3(b); ? I don't see how, as write_cr3 clobbers memory.

[patch] sched: fix sched-domains partitioning by cpusets

2007-10-03 Thread Ingo Molnar
* Nick Piggin [EMAIL PROTECTED] wrote: BTW. as far as the sched.c changes in your patch go, I much prefer the partition_sched_domains API: http://lkml.org/lkml/2006/10/19/85 The caller should manage everything itself, rather than partition_sched_domains doing half of the memory

Re: Man page for revised timerfd API

2007-10-03 Thread Michael Kerrisk
Davide Libenzi wrote: On Thu, 27 Sep 2007, Michael Kerrisk wrote: Davide, A further question: what is the expected behavior in the following scenario: 1. Create a timerfd and arm it. 2. Wait until M timer expirations have occurred 3. Modify the settings of the timer 4. Wait for N

Re: [patch] sched: fix sched-domains partitioning by cpusets

2007-10-03 Thread Paul Jackson
Ingo wrote: i've merged your patch to my scheduler queue - see the patch below. (And could you send me your SoB line too?) Paul, if we went with the patch below, what else would be needed for your purposes? Nick and I already resolved that, when he first posted this patch in October of 2006.

Re: [PATCH] cpuset and sched domains: sched_load_balance flag

2007-10-03 Thread Paul Jackson
Yup - it's asking for load balancing over that set. That is why it is called that. There's no idea here of better or worse load balancing, that's an internal kernel scheduler subtlety -- it's just a request that load balancing be done. OK, if it prohibits balancing when

Re: wibbling over the cpuset shed domain connnection

2007-10-03 Thread Paul Jackson
Nick wrote: If code isn't ready to go, it doesn't need to rush, it can just be untangled or fixed properly etc. True ... though we seem to be going in circles now. I doubt taking longer will help much; we should strive to resolve this now, if we can. -- I won't rest till

[bootup warning] driver has no release callback, .23-rc9

2007-10-03 Thread Ingo Molnar
FYI, there are 7 V4L drivers that produce this (non-fatal) warning: [ 132.060848] videodev: vivi has no release callback. Please fix your driver for proper sysfs support, see http://lwn.net/Articles/36850/ [ 132.124436] videodev: Aztech radio has no release callback. Please fix your driver

Re: Network slowdown due to CFS

2007-10-03 Thread Jarek Poplawski
On 02-10-2007 17:37, David Schwartz wrote: ... So now I not only have to come up with an example where sched_yield is the best practical choice, I have to come up with one where sched_yield is the best conceivable choice? Didn't we start out by agreeing these are very rare cases? Why are we

Re: PROBLEM: high load average when idle

2007-10-03 Thread Anders Boström
AvdV == Arjan van de Ven [EMAIL PROTECTED] writes: AvdV Anders Boström wrote: Hi! My computer suffers from high load average when the system is idle, introduced by commit 44d306e1508fef6fa7a6eb15a1aba86ef68389a6 . Long story: 2.6.20 and all later versions I've tested,

Re: [patch] sched: fix sched-domains partitioning by cpusets

2007-10-03 Thread Ingo Molnar
* Paul Jackson [EMAIL PROTECTED] wrote: Batch schedulers need to be able to specify where they need load balancing and where they don't, and they can't use the 'cpu_exclusive' flag. The defining characteristic of 'cpu_exclusive' is no overlap of CPUs with sibling cpusets. That is

Re: [PATCH] cpuset and sched domains: sched_load_balance flag

2007-10-03 Thread Paul Jackson
Nick wrote: BTW. as far as the sched.c changes in your patch go, I much prefer the partition_sched_domains API: http://lkml.org/lkml/2006/10/19/85 The caller should manage everything itself, rather than partition_sched_domains doing half of the memory allocation. Please take a closer look

Re: [PATCH] sky2: jumbo frame regression fix

2007-10-03 Thread Ian Kumlien
On tis, 2007-10-02 at 21:59 -0700, Stephen Hemminger wrote: On Wed, 03 Oct 2007 03:34:34 +0200 Ian Kumlien [EMAIL PROTECTED] wrote: On tis, 2007-10-02 at 18:02 -0700, Stephen Hemminger wrote: Remove unneeded check that caused problems with jumbo frame sizes. The check was recently

Re: [TOMOYO 03/15](repost) Memory and pathname management functions.

2007-10-03 Thread James Morris
On Tue, 2 Oct 2007, Kentaro Takeda wrote: +/** + * tmy_alloc - allocate memory for temporary purpose. + * @size: requested size in bytes. + * + * Returns '\0'-initialized memory region on success. + * Returns NULL on failure. + * + * This function allocates memory for keeping ACL entries.

Re: Network slowdown due to CFS

2007-10-03 Thread Jarek Poplawski
On 02-10-2007 08:06, Ingo Molnar wrote: * David Schwartz [EMAIL PROTECTED] wrote: ... I'm not familiar enough with CFS' internals to help much on the implementation, but there may be some simple compromise yield that might work well enough. How about simply acting as if the task used up

[PATCH 0/3] signal: alternative signal stack wraparound occurs

2007-10-03 Thread Shi Weihua
Hi everyone, If a process uses alternative signal stack by using sigaltstack(), then that stack overflows and stack wraparound occurs. Simple Explanation: The accurate esp order is A,B,C,D,... But now the esp points to A,B,C and A,B,C again. When I tested sigaltstack() and try to kill a same

[PATCH 1/3] signal(i386): alternative signal stack wraparound occurs

2007-10-03 Thread Shi Weihua
Fixing alternative signal stack wraparound. If a process uses alternative signal stack by using sigaltstack() and that stack overflow, stack wraparound occurs. This patch checks whether the signal frame is on the alternative stack. If the frame is not on there, kill a signal SIGSEGV to the

[PATCH 2/3] signal(ia64): alternative signal stack wraparound occurs

2007-10-03 Thread Shi Weihua
Fixing alternative signal stack wraparound. If a process uses alternative signal stack by using sigaltstack() and that stack overflow, stack wraparound occurs. This patch checks whether the signal frame is on the alternative stack. If the frame is not on there, kill a signal SIGSEGV to the

[PATCH 3/3] signal(x86-64): alternative signal stack wraparound occurs

2007-10-03 Thread Shi Weihua
Fixing alternative signal stack wraparound. If a process uses alternative signal stack by using sigaltstack() and that stack overflow, stack wraparound occurs. This patch checks whether the signal frame is on the alternative stack. If the frame is not on there, kill a signal SIGSEGV to the

[PATCH] Add manufacturer and card id of teltonica pcmcia modems

2007-10-03 Thread Attila Kinali
Hi, This patch adds the manufacturer and card id of teltonica pcmcia modems to serial_cs.c Signed-off-by: Attila Kinali [EMAIL PROTECTED] --- linux-2.6.22.7/drivers/serial/serial_cs.c.orig 2007-10-03 09:38:53.0 +0200 +++ linux-2.6.22.7/drivers/serial/serial_cs.c 2007-10-03

Re: [PATCH 03/33] task containersv11 add tasks file interface

2007-10-03 Thread Paul Jackson
Cgroup (aka container) code review: Except for the very last item below, my other comments are minor. And the last item is pretty easy too - just more important. Overall - nice stuff. I like this generalization of the cpuset hierarchy. Thanks. === Review comments on

Re: linux cache routines for Write-back cache policy on MIPS24KE

2007-10-03 Thread veerasena reddy
Hi Geert, Thanks for your repsonse. In linux-2.6.18 (for MIPS24KE processor): suppose if i want to do flush only then which API i should use? Similarly, if i want to do invalidation only which API i should use? Thanks again. Regards, Veerasena. --- Geert Uytterhoeven [EMAIL PROTECTED] wrote:

Re: Memory controller merge (was Re: -mm merge plans for 2.6.24)

2007-10-03 Thread Balbir Singh
Hugh Dickins wrote: On Tue, 2 Oct 2007, Balbir Singh wrote: Andrew Morton wrote: memory-controller-add-documentation.patch ... kswapd-should-only-wait-on-io-if-there-is-io.patch Hold. This needs a serious going-over by page reclaim people. I mostly agree with your decision. I am a

Re: Man page for revised timerfd API

2007-10-03 Thread Matti Aarnio
On Wed, Oct 03, 2007 at 08:50:09AM +0200, Michael Kerrisk wrote: Davide Libenzi wrote: On Thu, 27 Sep 2007, Michael Kerrisk wrote: Davide, A further question: what is the expected behavior in the following scenario: 1. Create a timerfd and arm it. 2. Wait until M timer

Re: Network slowdown due to CFS

2007-10-03 Thread Ingo Molnar
* Jarek Poplawski [EMAIL PROTECTED] wrote: firstly, there's no notion of timeslices in CFS. (in CFS tasks earn a right to the CPU, and that right is not sliced in the traditional sense) But we tried a conceptually similar thing [...] From kernel/sched_fair.c: /* * Targeted

Re: Linux 2.6.23-rc9 and a heads-up for the 2.6.24 series..

2007-10-03 Thread Ingo Molnar
* Mel Gorman [EMAIL PROTECTED] wrote: On (02/10/07 14:15), Ingo Molnar didst pronounce: * Mel Gorman [EMAIL PROTECTED] wrote: Dirt. Booting with profile=sleep,2 is broken in 2.6.23-rc9 and 2.6.23-rc8 but working in 2.6.22. I was checking it out as part of a discussion in

Re: Linux 2.6.23-rc9 and a heads-up for the 2.6.24 series..

2007-10-03 Thread Ingo Molnar
* Mel Gorman [EMAIL PROTECTED] wrote: Nice one Ingo - got it first try. The problem commit was dd41f596cda0d7d6e4a8b139ffdfabcefdd46528 and it's clear that the code removed in this commit is put back by this latest patch. When applied, profile=sleep works as long as

Re: [PATCH] mark read_crX() asm code as volatile

2007-10-03 Thread Kirill Korotaev
Arjan, I can experiment with any constraints if you suggest which one. From our experiments with gcc, it compares asm strings (sic!!!) to find matches to be merged! Sigh... Below are 2 programs which differ in one space in read_cr3_b() asm statement. The first one compiles incorrectly, while 2nd

Re: [PATCH] sky2: jumbo frame regression fix

2007-10-03 Thread iank
On Tue, Oct 02, 2007 at 09:59:14PM -0700, Stephen Hemminger wrote: On Wed, 03 Oct 2007 03:34:34 +0200 Ian Kumlien [EMAIL PROTECTED] wrote: On tis, 2007-10-02 at 18:02 -0700, Stephen Hemminger wrote: Remove unneeded check that caused problems with jumbo frame sizes. The check was

Re: [patch] sched: fix sched-domains partitioning by cpusets

2007-10-03 Thread Nick Piggin
On Wednesday 03 October 2007 16:56, Paul Jackson wrote: I must NAQ this patch, and I'm surprised to see Nick propose it again, as I thought he had already agreed that it didn't suffice. Sorry for the confusion: I only meant the sched.c part of that patch, not the full thing. - To unsubscribe

Re: [PATCH] mark read_crX() asm code as volatile

2007-10-03 Thread Nick Piggin
On Wednesday 03 October 2007 16:18, H. Peter Anvin wrote: Nick Piggin wrote: This should work because the result gets used before reading again: read_cr3(a); write_cr3(a | 1); read_cr3(a); But this might be reordered so that b gets read before the write: read_cr3(a);

[PATCH] task containersv11 add tasks file interface fix for cpusets

2007-10-03 Thread Paul Jackson
From: Paul Jackson [EMAIL PROTECTED] The code in kernel/cgroup.c attach_task() which skips the attachment of a task to the group it is already in has to be removed. Cpusets depends on reattaching a task to its current cpuset, in order to trigger updating the cpus_allowed mask in the task struct.

Re: [PATCH] mark read_crX() asm code as volatile

2007-10-03 Thread Andi Kleen
How does the compiler know it doesn't depend on memory? When it has no m (or equivalent like g) constrained argument and no memory clobber. How do you say it depends on memory? You add any of the above. You really need something as heavy as volatile? You could do a memory clobber, but

[bug] crash when reading /proc/mounts (was: Re: Linux 2.6.23-rc9 and a heads-up for the 2.6.24 series..)

2007-10-03 Thread Ingo Molnar
hm, i just triggered the procfs crash below with -rc9 on a testbox. Config attached. It's easy to reproduce it via 'service sshd restart'. The crash site is: (gdb) list *0xc017599d 0xc017599d is in seq_path (fs/seq_file.c:354). 349 if (m-count m-size) { 350

Re: [PATCH] cpuset and sched domains: sched_load_balance flag

2007-10-03 Thread Nick Piggin
On Wednesday 03 October 2007 16:58, Paul Jackson wrote: Yup - it's asking for load balancing over that set. That is why it is called that. There's no idea here of better or worse load balancing, that's an internal kernel scheduler subtlety -- it's just a request that load balancing

Re: [bug] crash when reading /proc/mounts (was: Re: Linux 2.6.23-rc9 and a heads-up for the 2.6.24 series..)

2007-10-03 Thread Ingo Molnar
update: occasionally the reading of /proc/mounts succeeds, and it's: open(/proc/mounts, O_RDONLY|O_LARGEFILE) = 3 fstat64(3, {st_mode=S_IFREG|0444, st_size=0, ...}) = 0 read(3, rootfs / rootfs rw 0 0\n/dev/root..., 4096) = 290 write(1, rootfs / rootfs rw 0 0\n/dev/root..., 290rootfs / rootfs

Re: [PATCH] cpuset and sched domains: sched_load_balance flag

2007-10-03 Thread Nick Piggin
On Wednesday 03 October 2007 17:25, Paul Jackson wrote: Nick wrote: BTW. as far as the sched.c changes in your patch go, I much prefer the partition_sched_domains API: http://lkml.org/lkml/2006/10/19/85 The caller should manage everything itself, rather than partition_sched_domains

Re: Network slowdown due to CFS

2007-10-03 Thread Jarek Poplawski
On Wed, Oct 03, 2007 at 10:16:13AM +0200, Ingo Molnar wrote: * Jarek Poplawski [EMAIL PROTECTED] wrote: firstly, there's no notion of timeslices in CFS. (in CFS tasks earn a right to the CPU, and that right is not sliced in the traditional sense) But we tried a conceptually similar

Re: [patch 2/2] getattr - fill the size of FIFOs

2007-10-03 Thread Bodo Eggert
Jan Engelhardt [EMAIL PROTECTED] wrote: [PATCH]: Fill the size of FIFOs Instead of reporting 0 in size when stating() a FIFO -- Whenever you have plenty of ammo, you never miss. Whenever you are low on ammo, you can't hit the broad side of a barn. Friß, Spammer: [EMAIL PROTECTED] [EMAIL

Re: Network slowdown due to CFS

2007-10-03 Thread Ingo Molnar
* Jarek Poplawski [EMAIL PROTECTED] wrote: On Wed, Oct 03, 2007 at 10:16:13AM +0200, Ingo Molnar wrote: * Jarek Poplawski [EMAIL PROTECTED] wrote: firstly, there's no notion of timeslices in CFS. (in CFS tasks earn a right to the CPU, and that right is not sliced in the

Re: [bug] crash when reading /proc/mounts (was: Re: Linux 2.6.23-rc9 and a heads-up for the 2.6.24 series..)

2007-10-03 Thread Ingo Molnar
* Ingo Molnar [EMAIL PROTECTED] wrote: nodev /debug debugfs rw 0 0 ) = 290 read(3, , 4096) = 0 close(3)= 0 there's nothing particularly interesting in it. (perhaps debugfs) disabling debugfs makes the crash go away so it's debugfs

Re: [patch] sched: fix sched-domains partitioning by cpusets

2007-10-03 Thread Paul Jackson
Nick wrote: Sorry for the confusion: I only meant the sched.c part of that patch, not the full thing. Ah - ok. We're getting closer then. Good. Let me be sure I've got this right then. You prefer the interface from your proposed patch, by which the cpuset code passes sched domain requests

Re: [bug] crash when reading /proc/mounts (was: Re: Linux 2.6.23-rc9 and a heads-up for the 2.6.24 series..)

2007-10-03 Thread Ingo Molnar
* Ingo Molnar [EMAIL PROTECTED] wrote: -CONFIG_MAC80211_DEBUGFS=y it's CONFIG_MAC80211_DEBUGFS=y causing the crash. Ingo - 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] lockstat: documentation

2007-10-03 Thread Peter Zijlstra
Thanks Randy! update patch below. --- Subject: lockstat: documentation Provide some documentation for CONFIG_LOCK_STAT Signed-off-by: Peter Zijlstra [EMAIL PROTECTED] --- Documentation/lockstat.txt | 120 + lib/Kconfig.debug |2 2

Re: [patch] sched: fix sched-domains partitioning by cpusets

2007-10-03 Thread Ingo Molnar
* Paul Jackson [EMAIL PROTECTED] wrote: There might be an even simpler way. If the kernel/sched.c routines detach_destroy_domains() and build_sched_domains() were exposed as external routines, then the cpuset code could call them directly, removing the partition_sched_domains() routine

Re: [PATCH] Fix blktrace setup 32-bit ioctl on 64-bit kernels

2007-10-03 Thread Arnd Bergmann
On Tuesday 02 October 2007, Jens Axboe wrote: Hi Arnd, Updated patch below. I kept the code in compat_ioctl.c, to me it seems like the cleanest approach. I need the BLKTRACESETUP32 define both in compat_ioctl.c and blktrace.c if I move it, and I need to hard-core the struct size or define

Re: [PATCH] lockstat: documentation

2007-10-03 Thread Ingo Molnar
* Peter Zijlstra [EMAIL PROTECTED] wrote: Thanks Randy! update patch below. --- Subject: lockstat: documentation Provide some documentation for CONFIG_LOCK_STAT Signed-off-by: Peter Zijlstra [EMAIL PROTECTED] Acked-by: Ingo Molnar [EMAIL PROTECTED] Ingo - To unsubscribe

Re: [patch] sched: fix sched-domains partitioning by cpusets

2007-10-03 Thread Paul Jackson
in any case i'd like to see the externally visible API get in foremost - and there now seems to be agreement about that. (yay!) Any internal shaping of APIs can be done flexibly between cpusets and the scheduler. Yup - though Nick and I will have to agree to -some- internal interface between

Re: [PATCH 5/5] lguest: loading bzImage directly

2007-10-03 Thread Chris Malley
Hi guys Would it not be clearer to #include asm/bootparam.h and use the relevant named members of struct setup_header / struct boot_params rather than the hard-coded values 0x202, 0x1F1, 0x214 ? -- Chris On Wed, 2007-10-03 at 09:40 +1000, Rusty Russell wrote: [snip] + u8 hdr[1024]; +

Re: Network slowdown due to CFS

2007-10-03 Thread Jarek Poplawski
On Wed, Oct 03, 2007 at 11:10:58AM +0200, Ingo Molnar wrote: * Jarek Poplawski [EMAIL PROTECTED] wrote: On Wed, Oct 03, 2007 at 10:16:13AM +0200, Ingo Molnar wrote: * Jarek Poplawski [EMAIL PROTECTED] wrote: firstly, there's no notion of timeslices in CFS. (in CFS tasks

Re: [PATCH] cpuset and sched domains: sched_load_balance flag

2007-10-03 Thread Paul Jackson
Yeah -- cpusets are hierarchical. And some of the use cases for which cpusets are designed are hierarchical. But partitioning isn't. Yup. We've got a square peg and a round hole. An impedance mismatch. That's the root cause of this entire wibbling session, in my view. The essential

Re: [patch] sched: fix sched-domains partitioning by cpusets

2007-10-03 Thread Nick Piggin
On Wednesday 03 October 2007 19:21, Paul Jackson wrote: Nick wrote: Sorry for the confusion: I only meant the sched.c part of that patch, not the full thing. Ah - ok. We're getting closer then. Good. Let me be sure I've got this right then. You prefer the interface from your proposed

Re: [bootup warning] driver has no release callback, .23-rc9

2007-10-03 Thread Mauro Carvalho Chehab
Hi Ingo, Em Qua, 2007-10-03 às 09:08 +0200, Ingo Molnar escreveu: FYI, there are 7 V4L drivers that produce this (non-fatal) warning: Those warnings are inoffensive ;) V4L core does provide a generic release callback. Anyway, we'll take a look on it and fix, to avoid the warnings. [

2.6.23-rc8-git2 possible recursive locking when running screen

2007-10-03 Thread Pekka Pietikainen
Seen this a few times lately on a machine running rawhide when running screen (and doing something, it's not automatic. And box works just fine). I think I saw this a few weeks back, so it's not a new regression. = [ INFO: possible recursive locking

Re: [patch] sched: fix sched-domains partitioning by cpusets

2007-10-03 Thread Paul Jackson
Nick, responding to pj, wrote: However a little bit of additional kernel cpuset code could hide this detail from user space, by recognizing when the user had asked to turn off load balancing on some larger cpuset, and by then calling partition_sched_domains() multiple

Re: [patch] sched: fix sched-domains partitioning by cpusets

2007-10-03 Thread Nick Piggin
On Wednesday 03 October 2007 19:39, Paul Jackson wrote: in any case i'd like to see the externally visible API get in foremost - and there now seems to be agreement about that. (yay!) Any internal shaping of APIs can be done flexibly between cpusets and the scheduler. Yup - though Nick and

Re: per BDI dirty limit (was Re: -mm merge plans for 2.6.24)

2007-10-03 Thread Kay Sievers
On Tue, 2007-10-02 at 22:05 +1000, Nick Piggin wrote: On Tuesday 02 October 2007 21:40, Peter Zijlstra wrote: On Tue, 2007-10-02 at 13:21 +0200, Kay Sievers wrote: How about adding this information to the tree then, instead of creating a new top-level hack, just because something that

remove zero_page (was Re: -mm merge plans for 2.6.24)

2007-10-03 Thread Nick Piggin
On Tuesday 02 October 2007 07:22, Andrew Morton wrote: remove-zero_page.patch Linus dislikes it. Probably drop it. I don't know if Linus actually disliked the patch itself, or disliked my (maybe confusingly worded) rationale? To clarify: it is not zero_page that fundamentally causes a

Re: per BDI dirty limit (was Re: -mm merge plans for 2.6.24)

2007-10-03 Thread Peter Zijlstra
On Wed, 2007-10-03 at 12:15 +0200, Kay Sievers wrote: On Tue, 2007-10-02 at 22:05 +1000, Nick Piggin wrote: On Tuesday 02 October 2007 21:40, Peter Zijlstra wrote: On Tue, 2007-10-02 at 13:21 +0200, Kay Sievers wrote: How about adding this information to the tree then, instead of

[PATCH] lockdep: annotate kprobes irq fiddling

2007-10-03 Thread Peter Zijlstra
Hi, The below patch fixes a lockdep error in 2.6.23-rc9 when using tcp_probe. --- Subject: lockdep: annotate kprobes irq fiddling kprobes disables irqs for jprobes, but does not tell lockdep about it. CC: Prasanna S Panchamukhi [EMAIL PROTECTED] CC: Ananth N Mavinakayanahalli [EMAIL

Re: [PATCH] cpuset and sched domains: sched_load_balance flag

2007-10-03 Thread Nick Piggin
On Wednesday 03 October 2007 19:55, Paul Jackson wrote: Yeah -- cpusets are hierarchical. And some of the use cases for which cpusets are designed are hierarchical. But partitioning isn't. Yup. We've got a square peg and a round hole. An impedance mismatch. That's the root cause of

Re: VM/VFS bug with large amount of memory and file systems?

2007-10-03 Thread Pavel Machek
On Sat 2007-09-15 08:27:23, Anton Altaparmakov wrote: Hi, Mark Smith reported a OOM condition when he copies a large (46GiB) file from an NTFS partition (using the stock kernel driver) to /dev/ null (or to a file on ext3, same result). The machine this runs on has an i386 kernel with

Re: [PATCH] lockdep: annotate kprobes irq fiddling

2007-10-03 Thread Ingo Molnar
* Peter Zijlstra [EMAIL PROTECTED] wrote: Hi, The below patch fixes a lockdep error in 2.6.23-rc9 when using tcp_probe. --- Subject: lockdep: annotate kprobes irq fiddling kprobes disables irqs for jprobes, but does not tell lockdep about it. this resolves this warning during an

Re: [bootup warning] driver has no release callback, .23-rc9

2007-10-03 Thread Ingo Molnar
* Mauro Carvalho Chehab [EMAIL PROTECTED] wrote: Hi Ingo, Em Qua, 2007-10-03 às 09:08 +0200, Ingo Molnar escreveu: FYI, there are 7 V4L drivers that produce this (non-fatal) warning: Those warnings are inoffensive ;) V4L core does provide a generic release callback. Anyway, we'll take

Re: Network slowdown due to CFS

2007-10-03 Thread Dmitry Adamushko
On 03/10/2007, Jarek Poplawski [EMAIL PROTECTED] wrote: I can't see anything about clearing. I think, this was about charging, which should change the key enough, to move a task to, maybe, a better place in a que (tree) than with current ways. just a quick patch, not tested and I've not

Re: wibbling over the cpuset shed domain connnection

2007-10-03 Thread Andrew Morton
On Wed, 3 Oct 2007 00:00:58 -0700 Paul Jackson [EMAIL PROTECTED] wrote: Nick wrote: If code isn't ready to go, it doesn't need to rush, it can just be untangled or fixed properly etc. It's close enough for an rc1. True ... though we seem to be going in circles now. I doubt taking longer

Re: linux cache routines for Write-back cache policy on MIPS24KE

2007-10-03 Thread Ralf Baechle
On Mon, Oct 01, 2007 at 01:10:59PM +0100, veerasena reddy wrote: Is there any problem if we use the below API's in linxu-2.6.18 - dma_cache_wback_inv() - dma_cache_wback() - dma_cache_inv() functionality wise, especially in r4k.c i dont see any difference between the

Re: Network slowdown due to CFS

2007-10-03 Thread Dmitry Adamushko
On 03/10/2007, Dmitry Adamushko [EMAIL PROTECTED] wrote: On 03/10/2007, Jarek Poplawski [EMAIL PROTECTED] wrote: I can't see anything about clearing. I think, this was about charging, which should change the key enough, to move a task to, maybe, a better place in a que (tree) than with

Re: remove zero_page (was Re: -mm merge plans for 2.6.24)

2007-10-03 Thread Andrew Morton
On Wed, 3 Oct 2007 03:45:09 +1000 Nick Piggin [EMAIL PROTECTED] wrote: mm-use-pagevec-to-rotate-reclaimable-page.patch mm-use-pagevec-to-rotate-reclaimable-page-fix.patch mm-use-pagevec-to-rotate-reclaimable-page-fix-2.patch

Re: per BDI dirty limit (was Re: -mm merge plans for 2.6.24)

2007-10-03 Thread Martin Knoblauch
--- Peter Zijlstra [EMAIL PROTECTED] wrote: On Mon, 2007-10-01 at 14:22 -0700, Andrew Morton wrote: nfs-remove-congestion_end.patch lib-percpu_counter_add.patch lib-percpu_counter_sub.patch lib-percpu_counter-variable-batch.patch lib-make-percpu_counter_add-take-s64.patch

Re: [PATCH 0/5] sluggish writeback fixes

2007-10-03 Thread Martin Knoblauch
--- Fengguang Wu [EMAIL PROTECTED] wrote: Andrew, The following patches fix the sluggish writeback behavior. They are well understood and well tested - but not yet widely tested. The first patch reverts the debugging -mm only check_dirty_inode_list.patch - which is no longer necessary.

Re: [TOMOYO 03/15](repost) Memory and pathname management functions.

2007-10-03 Thread Tetsuo Handa
Hello. James Morris wrote: Would you please explain why you need another level of memory allocation? What does it do apart from let you check for memory leaks? Difference between tmy_alloc() and kmalloc() are tmy_alloc() allows administrator know how much memory is used by TOMOYO Linux

Re: Network slowdown due to CFS

2007-10-03 Thread Jarek Poplawski
On Wed, Oct 03, 2007 at 12:58:26PM +0200, Dmitry Adamushko wrote: On 03/10/2007, Dmitry Adamushko [EMAIL PROTECTED] wrote: On 03/10/2007, Jarek Poplawski [EMAIL PROTECTED] wrote: I can't see anything about clearing. I think, this was about charging, which should change the key enough, to

Re: Network slowdown due to CFS

2007-10-03 Thread Ingo Molnar
* Dmitry Adamushko [EMAIL PROTECTED] wrote: + se-vruntime += delta_exec_weighted; thanks Dmitry. Btw., this is quite similar to the yield_granularity patch i did originally, just less flexible. It turned out that apps want either zero granularity or infinite

2.6.23-rcX SG_GET_SCSI_ID regression?

2007-10-03 Thread Joerg Platte
Hi, sane is not able to detect my old SCSI scanner with kernel 2.6.23-rc9. The scanner was found with 2.6.22.8. According to strace the behavior of the SG_GET_SCSI_ID ioctl changed: 2.6.22.8: open(/dev/scanner, O_RDWR|O_NONBLOCK|O_EXCL) = 3 ioctl(3, SG_SET_TIMEOUT, 0xbfe40624)= 0 ioctl(3,

Re: [TOMOYO 05/15](repost) Domain transition handler functions.

2007-10-03 Thread Tetsuo Handa
Hello. YOSHIFUJI Hideaki wrote: Introducing your own list is not good. Please use hlist or introduce new slist. James Morris wrote: You're introducing a custom API, which is open-coded repeatedly throughout your module. All linked lists (at least, new ones) must use the standard kernel

Re: pgd_none_or_clear_bad strangeness?

2007-10-03 Thread Nick Piggin
On Tue, Oct 02, 2007 at 05:20:03PM -0500, Matt Mackall wrote: In lib/pagewalk.c, I've been using the various forms of {pgd,pud,pmd}_none_or_clear_bad while walking page tables as that seemed the canonical way to do things. Lately (eg with -rc7-mm1), these have been triggering messages like bad

Re: Point of gpl-only modules (flame)

2007-10-03 Thread linux-os (Dick Johnson)
On Tue, 2 Oct 2007, Jan Engelhardt wrote: On Oct 2 2007 23:49, Jimmy wrote: Anyway, I've been trying to figure out what purpose the gpl-only code serves. What good comes out of disabling people from probing modules that do not have a gpl-compatible license? find /lib/modules/`uname -r`

Re: Network slowdown due to CFS

2007-10-03 Thread Helge Hafting
David Schwartz wrote: * Jarek Poplawski [EMAIL PROTECTED] wrote: BTW, it looks like risky to criticise sched_yield too much: some people can misinterpret such discussions and stop using this at all, even where it's right. Really, i have never seen a _single_ mainstream app

Re: Network slowdown due to CFS

2007-10-03 Thread Jarek Poplawski
On Wed, Oct 03, 2007 at 12:55:34PM +0200, Dmitry Adamushko wrote: ... just a quick patch, not tested and I've not evaluated all possible implications yet. But someone might give it a try with his/(her -- are even more welcomed :-) favourite sched_yield() load. Of course, after some evaluation

Re: [PATCH] cpuset and sched domains: sched_load_balance flag

2007-10-03 Thread Paul Jackson
OK, so to really do anything different (from a non-partitioned setup), you would need to set sched_load_balance=0 for the root cpuset? Yup - exactly. In fact one code fragment in my patch highlights this: /* Special case for the 99% of systems with one, full, sched domain */

Re: [TOMOYO 05/15](repost) Domain transition handler functions.

2007-10-03 Thread YOSHIFUJI Hideaki / 吉藤英明
In article [EMAIL PROTECTED] (at Wed, 3 Oct 2007 20:24:52 +0900), Tetsuo Handa [EMAIL PROTECTED] says: It seems that standard kernel list API does not have singly-linked list manipulation. I'm considering the following list manipulation API. Tstsuo, please name it slist, which is

[PATCH] cpuset and sched domains: sched_load_balance flag fixes

2007-10-03 Thread Paul Jackson
From: Paul Jackson [EMAIL PROTECTED] Thanks to Randy Dunlap for the review that caught some of the following. Some bug fixes and coding style fixes: 1) only one statement per line, please. 2) don't need to guard kfree() calls with a NULL check 3) use kfifo_free, not kfree, if it came from

Re: [mm] Better help needed for UEVENT_HELPER_PATH

2007-10-03 Thread Kay Sievers
On 9/28/07, Frans Pop [EMAIL PROTECTED] wrote: Current help for CONFIG_UEVENT_HELPER_PATH is: Path to uevent helper program forked by the kernel for every uevent. With default value of /sbin/hotplug. Help! I don't have /sbin/hotplug (Debian unstable, using udev). What do I do now?

Re: yield

2007-10-03 Thread Ingo Molnar
* Jarek Poplawski [EMAIL PROTECTED] wrote: On Wed, Oct 03, 2007 at 12:55:34PM +0200, Dmitry Adamushko wrote: ... just a quick patch, not tested and I've not evaluated all possible implications yet. But someone might give it a try with his/(her -- are even more welcomed :-) favourite

Re: [PATCH] cpuset and sched domains: sched_load_balance flag

2007-10-03 Thread Nick Piggin
On Wednesday 03 October 2007 21:38, Paul Jackson wrote: OK, so to really do anything different (from a non-partitioned setup), you would need to set sched_load_balance=0 for the root cpuset? Suppose you do that to hard partition the machine, what happens to newly created tasks like kernel

Re: PROBLEM: high load average when idle

2007-10-03 Thread Thorsten Kranzkowski
On Tue, Oct 02, 2007 at 11:37:31PM +0200, Anders Bostr?m wrote: Hi! My computer suffers from high load average when the system is idle, introduced by commit 44d306e1508fef6fa7a6eb15a1aba86ef68389a6 . Another datapoint: I observe a similar effect on both of my alphas: top - 09:30:43 up 13

Re: [COMPAT] Add compat_merge64 helper

2007-10-03 Thread Ralf Baechle
On Sat, Sep 29, 2007 at 11:48:52AM +0200, Heiko Carstens wrote: +static inline u64 compat_merge64(u32 left, u32 right) +{ +#if defined(__BIG_ENDIAN) + return ((u64)left 32) | right; +#else /* defined (__LITTLE_ENDIAN) */ Could you change that to an #elif please and #error out if

Re: yield

2007-10-03 Thread Jarek Poplawski
On Wed, Oct 03, 2007 at 01:56:46PM +0200, Ingo Molnar wrote: * Jarek Poplawski [EMAIL PROTECTED] wrote: On Wed, Oct 03, 2007 at 12:55:34PM +0200, Dmitry Adamushko wrote: ... just a quick patch, not tested and I've not evaluated all possible implications yet. But someone might

Re: [PATCH] cpuset and sched domains: sched_load_balance flag

2007-10-03 Thread Paul Jackson
These are what I'm worried about, and things like kswapd, pdflush, could definitely use a huge amount of CPU. If you are interested in hard partitioning the system, you most definitely want these things to be balanced across the non-isolated CPUs. But these guys are pinned anyway (or else

I have a problem with signal mask

2007-10-03 Thread Giana
Hello, I have done Streams multiplexers in Linux kernel. Created two multiplexers and I could open these 2, close the file descriptors of each and could link/unlink one with another properly . But after linking, if i close the descriptor of the linked one: my signals are unblocked

Re: [PATCH] cpuset and sched domains: sched_load_balance flag

2007-10-03 Thread Paul Jackson
Nick wrote: OK, so I don't exactly understand you either. To make it simple, can you give a concrete example of a cpuset hierarchy that wouldn't work? It's more a matter of knowing how my third party batch scheduler coders think. They will be off in some corner of their code with a cpuset in

Re: [PATCH] Version 4 (2.6.23-rc8-mm2) Smack: Simplified Mandatory Access Control Kernel

2007-10-03 Thread Paul Moore
On Wednesday 03 October 2007 12:45:42 am Casey Schaufler wrote: From: Casey Schaufler [EMAIL PROTECTED] Smack is the Simplified Mandatory Access Control Kernel. Smack implements mandatory access control (MAC) using labels attached to tasks and data containers, including files, SVIPC, and

Re: [PATCH 1/3] signal(i386): alternative signal stack wraparound occurs

2007-10-03 Thread Mikael Pettersson
On Wed, 03 Oct 2007 17:06:24 +0900, Shi Weihua wrote: Fixing alternative signal stack wraparound. If a process uses alternative signal stack by using sigaltstack() and that stack overflow, stack wraparound occurs. This patch checks whether the signal frame is on the alternative stack. If

Re: [PATCH] Add manufacturer and card id of teltonica pcmcia modems

2007-10-03 Thread Alan Cox
On Wed, 3 Oct 2007 09:58:44 +0200 Attila Kinali [EMAIL PROTECTED] wrote: Hi, This patch adds the manufacturer and card id of teltonica pcmcia modems to serial_cs.c Signed-off-by: Attila Kinali [EMAIL PROTECTED] Acked-by: Alan Cox [EMAIL PROTECTED] - To unsubscribe from this list: send

Re: [PATCH] cpuset and sched domains: sched_load_balance flag

2007-10-03 Thread Nick Piggin
On Wednesday 03 October 2007 22:14, Paul Jackson wrote: These are what I'm worried about, and things like kswapd, pdflush, could definitely use a huge amount of CPU. If you are interested in hard partitioning the system, you most definitely want these things to be balanced across the

top displaying 9999% CPU usage

2007-10-03 Thread Frans Pop
I saw top occasionally displaying % CPU usage for a process. The first few times it was amarokapp, this last time it was kontact. Both applications were basically idle. The cc1 is a kernel compile (rc9 + CFS :-). I cannot remember seeing this before, but as I also don't run top that

Re: [TOMOYO 05/15](repost) Domain transition handler functions.

2007-10-03 Thread James Morris
On Wed, 3 Oct 2007, YOSHIFUJI Hideaki / µÈÆ£±ÑÌÀ wrote: In article [EMAIL PROTECTED] (at Wed, 3 Oct 2007 20:24:52 +0900), Tetsuo Handa [EMAIL PROTECTED] says: It seems that standard kernel list API does not have singly-linked list manipulation. I'm considering the following list

Re: [PATCH 1/3] signal(i386): alternative signal stack wraparound occurs

2007-10-03 Thread KAMEZAWA Hiroyuki
On Wed, 3 Oct 2007 14:20:07 +0200 (MEST) Mikael Pettersson [EMAIL PROTECTED] wrote: What I don't agree with is the logic itself: - You only catch altstack overflow caused by the kernel pushing a sigframe. You don't catch overflow caused by the user-space signal handler pushing its own

  1   2   3   4   5   6   7   8   >