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 – 8 of 8) sorted by relevance

/kernel/linux/linux-6.6/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 …]
/kernel/linux/linux-5.10/drivers/media/v4l2-core/
Dv4l2-ctrls.c1 // SPDX-License-Identifier: GPL-2.0-or-later
9 #define pr_fmt(fmt) "v4l2-ctrls: " fmt
15 #include <media/v4l2-ctrls.h>
16 #include <media/v4l2-dev.h>
17 #include <media/v4l2-device.h>
18 #include <media/v4l2-event.h>
19 #include <media/v4l2-fwnode.h>
20 #include <media/v4l2-ioctl.h>
23 if (!WARN_ON(!(vdev)) && ((vdev)->dev_debug & V4L2_DEV_DEBUG_CTRL)) \
29 (master->ops && master->ops->op)
[all …]
/kernel/linux/linux-6.6/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 …]
/kernel/linux/linux-6.6/Documentation/filesystems/
Dxfs-online-fsck-design.rst1 .. SPDX-License-Identifier: GPL-2.0
6 Heading 1 uses "====" above and below
8 Heading 3 uses "----"
25 - To help kernel distributors understand exactly what the XFS online fsck
26 feature is, and issues about which they should be aware.
28 - To help people reading the code to familiarize themselves with the relevant
29 concepts and design points before they start digging into the code.
31 - To help developers maintaining the system by capturing the reasons
41 Part 1 defines what fsck tools are and the motivations for writing a new one.
42 Parts 2 and 3 present a high level overview of how online fsck process works
[all …]
/kernel/linux/linux-5.10/mm/
Dpage_alloc.c1 // SPDX-License-Identifier: GPL-2.0-only
50 #include <linux/backing-dev.h>
51 #include <linux/fault-inject.h>
52 #include <linux/page-isolation.h>
85 /* Free Page Internal flags: for internal, non-pcp variants of free_pages(). */
86 typedef int __bitwise fpi_t;
94 * reporting it and marking it "reported" - it only skips notifying
96 * example, used when temporarily pulling a page from a freelist and
103 * page shuffling (relevant code - e.g., memory onlining - is expected to
106 * Note: No code should rely on this flag for correctness - it's purely
[all …]
/kernel/linux/linux-5.10/drivers/infiniband/hw/hfi1/
Dchip.c2 * Copyright(c) 2015 - 2020 Intel Corporation.
9 * This program is free software; you can redistribute it and/or modify
20 * Redistribution and use in source and binary forms, with or without
24 * - Redistributions of source code must retain the above copyright
25 * notice, this list of conditions and the following disclaimer.
26 * - Redistributions in binary form must reproduce the above copyright
27 * notice, this list of conditions and the following disclaimer in
28 * the documentation and/or other materials provided with the
30 * - Neither the name of Intel Corporation nor the names of its
34 * THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS
[all …]
/kernel/linux/linux-6.6/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 …]
/kernel/linux/linux-6.6/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;
84 unsigned int delay_ms = max(dev->d3hot_delay, pci_pm_d3hot_delay); in pci_dev_d3_sleep()
85 unsigned int upper; in pci_dev_d3_sleep()
97 return dev->reset_methods[0] != 0; in pci_reset_supported()
[all …]