| 431 | }; |
| 432 | #endif |
| 433 | int |
| 434 | sys_extattr_get_file(struct thread *td, struct extattr_get_file_args *uap) |
| 435 | { |
| 436 | return (kern_extattr_get_path(td, uap->path, uap->attrnamespace, |
| 437 | uap->attrname, uap->data, uap->nbytes, FOLLOW)); |
| 438 | } |
| 439 | |
| 440 | #ifndef _SYS_SYSPROTO_H_ |
| 441 | struct extattr_get_link_args { |
nothing calls this directly
no test coverage detected