Home
last modified time | relevance | path

Searched refs:qos_free_list (Results 1 – 1 of 1) sorted by relevance

/linux-4.4.14/drivers/staging/gdm72xx/
Dgdm_qos.c32 } qos_free_list; variable
36 qos_free_list.cnt = 0; in init_qos_entry_list()
37 INIT_LIST_HEAD(&qos_free_list.head); in init_qos_entry_list()
38 spin_lock_init(&qos_free_list.lock); in init_qos_entry_list()
46 spin_lock_irqsave(&qos_free_list.lock, flags); in alloc_qos_entry()
47 if (qos_free_list.cnt) { in alloc_qos_entry()
48 entry = list_entry(qos_free_list.head.prev, struct qos_entry_s, in alloc_qos_entry()
51 qos_free_list.cnt--; in alloc_qos_entry()
52 spin_unlock_irqrestore(&qos_free_list.lock, flags); in alloc_qos_entry()
55 spin_unlock_irqrestore(&qos_free_list.lock, flags); in alloc_qos_entry()
[all …]