Lines Matching defs:opt
355 struct irq_routing_options opt;
365 opt.table = (struct irq_info *) page;
366 opt.size = PAGE_SIZE;
367 opt.segment = __KERNEL_DS;
380 "=m" (opt)
383 "D" ((long) &opt),
385 "m" (opt)
387 DBG("OK ret=%d, size=%d, map=%x\n", ret, opt.size, map);
390 else if (opt.size) {
391 rt = kmalloc(sizeof(struct irq_routing_table) + opt.size, GFP_KERNEL);
394 rt->size = opt.size + sizeof(struct irq_routing_table);
396 memcpy(rt->slots, (void *) page, opt.size);