The trace logic transposed the warn_asm_ioc and check_asm_ioc values. We
would treat the former as a flag and the latter as an integer. Fix this
so we print warning error codes and integrity buffer presence correctly.
Signed-off-by: Martin K. Petersen <martin.petersen@oracle.com>
__entry->count = ioc->rcount_asm_ioc;
__entry->status = ioc->status_asm_ioc;
__entry->error = ioc->error_asm_ioc;
- __entry->warn = ioc->warn_asm_ioc ? true : false;
- __entry->integrity = ioc->check_asm_ioc;
+ __entry->warn = ioc->warn_asm_ioc;
+ __entry->integrity = ioc->check_asm_ioc ? true : false;
__entry->ret = ret;
),