cvs commit: src/sys/nfsserver nfs.h nfs_serv.c nfs_srvsock.c nfs_syscalls.c

Christian S.J. Peron csjp at FreeBSD.org
Sat Jan 28 11:24:40 PST 2006


csjp        2006-01-28 19:24:40 UTC

  FreeBSD src repository

  Modified files:
    sys/nfsserver        nfs.h nfs_serv.c nfs_srvsock.c 
                         nfs_syscalls.c 
  Log:
  Manage the ucred for the NFS server using the crget/crfree API defined in
  kern_prot.c. This API handles reference counting among many other things.
  Notably, if MAC is compiled into the kernel, it will properly initialize the
  MAC labels when the ucred is allocated.
  
  This work is in preparation for a new MAC entry point which will be responsible
  for properly initializing policy specific labels for the NFS server credential.
  Utilization of the crfree/crget APIs reduce the complexity associated with
  this label's management.
  
  Submitted by:   green (with changes) [1]
  Obtained from:  TrustedBSD Project
  Discussed with: rwatson, alfred
  
  [1] I moved the ucred allocation outside the scope of the NFS server lock to
      prevent M_WAIKOK allocations from occurring with non-sleep-able locks held.
      Additionally, to reduce complexity, the ucred persist as long as the NFS
      server descriptor.
  
  Revision  Changes    Path
  1.79      +1 -1      src/sys/nfsserver/nfs.h
  1.161     +24 -24    src/sys/nfsserver/nfs_serv.c
  1.96      +14 -14    src/sys/nfsserver/nfs_srvsock.c
  1.105     +8 -0      src/sys/nfsserver/nfs_syscalls.c


More information about the cvs-all mailing list