- 17 Nov, 2002 18 commits
-
-
Christoph Hellwig authored
fs.h is pulling so much crap in.. No need to include net.h in fs.h if we move struct sock_alloc to net.h (which already includes fs.h through skbuf.h and mm.h..). Fixup the few files in net/ that relied on this, and the readv/writev implementations that got uio.h through net.h.
-
http://jdike.stearns.org:5000/updates-2.5Linus Torvalds authored
into home.transmeta.com:/home/torvalds/v2.5/linux
-
Adrian Bunk authored
-
Trond Myklebust authored
The "procedure number" has been used for 2 purposes in the kernel client RPC implementation: 1) As a number to pass to the server in the RPC header. 2) As an index into the "procedure array" of type 'struct rpc_procinfo', from which the RPC layer can find the XDR encode/decode functions, buffer size, and all the other static data that it needs to construct the on-wire RPC message. This works fine for NFSv2, v3 and for the NLM locking code for which there is a one-to-one mapping between NFS file operations, and RPC procedures. For NFSv4 on the other hand, the mapping is many-to-one, since there is only one RPC procedure number: NFSPROC4_COMPOUND. For efficiency purposes, we want to have a one-to-one mapping between NFS file operations and the corresponding XDR encode/decode routines, but currently this is not possible because of (2). The result is the mess that is 'struct nfs4_op' and encode/decode_compound. In the process eliminating (2), we might as well change to passing a pointer to the appropriate procedure array entry instead of an index. This change can be made transparent The appended patch therefore does the following: - Substitute a pointer to the rpc_procinfo instead of the RPC procedure number in the struct rpc_message. - Make the RPC procedure number an entry in the struct rpc_procinfo. - Clean out the largely unused (except in some obscure lockd debugging code) p_name field. The latter was just a stringified version of the RPC procedure name, so for those lockd cases, we can use the RPC procedure number instead.
-
Manfred Spraul authored
This adds error handling to the resource allocations in yenta.c: check that request_resource returns success, reduce allocation size if allocate_resource fails, free resources on module unload.
-
Linus Torvalds authored
-
Manfred Spraul authored
This splits poll_table into one structure used by f_op->poll and one structure used by the implemenation of sys_poll/sys_select: poll_table contains just the callback function pointer. struct poll_wrapper additionally contains err and table, i.e. the members used by the poll implementation. Changes: - split poll_table into 2 structures - reorder the declarations in <linux/poll.h> accordingly - uninline poll_initwait().
-
Arnaldo Carvalho de Melo authored
Also fix a printk usage.
-
Arnaldo Carvalho de Melo authored
dquot that got it implicitly before.
-
Arnaldo Carvalho de Melo authored
smbfs that got it implicitly before.
-
Arnaldo Carvalho de Melo authored
pci_hotplug_core that got it implicitly before.
-
Arnaldo Carvalho de Melo authored
ntfs that got it implicitly before.
-
Arnaldo Carvalho de Melo authored
jffs2 that got it implicitly before.
-
Arnaldo Carvalho de Melo authored
intermezzo that got it implicitly before.
-
Arnaldo Carvalho de Melo authored
hugetlbfs that got it implicitly before.
-
Arnaldo Carvalho de Melo authored
cifs that got it implicitly before.
-
Arnaldo Carvalho de Melo authored
quota that got it implicitly before.
-
Davide Libenzi authored
This does: - naming cleanup: ep_* -> eventpoll_* for non-static functions ( 2 ) - No more limit of 2 poll wait queue for each file* Before epoll used to have, inside its item struct, space for two wait queues. This was driven by the fact that during a f_op->poll() each file won't register more than one read and one write wait queue. Now, I'm not sure if this is 100% true or not, but with the current implementation a linked list of wait queues is kept to remove each limit.
-
- 16 Nov, 2002 22 commits
-
-
Jeff Dike authored
-
Jeff Dike authored
into uml.karaya.com:/home/jdike/linux/2.5/work-2.5
-
Jeff Dike authored
into uml.karaya.com:/home/jdike/linux/2.5/work-2.5
-
Jeff Dike authored
into uml.karaya.com:/home/jdike/linux/2.5/fixes-2.5
-
Matthew Wilcox authored
drivers/base relies on device.h pulling in sched.h pulling in the rest of the world. Add some explicit dependencies in preparation for removing sched.h from device.h.
-
Matthew Wilcox authored
coda_linux simply doesn't need sched.h
-
Matthew Wilcox authored
elf.h simply doesn't need sched.h
-
Matthew Wilcox authored
ftape.h really wants interrupt.h, not sched.h
-
Matthew Wilcox authored
i2c.h simply doesn't need sched.h
-
Matthew Wilcox authored
if_pppox simply doesn't need sched.h
-
Linus Torvalds authored
NFSD users that got it implicitly before.
-
Linus Torvalds authored
-
Christoph Hellwig authored
mmuless ports don't need dup_mmap nor allocation of a pgd. I tried to avoid ifdef-mess as far as possible, and to archive that I created small wrappers for pgd allocation/freeing and move taking of the mmap semaphore into dup_mmap from the only caller. The end result is just one additiona ifdef.
-
Christoph Hellwig authored
It's only need for the two monster-inlines set_fs_root and set_fs_pwd that should better be out of line anyway. Some additional cleanup like named initializers as extra bonus.
-
Christoph Hellwig authored
Once again we only need a forward-declaration of struct vfsmount.
-
Christoph Hellwig authored
This is a preparation to get rid of the implicit includes in dcache.h and fs_struct.h.
-
Christoph Hellwig authored
Remove four dead prototypes and don't include mount.h here - fs.h itself doesn't need it at all (just the struct vfsmount forward declaration) and gets it through dcache.h anyway.
-
Linus Torvalds authored
-
Matthew Wilcox authored
This removes the pci_dev "->name[]" field, and makes users use the "struct device" name field instead. It also trimps it down to 50 bytes and limited the length of the vendor & device descriptions to 20 bytes each. Now we have three cases: - unknown vendor & unknown device -> "PCI device %04x:%04x". Clearly limited to 21 chars. - known vendor, unknown device -> "PCI device %04x:%04x (%.20s)" 24 + 20 chars - known vendor, known device -> "%.20s %.20s" 20 + 1 + 20 + 1, EXCEPT: - multiple devices of the same type add " (#%d)" so 42 + 4 + 4 = 50. This is the point where an IBMer tells me they intend to sell a machine with > 9999 PCI devices of the same type ;-) This limits the PCI IDs to a reasonable amount of space. For release, I think we do want to go back up to 80 for prettier output
-
Matthew Wilcox authored
parport only needs jiffies.h, not sched.h
-
Matthew Wilcox authored
nfsd/cache.h doesn't need sched.h, just sockaddr_in and iovec
-
Matthew Wilcox authored
input.h wants fs.h and timer.h, not sched.h
-