| /OK3568_Linux_fs/kernel/fs/xfs/ |
| H A D | xfs_rtalloc.c | 1 // SPDX-License-Identifier: GPL-2.0 3 * Copyright (c) 2000-2005 Silicon Graphics, Inc. 24 * Read and return the summary information for a given extent size, 26 * Keeps track of a current summary block, so we don't keep reading 35 xfs_buf_t **rbpp, /* in/out: summary block buffer */ in xfs_rtget_summary() 36 xfs_fsblock_t *rsb, /* in/out: summary block number */ in xfs_rtget_summary() 37 xfs_suminfo_t *sum) /* out: summary info for this block */ in xfs_rtget_summary() 53 xfs_buf_t **rbpp, /* in/out: summary block buffer */ in xfs_rtany_summary() 54 xfs_fsblock_t *rsb, /* in/out: summary block number */ in xfs_rtany_summary() 59 xfs_suminfo_t sum; /* summary data */ in xfs_rtany_summary() [all …]
|
| H A D | xfs_mount.h | 1 // SPDX-License-Identifier: GPL-2.0 3 * Copyright (c) 2000-2005 Silicon Graphics, Inc. 44 #define XFS_ERR_RETRY_FOREVER -1 47 * Although retry_timeout is in jiffies which is normally an unsigned long, 49 * signed 32-bit long is sufficient for a HZ value up to 24855. Making it 50 * signed lets us store the special "-1" value, meaning retry forever. 55 long retry_timeout; /* in jiffies, -1 = infinite */ 59 * The struct xfsmount layout is optimised to separate read-mostly variables 60 * from variables that are frequently modified. We put the read-mostly variables 63 * Typically, read-mostly variables are those that are set at mount time and [all …]
|
| /OK3568_Linux_fs/kernel/arch/alpha/kernel/ |
| H A D | sys_noritake.c | 1 // SPDX-License-Identifier: GPL-2.0 53 noritake_update_irq_hw(d->irq, cached_irq_mask |= 1 << (d->irq - 16)); in noritake_enable_irq() 59 noritake_update_irq_hw(d->irq, cached_irq_mask &= ~(1 << (d->irq - 16))); in noritake_disable_irq() 70 noritake_device_interrupt(unsigned long vector) in noritake_device_interrupt() 72 unsigned long pld; in noritake_device_interrupt() 75 /* Read the interrupt summary registers of NORITAKE */ in noritake_device_interrupt() 76 pld = (((unsigned long) inw(0x54c) << 32) in noritake_device_interrupt() 77 | ((unsigned long) inw(0x54a) << 16) in noritake_device_interrupt() 78 | ((unsigned long) inb(0xa0) << 8) in noritake_device_interrupt() 87 pld &= pld - 1; /* clear least bit set */ in noritake_device_interrupt() [all …]
|
| H A D | sys_eb64p.c | 1 // SPDX-License-Identifier: GPL-2.0 37 static unsigned int cached_irq_mask = -1; 40 eb64p_update_irq_hw(unsigned int irq, unsigned long mask) in eb64p_update_irq_hw() 48 eb64p_update_irq_hw(d->irq, cached_irq_mask &= ~(1 << d->irq)); in eb64p_enable_irq() 54 eb64p_update_irq_hw(d->irq, cached_irq_mask |= 1 << d->irq); in eb64p_disable_irq() 65 eb64p_device_interrupt(unsigned long vector) in eb64p_device_interrupt() 67 unsigned long pld; in eb64p_device_interrupt() 70 /* Read the interrupt summary registers */ in eb64p_device_interrupt() 79 pld &= pld - 1; /* clear least bit set */ in eb64p_device_interrupt() 92 long i; in eb64p_init_irq() [all …]
|
| H A D | sys_wildfire.c | 1 // SPDX-License-Identifier: GPL-2.0 32 static unsigned long cached_irq_mask[WILDFIRE_NR_IRQS/(sizeof(long)*8)]; 41 int qbbno = (irq >> 8) & (WILDFIRE_MAX_QBB - 1); in wildfire_update_irq_hw() 42 int pcano = (irq >> 6) & (WILDFIRE_PCA_PER_QBB - 1); in wildfire_update_irq_hw() 44 volatile unsigned long * enable0; in wildfire_update_irq_hw() 49 " got irq %d for non-existent PCA %d" in wildfire_update_irq_hw() 57 enable0 = (unsigned long *) &pca->pca_int[0].enable; /* ??? */ in wildfire_update_irq_hw() 69 volatile unsigned long * enable0, * enable1, * enable2, *enable3; in wildfire_init_irq_hw() 70 volatile unsigned long * target0, * target1, * target2, *target3; in wildfire_init_irq_hw() 72 enable0 = (unsigned long *) &pca->pca_int[0].enable; in wildfire_init_irq_hw() [all …]
|
| H A D | sys_mikasa.c | 1 // SPDX-License-Identifier: GPL-2.0 48 mikasa_update_irq_hw(cached_irq_mask |= 1 << (d->irq - 16)); in mikasa_enable_irq() 54 mikasa_update_irq_hw(cached_irq_mask &= ~(1 << (d->irq - 16))); in mikasa_disable_irq() 65 mikasa_device_interrupt(unsigned long vector) in mikasa_device_interrupt() 67 unsigned long pld; in mikasa_device_interrupt() 70 /* Read the interrupt summary registers */ in mikasa_device_interrupt() 72 | (((unsigned long) inb(0xa0)) << 8) in mikasa_device_interrupt() 81 pld &= pld - 1; /* clear least bit set */ in mikasa_device_interrupt() 93 long i; in mikasa_init_irq() 114 * Summary @ 0x536: [all …]
|
| /OK3568_Linux_fs/kernel/fs/nilfs2/ |
| H A D | segbuf.h | 1 /* SPDX-License-Identifier: GPL-2.0+ */ 3 * segbuf.h - NILFS Segment buffer prototypes and definitions 5 * Copyright (C) 2005-2008 Nippon Telegraph and Telephone Corporation. 19 * struct nilfs_segsum_info - On-memory segment summary 23 * @nsumblk: Number of summary blocks 24 * @sumbytes: Byte count of segment summary 33 unsigned long nfinfo; 34 unsigned long nblocks; 35 unsigned long nsumblk; 36 unsigned long sumbytes; [all …]
|
| H A D | recovery.c | 1 // SPDX-License-Identifier: GPL-2.0+ 3 * recovery.c - NILFS recovery logic 5 * Copyright (C) 2005-2008 Nippon Telegraph and Telephone Corporation. 43 unsigned long blkoff; /* File offset of the data block (per block) */ 55 return -EIO; in nilfs_warn_segment_error() 76 return -EINVAL; in nilfs_warn_segment_error() 79 return -EINVAL; in nilfs_warn_segment_error() 83 * nilfs_compute_checksum - compute checksum of blocks continuously 94 unsigned long offset, u64 check_bytes, in nilfs_compute_checksum() 95 sector_t start, unsigned long nblock) in nilfs_compute_checksum() [all …]
|
| H A D | segment.h | 1 /* SPDX-License-Identifier: GPL-2.0+ */ 3 * segment.h - NILFS Segment constructor prototypes and definitions 5 * Copyright (C) 2005-2008 Nippon Telegraph and Telephone Corporation. 22 * struct nilfs_recovery_info - Recovery information 26 * @ri_lsegs_start: Region for roll-forwarding (start block number) 27 * @ri_lsegs_end: Region for roll-forwarding (end block number) 55 * struct nilfs_cstage - Context of collection stage 60 * @gc_inode_ptr: Pointer on the list of gc-inodes 77 * struct nilfs_sc_info - Segment constructor information 95 * @sc_finfo_ptr: pointer to the current finfo struct in the segment summary [all …]
|
| /OK3568_Linux_fs/kernel/arch/s390/pci/ |
| H A D | pci_irq.c | 1 // SPDX-License-Identifier: GPL-2.0 25 * summary bit vector 26 * FLOATING - summary bit per function 27 * DIRECTED - summary bit per cpu (only used in fallback path) 33 * FLOATING - interrupt bit vector per function 34 * DIRECTED - interrupt bit vector per cpu 41 u64 req = ZPCI_CREATE_REQ(zdev->fh, 0, ZPCI_MOD_FC_REG_INT); in zpci_set_airq() 46 fib.fmt0.sum = 1; /* enable summary notifications */ in zpci_set_airq() 47 fib.fmt0.noi = airq_iv_end(zdev->aibv); in zpci_set_airq() 48 fib.fmt0.aibv = (unsigned long) zdev->aibv->vector; in zpci_set_airq() [all …]
|
| /OK3568_Linux_fs/kernel/net/rxrpc/ |
| H A D | input.c | 1 // SPDX-License-Identifier: GPL-2.0-or-later 24 #include "ar-internal.h" 29 if (rxrpc_abort_call(why, call, seq, RX_PROTOCOL_ERROR, -EBADMSG)) { in rxrpc_proto_abort() 30 set_bit(RXRPC_CALL_EV_ABORT, &call->events); in rxrpc_proto_abort() 36 * Do TCP-style congestion management [RFC 5681]. 40 struct rxrpc_ack_summary *summary, in rxrpc_congestion_management() argument 44 unsigned int cumulative_acks = call->cong_cumul_acks; in rxrpc_congestion_management() 45 unsigned int cwnd = call->cong_cwnd; in rxrpc_congestion_management() 48 summary->flight_size = in rxrpc_congestion_management() 49 (call->tx_top - call->tx_hard_ack) - summary->nr_acks; in rxrpc_congestion_management() [all …]
|
| /OK3568_Linux_fs/kernel/arch/s390/include/asm/ |
| H A D | airq.h | 1 /* SPDX-License-Identifier: GPL-2.0 */ 14 #include <linux/dma-mapping.h> 19 u8 *lsi_ptr; /* Local-Summary-Indicator pointer */ 20 u8 lsi_mask; /* Local-Summary-Indicator mask */ 21 u8 isc; /* Interrupt-subclass */ 32 unsigned long *vector; /* Adapter interrupt bit vector */ 34 unsigned long *avail; /* Allocation bit mask for the bit vector */ 35 unsigned long *bitlock; /* Lock bit mask for the bit vector */ 36 unsigned long *ptr; /* Pointer associated with each bit */ 38 unsigned long bits; /* Number of bits in the vector */ [all …]
|
| H A D | pci_insn.h | 1 /* SPDX-License-Identifier: GPL-2.0 */ 64 u32 sum : 1; /* Adapter int summary bit enabled */ 66 u32 aisbo : 6; /* Adapter int summary bit offset */ 69 u64 aisb; /* Adapter int summary bit address */ 132 int zpci_load(u64 *data, const volatile void __iomem *addr, unsigned long len); 134 int zpci_store(const volatile void __iomem *addr, u64 data, unsigned long len);
|
| /OK3568_Linux_fs/external/xserver/test/scripts/ |
| H A D | run-piglit.sh | 3 set -e 41 $XSERVER_BUILDDIR/test/simple-xinit \ 42 $XSERVER_DIR/test/scripts/xinit-piglit-session.sh \ 43 -- \ 46 # Write out piglit-summaries. 47 SHORT_SUMMARY=$PIGLIT_RESULTS_DIR/summary 48 LONG_SUMMARY=$PIGLIT_RESULTS_DIR/long-summary 49 $PIGLIT_DIR/piglit summary console -s $PIGLIT_RESULTS_DIR > $SHORT_SUMMARY 50 $PIGLIT_DIR/piglit summary console $PIGLIT_RESULTS_DIR > $LONG_SUMMARY 52 # Write the short summary to make check's log file. [all …]
|
| /OK3568_Linux_fs/buildroot/dl/unixbench/git/UnixBench/src/ |
| H A D | time-polling.c | 1 /* Programme to test how long it takes to select(2), poll(2) and poll2(2) a 7 To compile this programme, use gcc -O2 -o time-polling time-polling.c 11 Add -DHAS_SELECT if your operating system has the select(2) system call 12 Add -DHAS_POLL if your operating system has the poll(2) system call 13 Add -DHAS_POLL2 if your operating system has the poll2(2) system call 15 Usage: time-polling [num_iter] [num_to_test] [num_active] [-v] 22 does not scale linearly with number of descriptors, which is non-optimal. 89 /* [SUMMARY] Find the first bit set in a bitfield. in find_first_set_bit() 90 <array> A pointer to the bitfield. This must be aligned on a long boundary. in find_first_set_bit() 97 unsigned long word; in find_first_set_bit() [all …]
|
| /OK3568_Linux_fs/kernel/Documentation/filesystems/ |
| H A D | coda.rst | 1 .. SPDX-License-Identifier: GPL-2.0 4 Coda Kernel-Venus Interface 10 Coda -- this document describes the client kernel-Venus interface. 35 level filesystem code needed for the operation of the Coda file sys- 124 leads to an almost natural environment for implementing a kernel-level 153 pre-processing, the VFS starts invoking exported routines in the FS 208 up processes. The Coda FS driver processes VFS- and pioctl-requests 220 memory for the request. Since the data buffer is re-used to hold the 283 processing. The VFS routine will now continue. (-- If a VFS request 286 to indicate points of no return have been passed.--) [all …]
|
| /OK3568_Linux_fs/kernel/fs/jffs2/ |
| H A D | summary.h | 2 * JFFS2 -- Journalling Flash File System, Version 2. 4 * Copyright © 2004 Ferenc Havasi <havasi@inf.u-szeged.hu>, 5 * Zoltan Sogor <weth@inf.u-szeged.hu>, 6 * Patrik Kluba <pajko@halom.u-szeged.hu>, 16 /* Limit summary size to 64KiB so that we can kmalloc it. If the summary 17 is larger than that, we have to just ditch it and avoid using summary 38 /* Summary structures used on flash */ 91 /* Summary structures used in the memory */ 149 /* Summary related information stored in superblock */ 153 uint32_t sum_size; /* collected summary information for nextblock */ [all …]
|
| /OK3568_Linux_fs/external/xserver/hw/dmx/config/ |
| H A D | dmxparse.h | 21 * NON-INFRINGEMENT. IN NO EVENT SHALL RED HAT AND/OR THEIR SUPPLIERS 108 /* Summary information */ 131 /* Summary information */ 145 /* Summary information */ 180 /* Summary information */ 206 extern void *dmxConfigAlloc(unsigned long bytes); 208 unsigned long orig_bytes, unsigned long bytes);
|
| /OK3568_Linux_fs/u-boot/include/jffs2/ |
| H A D | jffs2.h | 2 * JFFS2 -- Journalling Flash File System, Version 2. 21 * The Original Code is JFFS2 - Journalling Flash File System, version 2 49 #define KSAMTIB_CIGAM_2SFFJ 0x5981 /* For detecting wrong-endian fs */ 53 /* Summary node MAGIC marker */ 83 /* ROCOMPAT: Mount read-only */ 181 __u32 sum_crc; /* summary information crc */ 183 __u32 sum[0]; /* inode summary info */ 225 unsigned long sourcelen, unsigned long dstlen); 226 long zlib_decompress(unsigned char *data_in, unsigned char *cpage_out, 233 char *mkmodestr(unsigned long mode, char *str);
|
| /OK3568_Linux_fs/kernel/drivers/s390/block/ |
| H A D | dasd_alias.c | 1 // SPDX-License-Identifier: GPL-2.0 9 #define KMSG_COMPONENT "dasd-eckd" 25 * - PAV and DASD alias management is specific to the eckd discipline. 26 * - A device is connected to an lcu as long as the device exists. 31 * - The dasd_alias_add_device / dasd_alias_remove_device 33 * - A summary unit check is a rare occasion, but it is mandatory to 36 * - dasd_alias_get_start_dev will find an alias device that can be used 57 if (!strncmp(pos->uid.vendor, uid->vendor, in _find_server() 58 sizeof(uid->vendor)) in _find_server() 59 && !strncmp(pos->uid.serial, uid->serial, in _find_server() [all …]
|
| /OK3568_Linux_fs/kernel/drivers/net/wireless/ath/ath11k/ |
| H A D | spectral.c | 1 // SPDX-License-Identifier: BSD-3-Clause-Clear 3 * Copyright (c) 2019-2020 The Linux Foundation. All rights reserved. 160 lockdep_assert_held(&ar->conf_mutex); in ath11k_spectral_get_vdev() 162 if (list_empty(&ar->arvifs)) in ath11k_spectral_get_vdev() 166 list_for_each_entry(arvif, &ar->arvifs, list) in ath11k_spectral_get_vdev() 167 if (arvif->spectral_enabled) in ath11k_spectral_get_vdev() 171 return list_first_entry(&ar->arvifs, typeof(*arvif), list); in ath11k_spectral_get_vdev() 179 lockdep_assert_held(&ar->conf_mutex); in ath11k_spectral_scan_trigger() 183 return -ENODEV; in ath11k_spectral_scan_trigger() 185 if (ar->spectral.mode == ATH11K_SPECTRAL_DISABLED) in ath11k_spectral_scan_trigger() [all …]
|
| /OK3568_Linux_fs/u-boot/fs/jffs2/ |
| H A D | jffs2_1pass.c | 2 ------------------------------------------------------------------------- 8 *-----------------------------------------------------------------------*/ 13 * JFFS2 -- Journalling Flash File System, Version 2. 32 * The Original Code is JFFS2 - Journalling Flash File System, version 2 69 * on Jan/2002 for U-Boot. 71 * Clipped out all the non-1pass functions, cleaned up warnings, 79 * Bugfixing by Kai-Uwe Bloem <kai-uwe.bloem@auerswald.de>, (C) Mar/2003 81 * - overhaul of the memory management. Removed much of the "paper-bagging" 84 * It's still ugly :-( 85 * - fixed a bug in jffs2_1pass_read_inode where the file length calculation [all …]
|
| /OK3568_Linux_fs/external/xserver/ |
| H A D | .gitlab-ci.yml | 2 # image doesn't exist yet, the docker-image stage generates it. 16 IMAGE_TAG: "debian-testing-20190219" 21 - docker-image 22 - build-and-test 24 debian-testing: 25 stage: docker-image 27 name: gcr.io/kaniko-project/executor:debug 30 …- echo "{\"auths\":{\"$CI_REGISTRY\":{\"username\":\"$CI_REGISTRY_USER\",\"password\":\"$CI_REGIST… 31 - mkdir kaniko-context 32 - | [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 | Free-Documentation.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"> 26 <link href="Concept-Index.html#Concept-Index" rel="index" title="Concept Index"> [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 | Free-Documentation.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"> 26 <link href="Concept-Index.html#Concept-Index" rel="index" title="Concept Index"> [all …]
|