- 21 May, 2004 40 commits
-
-
bk://kernel.bkbits.net/davem/net-2.6Linus Torvalds authored
into ppc970.osdl.org:/home/torvalds/v2.6/linux
-
David S. Miller authored
into kernel.bkbits.net:/home/davem/net-2.6
-
http://lia64.bkbits.net/to-linus-2.5Linus Torvalds authored
into ppc970.osdl.org:/home/torvalds/v2.6/linux
-
Linus Torvalds authored
This re-applies the separation of the ramdisk blockdev inode backing store and the files that live in the ramdisk. Cset exclude: torvalds@ppc970.osdl.org|ChangeSet|20040521210025|21437
-
Andrew Morton authored
Sigh. ramdisk almost works, except it loses data on umount. This is because the files which are atop the ramdisk do not contribute to dirty memory accounting, but they do need writeback. So when sync() calls sync_inodes_sb() to do the work, sync_inodes_sb() hopelessly underestimates the number of pages which need writeback for a complete sync. If you run `sync' enough times, everything eventually hits "disk" and all is happy. The root cause here is that the ramdisk and the files which it hosts shared the same backing_dev_info. This is inappropriate because the hosted files *do* want to writeback and really should contribute to dirty memory accounting. But the ramdisk inode itself wants neither. So. The patch sets up the infrastructure which permits a blockdev to provide a separate backing_dev_info for the files which it hosts. It's a bit of a ramdisk-special.
-
Herbert Xu authored
doing a mod_timer on a live state without holding a lock or for that matter not even checking whether the state is dead is definitely a bad idea
-
Bart De Schuymer authored
-
Hideaki Yoshifuji authored
-
Linus Torvalds authored
Right now we ignore it, but we need to pass this down to the low-level filesystems if we want to ever make knfsd create symlinks with different permissions correctly.
-
David S. Miller authored
into nuts.davemloft.net:/disk1/BK/net-2.6
-
Yoshinori Sato authored
- add module support code - add H8/300 ELF infomation - fix kcore ELF format
-
Yoshinori Sato authored
- new config items - interface setup - io cleanup
-
Yoshinori Sato authored
- config symbol fix
-
David Mosberger authored
-
David Mosberger authored
-
Linus Torvalds authored
The code was incomplete. Let's re-do it when the other pieces are in place. Cset exclude: akpm@osdl.org[torvalds]|ChangeSet|20040521202003|24125
-
Peter Chubb authored
-
Andrew Morton authored
From: Andrea Arcangeli <andrea@suse.de> this fixes the 2G limit on ramfs
-
Andrew Morton authored
From: Andrew Theurer <habanero@us.ibm.com> Use num_online_cpus in smp_init instead of counting cpus which may or may not really be brought up.
-
Andrew Morton authored
From: Roger Luethi <rl@hellgate.ch> Make the comments in drivers/base/power/shutdown.c somewhat less wrong. There's still room for improvement :-/.
-
Andrew Morton authored
From: David Mosberger <davidm@napali.hpl.hp.com> It used to be that loops_per_jiffy was a macro on ia64, hence it couldn't be exported. That's no longer the case though, so there is no point in inhibiting its export (not that it makes any _sense_ to export that value on ia64).
-
Andrew Morton authored
From: Rusty Russell <rusty@rustcorp.com.au> Matthieu Castet <castet.matthieu@free.fr> pointed out that testing cpu_online(cpu) on a UP system goes BUG(). That's because you're never supposed to ask cpu_online() about a CPU which is >= NR_CPUS. msr and cpuid devices use the minor to indicate the CPU number. Oops. Fix is to explicitly test cpu < NR_CPUS. Using cpu_online() is OK; although the CPU might go down before you actually read the file, that will simply cause junk to be returned.
-
Andrew Morton authored
A few things which Lindent got wrong.
-
Andrew Morton authored
-
Andrew Morton authored
From: Rusty Russell <rusty@rustcorp.com.au> From: Pavel Machek <pavel@ucw.cz> This patch fixes init section usage in swsusp.c: "read_suspend_image()" can be __init.
-
Andrew Morton authored
From: Rusty Russell <rusty@rustcorp.com.au> From: Stephen Leonard <stephen@phynp6.phy-astr.gsu.edu> This fixes a counter that is unnecessarily incremented in build_zonelists().
-
Andrew Morton authored
From: Rusty Russell <rusty@rustcorp.com.au> From: maximilian attems <janitor@sternwelten.at> The "Trivial Patch Monkey" is neither documented in MAINTAINERS nor was there a note in SubmittingPatches.
-
Andrew Morton authored
From: Rusty Russell <rusty@rustcorp.com.au> From: a.othieno@bluewin.ch (Arthur Othieno)
-
Andrew Morton authored
From: Rusty Russell <rusty@rustcorp.com.au> (OK from maintainer David Woodhouse <dwmw2@infradead.org>) From: Sam Ravnborg <sam@ravnborg.org> From: <l.s.r@web.de> > since the code for Linux 2.4 compatibility in fs/jffs2 is gone, we can > clean up the Makefile a bit. Following patch makes the Makefile > compatible with Linux 2.7 instead . :) Please consider applying. If we are going to clean up this I prefer we get rid of the local variables. See attached patch. Sam
-
Andrew Morton authored
From: Rusty Russell <rusty@rustcorp.com.au> From: Tommi Virtanen <tv@tv.debian.net>
-
Andrew Morton authored
From: Rusty Russell <rusty@rustcorp.com.au> From: Pavel Machek <pavel@ucw.cz> If we are providing "helpful" comment, it should better be correct.
-
Andrew Morton authored
From: Rusty Russell <rusty@rustcorp.com.au> From: David Eger <eger@theboonies.us> Doesn't resolve.
-
Andrew Morton authored
From: Rusty Russell <rusty@rustcorp.com.au> From: Marco Cova <marco.cova@studio.unibo.it>
-
Andrew Morton authored
From: Rusty Russell <rusty@rustcorp.com.au> From: Martin Schaffner <schaffner@gmx.li>
-
Andrew Morton authored
From: Rusty Russell <rusty@rustcorp.com.au> From: <adobriyan@mail.ru> Long block comment before declaration moves it out of page in pdfs. Alexey $ ./linux-2.6.6-rc2/scripts/kernel-doc.orig -text test.c struct stuff: struct stuff { int a; /** comment here*/char b; }; Members: a aaaa b bbbbb Description: stuff $ ./linux-2.6.6-rc2/scripts/kernel-doc -text test.c struct stuff: struct stuff { int a; char b; }; Members: a aaaa b bbbbb Description: stuff
-
Andrew Morton authored
From: Rusty Russell <rusty@rustcorp.com.au> From: "Chen, Kenneth W" <kenneth.w.chen@intel.com> Pure cosmetic. Largest biovec slab is printed as biovec-BIO_MAX_PAGES in /proc/slabinfo. It would be more informative to print actual number instead of macro's name.
-
Andrew Morton authored
From: Nuno Monteiro <nuno@itsari.org> Remove lots of double-semicolons.
-
Andrew Morton authored
From: Neil Brown <neilb@cse.unsw.edu.au> If a single readdir entry needs to be split over two pages in the reply, we first encode it into a new page, and then copy the bits into place. When we do this relocation, we have to modify the "offset" pointer to be either in the first or the second page, as appropriate. If the pointer should be at the start of the second page, it is currently put past the end of the first page. Note that as the offset and whole response is known to be 4byte-aligned, the offset pointer will never be split over two pages.
-
Andrew Morton authored
From: David Mosberger <davidm@napali.hpl.hp.com> These aren't syscalls, so rename them. And make them static.
-
Andrew Morton authored
We keep on getting BUG()s from isofs_read_super() because it passes an insane blocksize to bread(). See http://bugme.osdl.org/show_bug.cgi?id=2735 for example. I don't know what's up with isofs, but going BUG in there seems a bit rude. Change it to drop a bunch of diagnostics and a backtrace then return a null bh*. Most callers of getblk() don't expect it to fail, so they'll oops anyway. But isofs does actually check for a NULL return. This way, the machine stays up and we get better debug diagnostics.
-