History log of /netbsd-src/sys/nfs/nfs_srvcache.c (Results 1 – 25 of 45)
Revision Date Author Comments
# b8817e4a 15-Mar-2009 cegger <cegger@NetBSD.org>

ansify function definitions


# 454af1c0 14-Mar-2009 dsl <dsl@NetBSD.org>

Change about 4500 of the K&R function definitions to ANSI ones.
There are still about 1600 left, but they have ',' or /* ... */
in the actual variable definitions - which my awk script doesn't handle

Change about 4500 of the K&R function definitions to ANSI ones.
There are still about 1600 left, but they have ',' or /* ... */
in the actual variable definitions - which my awk script doesn't handle.
There are also many that need () -> (void).
(The script does handle misordered arguments.)

show more ...


# 92ce8c6a 19-Nov-2008 ad <ad@NetBSD.org>

Make the emulations, exec formats, coredump, NFS, and the NFS server
into modules. By and large this commit:

- shuffles header files and ifdefs
- splits code out where necessary to be modular
- adds

Make the emulations, exec formats, coredump, NFS, and the NFS server
into modules. By and large this commit:

- shuffles header files and ifdefs
- splits code out where necessary to be modular
- adds module glue for each of the components
- adds/replaces hooks for things that can be installed at runtime

show more ...


# e071d39c 05-May-2008 ad <ad@NetBSD.org>

- Convert hashinit() to use kmem_alloc(). The hash tables can be large
and it's better to not have them in kmem_map.
- Convert a couple of minor items along the way to kmem_alloc().
- Fix some memo

- Convert hashinit() to use kmem_alloc(). The hash tables can be large
and it's better to not have them in kmem_map.
- Convert a couple of minor items along the way to kmem_alloc().
- Fix some memory leaks.

show more ...


# 1ed3981c 04-Dec-2007 yamt <yamt@NetBSD.org>

merge non-intrusive nfs changes from vmlocking.


# 05aaff39 01-Jun-2007 yamt <yamt@NetBSD.org>

use mutex and condvar.


# 59d979c5 12-Mar-2007 ad <ad@NetBSD.org>

Pass an ipl argument to pool_init/POOL_INIT to be used when initializing
the pool's lock.


# 53524e44 04-Mar-2007 christos <christos@NetBSD.org>

Kill caddr_t; there will be some MI fallout, but it will be fixed shortly.


# b3667ada 22-Feb-2007 thorpej <thorpej@NetBSD.org>

TRUE -> true, FALSE -> false


# cb2e7baf 05-Feb-2007 yamt <yamt@NetBSD.org>

have a mowner dedicated to nfs reply cache.


# 72246864 05-Feb-2007 yamt <yamt@NetBSD.org>

nfsrv_updatecache: actually use reply caches for connection oriented protocols.


# 3be095f6 17-Jan-2007 yamt <yamt@NetBSD.org>

plug mbuf leaks.


# ccfd2c0d 27-Dec-2006 yamt <yamt@NetBSD.org>

remove nqnfs.


# 95e1ffb1 11-Dec-2005 christos <christos@NetBSD.org>

merge ktrace-lwp.


# 7a677455 21-May-2004 yamt <yamt@NetBSD.org>

enable reply cache for connection oriented protocols as well.
linux retransmits rpcs even when using tcp.


# 34818780 20-Nov-2003 yamt <yamt@NetBSD.org>

comments.


# 0b47e1b2 20-Nov-2003 yamt <yamt@NetBSD.org>

fix a race case of nfsrv_getcache.


# aad01611 07-Aug-2003 agc <agc@NetBSD.org>

Move UCB-licensed code from 4-clause to 3-clause licence.

Patches provided by Joel Baker in PR 22364, verified by myself.


# 13278252 21-May-2003 yamt <yamt@NetBSD.org>

simplelock for nfsd request cache.


# a055ad0f 21-May-2003 yamt <yamt@NetBSD.org>

- KNF.
- remove unneeded casts.


# 8ee3b648 21-May-2003 yamt <yamt@NetBSD.org>

poolify nfsd request cache.


# 75fa9b73 21-May-2003 yamt <yamt@NetBSD.org>

indent.


# 08bf5aae 21-May-2003 yamt <yamt@NetBSD.org>

remove local definitions of TRUE and FALSE.


# a14f4443 02-Apr-2003 yamt <yamt@NetBSD.org>

use queue manipulation macros.


# 65e5548a 26-Feb-2003 matt <matt@NetBSD.org>

Add MBUFTRACE kernel option.
Do a little mbuf rework while here. Change all uses of MGET*(*, M_WAIT, *)
to m_get*(M_WAIT, *). These are not performance critical and making them
call m_get saves con

Add MBUFTRACE kernel option.
Do a little mbuf rework while here. Change all uses of MGET*(*, M_WAIT, *)
to m_get*(M_WAIT, *). These are not performance critical and making them
call m_get saves considerable space. Add m_clget analogue of MCLGET and
make corresponding change for M_WAIT uses.
Modify netinet, gem, fxp, tulip, nfs to support MBUFTRACE.
Begin to change netstat to use sysctl.

show more ...


12