cvs commit: src/sys/kern vfs_syscalls.c

Robert Watson rwatson at FreeBSD.org
Tue Jun 3 20:57:29 PDT 2003


rwatson     2003/06/03 20:57:28 PDT

  FreeBSD src repository

  Modified files:
    sys/kern             vfs_syscalls.c 
  Log:
  Implementations of extattr_list_fd(), extattr_list_file(), and
  extattr_list_link() system calls, which return a least of extended
  attributes defined for a vnode referenced by a file descriptor
  or path name.  Currently, we just invoke VOP_GETEXTATTR() since
  it will convert a request for an empty name into a query for a
  name list, which was the old (more hackish) API.  At some point
  in the near future, we'll push the distinction between get and
  list down to the vnode operation layer, but this provides access
  to the new API for applications in the short term.
  
  Pointed out by: Dominic Giampaolo <dbg at apple.com>
  Obtained from:  TrustedBSD Project
  Sponsored by:   DARPA, Network Associates Laboratories
  
  Revision  Changes    Path
  1.316     +143 -0    src/sys/kern/vfs_syscalls.c


More information about the cvs-src mailing list