| /linux/tools/testing/selftests/bpf/prog_tests/ |
| H A D | signed_loader.c | 65 const void *excl, __u32 excl_sz, in run_gen_loader() argument 70 .excl_prog_hash = excl, in run_gen_loader() 240 __u8 excl[SHA256_DIGEST_LENGTH]; member 281 libbpf_sha256(gopts.insns, gopts.insns_sz, f->excl); in gen_loader_fixture_init() 302 f.data_sz, f.excl, sizeof(f.excl), NULL, 0, in metadata_match() 383 mopts.excl_prog_hash = f.excl; in signed_unfrozen_fd_array_rejected() 384 mopts.excl_prog_hash_size = sizeof(f.excl); in signed_unfrozen_fd_array_rejected() 422 mopts.excl_prog_hash = f.excl; in signed_nonarray_fd_array_rejected() 423 mopts.excl_prog_hash_size = sizeof(f.excl); in signed_nonarray_fd_array_rejected() 641 __u8 excl[SHA256_DIGEST_LENGTH]; in metadata_ctx_max_entries_ignored() local [all …]
|
| /linux/arch/arm/boot/bootp/ |
| H A D | bootp.lds | 22 .stab.excl 0 : { *(.stab.excl) }
|
| /linux/arch/parisc/kernel/vdso64/ |
| H A D | vdso64.lds.S | 56 .stab.excl 0 : { *(.stab.excl) }
|
| /linux/arch/parisc/kernel/vdso32/ |
| H A D | vdso32.lds.S | 58 .stab.excl 0 : { *(.stab.excl) }
|
| /linux/fs/btrfs/ |
| H A D | qgroup.c | 336 u64 rfer, u64 excl) in btrfs_verify_qgroup_counts() argument 343 if (qgroup->rfer != rfer || qgroup->excl != excl) in btrfs_verify_qgroup_counts() 366 excl_sum += glist->member->excl; in squota_check_parent_usage() 372 mismatch = (parent->excl != excl_sum || parent->rfer != rfer_sum || in squota_check_parent_usage() 378 BTRFS_QGROUP_FMT_VALUE(parent), nr_members, parent->excl, in squota_check_parent_usage() 535 qgroup->excl = btrfs_qgroup_info_excl(l, ptr); in btrfs_read_qgroup_config() 909 btrfs_set_qgroup_info_excl(l, qgroup_info, qgroup->excl); in update_qgroup_info_item() 1492 u64 num_bytes = src->excl; in __qgroup_excl_accounting() 1507 WARN_ON(sign < 0 && qgroup->excl < num_bytes); in __qgroup_excl_accounting() 1509 qgroup->excl += sign * num_bytes; in __qgroup_excl_accounting() [all …]
|
| /linux/arch/mips/net/ |
| H A D | bpf_jit_comp.h | 145 int push_regs(struct jit_context *ctx, u32 mask, u32 excl, int depth); 151 int pop_regs(struct jit_context *ctx, u32 mask, u32 excl, int depth);
|
| /linux/drivers/tty/ |
| H A D | vcc.c | 158 static struct vcc_port *vcc_get(unsigned long index, bool excl) in vcc_get() argument 172 if (!excl) { in vcc_get() 208 static void vcc_put(struct vcc_port *port, bool excl) in vcc_put() argument 218 if (WARN_ON((excl && !port->excl_locked) || in vcc_put() 219 (!excl && port->excl_locked))) in vcc_put() 224 if (excl) in vcc_put()
|
| /linux/drivers/gpu/drm/i915/ |
| H A D | i915_active_types.h | 34 struct i915_active_fence excl; member
|
| H A D | i915_active.h | 225 fence = i915_active_fence_get(&active->excl); in __i915_request_await_exclusive()
|
| /linux/fs/ |
| H A D | super.c | 57 static inline void __super_lock(struct super_block *sb, bool excl) in __super_lock() argument 59 if (excl) in __super_lock() 65 static inline void super_unlock(struct super_block *sb, bool excl) in super_unlock() argument 67 if (excl) in super_unlock() 113 static __must_check bool super_lock(struct super_block *sb, bool excl) in super_lock() argument 124 __super_lock(sb, excl); in super_lock() 132 super_unlock(sb, excl); in super_lock() 977 bool excl = flags & SUPER_ITER_EXCL; in __iterate_supers() local 994 } else if (super_lock(sb, excl)) { in __iterate_supers() 996 super_unlock(sb, excl); in __iterate_supers() [all …]
|
| /linux/drivers/net/wireless/intel/iwlwifi/ |
| H A D | iwl-drv.c | 700 struct iwl_dump_exclude *excl; in iwl_drv_set_dump_exclude() local 706 excl = &drv->fw.dump_excl[0]; in iwl_drv_set_dump_exclude() 709 if (excl->addr) in iwl_drv_set_dump_exclude() 710 excl = &drv->fw.dump_excl_wowlan[0]; in iwl_drv_set_dump_exclude() 714 excl = &drv->fw.dump_excl[0]; in iwl_drv_set_dump_exclude() 717 excl = &drv->fw.dump_excl_wowlan[0]; in iwl_drv_set_dump_exclude() 720 if (excl->addr) in iwl_drv_set_dump_exclude() 721 excl++; in iwl_drv_set_dump_exclude() 723 if (excl->addr) { in iwl_drv_set_dump_exclude() 728 excl->addr = le32_to_cpu(fw->addr) & ~FW_ADDR_CACHE_CONTROL; in iwl_drv_set_dump_exclude() [all …]
|
| /linux/scripts/kconfig/ |
| H A D | streamline_config.pl | 616 foreach my $excl (@preserved_kconfigs) { 617 if($kconfig =~ /^$excl/) {
|
| /linux/kernel/locking/ |
| H A D | lockdep.c | 2693 unsigned long excl = 0; 2696 excl |= (mask & LOCKF_ENABLED_IRQ_ALL) >> LOCK_USAGE_DIR_MASK; 2697 excl |= (mask & LOCKF_USED_IN_IRQ_ALL) << LOCK_USAGE_DIR_MASK; 2699 return excl; 2732 unsigned long excl = invert_dir_mask(mask); in original_mask() 2734 excl |= (excl & LOCKF_IRQ_READ) >> LOCK_USAGE_READ_MASK; in original_mask() 2735 excl |= (excl & LOCKF_IRQ) << LOCK_USAGE_READ_MASK; in original_mask() 2737 return excl; in original_mask() 2677 unsigned long excl = 0; invert_dir_mask() local 2716 unsigned long excl = invert_dir_mask(mask); exclusive_mask() local 2733 unsigned long excl = invert_dir_mask(mask); original_mask() local 2751 int bit, excl, excl_read; find_exclusive_match() local [all...] |
| /linux/fs/coda/ |
| H A D | coda_psdev.h | 63 const char *name, int length, int excl, int mode,
|
| H A D | upcall.c | 270 const char *name, int length, int excl, int mode, in venus_create() argument 284 inp->coda_create.excl = excl; in venus_create()
|
| /linux/include/linux/ |
| H A D | ioport.h | 374 #define __request_mem_region(start,n,name, excl) __request_region(&iomem_resource, (start), (n), (n… argument
|
| /linux/drivers/net/wireless/intel/iwlwifi/mvm/ |
| H A D | ops.c | 1041 const struct iwl_dump_exclude *excl; in iwl_mvm_frob_mem() local 1052 excl = mvm->fw->dump_excl; in iwl_mvm_frob_mem() 1055 excl = mvm->fw->dump_excl_wowlan; in iwl_mvm_frob_mem() 1065 if (!excl[i].addr || !excl[i].size) in iwl_mvm_frob_mem() 1068 start = excl[i].addr; in iwl_mvm_frob_mem() 1069 end = start + excl[i].size; in iwl_mvm_frob_mem()
|
| /linux/arch/um/os-Linux/ |
| H A D | file.c | 574 int os_lock_file(int fd, int excl) in os_lock_file() argument 576 int type = excl ? F_WRLCK : F_RDLCK; in os_lock_file()
|
| /linux/arch/um/include/shared/ |
| H A D | os.h | 171 extern int os_lock_file(int fd, int excl);
|
| /linux/include/uapi/linux/ |
| H A D | coda.h | 443 int excl; member
|
| /linux/fs/erofs/ |
| H A D | zdata.c | 1018 bool tight, excl; in z_erofs_scan_folio() local 1068 excl = false; in z_erofs_scan_folio() 1070 excl = (split <= 1) || tight; in z_erofs_scan_folio() 1077 .end = end - pgs, }), excl); in z_erofs_scan_folio()
|
| /linux/net/xfrm/ |
| H A D | xfrm_policy.c | 203 bool excl); 1233 xfrm_policy_inexact_insert(struct xfrm_policy *policy, u8 dir, int excl) in xfrm_policy_inexact_insert() argument 1253 delpol = xfrm_policy_insert_list(chain, policy, excl); in xfrm_policy_inexact_insert() 1254 if (delpol && excl) { in xfrm_policy_inexact_insert() 1537 bool excl) in xfrm_policy_insert_list() argument 1548 if (excl) in xfrm_policy_insert_list() 1572 int xfrm_policy_insert(int dir, struct xfrm_policy *policy, int excl) in xfrm_policy_insert() argument 1584 delpol = xfrm_policy_insert_list(chain, policy, excl); in xfrm_policy_insert() 1586 delpol = xfrm_policy_inexact_insert(policy, dir, excl); in xfrm_policy_insert()
|
| /linux/arch/mips/include/asm/sn/sn0/ |
| H A D | hubio.h | 886 excl: 4, /* 26-23: exclusive bit(s) */ member
|
| /linux/drivers/net/wwan/ |
| H A D | wwan_core.c | 1052 int excl = test_bit(WWAN_PORT_EXCLUSIVE, &port->flags); in wwan_port_fops_at_ioctl() local 1054 ret = put_user(excl, (int __user *)arg); in wwan_port_fops_at_ioctl()
|
| /linux/Documentation/scsi/ |
| H A D | ncr53c8xx.rst | 725 specified driver on each adapter. To exclude a chip use the 'excl' keyword. 729 insmod sym53c8xx sym53c8xx=excl:0x1400 1007 excl=<io_address> 1010 For example 'ncr53c8xx=excl:0xb400,excl:0xc000' indicate to the 1208 must use the 'excl' driver boot option.
|