/linux-6.3-rc2/kernel/ |
A D | range.c | 14 if (start >= end) in add_range() 22 range[nr_range].end = end; in add_range() 34 if (start >= end) in add_range_with_merge() 45 common_end = min(range[i].end, end); in add_range_with_merge() 51 end = max(range[i].end, end); in add_range_with_merge() 76 if (start <= range[j].start && end >= range[j].end) { in subtract_range() 82 if (start <= range[j].start && end < range[j].end && in subtract_range() 89 if (start > range[j].start && end >= range[j].end && in subtract_range() 95 if (start > range[j].start && end < range[j].end) { in subtract_range() 102 range[i].end = range[j].end; in subtract_range() [all …]
|
A D | resource.c | 122 end = r->end; in r_show() 181 if (end > root->end) in __request_resource() 363 .end = min(end, p->end), in find_next_iomem_res() 600 tmp.end = root->end; in __find_resource() 610 avail.end = tmp.end; in __find_resource() 670 old->end = new.end; in reallocate_resource() 681 old->end = new.end; in reallocate_resource() 959 res->end = end; in __adjust_resource() 1003 res->end = end; in __reserve_region_with_split() 1028 end = res->end; in __reserve_region_with_split() [all …]
|
/linux-6.3-rc2/include/linux/ceph/ |
A D | decode.h | 54 return end >= *p && n <= end - *p; in ceph_has_room() 57 #define ceph_decode_need(p, end, n, bad) \ argument 59 if (!likely(ceph_has_room(p, end, n))) \ 86 ceph_decode_need(p, end, n, bad); \ 114 ceph_decode_32_safe(&sp, end, len, bad); in ceph_extract_encoded_string() 115 if (!ceph_has_room(&sp, end, len)) in ceph_extract_encoded_string() 141 ceph_decode_need(p, end, n, bad); \ 298 BUG_ON(*p + sizeof(len) + len > end); in ceph_encode_string() 388 ceph_encode_need(p, end, n, bad); \ 393 ceph_encode_need(p, end, n, bad); \ [all …]
|
/linux-6.3-rc2/drivers/net/dsa/sja1105/ |
A D | sja1105_ethtool.c | 85 int end; member 96 .end = 24, 103 .end = 16, 110 .end = 8, 117 .end = 0, 125 .end = 27, 132 .end = 26, 209 .end = 8, 216 .end = 6, 223 .end = 5, [all …]
|
/linux-6.3-rc2/arch/mips/pci/ |
A D | pci-malta.c | 106 end = (end & GT_PCI_HD_MSK) | (start & ~GT_PCI_HD_MSK); in mips_pcibios_init() 114 end = end1; in mips_pcibios_init() 122 gt64120_mem_resource.end = end; in mips_pcibios_init() 133 end = (end & GT_PCI_HD_MSK) | (start & ~GT_PCI_HD_MSK); in mips_pcibios_init() 161 end = 1; in mips_pcibios_init() 165 end++; in mips_pcibios_init() 170 end++; in mips_pcibios_init() 215 end <= msc_mem_resource.end)) { in mips_pcibios_init() 218 end = min(end, msc_mem_resource.end); in mips_pcibios_init() 220 msc_mem_resource.end - end) in mips_pcibios_init() [all …]
|
/linux-6.3-rc2/drivers/net/ethernet/mellanox/mlx5/core/steering/ |
A D | dr_ste_v2.c | 47 .hw_field = DR_STE_V2_ACTION_MDFY_FLD_L2_OUT_1, .start = 0, .end = 15, 50 .hw_field = DR_STE_V2_ACTION_MDFY_FLD_L2_OUT_0, .start = 0, .end = 31, 53 .hw_field = DR_STE_V2_ACTION_MDFY_FLD_L2_OUT_1, .start = 16, .end = 31, 56 .hw_field = DR_STE_V2_ACTION_MDFY_FLD_L3_OUT_0, .start = 18, .end = 23, 59 .hw_field = DR_STE_V2_ACTION_MDFY_FLD_L4_OUT_1, .start = 16, .end = 24, 63 .hw_field = DR_STE_V2_ACTION_MDFY_FLD_L4_OUT_0, .start = 16, .end = 31, 67 .hw_field = DR_STE_V2_ACTION_MDFY_FLD_L4_OUT_0, .start = 0, .end = 15, 71 .hw_field = DR_STE_V2_ACTION_MDFY_FLD_L3_OUT_0, .start = 8, .end = 15, 75 .hw_field = DR_STE_V2_ACTION_MDFY_FLD_L3_OUT_0, .start = 8, .end = 15, 79 .hw_field = DR_STE_V2_ACTION_MDFY_FLD_L4_OUT_0, .start = 16, .end = 31, [all …]
|
/linux-6.3-rc2/fs/ceph/ |
A D | mdsmap.c | 59 if (*p + sizeof(type) > end) \ 68 ceph_decode_32_safe(p, end, n, bad); \ 70 ceph_decode_need(p, end, need, bad); \ 102 ceph_decode_need(p, end, len, bad); in __decode_and_drop_compat_set() 131 ceph_decode_need(p, end, 1 + 1, bad); in ceph_mdsmap_decode() 137 if (end < *p + mdsmap_len) in ceph_mdsmap_decode() 139 end = *p + mdsmap_len; in ceph_mdsmap_decode() 196 if (info_end > end) in ceph_mdsmap_decode() 274 ceph_decode_32_safe(p, end, n, bad); in ceph_mdsmap_decode() 390 *p = end; in ceph_mdsmap_decode() [all …]
|
/linux-6.3-rc2/arch/microblaze/kernel/cpu/ |
A D | cache.c | 96 end = min(start + cache_size, end); \ 130 end = ((end & align) == end) ? end - line_length : end & align; \ 131 count = end - start; \ 146 end = ((end & align) == end) ? end - line_length : end & align; \ 147 WARN_ON(end < start); \ 186 unsigned long end) in __flush_icache_range_nomsr_irq() argument 214 unsigned long end) in __flush_icache_range_noirq() argument 378 unsigned long end) in __invalidate_dcache_range_wb() argument 398 unsigned long end) in __invalidate_dcache_range_nomsr_wt() argument 418 unsigned long end) in __invalidate_dcache_range_msr_irq_wt() argument [all …]
|
/linux-6.3-rc2/lib/ |
A D | vsprintf.c | 526 if (buf < end) in number() 555 if (buf < end) in number() 561 if (buf < end) in number() 567 if (buf < end) in number() 629 if (buf < end) in widen_string() 647 if (buf < end) in string_nocheck() 1824 if (buf < end) in date_str() 1829 if (buf < end) in date_str() 1840 if (buf < end) in time_str() 1845 if (buf < end) in time_str() [all …]
|
/linux-6.3-rc2/fs/btrfs/ |
A D | extent-io-tree.c | 68 if (end >= PAGE_SIZE && (end % 2) == 0 && end != isize - 1) { in __btrfs_debug_check_extent_io_range() 361 state->end = other->end; in merge_state() 399 const u64 end = state->end; in insert_state() local 646 if (state->end <= end) { in __clear_extent_bit() 657 if (state->start <= end && state->end > end) { in __clear_extent_bit() 933 *end = state->end; in btrfs_find_delalloc_range() 942 *end = state->end; in btrfs_find_delalloc_range() 1018 prealloc->end = end; in __set_extent_bit() 1151 if (state->start <= end && state->end > end) { in __set_extent_bit() 1266 prealloc->end = end; in convert_extent_bit() [all …]
|
A D | extent-io-tree.h | 93 u64 end; /* inclusive */ member 134 u64 end, u32 bits, in clear_extent_bit() argument 149 u64 end, u32 bits) in clear_extent_bits() argument 160 u64 end, u32 bits) in set_extent_bits_nowait() argument 166 u64 end, u32 bits) in set_extent_bits() argument 179 u64 end, gfp_t mask) in set_extent_dirty() argument 197 u64 end, u32 extra_bits, in set_extent_delalloc() argument 200 return set_extent_bit(tree, start, end, in set_extent_delalloc() 208 return set_extent_bit(tree, start, end, in set_extent_defrag() 214 u64 end) in set_extent_new() argument [all …]
|
/linux-6.3-rc2/tools/perf/util/ |
A D | block-range.c | 28 old = entry->end; in block_range__debug() 149 .end = end, in block_range__create() 204 if (end < entry->end) { /* split: [...end][...e->end] */ in block_range__create() 211 .end = entry->end, in block_range__create() 220 entry->end = end; in block_range__create() 229 iter.end = entry; in block_range__create() 236 if (end == entry->end) { in block_range__create() 238 iter.end = entry; in block_range__create() 258 .end = end, in block_range__create() 267 iter.end = tail; in block_range__create() [all …]
|
A D | time-utils.c | 21 char *end; in parse_nsec_time() local 24 if (*end != '.' && *end != '\0') in parse_nsec_time() 27 if (*end == '.') { in parse_nsec_time() 42 if (*end != '\0') in parse_nsec_time() 89 *end = end_str; in split_start_end() 104 ptime->end = 0; in perf_time__parse_str() 111 if (rc == 0 && ptime->end && ptime->end < ptime->start) in perf_time__parse_str() 212 if (ptime->end > ptime->start && ptime->end != end) in set_percent_time() 213 ptime->end -= 1; in set_percent_time() 427 (ptime->end && timestamp > ptime->end)) { in perf_time__skip_sample() [all …]
|
/linux-6.3-rc2/arch/nios2/mm/ |
A D | cacheflush.c | 116 __flush_dcache(start, end); in flush_icache_range() 117 __flush_icache(start, end); in flush_icache_range() 122 __flush_dcache(start, end); in flush_dcache_range() 123 __flush_icache(start, end); in flush_dcache_range() 134 unsigned long end) in flush_cache_range() argument 136 __flush_dcache(start, end); in flush_cache_range() 138 __flush_icache(start, end); in flush_cache_range() 146 __flush_dcache(start, end); in flush_icache_page() 147 __flush_icache(start, end); in flush_icache_page() 156 __flush_dcache(start, end); in flush_cache_page() [all …]
|
/linux-6.3-rc2/arch/arm/mach-pxa/ |
A D | devices.c | 39 .end = IRQ_PMU, 53 .end = 0x41100fff, 58 .end = IRQ_MMC, 88 .end = 0x4060ffff, 93 .end = IRQ_USB, 130 .end = IRQ_LCD, 260 .end = IRQ_I2C, 305 .end = IRQ_I2S, 418 .end = IRQ_SSP, 532 .end = IRQ_SSP, [all …]
|
/linux-6.3-rc2/arch/x86/pci/ |
A D | amd_bus.c | 72 u64 end; in early_root_info_init() local 171 if (end > 0xffff) in early_root_info_init() 172 end = 0xffff; in early_root_info_init() 181 if (!range[i].end) in early_root_info_init() 192 end++; in early_root_info_init() 199 printk(KERN_INFO "TOM: %016llx aka %lldM\n", end, end>>20); in early_root_info_init() 200 if (end < (1ULL<<32)) in early_root_info_init() 229 end <<= 8; in early_root_info_init() 230 end |= 0xffff; in early_root_info_init() 295 printk(KERN_INFO "TOM2: %016llx aka %lldM\n", end, end>>20); in early_root_info_init() [all …]
|
/linux-6.3-rc2/fs/btrfs/tests/ |
A D | extent-io-tests.c | 166 &end); in test_find_delalloc() 197 &end); in test_find_delalloc() 231 &end); in test_find_delalloc() 252 &end); in test_find_delalloc() 293 &end); in test_find_delalloc() 487 u64 start, end; in test_find_first_clear_extent_bit() local 499 start, end); in test_find_first_clear_extent_bit() 514 start, end); in test_find_first_clear_extent_bit() 530 start, end); in test_find_first_clear_extent_bit() 543 start, end); in test_find_first_clear_extent_bit() [all …]
|
/linux-6.3-rc2/arch/csky/mm/ |
A D | cachev2.c | 24 void icache_inv_range(unsigned long start, unsigned long end) in icache_inv_range() argument 28 for (; i < end; i += L1_CACHE_BYTES) in icache_inv_range() 35 unsigned long end; member 54 for (; i < param->end; i += L1_CACHE_BYTES) in local_icache_inv_range() 64 struct cache_range param = { start, end }; in icache_inv_range() 83 for (; i < end; i += L1_CACHE_BYTES) in dcache_wb_range() 90 dcache_wb_range(start, end); in cache_wbinv_range() 91 icache_inv_range(start, end); in cache_wbinv_range() 99 for (; i < end; i += L1_CACHE_BYTES) in dma_wbinv_range() 108 for (; i < end; i += L1_CACHE_BYTES) in dma_inv_range() [all …]
|
/linux-6.3-rc2/arch/arm/mm/ |
A D | cache-feroceon-l2.c | 79 BUG_ON((start ^ end) >> PAGE_SHIFT); in l2_clean_pa_range() 82 va_end = va_start + (end - start); in l2_clean_pa_range() 113 va_end = va_start + (end - start); in l2_inv_pa_range() 149 range_end = end; in calc_range_end() 181 if (start < end && end & (CACHE_LINE_SIZE - 1)) { in feroceon_l2_inv_range() 183 end &= ~(CACHE_LINE_SIZE - 1); in feroceon_l2_inv_range() 189 while (start < end) { in feroceon_l2_inv_range() 206 end = (end + CACHE_LINE_SIZE - 1) & ~(CACHE_LINE_SIZE - 1); in feroceon_l2_clean_range() 207 while (start != end) { in feroceon_l2_clean_range() 220 end = (end + CACHE_LINE_SIZE - 1) & ~(CACHE_LINE_SIZE - 1); in feroceon_l2_flush_range() [all …]
|
/linux-6.3-rc2/drivers/gpu/drm/i915/ |
A D | intel_uncore.c | 909 else if (offset > entry->end) in fw_range_cmp() 986 { .start = 0x2030, .end = 0x2030 }, 987 { .start = 0xA008, .end = 0xA00C }, 988 { .start = 0x12030, .end = 0x12030 }, 989 { .start = 0x1a030, .end = 0x1a030 }, 990 { .start = 0x22030, .end = 0x22030 }, 994 { .start = 0x2030, .end = 0x2030 }, 995 { .start = 0x2550, .end = 0x2550 }, 996 { .start = 0xA008, .end = 0xA00C }, 997 { .start = 0x22030, .end = 0x22030 }, [all …]
|
/linux-6.3-rc2/arch/s390/include/asm/ |
A D | mem_detect.h | 17 u64 end; member 39 void add_mem_detect_block(u64 start, u64 end); 46 *end = 0; in __get_mem_detect_block() 52 *end = (unsigned long)mem_detect.entries[n].end; in __get_mem_detect_block() 55 *end = (unsigned long)mem_detect.entries_extended[n - MEM_INLINED_ENTRIES].end; in __get_mem_detect_block() 61 if (*end > mem_detect.usable) in __get_mem_detect_block() 62 *end = mem_detect.usable; in __get_mem_detect_block() 84 unsigned long start, end, total = 0; in get_mem_detect_usable_total() local 88 total += end - start; in get_mem_detect_usable_total() 106 unsigned long end; in get_mem_detect_end() local [all …]
|
/linux-6.3-rc2/arch/x86/mm/ |
A D | numa_emulation.c | 73 nid, eb->start, eb->end - 1, (eb->end - eb->start) >> 20); in emu_setup_memblk() 148 while (end - start - mem_hole_size(start, end) < size) { in split_nodes_interleave() 151 end = limit; in split_nodes_interleave() 161 if (end < dma32_end && dma32_end - end - in split_nodes_interleave() 170 if (limit - end - mem_hole_size(end, limit) < size) in split_nodes_interleave() 171 end = limit; in split_nodes_interleave() 191 while (end - start - mem_hole_size(start, end) < size) { in find_end_of_node() 198 return end; in find_end_of_node() 297 if (end < dma32_end && dma32_end - end - in split_nodes_size_interleave_uniform() 306 if ((limit - end - mem_hole_size(end, limit) < size) in split_nodes_size_interleave_uniform() [all …]
|
/linux-6.3-rc2/arch/x86/mm/pat/ |
A D | memtype_interval.c | 43 return entry->end - 1; in interval_end() 63 while (entry_match != NULL && entry_match->start < end) { in memtype_match() 65 (entry_match->start == start) && (entry_match->end == end)) in memtype_match() 69 (entry_match->start < start) && (entry_match->end == end)) in memtype_match() 78 static int memtype_check_conflict(u64 start, u64 end, in memtype_check_conflict() argument 95 entry_match = interval_iter_next(entry_match, start, end-1); in memtype_check_conflict() 110 current->comm, current->pid, start, end, in memtype_check_conflict() 131 struct memtype *memtype_erase(u64 start, u64 end) in memtype_erase() argument 142 entry_old = memtype_match(start, end, MEMTYPE_EXACT_MATCH); in memtype_erase() 144 entry_old = memtype_match(start, end, MEMTYPE_END_MATCH); in memtype_erase() [all …]
|
/linux-6.3-rc2/net/ceph/ |
A D | cls_lock_client.c | 36 void *p, *end; in ceph_cls_lock() local 57 end = p + lock_op_buf_size; in ceph_cls_lock() 101 void *p, *end; in ceph_cls_unlock() local 116 end = p + unlock_op_buf_size; in ceph_cls_unlock() 154 void *p, *end; in ceph_cls_break_lock() local 169 end = p + break_op_buf_size; in ceph_cls_break_lock() 201 void *p, *end; in ceph_cls_set_cookie() local 344 void *p, *end; in ceph_cls_lock_info() local 378 end = p + reply_len; in ceph_cls_lock_info() 397 void *p, *end; in ceph_cls_assert_locked() local [all …]
|
/linux-6.3-rc2/Documentation/admin-guide/kdump/ |
A D | gdbmacros.txt | 34 end 52 end 53 end 56 end 75 end 76 end 79 end 99 end 102 end 131 end [all …]
|