Diomidis Spinellis
66eb91c1e0
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
2003-08-30 07:59:05 +00:00
..
2003-07-15 03:50:38 +00:00
2003-08-18 15:25:39 +00:00
2003-08-18 15:25:39 +00:00
2003-08-30 07:59:05 +00:00
2003-07-25 17:02:33 +00:00
2003-08-17 08:28:46 +00:00
2003-08-17 08:28:46 +00:00
2003-08-18 15:25:39 +00:00
2003-08-28 17:39:09 +00:00
2003-08-18 15:25:39 +00:00
2003-08-17 08:28:46 +00:00
2003-08-29 15:54:12 +00:00
2003-08-18 15:25:39 +00:00
2003-08-18 15:25:39 +00:00
2003-08-18 15:25:39 +00:00
2003-08-21 22:02:18 +00:00
2003-08-18 15:25:39 +00:00
2003-08-18 15:25:39 +00:00
2003-08-30 05:35:46 +00:00
2003-07-25 19:17:46 +00:00
2003-08-18 15:25:39 +00:00
2003-07-21 19:56:28 +00:00
2003-08-21 22:02:18 +00:00
2003-08-18 15:25:39 +00:00
2003-07-24 17:19:15 +00:00
2003-07-24 07:51:49 +00:00
2003-08-18 15:25:39 +00:00
2003-08-18 15:25:39 +00:00
2003-07-24 19:58:56 +00:00
2003-08-17 08:28:46 +00:00
2003-08-17 08:28:46 +00:00
2003-08-18 15:25:39 +00:00
2003-08-29 10:35:01 +00:00