| /linux/fs/btrfs/ |
| A D | delayed-ref.c | 648 spin_lock(&existing->lock); in update_existing_head_ref() 668 if (!existing->extent_op) { in update_existing_head_ref() 672 memcpy(&existing->extent_op->key, in update_existing_head_ref() 678 existing->extent_op->flags_to_set |= in update_existing_head_ref() 690 old_ref_mod = existing->total_ref_mod; in update_existing_head_ref() 691 existing->ref_mod += update->ref_mod; in update_existing_head_ref() 698 if (existing->is_data) { in update_existing_head_ref() 701 existing->num_bytes); in update_existing_head_ref() 713 spin_unlock(&existing->lock); in update_existing_head_ref() 808 if (existing) { in add_delayed_ref_head() [all …]
|
| A D | extent_map.c | 544 struct extent_map *existing, in merge_extent_mapping() argument 556 if (existing->start > map_start) { in merge_extent_mapping() 557 next = existing; in merge_extent_mapping() 560 prev = existing; in merge_extent_mapping() 613 struct extent_map *existing; in btrfs_add_extent_mapping() local 625 if (start >= existing->start && in btrfs_add_extent_mapping() 626 start < extent_map_end(existing)) { in btrfs_add_extent_mapping() 628 *em_in = existing; in btrfs_add_extent_mapping() 638 ret = merge_extent_mapping(em_tree, existing, in btrfs_add_extent_mapping() 645 ret, existing->start, existing->len, in btrfs_add_extent_mapping() [all …]
|
| /linux/net/llc/ |
| A D | llc_if.c | 89 struct sock *existing; in llc_establish_connection() local 95 existing = llc_lookup_established(llc->sap, &daddr, &laddr); in llc_establish_connection() 96 if (existing) { in llc_establish_connection() 97 if (existing->sk_state == TCP_ESTABLISHED) { in llc_establish_connection() 98 sk = existing; in llc_establish_connection() 101 sock_put(existing); in llc_establish_connection()
|
| /linux/scripts/ |
| A D | Makefile.modpost | 101 existing-input-symdump := $(wildcard $(input-symdump)) 105 $(addprefix -i ,$(existing-input-symdump)) \ 124 ifneq ($(KBUILD_MODPOST_WARN)$(filter-out $(existing-input-symdump), $(input-symdump)),) 146 existing-targets := $(wildcard $(sort $(targets))) 148 -include $(foreach f,$(existing-targets),$(dir $(f)).$(notdir $(f)).cmd)
|
| A D | Makefile.headersinst | 53 existing-dirs := $(sort $(dir $(old-headers))) 55 new-dirs := $(filter-out $(existing-dirs), $(wanted-dirs)) 77 existing-headers := $(filter $(old-headers), $(all-headers)) 79 -include $(foreach f,$(existing-headers),$(dir $(f)).$(notdir $(f)).cmd)
|
| A D | Makefile.modfinal | 78 existing-targets := $(wildcard $(sort $(targets))) 80 -include $(foreach f,$(existing-targets),$(dir $(f)).$(notdir $(f)).cmd)
|
| A D | Makefile.build | 566 existing-targets := $(wildcard $(sort $(targets))) 568 -include $(foreach f,$(existing-targets),$(dir $(f)).$(notdir $(f)).cmd) 573 existing-dirs := $(sort $(patsubst %/,%, $(dir $(existing-targets)))) 574 obj-dirs := $(strip $(filter-out $(existing-dirs), $(obj-dirs)))
|
| /linux/Documentation/block/ |
| A D | pr.rst | 64 is non-null. If no existing reservation exists old_key must be zero, 65 if an existing reservation should be replaced old_key must contain 68 If the new_key argument is 0 it unregisters the existing reservation passed 76 devices based on the type argument. The key argument must be the existing 91 This ioctl command releases the existing reservation referred to by 106 registered with the device and drops any existing reservation. 115 Ignore the existing reservation key. This is commonly supported for
|
| /linux/Documentation/ABI/testing/ |
| A D | sysfs-class-stm_source | 7 is directed. Reads return an existing connection or "<none>" if 9 Write an existing (registered) stm device's name here to
|
| A D | sysfs-bus-intel_th-devices-msc | 19 If operating mode changes, existing buffer is deallocated, 34 Writing to this file deallocates existing buffer (provided
|
| /linux/drivers/base/ |
| A D | devcoredump.c | 256 struct device *existing; in dev_coredumpm() local 261 existing = class_find_device(&devcd_class, NULL, dev, in dev_coredumpm() 263 if (existing) { in dev_coredumpm() 264 put_device(existing); in dev_coredumpm()
|
| /linux/tools/perf/Documentation/ |
| A D | db-export.txt | 22 1. Because of the nature of SQL, existing tables and columns can continue to be 26 2. New tables and columns can be added, without affecting existing SQL queries, 33 4. The export scripts themselves maintain forward compatibility (i.e. an existing
|
| A D | itrace.txt | 18 G synthesize a call chain on existing event records 20 L synthesize last branch entries on existing event records
|
| /linux/Documentation/driver-api/mei/ |
| A D | mei-client-bus.rst | 13 However, for some of the ME functionalities it makes sense to leverage existing software 14 stack and expose them through existing kernel subsystems. 20 the existing code. 26 A driver implementation for an MEI Client is very similar to any other existing bus
|
| /linux/Documentation/devicetree/bindings/net/ |
| A D | broadcom-bcm87xx.txt | 12 with the existing register value, and the fourth cell is ORed with 14 value of zero, no read of the existing value is performed.
|
| /linux/drivers/staging/media/ |
| A D | Kconfig | 9 so, they won't likely work fine with the existing applications. 11 the existing ones.
|
| /linux/tools/bpf/bpftool/Documentation/ |
| A D | bpftool-struct_ops.rst | 39 currently existing in the system. 48 currently existing in the system.
|
| /linux/Documentation/firmware-guide/acpi/ |
| A D | method-customizing.rst | 14 1. override an existing method which may not work correctly, 38 1. override an existing method 68 This is easier than overriding an existing method.
|
| /linux/security/integrity/evm/ |
| A D | Kconfig | 27 additional info to the calculation, requires existing EVM 44 additional info to the calculation, requires existing EVM
|
| /linux/kernel/bpf/ |
| A D | core.c | 2142 struct bpf_prog_array_item *existing, *new; in bpf_prog_array_copy() local 2150 existing = old_array->items; in bpf_prog_array_copy() 2151 for (; existing->prog; existing++) { in bpf_prog_array_copy() 2152 if (existing->prog == exclude_prog) { in bpf_prog_array_copy() 2156 if (existing->prog != &dummy_bpf_prog.prog) in bpf_prog_array_copy() 2158 if (existing->prog == include_prog) in bpf_prog_array_copy() 2185 existing = old_array->items; in bpf_prog_array_copy() 2186 for (; existing->prog; existing++) { in bpf_prog_array_copy() 2187 if (existing->prog == exclude_prog || in bpf_prog_array_copy() 2191 new->prog = existing->prog; in bpf_prog_array_copy() [all …]
|
| /linux/lib/kunit/ |
| A D | test.c | 633 struct kunit_resource *existing; in kunit_add_named_resource() local 638 existing = kunit_find_named_resource(test, name); in kunit_add_named_resource() 639 if (existing) { in kunit_add_named_resource() 640 kunit_put_resource(existing); in kunit_add_named_resource()
|
| /linux/Documentation/timers/ |
| A D | hrtimers.rst | 10 features into the existing timer framework, and after testing various 72 special-purpose optimization of the existing timer wheel for the low 88 - simplification of existing, timing related kernel code 105 absolute timers based on a low-resolution CLOCK_REALTIME. The existing 117 existing timer wheel code, as it is mature and well suited. Sharing code
|
| /linux/Documentation/userspace-api/media/dvb/ |
| A D | dvb-frontend-parameters.rst | 15 size would break the existing applications. So, those parameters were 19 existing delivery systems, and to add newer delivery systems.
|
| /linux/Documentation/networking/device_drivers/fddi/ |
| A D | defza.rst | 23 existing IEEE 802.3 10BASE2 Ethernet and IEEE 802.5 Token Ring networks 24 by providing means to reuse existing cabling.
|
| /linux/Documentation/networking/device_drivers/atm/ |
| A D | cxacru.rst | 15 existing devices working when an invalid configuration is supplied. 17 There is a script cxacru-cf.py to convert an existing file to the sysfs form.
|