Re: svn commit: r340046 - head/usr.sbin/bhyve

2018-11-02 Thread Dmitry Luhtionov
I think you need to remove `printf("keysym 0x%x\n", keysym);` from line 322 ___ svn-src-all@freebsd.org mailing list https://lists.freebsd.org/mailman/listinfo/svn-src-all To unsubscribe, send any mail to "svn-src-all-unsubscr...@freebsd.org"

Re: svn commit: r304704 - in stable/11/sys: conf kern net sys

2016-08-23 Thread Dmitry Luhtionov
Hi. In subr_gtaskqueue.c - taskqgroup_bind() for (i = 0; i < qgroup->tqg_cnt; i++) { gtask = malloc(sizeof (*gtask), M_DEVBUF, M_NOWAIT); GTASK_INIT(>ask->bt_task, 0, 0, taskqgroup_binder, gtask); Why we are not check (gtask == NULL) ? ___