|
Description
|
While working on a way to have vnode/vfs operations strongly typechecked,
I discovered that lxpr_readlink() had an error.
The signature is:
static int lxpr_readlink(vnode_t *vp, uio_t *uiop)
But it should be:
static int lxpr_readlink(vnode_t *vp, uio_t *uiop, cred_t *cr)
Also, the uses of CRED() in lxpr_readlink() need to be looked at to see if
the cred pointer passed to lxpr_readlink() should be used instead.
|