Home
last modified time | relevance | path

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

/OK3568_Linux_fs/kernel/mm/kasan/
H A Dquarantine.c53 static void qlist_put(struct qlist_head *q, struct qlist_node *qlink, in qlist_put() argument
57 q->head = qlink; in qlist_put()
59 q->tail->next = qlink; in qlist_put()
60 q->tail = qlink; in qlist_put()
61 qlink->next = NULL; in qlist_put()
118 static struct kmem_cache *qlink_to_cache(struct qlist_node *qlink) in qlink_to_cache() argument
120 return virt_to_head_page(qlink)->slab_cache; in qlink_to_cache()
123 static void *qlink_to_object(struct qlist_node *qlink, struct kmem_cache *cache) in qlink_to_object() argument
126 container_of(qlink, struct kasan_free_meta, in qlink_to_object()
132 static void qlink_free(struct qlist_node *qlink, struct kmem_cache *cache) in qlink_free() argument
[all …]
/OK3568_Linux_fs/kernel/drivers/scsi/
H A Dqlogicpti.c688 struct qlogicpti *qlink = qptichain; in qpti_chain_add() local
690 while(qlink->next) in qpti_chain_add()
691 qlink = qlink->next; in qpti_chain_add()
692 qlink->next = qpti; in qpti_chain_add()
706 struct qlogicpti *qlink = qptichain; in qpti_chain_del() local
707 while(qlink->next != qpti) in qpti_chain_del()
708 qlink = qlink->next; in qpti_chain_del()
709 qlink->next = qpti->next; in qpti_chain_del()