- 25 May, 2004 40 commits
-
-
Andrew Morton authored
From: FabF <fabian.frederick@skynet.be>
-
Andrew Morton authored
Signed-off-by: Christian Meder <chris@onestepahead.de> Signed-off-by: Ingo Molnar <mingo@elte.hu> The following obviously correct patch from Christian Meder simplifies the DELTA() define.
-
Andrew Morton authored
From: Andi Kleen <ak@muc.de> Really enable the NUMA API system calls on x86-64.
-
Andrew Morton authored
Signed-off-by: Hugh Dickins <hugh@veritas.com> sys_remap_file_pages is declared as asmlinkage in mm/fremap.c, but is the one syscall declared without asmlinkage in include/linux/syscalls.h.
-
Andrew Morton authored
Signed-off-by: Hugh Dickins <hugh@veritas.com> It seems eccentric to implement MAP_POPULATE only on PROT_NONE mappings: do_mmap_pgoff is passing down prot, then sys_remap_file_pages verifies it's not set. I guess that's an oversight from when we realized that the prot arg to sys_remap_file_pages was misdesigned. There's another oddity whose heritage is harder for me to understand, so please let me leave it to you: sys_remap_file_pages is declared as asmlinkage in mm/fremap.c, but is the one syscall declared without asmlinkage in include/linux/syscalls.h.
-
Andrew Morton authored
From: Jeff Mahoney <jeffm@suse.com> The following is a patch to fix a locking problem in ACL/xattr code. It manifests when a user attempts to set an xattr on a file which they do not own, and on which an ACL is applied. What happens is this: reiserfs_setxattr [write lock inode xattr sem] ->xattr_set -> lookup -> __reiserfs_permission [if conditions above are met, and need_lock= is unset, read lock inode xattr sem] *lockup* Since we already keep track of when to lock during permission calls, the fix is simple: just make the locking conditional as it was before. Credits to Andreas Gruenbacher <agruen@suse.de>
-
Andrew Morton authored
From: Ben Fennema <bfennema@falcon.csc.calpoly.edu> The problem occured when files were stored on the disc in 16-bit per character mode when all the upper bits were 0. The fs module converted the file name given by the user to a 8-bit per character string to compare, so the comparison always failed. The patch maps the file from disc into the current locale and then compares it directly to the file name given by the user.
-
Andrew Morton authored
From: Rusty Russell <rusty@rustcorp.com.au> This one snuck through - Jeff prefers the bk:// addresses.
-
Andrew Morton authored
From: Adrian Bunk <bunk@fs.tum.de> This information seems to be quite outdated.
-
Andrew Morton authored
From: Yoshinori Sato <ysato@users.sourceforge.jp> - module support fix
-
Andrew Morton authored
From: Yoshinori Sato <ysato@users.sourceforge.jp> - fix relocation - define SYMBOL_PREFIX
-
Andrew Morton authored
From: Yury Umanets <torque@ukrpost.net> Thanks to smatch I have found few memory leaks and other related issues.
-
Andrew Morton authored
From: Michael Hunold <hunold@convergence.de> The attached patch changes my "Multimedia eXtension Board" (MXB) Video4Linux-driver to use the standard saa7111 video decoder infrastructure (to which I recently submitted changes through Ronald Bultje) instead of some home-brewn direct-access stuff. Nothing serious, but it removes code duplication and makes the code use the video decoder api.
-
Andrew Morton authored
From: <viro@parcelfarce.linux.theplanet.co.uk> init/initramfs.c::do_skip() has an off-by-one that leads to unpacking failures for some gzipped cpio images. We have static int __init do_skip(void) { if (this_header + count <= next_header) { eat(count); return 1; } else { eat(next_header - this_header); state = next_state; return 0; } } and that <= should actually be <. It almost never matters, since if we hit the boundary case (header ending exactly on the gunzip window end) the current variant will simply end up doing extra call of do_skip() when we get to the next window and that will finish the work (assign state). The only exception is when we hit that in the last window. That is, if there's nothing after the final header (trailer). Then we miss the final state transition (Skip -> Reset) and get "junk in archive" panic. Normally cpio(1) pads the image to multiple of 512, so we actually have a bunch of zeroes after the trailer. And that almost always saves our butts - trailer is followed by zeroes, so we get to Reset state just fine. So we never see that on small in-kernel image (it's less than 512 bytes, so it gets a lot of padding) and we almost never see that on external ones (1:127 odds of hitting the bug).
-
Andrew Morton authored
From: OGAWA Hirofumi <hirofumi@mail.parknet.co.jp> - use fat_fs_panic() instead of BUG() if it read a corrupted inode. - add missing "\n".
-
Andrew Morton authored
From: Pavel Machek <pavel@suse.cz> swsusp contained rather nasty bug where it killed machine when intel-agp or anything else split kernel 4MB mapping. Herbert Xu diagnosed this. Fixed by switching to "known good" mapping for during suspend/resume.
-
Andrew Morton authored
From: Bart Samwel <bart@samwel.tk> We don't want to use "cut" in the laptop mode control script, because that is in /usr. This patch is from Jasper Spaans.
-
Andrew Morton authored
Signed-off-by: Petr Vandrovec <vandrove@vc.cvut.cz> Some people expressed interest in having possibility to set CRTC <-> outputs mapping at boot time, without having to use 'matroxset' later after kernel boots. This patch adds option 'video=matroxfb:outputs:XYZ', where X sets which CRTC will connect to primary output, Y sets secondary output and Z sets DVI output. In addition to that I also added missing memset() into maven, which was broken since i2c was kobjectified.
-
Andrew Morton authored
From: Andi Kleen <ak@muc.de> When start_transaction() detects an error it already calls ext3_std_error. No need to do it again in the caller.
-
Andrew Morton authored
From: Christoph Hellwig <hch@lst.de> From: Debian kernel package, author probably Herbert Xu Include asm/io.h and asm/scatterlist.h in include/asm-i386/dma-mapping.h to make it useable standalone, which is already true for most architectures.
-
Andrew Morton authored
From: "Sergey S. Kostyliov" <rathamahata@php4.ru> Fix a typo in an error message.
-
Andrew Morton authored
From: Christoph Hellwig <hch@lst.de> From: Debian kernel package, author probably Herbert Xu
-
Andrew Morton authored
From: Christoph Hellwig <hch@lst.de> * Include linux/root_dev.h for ROOT_DEV in drivers/mtd/maps/uclinux.c
-
Andrew Morton authored
From: Christoph Hellwig <hch@lst.de> again needed by most non-x86 arches. * Include linux/init.h for __init
-
Andrew Morton authored
From: Christoph Hellwig <hch@lst.de> From: Mattia Monga via Debian kernel package Add support for nm256xl+ in sound/oss/nm256_audio.c
-
Andrew Morton authored
From: Christoph Hellwig <hch@lst.de> From: Debian kernel package, author is probably Herbert Xu * Do not get seqno since we will not use it in fs/isofs/inode.c
-
Andrew Morton authored
From: Christoph Hellwig <hch@lst.de> From: Debian kernel package, author probably Herbert Xu. * Fixed bashism in Makefile
-
Andrew Morton authored
From: "Sergey S. Kostyliov" <rathamahata@php4.ru> Fix nls support for character sets with character width large than 1.
-
Andrew Morton authored
From: Roman Zippel <zippel@linux-m68k.org> Update dir ctime/mtime when adding/removing an entry.
-
Andrew Morton authored
From: Roman Zippel <zippel@linux-m68k.org> When releasing a page don't try to release not existing nodes.
-
Andrew Morton authored
From: Roman Zippel <zippel@linux-m68k.org> If the inserting of the file or dir record failed, remove the previously inserted thread record.
-
Andrew Morton authored
From: Roman Zippel <zippel@linux-m68k.org> Call hfsplus_delete_inode() to delete an inode when adding it to the filesystem failed, so superblock info is correctly updated.
-
Andrew Morton authored
From: Roman Zippel <zippel@linux-m68k.org> Initialize d_fsdata field also for dir dentries, use hfsplus_instantiate helper function for this.
-
Andrew Morton authored
From: Roman Zippel <zippel@linux-m68k.org> Use the correct key length for index nodes.
-
Andrew Morton authored
From: Kurt Garloff <garloff@suse.de> Attached patch decreases the size of struct file by 8 bytes on 64 bit arches by avoiding unecessary padding.
-
Andrew Morton authored
From: Christoph Hellwig <hch@lst.de> struct page easily fits into a single cacheline with any recent CPU, and the ordering isn't as described anymore anyway.
-
Andrew Morton authored
From: Christoph Hellwig <hch@lst.de> there's no user is modules, the function isn't in mainline and I don't see why modules should use it.
-
Andrew Morton authored
From: Olaf Kirch <okir@suse.de> I have been chasing a corruption of current->group_info on PPC during NFS stress tests. The problem seems to be that nfsd is messing with its group_info quite a bit, while some monitoring processes look at /proc/<pid>/status and do a get_group_info/put_group_info without any locking. This problem can be reproduced on ppc platforms within a few seconds if you generate some NFS load and do a "cat /proc/XXX/status" of an nfsd thread in a tight loop. I therefore think changes to current->group_info, and querying it from a different process, needs to be protected using the task_lock. (akpm: task->group_info here is safe against exit() because the task holds a ref on group_info which is released in __put_task_struct, and the /proc file has a ref on the task_struct).
-
Andrew Morton authored
ep_send_events() uses ~350 bytes of stack for a local buffer of events to send to userspace. The patch fixes that by removing the double-buffering altogether. A pipe-based microbenchmark from Davide Libenzi <davidel@xmailserver.org> was sped up by 1-2%.
-
Andrew Morton authored
From: Ingo Molnar <mingo@elte.hu> printk currently does if (oops_in_progres) bust_printk_locks(); which means that once we oops, the printk locking is 100% ineffective and multiple CPUs make an unreadable mess on a serial console. It's a significant development hassle. Fix that up by only popping locks once per ten seconds. akpm@osdl.org did: - Bump the timeout to 30 seconds - 9600 baud is slow. - Handle jiffy wraps: change the logic so that we only skip the lockbust if the current time is within 30 seconds of the previous lockbusting attempt.
-