| /linux/arch/x86/kernel/cpu/microcode/ |
| H A D | intel-ucode-defs.h | 1 { .flags = X86_CPU_ID_FLAG_ENTRY_VALID, .vendor = X86_VENDOR_INTEL, .family = 0x6, .model = 0x03, … 2 { .flags = X86_CPU_ID_FLAG_ENTRY_VALID, .vendor = X86_VENDOR_INTEL, .family = 0x6, .model = 0x05, … 3 { .flags = X86_CPU_ID_FLAG_ENTRY_VALID, .vendor = X86_VENDOR_INTEL, .family = 0x6, .model = 0x05, … 4 { .flags = X86_CPU_ID_FLAG_ENTRY_VALID, .vendor = X86_VENDOR_INTEL, .family = 0x6, .model = 0x05, … 5 { .flags = X86_CPU_ID_FLAG_ENTRY_VALID, .vendor = X86_VENDOR_INTEL, .family = 0x6, .model = 0x05, … 6 { .flags = X86_CPU_ID_FLAG_ENTRY_VALID, .vendor = X86_VENDOR_INTEL, .family = 0x6, .model = 0x06, … 7 { .flags = X86_CPU_ID_FLAG_ENTRY_VALID, .vendor = X86_VENDOR_INTEL, .family = 0x6, .model = 0x06, … 8 { .flags = X86_CPU_ID_FLAG_ENTRY_VALID, .vendor = X86_VENDOR_INTEL, .family = 0x6, .model = 0x06, … 9 { .flags = X86_CPU_ID_FLAG_ENTRY_VALID, .vendor = X86_VENDOR_INTEL, .family = 0x6, .model = 0x06, … 10 { .flags = X86_CPU_ID_FLAG_ENTRY_VALID, .vendor = X86_VENDOR_INTEL, .family = 0x6, .model = 0x07, … [all …]
|
| /linux/tools/testing/selftests/membarrier/ |
| H A D | membarrier_test_impl.h | 14 static int sys_membarrier(int cmd, int flags) in sys_membarrier() argument 16 return syscall(__NR_membarrier, cmd, flags); in sys_membarrier() 21 int ret, flags = 0; in test_membarrier_get_registrations() local 31 test_name, flags, errno); in test_membarrier_get_registrations() 35 test_name, flags, ret, registrations); in test_membarrier_get_registrations() 39 test_name, flags, ret, registrations); in test_membarrier_get_registrations() 46 int cmd = -1, flags = 0; in test_membarrier_cmd_fail() local 49 if (sys_membarrier(cmd, flags) != -1) { in test_membarrier_cmd_fail() 52 test_name, cmd, flags); in test_membarrier_cmd_fail() 57 test_name, flags, EINVAL, strerror(EINVAL), in test_membarrier_cmd_fail() [all …]
|
| /linux/arch/parisc/kernel/ |
| H A D | firmware.c | 178 unsigned long flags; in set_firmware_width() local 184 spin_lock_irqsave(&pdc_lock, flags); in set_firmware_width() 186 spin_unlock_irqrestore(&pdc_lock, flags); in set_firmware_width() 228 unsigned long flags; in pdc_add_valid() local 230 spin_lock_irqsave(&pdc_lock, flags); in pdc_add_valid() 232 spin_unlock_irqrestore(&pdc_lock, flags); in pdc_add_valid() 247 unsigned long flags; in pdc_instr() local 249 spin_lock_irqsave(&pdc_lock, flags); in pdc_instr() 253 spin_unlock_irqrestore(&pdc_lock, flags); in pdc_instr() 269 unsigned long flags; in pdc_chassis_info() local [all …]
|
| H A D | sys_parisc.c | 91 if (current->flags & PF_RANDOMIZE) in mmap_upper_limit() 101 unsigned long flags, enum mmap_allocation_direction dir) in arch_get_unmapped_area_common() argument 115 if (filp || (flags & MAP_SHARED)) in arch_get_unmapped_area_common() 119 if (flags & MAP_FIXED) { in arch_get_unmapped_area_common() 124 if ((flags & MAP_SHARED) && filp && in arch_get_unmapped_area_common() 148 info.flags = VM_UNMAPPED_AREA_TOPDOWN; in arch_get_unmapped_area_common() 170 unsigned long len, unsigned long pgoff, unsigned long flags, in arch_get_unmapped_area() argument 174 addr, len, pgoff, flags, UP); in arch_get_unmapped_area() 179 unsigned long flags, vm_flags_t vm_flags) in arch_get_unmapped_area_topdown() argument 182 addr, len, pgoff, flags, DOWN); in arch_get_unmapped_area_topdown() [all …]
|
| /linux/sound/hda/core/ |
| H A D | intel-dsp-config.c | 33 u32 flags; member 54 .flags = FLAG_SOF, 65 .flags = FLAG_SST, 78 .flags = FLAG_SST | FLAG_SST_ONLY_IF_DMIC, 82 .flags = FLAG_SST, 95 .flags = FLAG_SST | FLAG_SST_ONLY_IF_DMIC, 99 .flags = FLAG_SST, 112 .flags = FLAG_SST, 116 .flags = FLAG_SST, 129 .flags = FLAG_SOF, [all …]
|
| /linux/arch/powerpc/include/asm/ |
| H A D | hw_irq.h | 118 unsigned long flags; in irq_soft_mask_return() local 122 : "=r" (flags) in irq_soft_mask_return() 125 return flags; in irq_soft_mask_return() 162 unsigned long flags = irq_soft_mask_return(); in irq_soft_mask_set_return() local 166 return flags; in irq_soft_mask_set_return() 171 unsigned long flags = irq_soft_mask_return(); in irq_soft_mask_or_return() local 173 irq_soft_mask_set(flags | mask); in irq_soft_mask_or_return() 175 return flags; in irq_soft_mask_or_return() 180 unsigned long flags = irq_soft_mask_return(); in irq_soft_mask_andc_return() local 182 irq_soft_mask_set(flags & ~mask); in irq_soft_mask_andc_return() [all …]
|
| /linux/drivers/net/ |
| H A D | tun_vnet.h | 11 static inline bool tun_vnet_legacy_is_little_endian(unsigned int flags) in tun_vnet_legacy_is_little_endian() argument 14 (flags & TUN_VNET_BE); in tun_vnet_legacy_is_little_endian() 19 static inline long tun_get_vnet_be(unsigned int flags, int __user *argp) in tun_get_vnet_be() argument 21 int be = !!(flags & TUN_VNET_BE); in tun_get_vnet_be() 32 static inline long tun_set_vnet_be(unsigned int *flags, int __user *argp) in tun_set_vnet_be() argument 43 *flags |= TUN_VNET_BE; in tun_set_vnet_be() 45 *flags &= ~TUN_VNET_BE; in tun_set_vnet_be() 50 static inline bool tun_vnet_is_little_endian(unsigned int flags) in tun_vnet_is_little_endian() argument 52 return flags & TUN_VNET_LE || tun_vnet_legacy_is_little_endian(flags); in tun_vnet_is_little_endian() 55 static inline u16 tun_vnet16_to_cpu(unsigned int flags, __virtio16 val) in tun_vnet16_to_cpu() argument [all …]
|
| /linux/arch/mips/pci/ |
| H A D | pci-ip32.c | 28 unsigned int flags = mace->pci.error; in macepci_error() local 31 if (flags & MACEPCI_ERROR_MEMORY_ADDR) in macepci_error() 33 else if (flags & MACEPCI_ERROR_CONFIG_ADDR) in macepci_error() 38 if (flags & MACEPCI_ERROR_MASTER_ABORT) { in macepci_error() 40 flags &= ~MACEPCI_ERROR_MASTER_ABORT; in macepci_error() 42 if (flags & MACEPCI_ERROR_TARGET_ABORT) { in macepci_error() 44 flags &= ~MACEPCI_ERROR_TARGET_ABORT; in macepci_error() 46 if (flags & MACEPCI_ERROR_DATA_PARITY_ERR) { in macepci_error() 48 flags &= ~MACEPCI_ERROR_DATA_PARITY_ERR; in macepci_error() 50 if (flags & MACEPCI_ERROR_RETRY_ERR) { in macepci_error() [all …]
|
| /linux/tools/testing/selftests/core/ |
| H A D | close_range_test.c | 34 unsigned int flags) in sys_close_range() argument 36 return syscall(__NR_close_range, fd, max_fd, flags); in sys_close_range() 113 .flags = CLONE_FILES, in TEST() 202 .flags = CLONE_FILES, in TEST() 277 int flags = fcntl(open_fds[i], F_GETFD); in TEST() local 279 EXPECT_GT(flags, -1); in TEST() 280 EXPECT_EQ(flags & FD_CLOEXEC, FD_CLOEXEC); in TEST() 284 int flags = fcntl(open_fds[i], F_GETFD); in TEST() local 286 EXPECT_GT(flags, -1); in TEST() 287 EXPECT_EQ(flags & FD_CLOEXEC, 0); in TEST() [all …]
|
| /linux/drivers/misc/sgi-xp/ |
| H A D | xpc_channel.c | 33 if (!(ch->flags & XPC_C_OPENREQUEST) || in xpc_process_connect() 34 !(ch->flags & XPC_C_ROPENREQUEST)) { in xpc_process_connect() 38 DBUG_ON(!(ch->flags & XPC_C_CONNECTING)); in xpc_process_connect() 40 if (!(ch->flags & XPC_C_SETUP)) { in xpc_process_connect() 48 ch->flags |= XPC_C_SETUP; in xpc_process_connect() 50 if (ch->flags & XPC_C_DISCONNECTING) in xpc_process_connect() 54 if (!(ch->flags & XPC_C_OPENREPLY)) { in xpc_process_connect() 55 ch->flags |= XPC_C_OPENREPLY; in xpc_process_connect() 59 if (!(ch->flags & XPC_C_ROPENREPLY)) in xpc_process_connect() 62 if (!(ch->flags & XPC_C_OPENCOMPLETE)) { in xpc_process_connect() [all …]
|
| /linux/arch/sparc/lib/ |
| H A D | atomic32.c | 35 unsigned long flags; \ 36 spin_lock_irqsave(ATOMIC_HASH(v), flags); \ 41 spin_unlock_irqrestore(ATOMIC_HASH(v), flags); \ 50 unsigned long flags; \ 51 spin_lock_irqsave(ATOMIC_HASH(v), flags); \ 55 spin_unlock_irqrestore(ATOMIC_HASH(v), flags); \ 73 unsigned long flags; in arch_atomic_xchg() local 75 spin_lock_irqsave(ATOMIC_HASH(v), flags); in arch_atomic_xchg() 78 spin_unlock_irqrestore(ATOMIC_HASH(v), flags); in arch_atomic_xchg() 86 unsigned long flags; in arch_atomic_cmpxchg() local [all …]
|
| /linux/drivers/rtc/ |
| H A D | rtc-nct3018y.c | 54 int err, flags; in nct3018y_set_alarm_mode() local 58 flags = i2c_smbus_read_byte_data(client, NCT3018Y_REG_CTRL); in nct3018y_set_alarm_mode() 59 if (flags < 0) { in nct3018y_set_alarm_mode() 62 return flags; in nct3018y_set_alarm_mode() 66 flags |= NCT3018Y_BIT_AIE; in nct3018y_set_alarm_mode() 68 flags &= ~NCT3018Y_BIT_AIE; in nct3018y_set_alarm_mode() 70 flags |= NCT3018Y_BIT_CIE; in nct3018y_set_alarm_mode() 71 err = i2c_smbus_write_byte_data(client, NCT3018Y_REG_CTRL, flags); in nct3018y_set_alarm_mode() 77 flags = i2c_smbus_read_byte_data(client, NCT3018Y_REG_ST); in nct3018y_set_alarm_mode() 78 if (flags < 0) { in nct3018y_set_alarm_mode() [all …]
|
| /linux/tools/testing/selftests/bpf/progs/ |
| H A D | irq.c | 12 extern int bpf_copy_from_user_str(void *dst, u32 dst__sz, const void *unsafe_ptr__ign, u64 flags) __weak __ksym; 75 static __noinline void local_irq_save(unsigned long *flags) in local_irq_save() 77 bpf_local_irq_save(flags); in local_irq_restore() argument 80 static __noinline void local_irq_restore(unsigned long *flags) in local_irq_restore() 82 bpf_local_irq_restore(flags); 89 unsigned long flags; in irq_restore_missing_1_subprog() 91 local_irq_save(&flags); 141 unsigned long flags; in irq_balance() 143 local_irq_save(&flags); in irq_balance() 144 local_irq_restore(&flags); 72 local_irq_save(unsigned long * flags) local_irq_save() argument 86 unsigned long flags; irq_restore_missing_1_subprog() local 138 unsigned long flags; irq_balance() local 164 unsigned long flags; local_irq_balance() local 196 unsigned long flags; irq_sleepable_helper() local 209 unsigned long flags; irq_sleepable_kfunc() local 228 unsigned long flags; irq_global_subprog() local 328 unsigned long flags = 0xfaceb00c; irq_restore_invalid() local 378 unsigned long flags; irq_flag_overwrite() local 390 unsigned long flags; irq_flag_overwrite_partial() local 402 unsigned long flags[4]; irq_ooo_refs_array() local [all...] |
| /linux/kernel/sched/ |
| H A D | wait.c | 20 unsigned long flags; in add_wait_queue() local 22 wq_entry->flags &= ~WQ_FLAG_EXCLUSIVE; in add_wait_queue() 23 spin_lock_irqsave(&wq_head->lock, flags); in add_wait_queue() 25 spin_unlock_irqrestore(&wq_head->lock, flags); in add_wait_queue() 31 unsigned long flags; in add_wait_queue_exclusive() local 33 wq_entry->flags |= WQ_FLAG_EXCLUSIVE; in add_wait_queue_exclusive() 34 spin_lock_irqsave(&wq_head->lock, flags); in add_wait_queue_exclusive() 36 spin_unlock_irqrestore(&wq_head->lock, flags); in add_wait_queue_exclusive() 42 unsigned long flags; in add_wait_queue_priority() local 44 wq_entry->flags |= WQ_FLAG_PRIORITY; in add_wait_queue_priority() [all …]
|
| /linux/drivers/crypto/intel/qat/qat_common/ |
| H A D | icp_qat_fw_la.h | 106 #define ICP_QAT_FW_LA_CIPH_IV_FLD_FLAG_GET(flags) \ argument 107 QAT_FIELD_GET(flags, QAT_LA_CIPH_IV_FLD_BITPOS, \ 110 #define ICP_QAT_FW_LA_CIPH_AUTH_CFG_OFFSET_FLAG_GET(flags) \ argument 111 QAT_FIELD_GET(flags, QAT_LA_CIPH_AUTH_CFG_OFFSET_BITPOS, \ 114 #define ICP_QAT_FW_LA_ZUC_3G_PROTO_FLAG_GET(flags) \ argument 115 QAT_FIELD_GET(flags, QAT_FW_LA_ZUC_3G_PROTO_FLAG_BITPOS, \ 118 #define ICP_QAT_FW_LA_GCM_IV_LEN_FLAG_GET(flags) \ argument 119 QAT_FIELD_GET(flags, QAT_LA_GCM_IV_LEN_FLAG_BITPOS, \ 122 #define ICP_QAT_FW_LA_PROTO_GET(flags) \ argument 123 QAT_FIELD_GET(flags, QAT_LA_PROTO_BITPOS, QAT_LA_PROTO_MASK) [all …]
|
| /linux/kernel/ |
| H A D | nsproxy.c | 87 static struct nsproxy *create_new_namespaces(u64 flags, in create_new_namespaces() argument 98 new_nsp->mnt_ns = copy_mnt_ns(flags, tsk->nsproxy->mnt_ns, user_ns, new_fs); in create_new_namespaces() 104 new_nsp->uts_ns = copy_utsname(flags, user_ns, tsk->nsproxy->uts_ns); in create_new_namespaces() 110 new_nsp->ipc_ns = copy_ipcs(flags, user_ns, tsk->nsproxy->ipc_ns); in create_new_namespaces() 117 copy_pid_ns(flags, user_ns, tsk->nsproxy->pid_ns_for_children); in create_new_namespaces() 123 new_nsp->cgroup_ns = copy_cgroup_ns(flags, user_ns, in create_new_namespaces() 130 new_nsp->net_ns = copy_net_ns(flags, user_ns, tsk->nsproxy->net_ns); in create_new_namespaces() 136 new_nsp->time_ns_for_children = copy_time_ns(flags, user_ns, in create_new_namespaces() 167 int copy_namespaces(u64 flags, struct task_struct *tsk) in copy_namespaces() argument 173 if (likely(!(flags & (CLONE_NEWNS | CLONE_NEWUTS | CLONE_NEWIPC | in copy_namespaces() [all …]
|
| /linux/drivers/scsi/bfa/ |
| H A D | bfad_bsg.c | 22 unsigned long flags; in bfad_iocmd_ioc_enable() local 24 spin_lock_irqsave(&bfad->bfad_lock, flags); in bfad_iocmd_ioc_enable() 27 spin_unlock_irqrestore(&bfad->bfad_lock, flags); in bfad_iocmd_ioc_enable() 35 spin_unlock_irqrestore(&bfad->bfad_lock, flags); in bfad_iocmd_ioc_enable() 45 unsigned long flags; in bfad_iocmd_ioc_disable() local 47 spin_lock_irqsave(&bfad->bfad_lock, flags); in bfad_iocmd_ioc_disable() 49 spin_unlock_irqrestore(&bfad->bfad_lock, flags); in bfad_iocmd_ioc_disable() 55 spin_unlock_irqrestore(&bfad->bfad_lock, flags); in bfad_iocmd_ioc_disable() 62 spin_unlock_irqrestore(&bfad->bfad_lock, flags); in bfad_iocmd_ioc_disable() 78 unsigned long flags; in bfad_iocmd_ioc_get_info() local [all …]
|
| /linux/arch/arm/mach-omap1/ |
| H A D | mcbsp.c | 97 .flags = IORESOURCE_MEM, 102 .flags = IORESOURCE_IRQ, 107 .flags = IORESOURCE_IRQ, 112 .flags = IORESOURCE_DMA, 117 .flags = IORESOURCE_DMA, 124 .flags = IORESOURCE_MEM, 129 .flags = IORESOURCE_IRQ, 134 .flags = IORESOURCE_IRQ, 139 .flags = IORESOURCE_DMA, 144 .flags = IORESOURCE_DMA, [all …]
|
| /linux/drivers/clk/ |
| H A D | clk-divider.c | 31 if (divider->flags & CLK_DIVIDER_BIG_ENDIAN) in clk_div_readl() 39 if (divider->flags & CLK_DIVIDER_BIG_ENDIAN) in clk_div_writel() 69 unsigned long flags) in _get_maxdiv() argument 71 if (flags & CLK_DIVIDER_ONE_BASED) in _get_maxdiv() 73 if (flags & CLK_DIVIDER_POWER_OF_TWO) in _get_maxdiv() 75 if (flags & CLK_DIVIDER_EVEN_INTEGERS) in _get_maxdiv() 94 unsigned int val, unsigned long flags, u8 width) in _get_div() argument 96 if (flags & CLK_DIVIDER_ONE_BASED) in _get_div() 98 if (flags & CLK_DIVIDER_POWER_OF_TWO) in _get_div() 100 if (flags & CLK_DIVIDER_MAX_AT_ZERO) in _get_div() [all …]
|
| /linux/include/linux/ |
| H A D | spinlock.h | 241 #define raw_spin_lock_irqsave(lock, flags) \ argument 243 typecheck(unsigned long, flags); \ 244 flags = _raw_spin_lock_irqsave(lock); \ 248 #define raw_spin_lock_irqsave_nested(lock, flags, subclass) \ argument 250 typecheck(unsigned long, flags); \ 251 flags = _raw_spin_lock_irqsave_nested(lock, subclass); \ 254 #define raw_spin_lock_irqsave_nested(lock, flags, subclass) \ argument 256 typecheck(unsigned long, flags); \ 257 flags = _raw_spin_lock_irqsave(lock); \ 263 #define raw_spin_lock_irqsave(lock, flags) \ argument 269 raw_spin_lock_irqsave_nested(lock,flags,subclass) global() argument 279 raw_spin_unlock_irqrestore(lock,flags) global() argument 296 raw_spin_trylock_irqsave(lock,flags) global() argument 379 spin_lock_irqsave(lock,flags) global() argument 384 spin_lock_irqsave_nested(lock,flags,subclass) global() argument 404 spin_unlock_irqrestore(spinlock_t * lock,unsigned long flags) spin_unlock_irqrestore() argument 419 spin_trylock_irqsave(lock,flags) global() argument 506 atomic_dec_and_lock_irqsave(atomic,lock,flags) global() argument 515 atomic_dec_and_raw_lock_irqsave(atomic,lock,flags) global() argument [all...] |
| /linux/drivers/crypto/qce/ |
| H A D | common.h | 61 #define IS_DES(flags) (flags & QCE_ALG_DES) argument 62 #define IS_3DES(flags) (flags & QCE_ALG_3DES) argument 63 #define IS_AES(flags) (flags & QCE_ALG_AES) argument 65 #define IS_SHA1(flags) (flags & QCE_HASH_SHA1) argument 66 #define IS_SHA256(flags) (flags & QCE_HASH_SHA256) argument 67 #define IS_SHA1_HMAC(flags) (flags & QCE_HASH_SHA1_HMAC) argument 68 #define IS_SHA256_HMAC(flags) (flags & QCE_HASH_SHA256_HMAC) argument 69 #define IS_CMAC(flags) (flags & QCE_HASH_AES_CMAC) argument 70 #define IS_SHA(flags) (IS_SHA1(flags) || IS_SHA256(flags)) argument 71 #define IS_SHA_HMAC(flags) \ argument [all …]
|
| H A D | common.c | 102 static u32 qce_auth_cfg(unsigned long flags, u32 key_size, u32 auth_size) in qce_auth_cfg() argument 106 if (IS_CCM(flags) || IS_CMAC(flags)) in qce_auth_cfg() 111 if (IS_CCM(flags) || IS_CMAC(flags)) { in qce_auth_cfg() 118 if (IS_SHA1(flags) || IS_SHA1_HMAC(flags)) in qce_auth_cfg() 120 else if (IS_SHA256(flags) || IS_SHA256_HMAC(flags)) in qce_auth_cfg() 122 else if (IS_CMAC(flags)) in qce_auth_cfg() 124 else if (IS_CCM(flags)) in qce_auth_cfg() 127 if (IS_SHA1(flags) || IS_SHA256(flags)) in qce_auth_cfg() 129 else if (IS_SHA1_HMAC(flags) || IS_SHA256_HMAC(flags)) in qce_auth_cfg() 131 else if (IS_CCM(flags)) in qce_auth_cfg() [all …]
|
| /linux/arch/mips/lib/ |
| H A D | bitops.c | 26 unsigned long flags; in __mips_set_bit() local 29 raw_local_irq_save(flags); in __mips_set_bit() 31 raw_local_irq_restore(flags); in __mips_set_bit() 47 unsigned long flags; in __mips_clear_bit() local 50 raw_local_irq_save(flags); in __mips_clear_bit() 52 raw_local_irq_restore(flags); in __mips_clear_bit() 68 unsigned long flags; in __mips_change_bit() local 71 raw_local_irq_save(flags); in __mips_change_bit() 73 raw_local_irq_restore(flags); in __mips_change_bit() 90 unsigned long flags; in __mips_test_and_set_bit_lock() local [all …]
|
| /linux/drivers/media/platform/sunxi/sun8i-rotate/ |
| H A D | sun8i_formats.c | 21 .flags = ROTATE_FLAG_OUTPUT 29 .flags = ROTATE_FLAG_OUTPUT 37 .flags = ROTATE_FLAG_OUTPUT 45 .flags = ROTATE_FLAG_OUTPUT 53 .flags = ROTATE_FLAG_OUTPUT 61 .flags = ROTATE_FLAG_OUTPUT 69 .flags = ROTATE_FLAG_OUTPUT 77 .flags = ROTATE_FLAG_OUTPUT 85 .flags = ROTATE_FLAG_OUTPUT 93 .flags = ROTATE_FLAG_OUTPUT [all …]
|
| /linux/arch/s390/kernel/ |
| H A D | fpu.c | 15 void __kernel_fpu_begin(struct kernel_fpu *state, int flags) in __kernel_fpu_begin() argument 24 flags &= state->hdr.mask; in __kernel_fpu_begin() 25 if (flags & KERNEL_FPC) in __kernel_fpu_begin() 28 if (flags & KERNEL_VXR_LOW) in __kernel_fpu_begin() 32 mask = flags & KERNEL_VXR; in __kernel_fpu_begin() 42 mask = flags & KERNEL_VXR_LOW; in __kernel_fpu_begin() 51 mask = flags & KERNEL_VXR_HIGH; in __kernel_fpu_begin() 63 void __kernel_fpu_end(struct kernel_fpu *state, int flags) in __kernel_fpu_end() argument 73 flags &= state->hdr.mask; in __kernel_fpu_end() 74 if (flags & KERNEL_FPC) in __kernel_fpu_end() [all …]
|