- 17 Apr, 2003 13 commits
-
-
Alan Cox authored
-
bk://kernel.bkbits.net/gregkh/linux/linus-2.5Linus Torvalds authored
into home.transmeta.com:/home/torvalds/v2.5/linux
-
Greg Kroah-Hartman authored
-
Christoph Hellwig authored
Don't pass DEVFS_FL_CURRENT_OWNER to devfs_register, the uid/gid of new nodes should always be 0.
-
Christoph Hellwig authored
Okay, all flags are gone from devfs callers, time to remove the gunk handling it. devfs_register prototype will change later.
-
Christoph Hellwig authored
This patch rips out handling of UNIX98 ptys from devfs. We already have a special small filesystem to handle it (devpts) that's always compiled in anyway. This allows to get rid of all DEVFS_FL* flags and some gunk in devfs.
-
Christoph Hellwig authored
Trying to always have a NULL first argument to simplify devfs code big time in mid-term. (Especially in preparation of Adam's smalldevfs).
-
Christoph Hellwig authored
register a /dev/cpu/microcode symlink instead of a regular file with the same name - regular file support is gone in devfs.
-
Ben Collins authored
- Add driver registration for dv1394/video1394/raw1394. - Fix 3 sleep-while-atomic bugs in ohci1394 and ieee1394. - Cleanup some bus-reset handling in ohci1394. - Add empty config-rom handling. - Check and handle SBP-2 logins active/available for non-exclusive logins. - Fix bug in SBP-2 DMA cleanup.
-
Andrew Morton authored
In the interests of SMP scalability the ext2 free blocks and free inodes counters are "approximate". But there is a piece of code in the Orlov allocator which fails due to boundary conditions on really small filesystems. Fix that up via a final allocation pass which simply uses first-fit for allocation of a directory inode.
-
Andrew Morton authored
My recent micro-optmisation to these functions broke the pfn_valid() checks. Revert it.
-
Andrew Morton authored
This BUG_ON is triggering via ppp's line discipline flushing, due to brokenness in tty_io.c. We need to fix tty. Meanwhile, let's not gratuitously nuke people's boxes.
-
Greg Kroah-Hartman authored
-
- 16 Apr, 2003 14 commits
-
-
Randolph Chung authored
-
http://gkernel.bkbits.net/net-drivers-2.5Linus Torvalds authored
into home.transmeta.com:/home/torvalds/v2.5/linux
-
David S. Miller authored
into kernel.bkbits.net:/home/davem/net-2.5
-
Jeff Garzik authored
into hum.(none):/garz/repo/net-drivers-2.5
-
Linus Torvalds authored
-
Linus Torvalds authored
with user pointer annotations.
-
Linus Torvalds authored
verifies declarations against definitions and checks argument types.
-
Linus Torvalds authored
-
David Mosberger authored
The patch below is needed to avoid a deadlock on fs->lock. Without the patch, if __emul_lookup_dentry() returns 0, we fail to reacquire current->fs->lock and then go ahead to read_unlock() it anyhow. Bad for your health. I believe the bug was introduced when the fast pathwalk was reverted in order to introduce the RCU lockless path walking.
-
Hideaki Yoshifuji authored
-
Martin Josefsson authored
-
Hideaki Yoshifuji authored
-
Greg Kroah-Hartman authored
into kroah.com:/home/linux/linux/BK/gregkh-2.5
-
Martin Schwidefsky authored
- lcs: Don't free net_device in lcs_stop_device. - lcs: Reset card after LGW initiaited stoplan. - lcs: Fix bug in lcs_tasklet - ctc: Get channel structure from private pointer. Remove __NO_VERSION__. - lcs,ctc,iucv: Remove MOD_INC_USE_COUNT/MOD_DEC_USE_COUNT. Set dev->owner.
-
- 15 Apr, 2003 13 commits
-
-
David Stevens authored
-
Jan Harkes authored
The problem is caused by the devfs_mk_dir simplification that went in a couple of weeks ago that didn't update one of the coda call-sites.
-
David Mosberger authored
Fix for trivial typo. Without it, you can't insert anything on top of agpgart.ko because the agp_register_driver() will erroneously pick up the symbol version from agp_backend_acquire().
-
Rusty Russell authored
This converts connection tracking and all the connection tracking modules to handle non-linear skbs. Enough interfaces have been broken in the process that old helpers won't compile. Interfaces which used to take a "void *data, int len" or "struct iphdr *iph, int len" now take the skb itself (and an offset to the data in the case of the first interface), which is not linearized in any way (although Alexey says after ip_rcv the IP header is always linear, so IPv4 netfilter hooks can always assume a linear IP hdr). Helpers which examine data (amanda, FTP, IRC) now copy it into a buffer and examine that.
-
George Anzinger authored
Clean up "pendcount" locking (or rather - lack there-of) by making it a per-timer thing and thus automatically protected by the timer lock. Fix whitespace damage.
-
David S. Miller authored
into nuts.ninka.net:/home/davem/src/BK/net-2.5
-
bk://are.twiddle.net/axp-2.5Linus Torvalds authored
into penguin.transmeta.com:/home/penguin/torvalds/repositories/kernel/linux
-
Richard Henderson authored
-
Ulrich Drepper authored
Now that the kernel provides code user programs are executing directly (I mean the vsyscall code on x86) it is necessary to add unwind information for that code as well. The unwind information is used not only in C++ code. This patch adds a AT_SYSINFO_EH_FRAME ELF aux-table value that points to the unwinding block description for the sysinfo frame, and makes sure the AT_* value is passed to applications. It defines the static data for the unwind blocks (two, one for int80 and the other for sysenter), and finally adds code to copy the data in place.
-
Linus Torvalds authored
testing. Found by 'sparse', my source parser tool.
-
Matt Reppert authored
-
Ivan Kokshaysky authored
Forward port of Jay's 2.4 patch. Also I've cleaned up EISA configury - we only need it for systems with EISA. Ivan.
-
Ivan Kokshaysky authored
While testing our upcoming kernel update for 7.2 alpha, I've encountered a problem with move_initrd. It allocates a page-aligned chunk to move the initrd into, but it doesn't allocate the entire last page. Subsequent bootmem allocations can then be filled from the last page used be the initrd. This then becomes a problem when the initrd memory is released.
-