| 447 | }; |
| 448 | #endif |
| 449 | int |
| 450 | sys_extattr_get_link(struct thread *td, struct extattr_get_link_args *uap) |
| 451 | { |
| 452 | return (kern_extattr_get_path(td, uap->path, uap->attrnamespace, |
| 453 | uap->attrname, uap->data, uap->nbytes, NOFOLLOW)); |
| 454 | } |
| 455 | |
| 456 | static int |
| 457 | kern_extattr_get_path(struct thread *td, const char *path, int attrnamespace, |
nothing calls this directly
no test coverage detected