| /OK3568_Linux_fs/kernel/fs/cifs/ |
| H A 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 …]
|
| /OK3568_Linux_fs/kernel/tools/testing/radix-tree/ |
| H A 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 …]
|
| /OK3568_Linux_fs/yocto/meta-openembedded/meta-oe/recipes-dbs/influxdb/influxdb/ |
| H A D | influxdb | 4 # Required-Start: $all 5 # Required-Stop: $remote_fs $syslog 6 # Default-Start: 2 3 4 5 7 # Default-Stop: 0 1 6 8 # Short-Description: Start the InfluxDB process 10 set -x 13 # Command-line options that can be set in /etc/default/influxdb. These will override 36 if [ ! -x $DAEMON ]; then 47 if [ ! -d "$PIDDIR" ]; then 48 mkdir -p $PIDDIR [all …]
|
| /OK3568_Linux_fs/kernel/fs/jfs/ |
| H A 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 …]
|
| /OK3568_Linux_fs/yocto/poky/documentation/toaster-manual/ |
| H A D | setup-and-use.rst | 1 .. SPDX-License-Identifier: CC-BY-SA-2.0-UK 6 Setting Up and Using Toaster 12 Once you have set up the Yocto Project and installed the Toaster system 13 dependencies as described in the ":ref:`toaster-manual/start:Preparing to Use 14 Toaster`" chapter, you are ready to start 24 $ source oe-init-build-env 27 ``poky/build``), start Toaster using this command:: 29 $ source toaster start 33 ":ref:`toaster-manual/setup-and-use:using the toaster web interface`". 47 $ source toaster start webport=8400 [all …]
|
| /OK3568_Linux_fs/kernel/arch/arm/mach-s3c/ |
| H A 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 …]
|
| /OK3568_Linux_fs/u-boot/arch/x86/lib/ |
| H A D | physmem.c | 3 * Use of this source code is governed by a BSD-style license that can be 42 uint64_t pwt:1; /* page-level writethrough */ 43 uint64_t pcd:1; /* page-level cache disable */ 49 uint64_t pat:1; /* page-attribute table */ 73 /* Set up a handy pointer to the appropriate PDE. */ in x86_phys_map_page() 77 pde->p = 1; in x86_phys_map_page() 78 pde->rw = 1; in x86_phys_map_page() 79 pde->us = 1; in x86_phys_map_page() 80 pde->ps = 1; in x86_phys_map_page() 81 pde->base = phys >> 21; in x86_phys_map_page() [all …]
|
| /OK3568_Linux_fs/kernel/mm/ |
| H A 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> 41 ra->ra_pages = inode_to_bdi(mapping->host)->ra_pages; in file_ra_state_init() 42 ra->prev_pos = -1; in file_ra_state_init() 48 * - the caller of read_cache_pages() may have set PG_private or PG_fscache 50 * on disk, thus we need to give the fs a chance to clean up in the event of 59 page->mapping = mapping; in read_cache_pages_invalidate_page() 61 page->mapping = NULL; in read_cache_pages_invalidate_page() [all …]
|
| /OK3568_Linux_fs/kernel/arch/powerpc/kexec/ |
| H A 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. 27 #include <asm/crashdump-ppc64.h> 30 u64 *buf; /* data buffer for usable-memory property */ 35 /* usable memory ranges to look up */ 46 * get_exclude_memory_ranges - Get exclude memory ranges. This list includes 47 * regions like opal/rtas, tce-table, initrd, 49 * setting up kexec load segments. 95 * get_usable_memory_ranges - Get usable memory ranges. This list includes 96 * regions like crashkernel, opal/rtas & tce-table, [all …]
|
| /OK3568_Linux_fs/kernel/arch/x86/mm/ |
| H A 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 82 * Check that the write-protect PAT entry is set for write-protect. 83 * To do this without making assumptions how PAT has been set up (Xen has 116 * Provide a run-time mean of disabling ZONE_DMA32 if it is enabled via 176 * By default need 3 4k for initial PMD_SIZE, 3 4k for 0-ISA_END_ADDRESS. 205 unsigned long start; member 215 * up after us can get the correct flags. Invoked on the boot CPU. 250 /* Except when with PTI where the kernel is mostly non-Global: */ in probe_page_size_mask() [all …]
|
| /OK3568_Linux_fs/kernel/include/linux/ |
| H A 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 …]
|
| /OK3568_Linux_fs/buildroot/package/urandom-scripts/ |
| H A D | S20urandom | 7 [ -c /dev/urandom ] || exit 0 9 URANDOM_SEED="/var/lib/random-seed" 12 [ -r "/etc/default/urandom" ] && . "/etc/default/urandom" 21 [ -f "$URANDOM_SEED" ] || return 1 24 size=$(dd if="$URANDOM_SEED" bs="$pool_size" count=2 2> /dev/null | wc -c) 25 test "$size" -eq "$pool_size" 33 if [ "$status" -eq 0 ]; then 50 if [ "$status" -eq 0 ]; then 57 echo "SKIP (read-only file system detected)" 63 start|restart|reload) [all …]
|
| /OK3568_Linux_fs/u-boot/include/dm/ |
| H A D | uclass.h | 7 * SPDX-License-Identifier: GPL-2.0+ 14 #include <dm/uclass-id.h> 19 * struct uclass - a U-Boot drive class, collecting together similar drivers 25 * There may be drivers for on-chip SoC GPIO banks, I2C GPIO expanders and 52 * struct uclass_driver - Driver for the uclass 65 * @init: Called to set up the uclass 67 * @priv_auto_alloc_size: If non-zero this is the size of the private data 68 * to be allocated in the uclass's ->priv pointer. If zero, then the uclass 72 * value is non-zero. 74 * owned by the uclass as 'dev->uclass_platdata'. If the value is non-zero, [all …]
|
| /OK3568_Linux_fs/prebuilts/gcc/linux-x86/aarch64/gcc-arm-10.3-2021.07-x86_64-aarch64-none-linux-gnu/share/doc/gdb/ |
| H A D | Disassembly-In-Guile.html | 1 <!DOCTYPE html PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN" "http://www.w3.org/TR/html4/loose.dt… 3 <!-- Copyright (C) 1988-2021 Free Software Foundation, Inc. 9 Free Documentation", with the Front-Cover Texts being "A GNU Manual," 10 and with the Back-Cover Texts as in (a) below. 12 (a) The FSF's Back-Cover Text is: "You are free to copy and modify 14 developing GNU and promoting software freedom." --> 15 <!-- Created by GNU Texinfo 5.1, http://www.gnu.org/software/texinfo/ --> 21 <meta name="resource-type" content="document"> 24 <meta http-equiv="Content-Type" content="text/html; charset=utf-8"> 25 <link href="index.html#Top" rel="start" title="Top"> [all …]
|
| /OK3568_Linux_fs/prebuilts/gcc/linux-x86/arm/gcc-arm-10.3-2021.07-x86_64-arm-none-linux-gnueabihf/share/doc/gdb/ |
| H A D | Disassembly-In-Guile.html | 1 <!DOCTYPE html PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN" "http://www.w3.org/TR/html4/loose.dt… 3 <!-- Copyright (C) 1988-2021 Free Software Foundation, Inc. 9 Free Documentation", with the Front-Cover Texts being "A GNU Manual," 10 and with the Back-Cover Texts as in (a) below. 12 (a) The FSF's Back-Cover Text is: "You are free to copy and modify 14 developing GNU and promoting software freedom." --> 15 <!-- Created by GNU Texinfo 5.1, http://www.gnu.org/software/texinfo/ --> 21 <meta name="resource-type" content="document"> 24 <meta http-equiv="Content-Type" content="text/html; charset=utf-8"> 25 <link href="index.html#Top" rel="start" title="Top"> [all …]
|
| /OK3568_Linux_fs/kernel/arch/mips/pci/ |
| H A 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 …]
|
| /OK3568_Linux_fs/yocto/poky/documentation/dev-manual/ |
| H A D | start.rst | 1 .. SPDX-License-Identifier: CC-BY-SA-2.0-UK 4 Setting Up to Use the Yocto Project 9 using the Yocto Project, how to set up a :ref:`build 10 host <dev-manual/start:preparing the build host>`, how to locate 23 To help you understand how to set up this type of environment, this 25 you get the results you want. The procedure is high-level and presents 36 equipment together and set up your development environment's 41 - *Application Developer:* This type of developer does application 44 - *Core System Developer:* This type of developer works on the 47 - *Build Engineer:* This type of developer manages Autobuilders and [all …]
|
| /OK3568_Linux_fs/kernel/arch/x86/include/asm/ |
| H A 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 …]
|
| /OK3568_Linux_fs/u-boot/common/ |
| H A D | Kconfig | 12 add up all the accumulated time and report it. 25 Enable recording of boot time in SPL. To make this visible to U-Boot 27 information when SPL finishes and load it when U-Boot proper starts 28 up. 35 This shows how long it took U-Boot to go through each stage of the 41 3,575,678 3,575,678 board_init_f start 44 3,659,598 83,821 board_init_r start 126 Enabling this will make a U-Boot binary that is capable of being 128 as the ROM only partially sets up pinmux. We also default to using 135 Enabling this will make a U-Boot binary that is capable of being [all …]
|
| /OK3568_Linux_fs/kernel/drivers/scsi/aacraid/ |
| H A 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 …]
|
| /OK3568_Linux_fs/u-boot/lib/ |
| H A D | membuff.c | 7 * SPDX-License-Identifier: GPL-2.0+ 17 /* set mb->head and mb->tail so the buffers look empty */ in membuff_purge() 18 mb->head = mb->start; in membuff_purge() 19 mb->tail = mb->start; in membuff_purge() 27 /* always write to 'mb->head' */ in membuff_putrawflex() 29 *data = &mb->start; in membuff_putrawflex() 30 *offsetp = mb->head - mb->start; in membuff_putrawflex() 33 if (!mb->start) in membuff_putrawflex() 40 if (mb->head >= mb->tail) { in membuff_putrawflex() 42 len = mb->end - mb->head - 1; in membuff_putrawflex() [all …]
|
| /OK3568_Linux_fs/kernel/sound/hda/ |
| H A 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 …]
|
| /OK3568_Linux_fs/kernel/tools/testing/selftests/netfilter/ |
| H A 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 …]
|
| /OK3568_Linux_fs/kernel/drivers/gpu/drm/i915/ |
| H A 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 …]
|
| /OK3568_Linux_fs/u-boot/include/ |
| H A D | blk.h | 2 * (C) Copyright 2000-2004 5 * SPDX-License-Identifier: GPL-2.0+ 105 * parameter. This field allows them to look up the associated 111 lbaint_t start, 115 lbaint_t start, 119 lbaint_t start, 125 #define BLOCK_CNT(size, blk_desc) (PAD_COUNT(size, blk_desc->blksz)) 127 (PAD_SIZE(size, blk_desc->blksz)) 131 * blkcache_read() - attempt to read a set of blocks from cache 133 * @param iftype - IF_TYPE_x for type of device [all …]
|