- 23 Aug, 2004 40 commits
-
-
bk://linux-dj.bkbits.net/agpgartLinus Torvalds authored
into ppc970.osdl.org:/home/torvalds/v2.6/linux
-
Linus Torvalds authored
This means we won't get any warnings about unused variables - they _are_ used in some configurations.
-
Linus Torvalds authored
It's evil, people. Don't use that particular gcc extension. I've yet to meet anybody who could read the resulting code and tell me what the heck it does.
-
Linus Torvalds authored
-
Linus Torvalds authored
K&R used to make bitfields unsigned. That hasn't been true for a long long time..
-
Linus Torvalds authored
We assign 0 and 1 to it, but since it's signed, that's actually already overflowing the poor thing. So make it unsigned, which is what it really was supposed to be in the first place.
-
Linus Torvalds authored
Declare probe _before_ using it. Duh.
-
bk://bk.arm.linux.org.uk/linux-2.6-mmcLinus Torvalds authored
into ppc970.osdl.org:/home/torvalds/v2.6/linux Manual merge of arch/arm/Kconfig conflicts
-
bk://kernel.bkbits.net/davem/sparc-2.6Linus Torvalds authored
into ppc970.osdl.org:/home/torvalds/v2.6/linux
-
David S. Miller authored
into kernel.bkbits.net:/home/davem/sparc-2.6
-
David S. Miller authored
into kernel.bkbits.net:/home/davem/sparc-2.6
-
David S. Miller authored
-
David S. Miller authored
Passing sigcontext info in UREG_I2, as needed. I only spotted this because I was diffing 2.4.x and 2.6.x sparc64 code. Signed-off-by: David S. Miller <davem@redhat.com>
-
bk://linux-ntfs.bkbits.net/ntfs-2.6Linus Torvalds authored
into ppc970.osdl.org:/home/torvalds/v2.6/linux
-
Anton Altaparmakov authored
into cantab.net:/home/src/ntfs-2.6
-
David S. Miller authored
Just like s390 and ppc64. Signed-off-by: David S. Miller <davem@redhat.com>
-
David S. Miller authored
Signed-off-by: David S. Miller <davem@redhat.com>
-
David S. Miller authored
- U1copy_from_user needs PREAMBLE since it uses explicit ASI_BLK_AIUS references. - Need to use EX_RETVAL() in U1memcpy.S - U1memcpy.S can load one 64-bit word too many, passing the source buffer boundary and thus potentially causing exceptions. Signed-off-by: David S. Miller <davem@redhat.com>
-
David S. Miller authored
- Make it easier to maintain the Ultra-I vs. Ultra-III memcpy implementations. Before you had to maintain 3 different entire copies of the routines. - Kill %asi register writing Ultra-I single memcpy loop for both user and kernel. Was not worth it. - Simplify exception detection and handling enormously. Signed-off-by: David S. Miller <davem@redhat.com>
-
bk://kernel.bkbits.net/davem/net-2.6Linus Torvalds authored
into ppc970.osdl.org:/home/torvalds/v2.6/linux
-
David S. Miller authored
Instead of marking them as invalid, point them at a dummy page. This handles buggy third-party bridges that erroneously prefetch sometimes. Signed-off-by: David S. Miller <davem@redhat.com>
-
bk://kernel.bkbits.net/gregkh/linux/usb-2.6Linus Torvalds authored
into ppc970.osdl.org:/home/torvalds/v2.6/linux
-
bk://kernel.bkbits.net/gregkh/linux/pci-2.6Linus Torvalds authored
into ppc970.osdl.org:/home/torvalds/v2.6/linux Manual merge of kernel/params.c clashes.
-
Trond Myklebust authored
NFSv2/v3: Fix up a race in the case where the user presses ^C while a process is in the middle of setting up a posix lock. In case the server registered our lock, we need to make sure that it gets cleaned up during the resulting file close(). Signed-off-by: Trond Myklebust <trond.myklebust@fys.uio.no> Signed-off-by: Linus Torvalds <torvalds@osdl.org>
-
Trond Myklebust authored
VFS: Fix up documentation for the new locking interfaces. Signed-off-by: Trond Myklebust <trond.myklebust@fys.uio.no> Signed-off-by: Linus Torvalds <torvalds@osdl.org>
-
Trond Myklebust authored
VFS,CIFS,NLM,NFSv4: make filesystems directly responsible for calling posix_lock_file() if they need it. This fixes an NFS race whereby in case of a server reboot, the recovery thread could re-establish a lock that had just been freed. Signed-off-by: Trond Myklebust <trond.myklebust@fys.uio.no> Signed-off-by: Linus Torvalds <torvalds@osdl.org>
-
Trond Myklebust authored
VFS: get rid of the fl_notify, fl_insert, fl_remove fields from struct file_lock. They belong in the new lock_manager_operations structure. Signed-off-by: Trond Myklebust <trond.myklebust@fys.uio.no> Signed-off-by: Linus Torvalds <torvalds@osdl.org>
-
Trond Myklebust authored
NLM: file_lock->fl_owner may live for longer than the pid of the original process that created it. Fix NFSv2/v3 client locking code to map file_lock->fl_owner into a unique 32-bit number or "pseudo-pid". Signed-off-by: Trond Myklebust <trond.myklebust@fys.uio.no> Signed-off-by: Linus Torvalds <torvalds@osdl.org>
-
Trond Myklebust authored
NLM: fix lockd to use the new posix locking callbacks. Signed-off-by: Trond Myklebust <trond.myklebust@fys.uio.no> Signed-off-by: Linus Torvalds <torvalds@osdl.org>
-
Trond Myklebust authored
NFSv4 server: fix locking code to use new posix locking callbacks. Signed-off-by: Trond Myklebust <trond.myklebust@fys.uio.no> Signed-off-by: Linus Torvalds <torvalds@osdl.org>
-
Trond Myklebust authored
VFS: Enable filesystems and to hook certain functions for copying and freeing locks using the new struct file_lock_operations. VFS: Enable lock managers (i.e. lockd) to hook functions for comparing lock ownership using the new struct lock_manager_operations. Signed-off-by: Trond Myklebust <trond.myklebust@fys.uio.no> Signed-off-by: Linus Torvalds <torvalds@osdl.org>
-
Trond Myklebust authored
VFS: Fix up posix_same_owner() so that it only uses the file_lock->fl_owner field when determining lock equality. VFS: Fix up posix locking routines to use posix_same_owner() instead of rolling their own checks. Signed-off-by: Trond Myklebust <trond.myklebust@fys.uio.no> Signed-off-by: Linus Torvalds <torvalds@osdl.org>
-
Linus Torvalds authored
He got the "privilege" of cleaning the driver up, and to keep everybody happy, indent it sanely first. This is the result of: indent -kr -i8 -bri0 -l255 BusLogic.c BusLogic.h
-
Jindrich Makovicka authored
There's a misplaced check returning error for hpt_minimum_revision(dev,8) == TRUE still there, making the previous fixes useless for the early revision HPT cards. This fixes it.
-
bk://linux-sam.bkbits.net/kbuildLinus Torvalds authored
into ppc970.osdl.org:/home/torvalds/v2.6/linux
-
Jens Axboe authored
Here's a better table of acceptable commands, I've added some more commands. Should be pretty complete from the cd/dvd side now.
-
David S. Miller authored
into nuts.davemloft.net:/disk1/BK/net-2.6
-
Andrew Morton authored
drivers/net/Kconfig:1749:warning: 'select' used by config symbol 'VIA_VELOCITY' We renamed CONFIG_CRC16. Signed-off-by: Andrew Morton <akpm@osdl.org> Signed-off-by: Linus Torvalds <torvalds@osdl.org>
-
Andrey Panin authored
Signed-off-by: Andrey Panin <pazke@donpac.ru> Signed-off-by: Andrew Morton <akpm@osdl.org> Signed-off-by: Linus Torvalds <torvalds@osdl.org>
-
Adrian Bunk authored
cciss uses /proc to hook into the SCSI subsystem. If you do not build /proc support into your kernel then you should also disable tape support in the driver. Signed-off-by: Adrian Bunk <bunk@fs.tum.de> Signed-off-by: Andrew Morton <akpm@osdl.org> Signed-off-by: Linus Torvalds <torvalds@osdl.org>
-