| 264 | }; |
| 265 | #endif |
| 266 | int |
| 267 | sys_extattr_set_file(struct thread *td, struct extattr_set_file_args *uap) |
| 268 | { |
| 269 | |
| 270 | return (kern_extattr_set_path(td, uap->path, uap->attrnamespace, |
| 271 | uap->attrname, uap->data, uap->nbytes, FOLLOW)); |
| 272 | } |
| 273 | |
| 274 | #ifndef _SYS_SYSPROTO_H_ |
| 275 | struct extattr_set_link_args { |
nothing calls this directly
no test coverage detected