| 359 | } |
| 360 | |
| 361 | int |
| 362 | param_set_arc_long(const char *buf, zfs_kernel_param_t *kp) |
| 363 | { |
| 364 | int error; |
| 365 | |
| 366 | error = param_set_long(buf, kp); |
| 367 | if (error < 0) |
| 368 | return (SET_ERROR(error)); |
| 369 | |
| 370 | arc_tuning_update(B_TRUE); |
| 371 | |
| 372 | return (0); |
| 373 | } |
| 374 | |
| 375 | int |
| 376 | param_set_arc_int(const char *buf, zfs_kernel_param_t *kp) |
nothing calls this directly
no test coverage detected