View | Details | Raw Unified | Return to bug 239483
Collapse All | Expand All

(-)usr.sbin/bhyve/bhyverun.c (+3 lines)
Lines 927-932 Link Here
927
			}
927
			}
928
		} else {
928
		} else {
929
			perror("vm_create");
929
			perror("vm_create");
930
			if (errno == ENOENT) {
931
				fprintf(stderr, "Is the `vmm` module loaded?\n");
932
			}
930
			exit(4);
933
			exit(4);
931
		}
934
		}
932
	} else {
935
	} else {
(-)usr.sbin/bhyveload/bhyveload.c (+3 lines)
Lines 766-771 Link Here
766
	if (error) {
766
	if (error) {
767
		if (errno != EEXIST) {
767
		if (errno != EEXIST) {
768
			perror("vm_create");
768
			perror("vm_create");
769
			if (errno == ENOENT) {
770
				fprintf(stderr, "Is the `vmm` module loaded?\n");
771
			}
769
			exit(1);
772
			exit(1);
770
		}
773
		}
771
		need_reinit = 1;
774
		need_reinit = 1;

Return to bug 239483