K 10 svn:author V 3 dds K 8 svn:date V 27 2003-08-30T07:59:05.000000Z K 7 svn:log V 351 Document that read(2) can also return EPERM See e.g. nfsclient/nfs_vnops.c static int nfs_read(struct vop_read_args *ap) { struct vnode *vp = ap->a_vp; if (vp->v_type != VREG) return (EPERM); return (nfs_bioread(vp, ap->a_uio, ap->a_ioflag, ap->a_cred)); } Approved by: schweikh (mentor) MFC after: 6 weeks END