6.6 linux内核完成量

内核完成量是一种轻量级的机制,它允许一个线程告诉另一个线程工作已经完成。

完成量的定义

completion 结构体的定义

/*
 * struct completion - structure used to maintain state for a "completion"
 *
 * This is the opaque structure used to maintain the state for a "completion".
 * Completions currently use a FIFO to queue threads that have to wait for
 * the "completion" event.
 *
 * See also:  complete(), wait_for_completion() (and friends _timeout,
 * _interruptible, _interruptible_timeout, and _killable), init_completion(),
 * reinit_completion(), and macros DECLARE_COMPLETION(),
 * DECLARE_COMPLETION_ONSTACK().
 */
struct completion {
    unsigned int done;
    struct swait_queue_head wait;
};
struct swait_queue_head {
    raw_spinlock_t      lock;
    struct list_head    task_list;
};

完成量的初始化

/**
 * init_completion - Initialize a dynamically allocated completion
 * @x:  pointer to completion structure that is to be initialized
 *
 * This inline function will initialize a dynamically created completion
 * structure.
 */
static inline void init_completion(struct completion *x)
{
    x->done = 0;
    init_swait_queue_head(&x->wait);
}

等待完成量

/**
 * wait_for_completion: - waits for completion of a task
 * @x:  holds the state of this particular completion
 *
 * This waits to be signaled for completion of a specific task. It is NOT
 * interruptible and there is no timeout.
 *
 * See also similar routines (i.e. wait_for_completion_timeout()) with timeout
 * and interrupt capability. Also see complete().
 */
void __sched wait_for_completion(struct completion *x)
{
    wait_for_common(x, MAX_SCHEDULE_TIMEOUT, TASK_UNINTERRUPTIBLE);
}
EXPORT_SYMBOL(wait_for_completion);
static inline long __sched
do_wait_for_common(struct completion *x,
           long (*action)(long), long timeout, int state)
{
    if (!x->done) {
        DECLARE_SWAITQUEUE(wait);

        do {
            if (signal_pending_state(state, current)) {
                timeout = -ERESTARTSYS;
                break;
            }
            __prepare_to_swait(&x->wait, &wait);
            __set_current_state(state);
            raw_spin_unlock_irq(&x->wait.lock);
            timeout = action(timeout);
            raw_spin_lock_irq(&x->wait.lock);
        } while (!x->done && timeout);
        __finish_swait(&x->wait, &wait);
        if (!x->done)
            return timeout;
    }
    if (x->done != UINT_MAX)
        x->done--;
    return timeout ?: 1;
}

static inline long __sched
__wait_for_common(struct completion *x,
          long (*action)(long), long timeout, int state)
{
    might_sleep();

    complete_acquire(x);

    raw_spin_lock_irq(&x->wait.lock);
    timeout = do_wait_for_common(x, action, timeout, state);
    raw_spin_unlock_irq(&x->wait.lock);

    complete_release(x);

    return timeout;
}

static long __sched
wait_for_common(struct completion *x, long timeout, int state)
{
    return __wait_for_common(x, schedule_timeout, timeout, state);
}

通知完成量

/**
 * complete: - signals a single thread waiting on this completion
 * @x:  holds the state of this particular completion
 *
 * This will wake up a single thread waiting on this completion. Threads will be
 * awakened in the same order in which they were queued.
 *
 * See also complete_all(), wait_for_completion() and related routines.
 *
 * If this function wakes up a task, it executes a full memory barrier before
 * accessing the task state.
 */
void complete(struct completion *x)
{
    unsigned long flags;

    raw_spin_lock_irqsave(&x->wait.lock, flags);

    if (x->done != UINT_MAX)
        x->done++;
    swake_up_locked(&x->wait);
    raw_spin_unlock_irqrestore(&x->wait.lock, flags);
}
EXPORT_SYMBOL(complete);

完成量的使用

1、完成量的初始化
a)动态初始化

struct completion my_comp;  
init_completion(&my_comp); 

