Diff for /fwsync/driver/fwsync_mod.c between versions 1.2 and 1.3

version 1.2, 2022/06/29 19:44:58 version 1.3, 2022/07/11 12:58:58
Line 100  fws_init(void *arg) Line 100  fws_init(void *arg)
         mtx_init(&fws_mtx_c, "fwsync mtx collector", NULL, MTX_DEF);          mtx_init(&fws_mtx_c, "fwsync mtx collector", NULL, MTX_DEF);
   
         /* taskqueue */          /* taskqueue */
        TASK_INIT(&fws_sndpkt_task, 0, fwsync_sndpkt_state, &fwsync_sndpkt);        TASK_INIT(&fws_sndpkt_task, 0, fwsync_sndpkt_handler, &fwsync_sndpkt);
   
         fws_tq = taskqueue_create("fwsync_tq", M_NOWAIT, taskqueue_thread_enqueue, &fws_tq);          fws_tq = taskqueue_create("fwsync_tq", M_NOWAIT, taskqueue_thread_enqueue, &fws_tq);
         if (!fws_tq) {          if (!fws_tq) {

Removed from v.1.2  
changed lines
  Added in v.1.3


FreeBSD-CVSweb <freebsd-cvsweb@FreeBSD.org>