| 755 | } |
| 756 | |
| 757 | void |
| 758 | audit_arg_upath2(struct thread *td, int dirfd, char *upath) |
| 759 | { |
| 760 | struct kaudit_record *ar; |
| 761 | |
| 762 | ar = currecord(); |
| 763 | if (ar == NULL) |
| 764 | return; |
| 765 | |
| 766 | audit_arg_upath(td, dirfd, upath, &ar->k_ar.ar_arg_upath2); |
| 767 | ARG_SET_VALID(ar, ARG_UPATH2); |
| 768 | } |
| 769 | |
| 770 | static void |
| 771 | audit_arg_upath_vp(struct thread *td, struct vnode *rdir, struct vnode *cdir, |
nothing calls this directly
no test coverage detected