b)静态初始化

DECLARE_COMPLETION(my_comp);  

2、等待完成量

//等待完成量唤醒且不会被外部信号打断
void wait_for_completion(struct completion *comp); 
//等待一个完成量被唤醒;但是它可以被外部信号打断;
int wait_for_completion_interruptible(struct completion* comp):
//该函数等待一个完成量被唤醒,如果没有唤醒也会超时返回
unsigned long wait_for_completion_timeout(struct completion* comp, unsigned long timeout):

3、唤醒等待的线程

//只唤醒一个正在等待完成量comp的执行单元;
void complete(struct completion* comp):
//唤醒所有正在等待同一个完成量comp的执行单元;
void complete_all(struct completion* comp):

实例

struct cyttsp {
        ......
    struct completion bl_ready;
        ......
}

init_completion(&ts->bl_ready);

static int cyttsp_soft_reset(struct cyttsp *ts)
{
    int retval;

    /* wait for interrupt to set ready completion */
    reinit_completion(&ts->bl_ready);
    ts->state = CY_BL_STATE;

    enable_irq(ts->irq);

    retval = ttsp_send_command(ts, CY_SOFT_RESET_MODE);
    if (retval) {
        dev_err(ts->dev, "failed to send soft reset\n");
        goto out;
    }

    if (!wait_for_completion_timeout(&ts->bl_ready,
            msecs_to_jiffies(CY_DELAY_DFLT * CY_DELAY_MAX))) {
        dev_err(ts->dev, "timeout waiting for soft reset\n");
        retval = -EIO;
    }

out:
    ts->state = CY_IDLE_STATE;
    disable_irq(ts->irq);
    return retval;
}

static irqreturn_t cyttsp_irq(int irq, void *handle)
{
    struct cyttsp *ts = handle;
    int error;

    if (unlikely(ts->state == CY_BL_STATE)) {
        complete(&ts->bl_ready);
        goto out;
    }

    /* Get touch data from CYTTSP device */
    error = ttsp_read_block_data(ts, CY_REG_BASE,
                 sizeof(struct cyttsp_xydata), &ts->xy_data);
    if (error)
        goto out;

    /* provide flow control handshake */
    error = cyttsp_handshake(ts);
    if (error)
        goto out;

    if (unlikely(ts->state == CY_IDLE_STATE))
        goto out;

    if (GET_BOOTLOADERMODE(ts->xy_data.tt_mode)) {
        /*
         * TTSP device has reset back to bootloader mode.
         * Restore to operational mode.
         */
        error = cyttsp_exit_bl_mode(ts);
        if (error) {
            dev_err(ts->dev,
                "Could not return to operational mode, err: %d\n",
                error);
            ts->state = CY_IDLE_STATE;
        }
    } else {
        cyttsp_report_tchdata(ts);
    }

out:
    return IRQ_HANDLED;
}

