- 05 Oct, 2003 40 commits
-
-
Rusty Russell authored
From: krishnakumar@naturesoft.net
-
Rusty Russell authored
From: Scharfe <l.s.r@web.de>
-
Rusty Russell authored
From: Ed L Cashin <ecashin@uga.edu> (Acked by Kanoj Sarcar <kanojsarcar@yahoo.com>)
-
Rusty Russell authored
From: Josef Jeff Sipek <jeffpc@optonline.net>
-
Rusty Russell authored
From: Vinay K Nallamothu <vinay-rc@naturesoft.net>
-
Rusty Russell authored
From: Nicolas Kaiser <nikai@nikai.net>
-
Rusty Russell authored
From: <adobriyan@mail.ru>
-
Rusty Russell authored
From: <adobriyan@mail.ru> (Acked by William Lee Irwin III <wli@holomorphy.com>)
-
Rusty Russell authored
From: "ismail (cartman) donmez" <kde@myrealbox.com>
-
Rusty Russell authored
From: Petri Koistinen <petri.koistinen@iki.fi>
-
Rusty Russell authored
From: Scharfe <l.s.r@web.de> The sysvfs code was confusing. Rewrite it to be readable, and use the existing VFS helper for recalculating the hash instead of doing it all by hand.
-
Rusty Russell authored
From: Petri Koistinen <petri.koistinen@iki.fi>
-
Rusty Russell authored
From: Mitchell Blank Jr <mitch@sfgoth.com> Make some more of the hlist functions accept constant arguments.
-
Rusty Russell authored
From: Stewart Smith <stewart@linux.org.au> Document "---help---" tag in Kconfig (Acked by Roman Zippel <zippel@linux-m68k.org>)
-
Rusty Russell authored
From: Maciej Soltysiak <solt@dns.toxicfilms.tv> This changes the hugetlbfs examples actually being possible to compile. errno is being used while it's not included. (Acked by William Lee Irwin III <wli@holomorphy.com>)
-
Rusty Russell authored
From: Marcel Sebek <sebek64@post.cz> (Acked by William Lee Irwin III <wli@holomorphy.com>)
-
Rusty Russell authored
From: Holger Schurig <h.schurig@mn-logistik.de>
-
Rusty Russell authored
From: Pavel Machek <pavel@suse.cz>
-
Rusty Russell authored
From: Josef Jeff Sipek <jeffpc@optonline.net>
-
Rusty Russell authored
From: Scharfe <l.s.r@web.de> clean up the error handling in pipefs a little bit, shrinking pipe.o by whopping 4 bytes! :)
-
Rusty Russell authored
From: Mitchell Blank Jr <mitch@sfgoth.com> Obvious typo fix for the scheduler docs (Acked by Ingo)
-
Rusty Russell authored
From: Bob Miller <rem@osdl.org> Removed the check_mem_region() call and replaced with request_mem_region().
-
Rusty Russell authored
From: Tom Rini <trini@kernel.crashing.org> This removes two extra #includes of <linux/spinlock.h>. Nothing in either of these files require <linux/spinlock.h>.
-
Rusty Russell authored
From: Vinay K Nallamothu <vinay-rc@naturesoft.net>
-
Rusty Russell authored
From: Jeff Sipek <jeffpc@optonline.net>
-
bk://kernel.bkbits.net/davem/net-2.5Linus Torvalds authored
into home.osdl.org:/home/torvalds/v2.5/linux
-
Andrew Morton authored
From: "V. Rajesh" <vrajesh@eecs.umich.edu> Fix a rare pte_chain memory leak in do_no_page()
-
Andrew Morton authored
A little fix which is needed if both the "compat ioctl consolidation" and "move job control fields from task_struct to signal_struct" patches are applied.
-
Andrew Morton authored
From: Roland McGrath <roland@redhat.com> This patch completes what was started with the `process_group' accessor function, moving all the job control-related fields from task_struct into signal_struct and using process_foo accessor functions to read them. All these things are per-process in POSIX, none per-thread. Off hand it's hard to come up with the hairy MT scenarios in which the existing code would do insane things, but trust me, they're there. At any rate, all the uses being done via inline accessor functions now has got to be all good. I did a "make allyesconfig" build and caught the few random drivers and whatnot that referred to these fields. I was surprised to find how few references to ->tty there really were to fix up. I'm sure there will be a few more fixups needed in non-x86 code. The only actual testing of a running kernel with these patches I've done is on my normal minimal x86 config. Everything works fine as it did before as far as I can tell. One issue that may be of concern is the lack of any locking on multiple threads diddling these fields. I don't think it really matters, though there might be some obscure races that could produce inconsistent job control results. Nothing shattering, I'm sure; probably only something like a multi-threaded program calling setsid while its other threads do tty i/o, which never happens in reality. This is the same situation we get by using ->group_leader->foo without other synchronization, which seemed to be the trend and noone was worried about it.
-
Andrew Morton authored
From: Dominik Brodowski <linux@brodo.de> Fix an ordering problem whcih was causing cpufreq oopses in sysfs.
-
Andrew Morton authored
From: Francois Romieu <romieu@fr.zoreil.com> - dscc4_release_ring() must not appear in dscc4_{open/close} as the rings are allocated/freed in dscc4_{found1/free1}; - more elegant handling of return status in dscc4_found1().
-
Andrew Morton authored
When the BKL was removed from ext3 we lost locking coverage for get_block()-versus-get_block(). Nobody seems to have hit the race because get_block() almost always runs under i_sem: only memory pressure-based writeout over a file hole runs outside i_sem. ext2 uses the dedicated i_meta_lock spinlock in the inode to provide the needed locking. But ext3 already has an rwsem around all the get_block() activity to protect it from truncate-related races. So this patch just converts that rwsem into a semaphore, so concurrent get_block() can never occur. This will be more efficient than adding the new spinlock. We lose the ability to have two threads run get_block() against the same file at the same time but again, that only happens during pageout over a hole anyway. (Kudos Alex Tomas for noticing the bug)
-
Andrew Morton authored
From: Marc Zyngier <mzyngier@freesurf.fr>, Christoph Hellwig I'd like to kill willy's CONFIG_EISA_ALWAYS kludge. So make EISA_bus a variable always when CONFIG_EISA is set and initialize it to 1 for alpha. We probably want to do that only if the system actually supports eisa, but I keep the old behaviour for now.
-
Andrew Morton authored
From: Michael Still <mikal@stillhq.com> The patch squelches build errors in the kernel-doc make targets by adding documentation to arguements previously not documented, and updating the argument names where they have changed.
-
Andrew Morton authored
From: Roland McGrath <roland@redhat.com> This was supposed to be part of the recent mm_struct.saved_auxv[] patch. The /proc addition is half the reason for the patch, and the more important one (letting you debug live processes, while NT_AUXV in core dumps lets you debug dead ones). The patch below was supposed to be part of the original.
-
Andrew Morton authored
From: Muli Ben-Yehuda <mulix@mulix.org> Shed some much-needed light.
-
Andrew Morton authored
From: Arun Sharma <arun.sharma@intel.com>, kevin.tian@intel.com Move a whole bunch of filesystem ioctl conversion functions out of per-arch files and into fs/compat_ioctl.c It moves linux32_dirent to compat.h and renames it as compat_dirent. linux32_dirent has been eliminated from ia64. Other archs should do the same. We'll leave old_linux_dirent32 as is, since it seems to be arch specific (ia64 doesn't use it for example).
-
Andrew Morton authored
From: Matthew Dobson <colpatch@us.ibm.com> Here's a small update to the numnodes fix that went into -mm3. The biggest changes are: 1) move the actual NODES_SHIFT and MAX_NUMNODES definitions into linux/numa.h and include this in linux/mmzone.h, instead of being directly in linux/mmzone.h. This allows other files to include *just* the NUMNODES stuff w/out grabbing all of mmzone.h. 2) pull NODE_SHIFT out of linux/mm.h. This isn't used anywhere in the kernel, and it will only get confused with NODES_SHIFT. 3) Fix the IA64 patch. The original patch I had sent out hadn't been tested on IA64. It was mostly right, but there were circular dependencies. All better now, and acked by Jesse. 4) In linux/mmzone.h, insert code to define MAX_NODES_SHIFT based on the size of unsigned long. For 64-bit arches, we can have a much larger value. This allows IA64 to have 100's or 1000's of nodes. MAX_NODES_SHIFT is defined as 10 (ie: 1024 nodes) for 64-bit for now, although it could likely be much larger. For 32-bit it is 6 (ie: 64 nodes). 5) Small cleanup in include/asm-arm/memory.h. Mostly the result of the new linux/numa.h file. Much cleaner and more readable now.
-
Andrew Morton authored
From: Matthew Dobson <colpatch@us.ibm.com> Fix up the ia64 arch.
-
Andrew Morton authored
From: Matthew Dobson <colpatch@us.ibm.com> Fix up the arm arch. This needs to be reviewed. Relatively straightforward replacement of NR_NODES with standard MAX_NUMNODES.
-