LCOV - code coverage report
Current view: top level - drivers/edac - wq.c (source / functions) Hit Total Coverage
Test: combined.info Lines: 4 18 22.2 %
Date: 2022-03-28 16:04:14 Functions: 1 5 20.0 %
Branches: 1 2 50.0 %

           Branch data     Line data    Source code
       1                 :            : // SPDX-License-Identifier: GPL-2.0-only
       2                 :            : #include "edac_module.h"
       3                 :            : 
       4                 :            : static struct workqueue_struct *wq;
       5                 :            : 
       6                 :          0 : bool edac_queue_work(struct delayed_work *work, unsigned long delay)
       7                 :            : {
       8                 :          0 :         return queue_delayed_work(wq, work, delay);
       9                 :            : }
      10                 :            : EXPORT_SYMBOL_GPL(edac_queue_work);
      11                 :            : 
      12                 :          0 : bool edac_mod_work(struct delayed_work *work, unsigned long delay)
      13                 :            : {
      14                 :          0 :         return mod_delayed_work(wq, work, delay);
      15                 :            : }
      16                 :            : EXPORT_SYMBOL_GPL(edac_mod_work);
      17                 :            : 
      18                 :          0 : bool edac_stop_work(struct delayed_work *work)
      19                 :            : {
      20                 :          0 :         bool ret;
      21                 :            : 
      22                 :          0 :         ret = cancel_delayed_work_sync(work);
      23                 :          0 :         flush_workqueue(wq);
      24                 :            : 
      25                 :          0 :         return ret;
      26                 :            : }
      27                 :            : EXPORT_SYMBOL_GPL(edac_stop_work);
      28                 :            : 
      29                 :         13 : int edac_workqueue_setup(void)
      30                 :            : {
      31                 :         13 :         wq = alloc_ordered_workqueue("edac-poller", WQ_MEM_RECLAIM);
      32         [ +  - ]:         13 :         if (!wq)
      33                 :            :                 return -ENODEV;
      34                 :            :         else
      35                 :         13 :                 return 0;
      36                 :            : }
      37                 :            : 
      38                 :          0 : void edac_workqueue_teardown(void)
      39                 :            : {
      40                 :          0 :         flush_workqueue(wq);
      41                 :          0 :         destroy_workqueue(wq);
      42                 :          0 :         wq = NULL;
      43                 :          0 : }

Generated by: LCOV version 1.14