Home
last modified time | relevance | path

Searched +full:fine +full:- +full:granular (Results 1 – 8 of 8) sorted by relevance

/linux/Documentation/devicetree/bindings/input/
H A Dazoteq,iqs7222.yaml1 # SPDX-License-Identifier: (GPL-2.0-only OR BSD-2-Clause)
3 ---
5 $schema: http://devicetree.org/meta-schemas/core.yaml#
10 - Jeff LaBundy <jeff@labundy.com>
21 - azoteq,iqs7222a
22 - azoteq,iqs7222b
23 - azoteq,iqs7222c
24 - azoteq,iqs7222d
29 irq-gpios:
32 Specifies the GPIO connected to the device's active-low RDY output.
[all …]
/linux/Documentation/admin-guide/mm/
H A Duserfaultfd.rst8 Userfaults allow the implementation of on-demand paging from userland
38 Vmas are not suitable for page- (or hugepage) granular fault tracking
48 is a corner case that would currently return ``-EBUSY``).
54 ----------------------
63 - Any user can always create a userfaultfd which traps userspace page faults
67 - In order to also trap kernel page faults for the address space, either the
77 filesystem permissions (user/group/mode), which gives fine grained access to
84 --------------------------
101 - The ``UFFD_FEATURE_EVENT_*`` flags indicate that various other events
103 detail below in the `Non-cooperative userfaultfd`_ section.
[all …]
/linux/drivers/s390/scsi/
H A Dzfcp_aux.c1 // SPDX-License-Identifier: GPL-2.0
78 flush_work(&port->rport_work); in zfcp_init_device_configure()
81 put_device(&port->dev); in zfcp_init_device_configure()
86 put_device(&cdev->dev); in zfcp_init_device_configure()
127 int retval = -ENOMEM; in zfcp_module_init()
183 * zfcp_get_port_by_wwpn - find port in port list of adapter by wwpn
195 read_lock_irqsave(&adapter->port_list_lock, flags); in zfcp_get_port_by_wwpn()
196 list_for_each_entry(port, &adapter->port_list, list) in zfcp_get_port_by_wwpn()
197 if (port->wwpn == wwpn) { in zfcp_get_port_by_wwpn()
198 if (!get_device(&port->dev)) in zfcp_get_port_by_wwpn()
[all …]
/linux/block/
H A Dblk-iocost.c1 /* SPDX-License-Identifier: GPL-2.0
17 * useless for the purpose of IO capacity distribution. While on-device
19 * non-queued rotational devices, this is no longer viable with modern
27 * implement a reasonable work-conserving proportional IO resource
37 * Currently, there's only one builtin cost model - linear. Each IO is
47 * device-specific coefficients.
54 * 2-1. Vtime Distribution
75 * against the device vtime - an IO which takes 10ms on the underlying
84 * 2-2. Vrate Adjustment
97 * To slow down, we lower the vrate - the rate at which the device vtime
[all …]
/linux/fs/fuse/
H A Dfile.c3 Copyright (C) 2001-2008 Miklos Szeredi <miklos@szeredi.hu>
35 if (!fm->fc->atomic_o_trunc) in fuse_send_open()
38 if (fm->fc->handle_killpriv_v2 && in fuse_send_open()
63 ff->fm = fm; in fuse_file_alloc()
65 ff->args = kzalloc(sizeof(*ff->args), GFP_KERNEL_ACCOUNT); in fuse_file_alloc()
66 if (!ff->args) { in fuse_file_alloc()
72 INIT_LIST_HEAD(&ff->write_entry); in fuse_file_alloc()
73 refcount_set(&ff->count, 1); in fuse_file_alloc()
74 RB_CLEAR_NODE(&ff->polled_node); in fuse_file_alloc()
75 init_waitqueue_head(&ff->poll_wait); in fuse_file_alloc()
[all …]
/linux/mm/
H A Dmm_init.c1 // SPDX-License-Identifier: GPL-2.0-only
3 * mm_init.c - Memory initialisation verification and debugging
18 #include <linux/page-isolation.h>
79 zonelist = &pgdat->node_zonelists[listid]; in mminit_verify_zonelist()
80 zone = &pgdat->node_zones[zoneid]; in mminit_verify_zonelist()
87 zone->name); in mminit_verify_zonelist()
91 pr_cont("%d:%s ", zone_to_nid(zone), zone->nam in mminit_verify_zonelist()
[all...]
/linux/lib/
H A DKconfig.debug1 # SPDX-License-Identifier: GPL-2.0-only
19 parameter printk.time=1. See Documentation/admin-guide/kernel-parameters.rst
50 int "Default console loglevel (1-15)"
60 Note: This does not affect the log level of un-prefixed printk()
65 int "quiet console loglevel (1-15)"
76 int "Default message log level (1-7)"
82 This was hard-coded to KERN_WARNING since at least 2.6.10 but folks
118 enabled/disabled based on various levels of scope - per source file,
158 nullarbor:~ # echo -n 'file svcsock.c line 1603 +p' >
162 nullarbor:~ # echo -n 'file svcsock.c +p' >
[all …]
/linux/include/linux/
H A Dzstd_lib.h1 /* SPDX-License-Identifier: GPL-2.0+ OR BSD-3-Clause */
6 * This source code is licensed under both the BSD-style license (found in the
9 * You may select, at your option, one of the above-listed licenses.
40 * typically with -Wno-deprecated-declarations for gcc or _CRT_SECURE_NO_WARNINGS in Visual.
61 real-time compression scenarios at zlib-level and better compression ratios.
62 The zstd compression library provides in-memory compression and decompression
66 which is currently 22. Levels >= 20, labeled `--ultra`, should be used with
72 - a single step (described as Simple API)
73 - a single step, reusing a context (described as Explicit context)
74 - unbounded multiple steps (described as Streaming compression)
[all …]