• Home
  • History
  • Annotate
  • Raw
  • Download
  • only in /netgear-R7000-V1.0.7.12_1.2.5/components/opensource/linux/linux-2.6.36/arch/x86/include/asm/xen/

Lines Matching refs:mcl

396 MULTI_fpu_taskswitch(struct multicall_entry *mcl, int set)
398 mcl->op = __HYPERVISOR_fpu_taskswitch;
399 mcl->args[0] = set;
403 MULTI_update_va_mapping(struct multicall_entry *mcl, unsigned long va,
406 mcl->op = __HYPERVISOR_update_va_mapping;
407 mcl->args[0] = va;
409 mcl->args[1] = new_val.pte;
410 mcl->args[2] = flags;
412 mcl->args[1] = new_val.pte;
413 mcl->args[2] = new_val.pte >> 32;
414 mcl->args[3] = flags;
419 MULTI_grant_table_op(struct multicall_entry *mcl, unsigned int cmd,
422 mcl->op = __HYPERVISOR_grant_table_op;
423 mcl->args[0] = cmd;
424 mcl->args[1] = (unsigned long)uop;
425 mcl->args[2] = count;
429 MULTI_update_va_mapping_otherdomain(struct multicall_entry *mcl, unsigned long va,
433 mcl->op = __HYPERVISOR_update_va_mapping_otherdomain;
434 mcl->args[0] = va;
436 mcl->args[1] = new_val.pte;
437 mcl->args[2] = flags;
438 mcl->args[3] = domid;
440 mcl->args[1] = new_val.pte;
441 mcl->args[2] = new_val.pte >> 32;
442 mcl->args[3] = flags;
443 mcl->args[4] = domid;
448 MULTI_update_descriptor(struct multicall_entry *mcl, u64 maddr,
451 mcl->op = __HYPERVISOR_update_descriptor;
453 mcl->args[0] = maddr;
454 mcl->args[1] = *(unsigned long *)&desc;
456 mcl->args[0] = maddr;
457 mcl->args[1] = maddr >> 32;
458 mcl->args[2] = desc.a;
459 mcl->args[3] = desc.b;
464 MULTI_memory_op(struct multicall_entry *mcl, unsigned int cmd, void *arg)
466 mcl->op = __HYPERVISOR_memory_op;
467 mcl->args[0] = cmd;
468 mcl->args[1] = (unsigned long)arg;
472 MULTI_mmu_update(struct multicall_entry *mcl, struct mmu_update *req,
475 mcl->op = __HYPERVISOR_mmu_update;
476 mcl->args[0] = (unsigned long)req;
477 mcl->args[1] = count;
478 mcl->args[2] = (unsigned long)success_count;
479 mcl->args[3] = domid;
483 MULTI_mmuext_op(struct multicall_entry *mcl, struct mmuext_op *op, int count,
486 mcl->op = __HYPERVISOR_mmuext_op;
487 mcl->args[0] = (unsigned long)op;
488 mcl->args[1] = count;
489 mcl->args[2] = (unsigned long)success_count;
490 mcl->args[3] = domid;
494 MULTI_set_gdt(struct multicall_entry *mcl, unsigned long *frames, int entries)
496 mcl->op = __HYPERVISOR_set_gdt;
497 mcl->args[0] = (unsigned long)frames;
498 mcl->args[1] = entries;
502 MULTI_stack_switch(struct multicall_entry *mcl,
505 mcl->op = __HYPERVISOR_stack_switch;
506 mcl->args[0] = ss;
507 mcl->args[1] = esp;