Searched refs:type (Results 476 - 500 of 13868) sorted by last modified time

<<11121314151617181920>>

/linux-master/arch/x86/include/asm/
H A Dpgtable_64.h224 /* Extract the high bits for type */
227 /* Shift up (to get rid of type), then down to get value */
235 #define __swp_entry(type, offset) ((swp_entry_t) { \
237 | ((unsigned long)(type) << (64-SWP_TYPE_BITS)) })
H A Dio.h47 #define build_mmio_read(name, size, type, reg, barrier) \
48 static inline type name(const volatile void __iomem *addr) \
49 { type ret; asm volatile("mov" size " %1,%0":reg (ret) \
50 :"m" (*(volatile type __force *)addr) barrier); return ret; }
52 #define build_mmio_write(name, size, type, reg, barrier) \
53 static inline void name(type val, volatile void __iomem *addr) \
55 "m" (*(volatile type __force *)addr) barrier); }
263 #define BUILDIO(bwl, type) \
264 static inline void out##bwl##_p(type value, u16 port) \
270 static inline type i
[all...]
/linux-master/arch/sparc/kernel/
H A Dsys_sparc_64.c561 * override for sparc64 specific timeval type: tv_usec
594 * override for sparc64 specific timeval type: tv_usec
604 SYSCALL_DEFINE5(utrap_install, utrap_entry_t, type,
609 if (type < UT_INSTRUCTION_EXCEPTION || type > UT_TRAP_INSTRUCTION_31)
617 if (put_user((utrap_handler_t)(current_thread_info()->utraps[type]), old_p))
635 if ((utrap_handler_t)current_thread_info()->utraps[type] != new_p &&
654 if (put_user((utrap_handler_t)(current_thread_info()->utraps[type]), old_p))
661 current_thread_info()->utraps[type] = (long)new_p;
/linux-master/arch/sparc/include/asm/
H A Dpgtable_64.h1016 * --------------------> E <-- type ---> <------- zeroes -------->
1020 #define __swp_entry(type, offset) \
1023 ((((long)(type) & 0x7fUL) << PAGE_SHIFT) | \
/linux-master/arch/sh/mm/
H A Dcache.c322 if (boot_cpu_data.type == CPU_J2) {
335 if ((boot_cpu_data.type == CPU_SH7705) &&
346 if ((boot_cpu_data.type == CPU_SH7786) ||
347 (boot_cpu_data.type == CPU_SHX3)) {
/linux-master/arch/s390/mm/
H A Dfault.c287 enum fault_type type; local
303 type = get_fault_type(regs);
304 switch (type) {
353 if (IS_ENABLED(CONFIG_PGSTE) && type == GMAP_FAULT) {
/linux-master/arch/s390/kernel/
H A Dipl.c95 static char *ipl_type_str(enum ipl_type type) argument
97 switch (type) {
128 static char *dump_type_str(enum dump_type type) argument
130 switch (type) {
316 return sprintf(page, "%s\n", ipl_type_str(ipl_info.type));
355 switch (ipl_info.type) {
660 switch (ipl_info.type) {
1217 /* reipl type */
1219 static int reipl_set_type(enum ipl_type type) argument
1221 if (!(reipl_capabilities & type))
1727 dump_set_type(enum dump_type type) argument
[all...]
H A Dcert_store.c16 #include <linux/key-type.h>
26 #include <keys/user-type.h>
151 * Certificate store key type takes over properties of
292 pr_dbf_msg("Hash type is not supported");
416 * error and unregistered key type.
451 * Create a key of type "cert_store_key" using the data from VCE for key
678 * available for the current partition to it as "cert_store_key" type
680 * all keys of "cert_store_key" type.
/linux-master/arch/s390/include/asm/
H A Dpgtable.h203 * handle_pte_fault uses pte_present and pte_none to find out the pte type
210 * (. unassigned bit, x don't care, t swap type):
245 #define _ASCE_TYPE_MASK 0x0c /* asce table type mask */
246 #define _ASCE_TYPE_REGION1 0x0c /* region first table type */
247 #define _ASCE_TYPE_REGION2 0x08 /* region second table type */
248 #define _ASCE_TYPE_REGION3 0x04 /* region third table type */
249 #define _ASCE_TYPE_SEGMENT 0x00 /* segment table type */
258 #define _REGION_ENTRY_TYPE_MASK 0x0c /* region table type mask */
259 #define _REGION_ENTRY_TYPE_R1 0x0c /* region first table type */
260 #define _REGION_ENTRY_TYPE_R2 0x08 /* region second table type */
747 unsigned long type = pud_val(pud) & _REGION_ENTRY_TYPE_MASK; local
758 unsigned long type = p4d_val(p4d) & _REGION_ENTRY_TYPE_MASK; local
1850 mk_swap_pte(unsigned long type, unsigned long offset) argument
1870 __swp_entry(unsigned long type, unsigned long offset) argument
[all...]
/linux-master/arch/riscv/kernel/
H A Delf_kexec.c234 if (image->type == KEXEC_TYPE_CRASH) {
369 #define CLEAN_IMM(type, x) \
370 ((~ENCODE_##type##_IMM((uint64_t)(-1))) & (x))
/linux-master/arch/riscv/include/asm/
H A Dpgtable.h816 * bits 7 to 11: swap type
829 #define __swp_entry(type, offset) ((swp_entry_t) \
830 { (((type) & __SWP_TYPE_MASK) << __SWP_TYPE_SHIFT) | \
/linux-master/arch/powerpc/platforms/pseries/
H A Dvio.c40 .type = "",
1204 while (ids->type[0] != '\0') {
1205 if ((strncmp(dev->type, ids->type, strlen(ids->type)) == 0) &&
1387 viodev->type = of_node_get_device_type(of_node);
1388 if (!viodev->type) {
1413 viodev->type = dev_name(&viodev->dev);
1567 return sprintf(buf, "vio:T%sS%s\n", vio_dev->type, cp);
1596 add_uevent_var(env, "MODALIAS=vio:T%sS%s", vio_dev->type, c
[all...]
/linux-master/arch/powerpc/kernel/
H A Diommu.c1313 .type = IOMMU_DOMAIN_PLATFORM,
1341 .type = IOMMU_DOMAIN_BLOCKED,
/linux-master/arch/powerpc/include/asm/book3s/64/
H A Dpgtable.h663 #define __swp_entry(type, offset) ((swp_entry_t) { \
664 (type) | (((offset) << PAGE_SHIFT) & PTE_RPN_MASK)})
667 * swap type and offset we get from swap and convert that to pte to find a
/linux-master/arch/mips/mm/
H A Dtlb-r4k.c20 #include <asm/cpu-type.h>
H A Ddma-noncoherent.c12 #include <asm/cpu-type.h>
/linux-master/arch/mips/include/asm/
H A Dpgtable-64.h334 * --------------> E <-- type ---> <---------- zeroes ----------->
338 static inline pte_t mk_swap_pte(unsigned long type, unsigned long offset) argument
339 { pte_t pte; pte_val(pte) = ((type & 0x7f) << 16) | (offset << 24); return pte; }
343 #define __swp_entry(type, offset) ((swp_entry_t) { pte_val(mk_swap_pte((type), (offset))) })
H A Dpgtable-32.h205 * <----------- offset ------------> < type -> V G E 0 0 0 0 0 0 P
213 #define __swp_entry(type, offset) ((swp_entry_t) { (((type) & 0x1f) << 10) | ((offset) << 15) })
233 * <----------------- offset ------------------> < type -> V G 0 0
241 #define __swp_entry(type, offset) ((swp_entry_t) { (((type) & 0x1f) << 4) | ((offset) << 9) })
262 * <------------------- offset --------------------> < type -> V G
270 #define __swp_entry(type, offset) ((swp_entry_t) { (((type) & 0x1f) << 2) | ((offset) << 7) })
286 * <------------- offset --------------> < type
[all...]
/linux-master/arch/arm64/mm/
H A Dmteswap.c63 void mte_invalidate_tags(int type, pgoff_t offset) argument
65 swp_entry_t entry = swp_entry(type, offset);
78 void mte_invalidate_tags_area(int type) argument
80 swp_entry_t entry = swp_entry(type, 0);
81 swp_entry_t last_entry = swp_entry(type + 1, 0);
/linux-master/arch/arm64/kernel/
H A Defi.c27 * Only regions of type EFI_RUNTIME_SERVICES_CODE need to be
34 u32 type = md->type; local
36 if (type == EFI_MEMORY_MAPPED_IO)
50 code_is_misaligned |= (type == EFI_RUNTIME_SERVICES_CODE);
68 type != EFI_RUNTIME_SERVICES_CODE)
78 bool page_mappings_only = (md->type == EFI_RUNTIME_SERVICES_CODE ||
79 md->type == EFI_RUNTIME_SERVICES_DATA);
125 BUG_ON(md->type != EFI_RUNTIME_SERVICES_CODE &&
126 md->type !
[all...]
/linux-master/arch/arm64/include/asm/
H A Dpgtable.h1345 * bits 6-10: swap type
1358 #define __swp_entry(type,offset) ((swp_entry_t) { ((type) << __SWP_TYPE_SHIFT) | ((offset) << __SWP_OFFSET_SHIFT) })
1380 static inline void arch_swap_invalidate_page(int type, pgoff_t offset) argument
1383 mte_invalidate_tags(type, offset);
1386 static inline void arch_swap_invalidate_area(int type) argument
1389 mte_invalidate_tags_area(type);
/linux-master/arch/arm/mm/
H A Ddma-mapping.c287 map.type = MT_MEMORY_DMA_READY;
/linux-master/arch/alpha/kernel/
H A Dosf_sys.c800 w = cpu->type;
/linux-master/virt/kvm/
H A Dvfio.c354 static int kvm_vfio_create(struct kvm_device *dev, u32 type);
364 static int kvm_vfio_create(struct kvm_device *dev, u32 type) argument
/linux-master/tools/workqueue/
H A Dwq_monitor.py48 parser.add_argument('-i', '--interval', metavar='SECS', type=float, default=1,

Completed in 270 milliseconds

<<11121314151617181920>>