Module Name: src Committed By: riastradh Date: Sat Oct 15 19:55:37 UTC 2022
Modified Files: src/sys/dev/pci: virtio.c Log Message: virtio(4): Use howmany from sys/param.h instead of open-coding it. howmany will divide by VIRTIO_PAGE_SIZE instead of doing & ~(VIRTIO_PAGE_SIZE - 1), but it's a constant 4096 so this should make no difference in the compiled output except possibly at -O0. No functional change intended. To generate a diff of this commit: cvs rdiff -u -r1.59 -r1.60 src/sys/dev/pci/virtio.c Please note that diffs are not public domain; they are subject to the copyright notices on the relevant files.