Lines Matching refs:magiclist
66 * Searches in drm_device::magiclist within all files with the same hash key
78 for (pt = master->magiclist[hash].head; pt; pt = pt->next) {
96 * associated the magic number hash key in drm_device::magiclist, while holding
118 if (master->magiclist[hash].tail) {
119 master->magiclist[hash].tail->next = entry;
120 master->magiclist[hash].tail = entry;
122 master->magiclist[hash].head = entry;
123 master->magiclist[hash].tail = entry;
136 * Searches and unlinks the entry in drm_device::magiclist with the magic
150 for (pt = master->magiclist[hash].head; pt; prev = pt, pt = pt->next) {
152 if (master->magiclist[hash].head == pt) {
153 master->magiclist[hash].head = pt->next;
155 if (master->magiclist[hash].tail == pt) {
156 master->magiclist[hash].tail = prev;