Author: hselasky
Date: Tue Mar 14 16:00:33 2017
New Revision: 315268
URL: https://svnweb.freebsd.org/changeset/base/315268

Log:
  MFC r314553:
  
  Implement taskqueue_poll_is_busy() for use by the LinuxKPI.
  Refer to comment above function for a detailed description.
  
  Discussed with:               kib @
  Sponsored by:         Mellanox Technologies

Modified:
  stable/10/sys/kern/subr_taskqueue.c
  stable/10/sys/sys/taskqueue.h
Directory Properties:
  stable/10/   (props changed)

Modified: stable/10/sys/kern/subr_taskqueue.c
==============================================================================
--- stable/10/sys/kern/subr_taskqueue.c Tue Mar 14 15:59:51 2017        
(r315267)
+++ stable/10/sys/kern/subr_taskqueue.c Tue Mar 14 16:00:33 2017        
(r315268)
@@ -390,6 +390,23 @@ task_is_running(struct taskqueue *queue,
        return (0);
 }
 
+/*
+ * Only use this function in single threaded contexts. It returns
+ * non-zero if the given task is either pending or running. Else the
+ * task is idle and can be queued again or freed.
+ */
+int
+taskqueue_poll_is_busy(struct taskqueue *queue, struct task *task)
+{
+       int retval;
+
+       TQ_LOCK(queue);
+       retval = task->ta_pending > 0 || task_is_running(queue, task);
+       TQ_UNLOCK(queue);
+
+       return (retval);
+}
+
 static int
 taskqueue_cancel_locked(struct taskqueue *queue, struct task *task,
     u_int *pendp)

Modified: stable/10/sys/sys/taskqueue.h
==============================================================================
--- stable/10/sys/sys/taskqueue.h       Tue Mar 14 15:59:51 2017        
(r315267)
+++ stable/10/sys/sys/taskqueue.h       Tue Mar 14 16:00:33 2017        
(r315268)
@@ -74,6 +74,7 @@ int   taskqueue_start_threads(struct taskq
 int    taskqueue_enqueue(struct taskqueue *queue, struct task *task);
 int    taskqueue_enqueue_timeout(struct taskqueue *queue,
            struct timeout_task *timeout_task, int ticks);
+int    taskqueue_poll_is_busy(struct taskqueue *queue, struct task *task);
 int    taskqueue_cancel(struct taskqueue *queue, struct task *task,
            u_int *pendp);
 int    taskqueue_cancel_timeout(struct taskqueue *queue,
_______________________________________________
svn-src-stable-10@freebsd.org mailing list
https://lists.freebsd.org/mailman/listinfo/svn-src-stable-10
To unsubscribe, send any mail to "svn-src-stable-10-unsubscr...@freebsd.org"

Reply via email to