| 281 | }; |
| 282 | #endif |
| 283 | int |
| 284 | sys_extattr_set_link(struct thread *td, struct extattr_set_link_args *uap) |
| 285 | { |
| 286 | |
| 287 | return (kern_extattr_set_path(td, uap->path, uap->attrnamespace, |
| 288 | uap->attrname, uap->data, uap->nbytes, NOFOLLOW)); |
| 289 | } |
| 290 | |
| 291 | static int |
| 292 | kern_extattr_set_path(struct thread *td, const char *path, int attrnamespace, |
nothing calls this directly
no test coverage detected