/linux-5.10/fs/jfs/ |
D | jfs_unicode.h | 1 /* SPDX-License-Identifier: GPL-2.0-or-later */ 3 * Copyright (C) International Business Machines Corp., 2000-2002 4 * Portions Copyright (C) Christoph Hellwig, 2001-2002 14 wchar_t start; member 24 #define free_UCSname(COMP) kfree((COMP)->name) 31 wchar_t *anchor = ucs1; /* save the start of result string */ in UniStrcpy() 47 while (n-- && *ucs2) /* Copy the strings */ in UniStrncpy_le() 51 while (n--) /* Pad with nulls */ in UniStrncpy_le() 57 * UniStrncmp_le: Compare length limited string - native to little-endian 64 while ((*ucs1 == __le16_to_cpu(*ucs2)) && *ucs1 && --n) { in UniStrncmp_le() [all …]
|
/linux-5.10/fs/cifs/ |
D | cifs_unicode.h | 1 /* SPDX-License-Identifier: GPL-2.0-or-later */ 76 wchar_t start; member 120 __le16 *anchor = ucs1; /* save a pointer to start of ucs1 */ in UniStrcat() 123 ucs1--; /* Return to the null */ in UniStrcat() 161 return (int) *ucs1 - (int) *ucs2; in UniStrcmp() 170 wchar_t *anchor = ucs1; /* save the start of result string */ in UniStrcpy() 215 ucs1--; /* point to null terminator of s1 */ in UniStrncat() 216 while (n-- && (*ucs1 = *ucs2)) { /* copy s2 after s1 */ in UniStrncat() 232 while ((*ucs1 == *ucs2) && *ucs1 && --n) { in UniStrncmp() 236 return (int) *ucs1 - (int) *ucs2; in UniStrncmp() [all …]
|
/linux-5.10/tools/testing/radix-tree/ |
D | main.c | 1 // SPDX-License-Identifier: GPL-2.0 10 #include <linux/radix-tree.h> 15 void __gang_check(unsigned long middle, long down, long up, int chunk, int hop) in __gang_check() argument 22 for (idx = -down; idx < up; idx++) in __gang_check() 25 item_check_absent(&tree, middle - down - 1); in __gang_check() 26 for (idx = -down; idx < up; idx++) in __gang_check() 28 item_check_absent(&tree, middle + up); in __gang_check() 31 item_gang_check_present(&tree, middle - down, up + down, in __gang_check() 33 item_full_scan(&tree, middle - down, down + up, chunk); in __gang_check() 50 unsigned long start; in __big_gang_check() local [all …]
|
/linux-5.10/arch/arm/mach-s3c/ |
D | gpio-cfg.h | 1 /* SPDX-License-Identifier: GPL-2.0 */ 8 * S3C Platform - GPIO pin configuration 13 * changing the pull-{up,down} configurations. 27 /* forward declaration if gpio-core.h hasn't been included */ 41 * per-bank configuration information that other systems such as the 73 * s3c_gpio_cfgpin() - Change the GPIO function of a pin. 85 * If a bank of GPIOs all needs to be set to special-function 2, then 88 * for (gpio = start; gpio < end; gpio++) 98 * s3c_gpio_getcfg - Read the current function for a GPIO pin 109 * s3c_gpio_cfgpin_range() - Change the GPIO function for configuring pin range [all …]
|
/linux-5.10/include/linux/ |
D | u64_stats_sync.h | 1 /* SPDX-License-Identifier: GPL-2.0 */ 6 * Protect against 64-bit values tearing on 32-bit architectures. This is 11 * - Use a seqcount on 32-bit SMP, only disable preemption for 32-bit UP. 12 * - The whole thing is a no-op on 64-bit architectures. 34 * seqcounts are not used for UP kernels). 32-bit UP stat readers could read 35 * corrupted 64-bit values otherwise. 45 * u64_stats_update_begin(&stats->syncp); 46 * u64_stats_add(&stats->bytes64, len); // non atomic operation 47 * u64_stats_inc(&stats->packets64); // non atomic operation 48 * u64_stats_update_end(&stats->syncp); [all …]
|
/linux-5.10/arch/powerpc/kexec/ |
D | file_load_64.c | 1 // SPDX-License-Identifier: GPL-2.0-only 12 * Based on kexec-tools' kexec-ppc64.c, kexec-elf-rel-ppc64.c, fs2dt.c. 26 #include <asm/crashdump-ppc64.h> 29 u64 *buf; /* data buffer for usable-memory property */ 34 /* usable memory ranges to look up */ 45 * get_exclude_memory_ranges - Get exclude memory ranges. This list includes 46 * regions like opal/rtas, tce-table, initrd, 48 * setting up kexec load segments. 94 * get_usable_memory_ranges - Get usable memory ranges. This list includes 95 * regions like crashkernel, opal/rtas & tce-table, [all …]
|
/linux-5.10/mm/ |
D | readahead.c | 1 // SPDX-License-Identifier: GPL-2.0-only 3 * mm/readahead.c - address_space-level file readahead. 16 #include <linux/backing-dev.h> 23 #include <linux/blk-cgroup.h> 36 ra->ra_pages = inode_to_bdi(mapping->host)->ra_pages; in file_ra_state_init() 37 ra->prev_pos = -1; in file_ra_state_init() 43 * - the caller of read_cache_pages() may have set PG_private or PG_fscache 45 * on disk, thus we need to give the fs a chance to clean up in the event of 54 page->mapping = mapping; in read_cache_pages_invalidate_page() 56 page->mapping = NULL; in read_cache_pages_invalidate_page() [all …]
|
D | msync.c | 1 // SPDX-License-Identifier: GPL-2.0 5 * Copyright (C) 1994-1999 Linus Torvalds 19 * MS_SYNC syncs the entire file - including mappings. 21 * MS_ASYNC does not start I/O (it used to, up to 2.5.67). 22 * Nor does it marks the relevant pages dirty (it used to up to 2.6.17). 27 * Or the application may run fadvise(FADV_DONTNEED) against the fd to start 32 SYSCALL_DEFINE3(msync, unsigned long, start, size_t, len, int, flags) in SYSCALL_DEFINE3() argument 35 struct mm_struct *mm = current->mm; in SYSCALL_DEFINE3() 38 int error = -EINVAL; in SYSCALL_DEFINE3() 40 start = untagged_addr(start); in SYSCALL_DEFINE3() [all …]
|
/linux-5.10/arch/mips/pci/ |
D | pci-malta.c | 1 // SPDX-License-Identifier: GPL-2.0-only 8 * Copyright (C) 2004 by Ralf Baechle (ralf@linux-mips.org) 18 #include <asm/mips-cps.h> 19 #include <asm/mips-boards/generic.h> 20 #include <asm/mips-boards/bonito64.h> 21 #include <asm/mips-boards/msc01_pci.h> 30 .start = 0x00000000UL, 36 .name = "GT-64120 PCI MEM", 41 .name = "GT-64120 PCI I/O", 81 resource_size_t start, end, map, start1, end1, map1, map2, map3, mask; in mips_pcibios_init() local [all …]
|
/linux-5.10/arch/sh/mm/ |
D | numa.c | 2 * arch/sh/mm/numa.c - Multiple node support for SH machines 22 * in node 0, and other memory blocks in to node 1 and up, ordered by 23 * latency. Each node's pgdat is node-local at the beginning of the node, 26 void __init setup_bootmem_node(int nid, unsigned long start, unsigned long end) in setup_bootmem_node() argument 33 start_pfn = PFN_DOWN(start); in setup_bootmem_node() 36 pmb_bolt_mapping((unsigned long)__va(start), start, end - start, in setup_bootmem_node() 39 memblock_add(start, end - start); in setup_bootmem_node() 43 /* Node-local pgdat */ in setup_bootmem_node() 51 NODE_DATA(nid)->node_start_pfn = start_pfn; in setup_bootmem_node() 52 NODE_DATA(nid)->node_spanned_pages = end_pfn - start_pfn; in setup_bootmem_node() [all …]
|
/linux-5.10/drivers/tty/serial/8250/ |
D | 8250_ioc3.c | 1 // SPDX-License-Identifier: GPL-2.0 26 return readb(p->membase + (offset ^ 3)); in ioc3_serial_in() 31 writeb(value, p->membase + (offset ^ 3)); in ioc3_serial_out() 37 struct uart_8250_port up; in serial8250_ioc3_probe() local 44 return -ENODEV; in serial8250_ioc3_probe() 46 data = devm_kzalloc(&pdev->dev, sizeof(*data), GFP_KERNEL); in serial8250_ioc3_probe() 48 return -ENOMEM; in serial8250_ioc3_probe() 50 membase = devm_ioremap(&pdev->dev, r->start, resource_size(r)); in serial8250_ioc3_probe() 52 return -ENOMEM; in serial8250_ioc3_probe() 56 irq = 0; /* no interrupt -> use polling */ in serial8250_ioc3_probe() [all …]
|
/linux-5.10/arch/x86/include/asm/ |
D | tlbflush.h | 1 /* SPDX-License-Identifier: GPL-2.0 */ 14 #include <asm/processor-flags.h> 18 #define TLB_FLUSH_ALL -1UL 70 * are on. This means that it may not match current->active_mm, 75 * LOADED_MM_SWITCHING during the brief interrupts-off window 95 * - Actively using an mm. Our CPU's bit will be set in 98 * - Not using a real mm. loaded_mm == &init_mm. Our CPU's bit 101 * - Lazily using a real mm. loaded_mm != &init_mm, our bit 104 * skipped more than makes up for the overhead added by 112 * This tells us to go invalidate all the non-loaded ctxs[] [all …]
|
/linux-5.10/arch/x86/mm/ |
D | init.c | 27 #include <asm/text-patching.h> 43 * WC and WT fall back to UC-. pat_init() updates these values to support 45 * for the details. Note, __early_ioremap() used during early boot-time 81 /* Check that the write-protect PAT entry is set for write-protect */ 160 * By default need 3 4k for initial PMD_SIZE, 3 4k for 0-ISA_END_ADDRESS. 189 unsigned long start; member 199 * up after us can get the correct flags. Invoked on the boot CPU. 234 /* Except when with PTI where the kernel is mostly non-Global: */ in probe_page_size_mask() 257 * This can't be cr4_set_bits_and_update_boot() -- the in setup_pcid() 264 * Instead, we brute-force it and set CR4.PCIDE manually in in setup_pcid() [all …]
|
/linux-5.10/drivers/scsi/aacraid/ |
D | sa.c | 1 // SPDX-License-Identifier: GPL-2.0-or-later 9 * Copyright (c) 2000-2010 Adaptec, Inc. 10 * 2010-2015 PMC-Sierra, Inc. (aacraid@pmc-sierra.com) 11 * 2016-2017 Microsemi Corp. (aacraid@microsemi.com) 53 } else if (intstat & DOORBELL_1) { // dev -> Host Normal Command Ready in aac_sa_intr() 55 aac_command_normal(&dev->queues->queue[HostNormCmdQueue]); in aac_sa_intr() 56 } else if (intstat & DOORBELL_2) { // dev -> Host Normal Response Ready in aac_sa_intr() 58 aac_response_normal(&dev->queues->queue[HostNormRespQueue]); in aac_sa_intr() 59 } else if (intstat & DOORBELL_3) { // dev -> Host Normal Command Not Full in aac_sa_intr() 61 } else if (intstat & DOORBELL_4) { // dev -> Host Normal Response Not Full in aac_sa_intr() [all …]
|
/linux-5.10/drivers/gpu/drm/i915/ |
D | i915_gem_evict.c | 2 * Copyright © 2008-2010 Intel Corporation 25 * Chris Wilson <chris@chris-wilson.co.uuk> 60 list_add(&vma->evict_link, unwind); in mark_free() 61 return drm_mm_scan_add_block(scan, &vma->node); in mark_free() 65 * i915_gem_evict_something - Evict vmas to make room for binding a new one 70 * @start: start (inclusive) of the range from which to evict objects 80 * Since this function is only used to free up virtual address space it only 82 * pinned. Hence obj->pages_pin_count does not protect against eviction. 84 * To clarify: This is for freeing up virtual address space, not for freeing 91 u64 start, u64 end, in i915_gem_evict_something() argument [all …]
|
/linux-5.10/drivers/gpu/drm/vmwgfx/ |
D | vmwgfx_page_dirty.c | 1 // SPDX-License-Identifier: GPL-2.0 OR MIT 20 * FITNESS FOR A PARTICULAR PURPOSE AND NON-INFRINGEMENT. IN NO EVENT SHALL 31 * VMW_BO_DIRTY_PAGETABLE - Scan the pagetable for hardware dirty bits 32 * VMW_BO_DIRTY_MKWRITE - Write-protect page table entries and record write- 52 * struct vmw_bo_dirty - Dirty information for buffer objects 53 * @start: First currently dirty bit 65 unsigned long start; member 76 * vmw_bo_dirty_scan_pagetable - Perform a pagetable scan for dirty bits 81 * dirty-tracking method. 85 struct vmw_bo_dirty *dirty = vbo->dirty; in vmw_bo_dirty_scan_pagetable() [all …]
|
/linux-5.10/sound/hda/ |
D | hdac_stream.c | 1 // SPDX-License-Identifier: GPL-2.0-only 3 * HD-audio stream operations 17 * snd_hdac_get_stream_stripe_ctl - get stripe control value 18 * @bus: HD-audio core bus 24 struct snd_pcm_runtime *runtime = substream->runtime; in snd_hdac_get_stream_stripe_ctl() 25 unsigned int channels = runtime->channels, in snd_hdac_get_stream_stripe_ctl() 26 rate = runtime->rate, in snd_hdac_get_stream_stripe_ctl() 27 bits_per_sample = runtime->sample_bits, in snd_hdac_get_stream_stripe_ctl() 41 if (value >= bus->sdo_limit) in snd_hdac_get_stream_stripe_ctl() 51 * snd_hdac_stream_init - initialize each stream (aka device) [all …]
|
/linux-5.10/drivers/mtd/maps/ |
D | sun_uflash.c | 1 // SPDX-License-Identifier: GPL-2.0-only 2 /* sun_uflash.c - Driver for user-programmable flash on 5 * This driver does NOT provide access to the OBP-flash for 6 * safety reasons-- use <linux>/drivers/sbus/char/flash.c instead. 31 #define UFLASH_BUSWIDTH 1 /* EBus is 8-bit */ 34 MODULE_DESCRIPTION("User-programmable flash device on Sun Microsystems boardsets"); 46 .name = "SUNW,???-????", 53 struct uflash_dev *up; in uflash_devinit() local 55 if (op->resource[1].flags) { in uflash_devinit() 56 /* Non-CFI userflash device-- once I find one we in uflash_devinit() [all …]
|
/linux-5.10/include/drm/ |
D | drm_vma_manager.h | 32 /* We make up offsets for buffer objects so we can recognize them at 34 * that the faked up offset will fit 69 unsigned long start, 83 * drm_vma_offset_exact_lookup_locked() - Look up node by exact address 85 * @start: Start address (page-based, not byte-based) 86 * @pages: Size of object (page-based) 89 * It only returns the exact object with the given start address. 92 * Node at exact start address @start. 96 unsigned long start, in drm_vma_offset_exact_lookup_locked() argument 101 node = drm_vma_offset_lookup_locked(mgr, start, pages); in drm_vma_offset_exact_lookup_locked() [all …]
|
/linux-5.10/arch/hexagon/include/asm/ |
D | cacheflush.h | 1 /* SPDX-License-Identifier: GPL-2.0-only */ 5 * Copyright (c) 2010-2011, The Linux Foundation. All rights reserved. 15 * - flush_cache_all() flushes entire cache 16 * - flush_cache_mm(mm) flushes the specified mm context's cache lines 17 * - flush_cache_page(mm, vmaddr, pfn) flushes a single page 18 * - flush_cache_range(vma, start, end) flushes a range of pages 19 * - flush_icache_range(start, end) flush a range of instructions 20 * - flush_dcache_page(pg) flushes(wback&invalidates) a page for dcache 21 * - flush_icache_page(vma, pg) flushes(invalidates) a page for icache 31 extern void flush_dcache_range(unsigned long start, unsigned long end); [all …]
|
/linux-5.10/arch/arm64/include/asm/ |
D | cacheflush.h | 1 /* SPDX-License-Identifier: GPL-2.0-only */ 5 * Copyright (C) 1999-2002 Russell King. 26 * Start addresses are inclusive and end addresses are exclusive; start 27 * addresses should be rounded down, end addresses up. 29 * See Documentation/core-api/cachetlb.rst for more information. Please note that 30 * the implementation assumes non-aliasing VIPT D-cache and (aliasing) 31 * VIPT I-cache. 38 * flush_icache_range(start, end) 40 * Ensure coherency between the I-cache and the D-cache in the 41 * region described by start, end. [all …]
|
/linux-5.10/tools/testing/selftests/netfilter/ |
D | nft_concat_range.sh | 2 # SPDX-License-Identifier: GPL-2.0 4 # nft_concat_range.sh - Tests for sets with concatenation of ranged fields 16 # - reported_issues: check for issues that were reported in the past 17 # - correctness: check that packets match given entries, and only those 18 # - concurrency: attempt races between insertion, deletion and lookup 19 # - timeout: check that packets match entries until they expire 20 # - performance: estimate matching rate, compare with rbtree and hash baselines 43 # start initial integer used to generate addresses and ports 66 start 1 91 start 1 [all …]
|
/linux-5.10/arch/arm/mach-cns3xxx/ |
D | cns3420vb.c | 1 // SPDX-License-Identifier: GPL-2.0-only 17 #include <linux/dma-mapping.h> 27 #include <asm/mach-types.h> 71 .start = CNS3XXX_FLASH_BASE, 72 .end = CNS3XXX_FLASH_BASE + SZ_128M - 1, 77 .name = "physmap-flash", 114 .start = CNS3XXX_USB_BASE, 115 .end = CNS3XXX_USB_BASE + SZ_16M - 1, 119 .start = IRQ_CNS3XXX_USB_EHCI, 131 * Therefore only do power up at the first up device, and in csn3xxx_usb_power_on() [all …]
|
/linux-5.10/arch/sparc/kernel/ |
D | trampoline_32.S | 1 /* SPDX-License-Identifier: GPL-2.0 */ 3 * trampoline.S: SMP cpu boot-up trampoline code. 23 /* When we start up a cpu for the first time it enters this routine. 45 /* Set up a sane %psr -- PIL<0xf> S<0x1> PS<0x1> CWP<0x0> */ 65 sethi %hi(THREAD_SIZE - STACKFRAME_SZ), %sp 66 or %sp, %lo(THREAD_SIZE - STACKFRAME_SZ), %sp 80 /* Start this processor. */ 99 /* Set up a sane %psr -- PIL<0xf> S<0x1> PS<0x1> CWP<0x0> */ 109 /* Set tbr - we use just one trap table. */ 126 sethi %hi(THREAD_SIZE - STACKFRAME_SZ), %sp [all …]
|
/linux-5.10/drivers/pinctrl/mediatek/ |
D | pinctrl-mtk-common.h | 1 /* SPDX-License-Identifier: GPL-2.0-only */ 12 #include <linux/pinctrl/pinconf-generic.h> 14 #include "mtk-eint.h" 61 #define SET_ADDR(x, y) (x + (y->devdata->port_align)) 62 #define CLR_ADDR(x, y) (x + (y->devdata->port_align << 1)) 71 * struct mtk_drv_group_desc - Provide driving group data. 96 * struct mtk_pin_drv_grp - Provide each pin driving info. 119 * - For special pins' pull up/down setting which resides in same register 121 * @offset: The offset of special pull up/down setting register. 122 * @pupd_bit: The pull up/down bit in this register. [all …]
|