PRINTFLIKE2*/
| 398 | |
| 399 | /*PRINTFLIKE2*/ |
| 400 | void |
| 401 | spa_load_note(spa_t *spa, const char *fmt, ...) |
| 402 | { |
| 403 | va_list adx; |
| 404 | char buf[256]; |
| 405 | |
| 406 | va_start(adx, fmt); |
| 407 | (void) vsnprintf(buf, sizeof (buf), fmt, adx); |
| 408 | va_end(adx); |
| 409 | |
| 410 | zfs_dbgmsg("spa_load(%s, config %s): %s", spa->spa_name, |
| 411 | spa->spa_trust_config ? "trusted" : "untrusted", buf); |
| 412 | } |
| 413 | |
| 414 | /* |
| 415 | * By default dedup and user data indirects land in the special class |
no test coverage detected