- 22 Nov, 2002 11 commits
-
-
Trond Myklebust authored
Here is the a pre-patch in the attempt to get rid of 'struct nfs4_compound', and the associated horrible union in 'struct nfs4_op'. It splits out the fields that are meant to do buffer overflow checking and iovec adjusting on the XDR received/sent data. It moves support for that nto the dedicated structure 'xdr_stream', and the associated functions 'xdr_reserve_space()', 'xdr_inline_decode()'. The patch also expands out the all macros ENCODE_HEAD, ENCODE_TAIL, ADJUST_ARGS and DECODE_HEAD, as well as most of the DECODE_TAILs.
-
Tom Rini authored
linux/interrupt.h needs: asm/system.h: smb_mb() linux/linkage.h: asmlinkage/FASTCALL/etc.
-
Dominik Brodowski authored
This changes the return type of the verify and setpolicy functions from void to int. While doing this, I've changed the values for minimum and maximum supported frequency to be per CPU, as UltraSPARC needs this. Additionally, small cleanups in various drivers.
-
Ivan Kokshaysky authored
Traditional naming in pci/setup-xx code assumes that pdev_*/pbus_* functions are private, everything visible from outer world should be pci_*.
-
Stelian Pop authored
The most important changes are: - allocate buffers on open(), not module load; - correct some failed allocation paths; - use wait_event; - C99 structs inits;
-
Stelian Pop authored
The most important changes are: * add suspend/resume support to the sonypi driver (not based on driverfs however) (Florian Lohoff); * add "Zoom" and "Thumbphrase" buttons (Francois Gurin); * add camera and lid events for C1XE (Kunihiko IMAI); * add a mask parameter letting the user choose what kind of events he wants; * use ACPI ec_read/ec_write when available in order to play nice when latest ACPI is enabled; * several source cleanups.
-
bk://linux-dj.bkbits.net/watchdogLinus Torvalds authored
into penguin.transmeta.com:/home/penguin/torvalds/repositories/kernel/linux
-
Dave Jones authored
-
Andries E. Brouwer authored
Today we return EINVAL for fcntl with a lock with negative length. POSIX-2001 says that the lock covers start .. start+len-1 if len >= 0 and start+len .. start-1 if len < 0.
-
Robert Read authored
-
Linus Torvalds authored
into penguin.transmeta.com:/home/penguin/torvalds/repositories/kernel/linux
-
- 21 Nov, 2002 29 commits
-
-
Bart De Schuymer authored
-
Hideaki Yoshifuji authored
-
David S. Miller authored
into nuts.ninka.net:/home/davem/src/BK/net-2.5
-
David S. Miller authored
-
David S. Miller authored
-
David S. Miller authored
-
Linus Torvalds authored
-
Andries E. Brouwer authored
The i_dev field is deleted and the few uses are replaced by i_sb->s_dev. There is a single side effect: a stat on a socket now sees a nonzero st_dev. There is nothing against that - FreeBSD has a nonzero value as well - but there is at least one utility (fuser) that will need an update.
-
http://linux-isdn.bkbits.net/linux-2.5.makeLinus Torvalds authored
into penguin.transmeta.com:/home/penguin/torvalds/repositories/kernel/linux
-
Kai Germaschewski authored
into tp1.ruhr-uni-bochum.de:/scratch/kai/kernel/v2.5/linux-2.5.make
-
Linus Torvalds authored
-
Linus Torvalds authored
into penguin.transmeta.com:/home/penguin/torvalds/repositories/kernel/linux
-
Arnaldo Carvalho de Melo authored
-
Arnaldo Carvalho de Melo authored
-
Arnaldo Carvalho de Melo authored
-
Arnaldo Carvalho de Melo authored
-
bk://are.twiddle.net/axp-2.5Linus Torvalds authored
into penguin.transmeta.com:/home/penguin/torvalds/repositories/kernel/linux
-
Brian Gerst authored
This patch breaks up and removes fs/devices.c, moving functions to more logical places. character device functions -> char_dev.c init_special_inode() -> inode.c kdevname() -> libfs.c (this should die, but that's another patch) bad_sock_fops -> socket.c
-
Andi Kleen authored
This fixes some more file system for the CURRENT_TIME change: AFS, ADFS, and a harmless one in CIFS. Somehow these changes got lost in the original patch kit.
-
David S. Miller authored
-
Rik van Riel authored
The Stanford checker found an error in advansys.c, the driver is accessing field 6 in an array[6]. Since this is the only place where this field is accessed it should be safe to simply remove this line.
-
Neil Brown authored
We don't need to send an empty message to set up remote address when sending tcp reply, so we don't. Also, as the data is empty, we don't need to set_fs.
-
Neil Brown authored
If an NFS request arrives in a linear skb, we don't need to copy it, particularly if the network card has already done the DUB checksum. This patch only copies a request if it is already non-linear.
-
Neil Brown authored
Hirokazu Takahashi <taka@valinux.co.jp> noticed that svc_udp_recvfrom wouild set some fields in rqstp->rq_arg wrongly if the request was shorter than one page. This patch makes the code in udp_recvfrom the same as the (correct) code in tcp_recvfrom.
-
Neil Brown authored
If the 'data' component of a readdir response is exactly one page (the max allowed) then we currently only send 0 bytes of it, instead of PAGE_SIZE bytes.
-
Neil Brown authored
Now that requests are broken into non-contiguous pages, an NFSv3 symlink request could be larger than a page and so non-continguous. This patch copies the symlink into a new page (while checking for nul bytes) so nfsd_symlink will definately get a contiguous link.
-
Neil Brown authored
-
Neil Brown authored
-
Neil Brown authored
when do_md_run fails mddev->pers is not set, so do_md_stop will not try to write out the superblock so there is no need to set sb_dirty to 0.
-