Searched refs:vm (Results 1 - 25 of 485) sorted by path

1234567891011>>

/linux-master/drivers/scsi/cxlflash/
H A Dbackend.h44 int (*fd_mmap)(struct file *file, struct vm_area_struct *vm);
H A Dcxl_hw.c141 static int cxlflash_fd_mmap(struct file *file, struct vm_area_struct *vm) argument
143 return cxl_fd_mmap(file, vm);
/linux-master/drivers/video/fbdev/omap2/omapfb/dss/
H A Ddisplay.c259 void videomode_to_omap_video_timings(const struct videomode *vm, argument
264 ovt->pixelclock = vm->pixelclock;
265 ovt->x_res = vm->hactive;
266 ovt->hbp = vm->hback_porch;
267 ovt->hfp = vm->hfront_porch;
268 ovt->hsw = vm->hsync_len;
269 ovt->y_res = vm->vactive;
270 ovt->vbp = vm->vback_porch;
271 ovt->vfp = vm->vfront_porch;
272 ovt->vsw = vm
291 omap_video_timings_to_videomode(const struct omap_video_timings *ovt, struct videomode *vm) argument
[all...]
/linux-master/drivers/video/fbdev/
H A Dpxa168fb.h389 #define CFG_GRA_VM_ENA(vm) ((vm) << 15) /* gfx */
391 #define CFG_DMA_VM_ENA(vm) ((vm) << 13) /* video */
393 #define CFG_CMD_VM_ENA(vm) ((vm) << 13)
/linux-master/drivers/video/
H A Dvideomode.c14 struct videomode *vm)
16 vm->pixelclock = dt->pixelclock.typ;
17 vm->hactive = dt->hactive.typ;
18 vm->hfront_porch = dt->hfront_porch.typ;
19 vm->hback_porch = dt->hback_porch.typ;
20 vm->hsync_len = dt->hsync_len.typ;
22 vm->vactive = dt->vactive.typ;
23 vm->vfront_porch = dt->vfront_porch.typ;
24 vm->vback_porch = dt->vback_porch.typ;
25 vm
13 videomode_from_timing(const struct display_timing *dt, struct videomode *vm) argument
31 videomode_from_timings(const struct display_timings *disp, struct videomode *vm, unsigned int index) argument
[all...]
/linux-master/include/video/
H A Dof_videomode.h14 int of_get_videomode(struct device_node *np, struct videomode *vm,
H A Domapfb_dss.h763 void videomode_to_omap_video_timings(const struct videomode *vm,
766 struct videomode *vm);
H A Dvideomode.h37 * @vm: return value
43 struct videomode *vm);
48 * @vm: return value
55 struct videomode *vm, unsigned int index);
/linux-master/tools/testing/fault-injection/
H A Dfailcmd.sh35 set /proc/sys/vm/oom_kill_allocating_task to specified value
115 oom_kill_allocating_task_saved=`cat /proc/sys/vm/oom_kill_allocating_task`
121 > /proc/sys/vm/oom_kill_allocating_task
212 echo $oom_kill_allocating_task > /proc/sys/vm/oom_kill_allocating_task
/linux-master/tools/testing/selftests/memfd/
H A Drun_hugetlbfs_test.sh26 nr_hugepgs=`cat /proc/sys/vm/nr_hugepages`
34 echo 3 > /proc/sys/vm/drop_caches
35 echo $(( $hpages_needed + $nr_hugepgs )) > /proc/sys/vm/nr_hugepages
50 echo $nr_hugepgs > /proc/sys/vm/nr_hugepages
67 echo $nr_hugepgs > /proc/sys/vm/nr_hugepages
/linux-master/arch/arm/mm/
H A Dioremap.c53 struct vm_struct *vm; local
56 vm = &svm->vm;
57 if (!(vm->flags & VM_ARM_STATIC_MAPPING))
59 if ((vm->flags & VM_ARM_MTYPE_MASK) != VM_ARM_MTYPE(mtype))
62 if (vm->phys_addr > paddr ||
63 paddr + size - 1 > vm->phys_addr + vm->size - 1)
75 struct vm_struct *vm; local
78 vm
94 struct vm_struct *vm; local
433 struct vm_struct *vm; local
[all...]
H A Dmm.h69 struct vm_struct vm; member in struct:static_vm
H A Dmmu.c1024 struct vm_struct *vm; local
1038 vm = &svm->vm;
1039 vm->addr = (void *)(md->virtual & PAGE_MASK);
1040 vm->size = PAGE_ALIGN(md->length + (md->virtual & ~PAGE_MASK));
1041 vm->phys_addr = __pfn_to_phys(md->pfn);
1042 vm->flags = VM_IOREMAP | VM_ARM_STATIC_MAPPING;
1043 vm->flags |= VM_ARM_MTYPE(md->type);
1044 vm->caller = iotable_init;
1052 struct vm_struct *vm; local
1091 struct vm_struct *vm; local
[all...]
/linux-master/arch/arm64/crypto/
H A Dsm4-ce-core.S26 .macro sm4ekey, vd, vn, vm
27 .inst 0xce60c800 | (.L\vm << 16) | (.L\vn << 5) | .L\vd
/linux-master/arch/arm64/kvm/hyp/include/nvhe/
H A Dmem_protect.h77 int kvm_guest_prepare_stage2(struct pkvm_hyp_vm *vm, void *pgd);
82 void reclaim_guest_pages(struct pkvm_hyp_vm *vm, struct kvm_hyp_memcache *mc);
/linux-master/arch/arm64/kvm/hyp/nvhe/
H A Dmem_protect.c31 static void guest_lock_component(struct pkvm_hyp_vm *vm) argument
33 hyp_spin_lock(&vm->lock);
34 current_vm = vm;
37 static void guest_unlock_component(struct pkvm_hyp_vm *vm) argument
40 hyp_spin_unlock(&vm->lock);
232 int kvm_guest_prepare_stage2(struct pkvm_hyp_vm *vm, void *pgd) argument
234 struct kvm_s2_mmu *mmu = &vm->kvm.arch.mmu;
239 ret = hyp_pool_init(&vm->pool, hyp_virt_to_pfn(pgd), nr_pages, 0);
243 hyp_spin_lock_init(&vm->lock);
244 vm
269 reclaim_guest_pages(struct pkvm_hyp_vm *vm, struct kvm_hyp_memcache *mc) argument
[all...]
/linux-master/arch/arm64/kvm/vgic/
H A Dvgic-v4.c450 .vm = &kvm->arch.vgic.its_vm,
/linux-master/arch/loongarch/kvm/
H A DMakefile20 kvm-y += vm.o
/linux-master/arch/mips/math-emu/
H A Dieee754int.h54 #define EXPLODESP(v, vc, vs, ve, vm) \
58 vm = SPMANT(v); \
60 if (vm == 0) \
62 else if (ieee754_csr.nan2008 ^ !(vm & SP_MBIT(SP_FBITS - 1))) \
67 if (vm) { \
74 vm |= SP_HIDDEN_BIT; \
92 #define EXPLODEDP(v, vc, vs, ve, vm) \
94 vm = DPMANT(v); \
98 if (vm == 0) \
100 else if (ieee754_csr.nan2008 ^ !(vm
[all...]
/linux-master/arch/riscv/kvm/
H A DMakefile13 kvm-y += vm.o
/linux-master/arch/s390/include/asm/
H A Dsysinfo.h140 } vm[8]; member in struct:sysinfo_3_2_2
/linux-master/arch/s390/include/uapi/asm/
H A Dkvm.h276 struct kvm_s390_pv_info_vm vm; member in union:kvm_s390_pv_info::__anon53
384 /* kvm attr_group on vm fd */
/linux-master/arch/s390/kernel/
H A Dearly.c110 if (!memcmp(vmms->vm[0].cpi, "\xd2\xe5\xd4", 3))
112 else if (!memcmp(vmms->vm[0].cpi, "\xa9\x61\xe5\xd4", 4))
137 struct sysinfo_3_2_2 *vm = (struct sysinfo_3_2_2 *)&sysinfo_page; local
150 if (stsi(vm, 3, 2, 2) == 0 && vm->count) {
151 EBCASC(vm->vm[0].cpi, sizeof(vm->vm[0].cpi));
152 sprintf(hvstr, "%-16.16s", vm
[all...]
H A Dlgr.c44 } vm[VM_LEVEL_MAX]; member in struct:lgr_info
105 cpascii(lgr_info->vm[i].name, si->vm[i].name,
106 sizeof(si->vm[i].name));
107 cpascii(lgr_info->vm[i].cpi, si->vm[i].cpi,
108 sizeof(si->vm[i].cpi));
H A Dsetup.c815 add_device_randomness(&vmms->vm, sizeof(vmms->vm[0]) * vmms->count);

Completed in 309 milliseconds

1234567891011>>