Module Name: src Committed By: riastradh Date: Tue Aug 30 01:13:10 UTC 2022
Modified Files: src/sys/dev/ic: nvme.c Log Message: nvme(4): If bp is null or bp->b_ci is not assigned, use curcpu(). curcpu() might be stale by the time we're done, but it's still safe to pass it to cpu_index, and this is just used as a best-effort mechanism to keep I/O on queues handled by the same CPU. bp is not always provided, and bp->b_ci is not always assigned, e.g. when dumping. (If bp->b_ci is supposed to be always assigned, then we need to audit all the paths into it to assign it in those where it's not.) Fixes dump on nvme. To generate a diff of this commit: cvs rdiff -u -r1.64 -r1.65 src/sys/dev/ic/nvme.c Please note that diffs are not public domain; they are subject to the copyright notices on the relevant files.