When attaching a physical drive to a recent 11-CURRENT snapshot running under hyper-v on Windows 10 I get this panic: panic: vm_srb->sense_info_len <= request->sense_info_len Roughly at /usr/src/sys/dev/hyperv/storvsc/hv_storvsc_drv_freebsd.c:774 I modified the source slightly to work-around the KASSERT, and was then able to successfully use the drive (2TB ZFS volume). 774 if (vm_srb->sense_info_len > request->sense_info_len) { 775 printf("vm_srb->sense_info_len is %d, request->sense_info_len is %d\n", vm_srb->sense_info_len, request->sense_info_len); 776 vm_srb->sense_info_len = request->sense_info_len; 777 } 778 KASSERT(vm_srb->sense_info_len <= request->sense_info_len, 779 ("vm_srb->sense_info_len <= " 780 "request->sense_info_len")); ...keith
Canonicalize assignment.
Keyword: crash – in lieu of summary line prefix: [panic] * bulk change for the keyword * summary lines may be edited manually (not in bulk). Keyword descriptions and search interface: <https://bugs.freebsd.org/bugzilla/describekeywords.cgi>