©著作权归作者所有,转载或内容合作请联系作者
  • 序言:七十年代末,一起剥皮案震惊了整个滨河市,随后出现的几起案子,更是在滨河造成了极大的恐慌,老刑警刘岩,带你破解...
    沈念sama阅读 215,634评论 6 497
  • 序言:滨河连续发生了三起死亡事件,死亡现场离奇诡异,居然都是意外死亡,警方通过查阅死者的电脑和手机,发现死者居然都...
    沈念sama阅读 91,951评论 3 391
  • 文/潘晓璐 我一进店门,熙熙楼的掌柜王于贵愁眉苦脸地迎上来,“玉大人,你说我怎么就摊上这事。” “怎么了?”我有些...
    开封第一讲书人阅读 161,427评论 0 351
  • 文/不坏的土叔 我叫张陵,是天一观的道长。 经常有香客问我,道长,这世上最难降的妖魔是什么? 我笑而不...
    开封第一讲书人阅读 57,770评论 1 290
  • 正文 为了忘掉前任,我火速办了婚礼,结果婚礼上,老公的妹妹穿的比我还像新娘。我一直安慰自己,他们只是感情好,可当我...
    茶点故事阅读 66,835评论 6 388
  • 文/花漫 我一把揭开白布。 她就那样静静地躺着,像睡着了一般。 火红的嫁衣衬着肌肤如雪。 梳的纹丝不乱的头发上,一...
    开封第一讲书人阅读 50,799评论 1 294
  • 那天,我揣着相机与录音,去河边找鬼。 笑死,一个胖子当着我的面吹牛,可吹牛的内容都是我干的。 我是一名探鬼主播,决...
    沈念sama阅读 39,768评论 3 416
  • 文/苍兰香墨 我猛地睁开眼,长吁一口气:“原来是场噩梦啊……” “哼!你这毒妇竟也来了?” 一声冷哼从身侧响起,我...
    开封第一讲书人阅读 38,544评论 0 271
  • 序言:老挝万荣一对情侣失踪,失踪者是张志新(化名)和其女友刘颖,没想到半个月后,有当地人在树林里发现了一具尸体,经...
    沈念sama阅读 44,979评论 1 308
  • 正文 独居荒郊野岭守林人离奇死亡,尸身上长有42处带血的脓包…… 初始之章·张勋 以下内容为张勋视角 年9月15日...
    茶点故事阅读 37,271评论 2 331
  • 正文 我和宋清朗相恋三年,在试婚纱的时候发现自己被绿了。 大学时的朋友给我发了我未婚夫和他白月光在一起吃饭的照片。...
    茶点故事阅读 39,427评论 1 345
  • 序言:一个原本活蹦乱跳的男人离奇死亡,死状恐怖,灵堂内的尸体忽然破棺而出,到底是诈尸还是另有隐情,我是刑警宁泽,带...
    沈念sama阅读 35,121评论 5 340
  • 正文 年R本政府宣布,位于F岛的核电站,受9级特大地震影响,放射性物质发生泄漏。R本人自食恶果不足惜,却给世界环境...
    茶点故事阅读 40,756评论 3 324
  • 文/蒙蒙 一、第九天 我趴在偏房一处隐蔽的房顶上张望。 院中可真热闹,春花似锦、人声如沸。这庄子的主人今日做“春日...
    开封第一讲书人阅读 31,375评论 0 21
  • 文/苍兰香墨 我抬头看了看天上的太阳。三九已至,却和暖如春,着一层夹袄步出监牢的瞬间,已是汗流浃背。 一阵脚步声响...
    开封第一讲书人阅读 32,579评论 1 268
  • 我被黑心中介骗来泰国打工, 没想到刚下飞机就差点儿被人妖公主榨干…… 1. 我叫王不留,地道东北人。 一个月前我还...
    沈念sama阅读 47,410评论 2 368
  • 正文 我出身青楼,却偏偏与公主长得像,于是被迫代替她去往敌国和亲。 传闻我的和亲对象是个残疾皇子,可洞房花烛夜当晚...
    茶点故事阅读 44,315评论 2 352

推荐阅读更多精彩内容

  • 第一章 设备驱动程序的简介 处于上层应用与底层硬件设备的软件层 区分机制和策略是Linux最好的思想之一,机制指的...
    xiaozi63阅读 814评论 0 0
  • 综述 并发问题是编程中经常遇到的难题,我们需要学会针对并发产生的竞态进行编程 一、信号量和互斥体 Linux上信号...
    c枫_撸码的日子阅读 519评论 0 1
  • 在驱动程序中,当多个线程同时访问相同的资源时(驱动程序中的全局变量是一种典型的共享资源),可能会引发"竞态",因此...
    sinlinx123阅读 551评论 0 0
  • 个人笔记,方便自己查阅使用 Contents Java LangAssignment, ReferenceData...
    freenik阅读 1,382评论 0 6
  • 进程与线程 典型的UNIX/Linux进程可以看成只有一个控制线程:一个进程在同一时刻只做一件事情。有了多个控制线...
    北支浪阅读 254评论 0 0