Home
last modified time | relevance | path

Searched +full:int +full:- +full:array +full:- +full:variable +full:- +full:length +full:- +full:and +full:- +full:constrained +full:- +full:values (Results 1 – 5 of 5) sorted by relevance

/Linux-v6.1/Documentation/devicetree/bindings/
Dexample-schema.yaml1 # SPDX-License-Identifier: (GPL-2.0-only OR BSD-2-Clause)
4 ---
5 # All the top-level keys are standard json-schema keywords except for
6 # 'maintainers' and 'select'
10 $id: http://devicetree.org/schemas/example-schema.yaml#
11 # $schema is the meta-schema this schema should be validated with.
12 $schema: http://devicetree.org/meta-schemas/core.yaml#
17 - Rob Herring <robh@kernel.org>
20 A more detailed multi-line description of the binding.
22 Details about the hardware device and any links to datasheets can go here.
[all …]
/Linux-v6.1/include/linux/
Dsched.h1 /* SPDX-License-Identifier: GPL-2.0 */
6 * Define 'struct task_struct' and provide the main scheduler
34 #include <linux/posix-timers.h>
75 * encoded in fs/proc/array.c: get_task_state().
77 * We have two separate sets of flags: task->state
78 * is about runnability, while task->exit_state are
84 /* Used in tsk->state: */
90 /* Used in tsk->exit_state: */
94 /* Used in tsk->state again: */
107 #define TASK_ANY (TASK_STATE_MAX-1)
[all …]
/Linux-v6.1/mm/
Dpage_alloc.c1 // SPDX-License-Identifier: GPL-2.0-only
52 #include <linux/backing-dev.h>
53 #include <linux/fault-inject.h>
54 #include <linux/page-isolation.h>
87 /* Free Page Internal flags: for internal, non-pcp variants of free_pages(). */
88 typedef int __bitwise fpi_t;
96 * reporting it and marking it "reported" - it only skips notifying
98 * example, used when temporarily pulling a page from a freelist and
105 * page shuffling (relevant code - e.g., memory onlining - is expected to
108 * Note: No code should rely on this flag for correctness - it's purely
[all …]
/Linux-v6.1/drivers/infiniband/hw/hfi1/
Dchip.c1 // SPDX-License-Identifier: GPL-2.0 or BSD-3-Clause
3 * Copyright(c) 2015 - 2020 Intel Corporation.
32 MODULE_PARM_DESC(num_vls, "Set number of Virtual Lanes to use (1-8)");
37 * so only the time for one 10K packet and header plus a bit extra is needed.
58 uint rcv_intr_dynamic = 1; /* enable dynamic mode for rcv int mitigation*/
78 #define SEC_SC_HALTED 0x4 /* per-context only */
79 #define SEC_SPC_FREEZE 0x8 /* per-HFI only */
87 * 0 - User Fecn Handling
88 * 1 - Vnic
89 * 2 - AIP
[all …]
/Linux-v6.1/drivers/pci/
Dpci.c1 // SPDX-License-Identifier: GPL-2.0
5 * Copyright 1993 -- 1997 Drew Eckhardt, Frederic Potter,
6 * David Mosberger-Tang
8 * Copyright 1997 -- 2000 Martin Mares <mj@ucw.cz>
45 int isa_dma_bridge_buggy;
49 int pci_pci_problems;
52 unsigned int pci_pm_d3hot_delay;
69 unsigned int delay_ms = max(dev->d3hot_delay, pci_pm_d3hot_delay); in pci_dev_d3_sleep()
70 unsigned int upper; in pci_dev_d3_sleep()
82 return dev->reset_methods[0] != 0; in pci_reset_supported()
[all …]