Home
last modified time | relevance | path

Searched full:to (Results 1 – 25 of 20755) sorted by relevance

12345678910>>...831

/kernel/linux/linux-6.6/fs/nls/
DKconfig11 as the ability of some filesystems to use native languages
16 To compile this code as a module, choose M here: the module
27 system (if different) to store data (filenames) on a disk.
45 in so-called DOS codepages. You need to include the appropriate
46 codepage if you want to be able to read/write these filenames on
47 DOS/Windows partitions correctly. This does apply to the filenames
48 only, not to the file contents. You can include several codepages;
49 say Y here if you want to include the DOS codepage that is used in
57 in so-called DOS codepages. You need to include the appropriate
58 codepage if you want to be able to read/write these filenames on
[all …]
/kernel/linux/linux-5.10/fs/nls/
DKconfig11 as the ability of some filesystems to use native languages
16 To compile this code as a module, choose M here: the module
27 system (if different) to store data (filenames) on a disk.
45 in so-called DOS codepages. You need to include the appropriate
46 codepage if you want to be able to read/write these filenames on
47 DOS/Windows partitions correctly. This does apply to the filenames
48 only, not to the file contents. You can include several codepages;
49 say Y here if you want to include the DOS codepage that is used in
57 in so-called DOS codepages. You need to include the appropriate
58 codepage if you want to be able to read/write these filenames on
[all …]
/kernel/linux/linux-6.6/net/sched/
DKconfig10 When the kernel has several packets to send out over a network
11 device, it has to decide which ones to send first, which ones to
12 delay, and which ones to drop. This is the job of the queueing
13 disciplines, several different algorithms for how to do this
18 able to choose from among several alternative algorithms which can
19 then be attached to different network devices. This is useful for
21 need a certain minimum data flow rate, or if you need to limit the
23 This code is considered to be experimental.
25 To administer these schedulers, you'll need the user-level utilities
31 This Quality of Service (QoS) support will enable you to use
[all …]
/kernel/linux/linux-5.10/arch/m68k/hp300/
Dhp300map.map11 # be saved by mapping AltGr to Alt (and adapting a few entries):
185 compose '`' 'A' to '�'
186 compose '`' 'a' to '�'
187 compose '\'' 'A' to '�'
188 compose '\'' 'a' to '�'
189 compose '^' 'A' to '�'
190 compose '^' 'a' to '�'
191 compose '~' 'A' to '�'
192 compose '~' 'a' to '�'
193 compose '"' 'A' to '�'
[all …]
/kernel/linux/linux-6.6/arch/m68k/hp300/
Dhp300map.map11 # be saved by mapping AltGr to Alt (and adapting a few entries):
185 compose '`' 'A' to '�'
186 compose '`' 'a' to '�'
187 compose '\'' 'A' to '�'
188 compose '\'' 'a' to '�'
189 compose '^' 'A' to '�'
190 compose '^' 'a' to '�'
191 compose '~' 'A' to '�'
192 compose '~' 'a' to '�'
193 compose '"' 'A' to '�'
[all …]
/kernel/linux/linux-5.10/net/sched/
DKconfig10 When the kernel has several packets to send out over a network
11 device, it has to decide which ones to send first, which ones to
12 delay, and which ones to drop. This is the job of the queueing
13 disciplines, several different algorithms for how to do this
18 able to choose from among several alternative algorithms which can
19 then be attached to different network devices. This is useful for
21 need a certain minimum data flow rate, or if you need to limit the
23 This code is considered to be experimental.
25 To administer these schedulers, you'll need the user-level utilities
31 This Quality of Service (QoS) support will enable you to use
[all …]
/kernel/linux/linux-6.6/drivers/clocksource/
Dtimer-stm32.c55 * @to: a timer_of structure pointer
58 * Accessor helper to set the number of bits in the timer-of private
62 static void stm32_timer_of_bits_set(struct timer_of *to, int bits) in stm32_timer_of_bits_set() argument
64 struct stm32_timer_private *pd = to->private_data; in stm32_timer_of_bits_set()
71 * @to: a timer_of structure pointer
73 * Accessor helper to get the number of bits in the timer-of private
76 * Returns an integer corresponding to the number of bits.
78 static int stm32_timer_of_bits_get(struct timer_of *to) in stm32_timer_of_bits_get() argument
80 struct stm32_timer_private *pd = to->private_data; in stm32_timer_of_bits_get()
99 static void stm32_clock_event_disable(struct timer_of *to) in stm32_clock_event_disable() argument
[all …]
Dtimer-mediatek.c56 #define SYST_CON_REG(to) (timer_of_base(to) + SYST_CON) argument
57 #define SYST_VAL_REG(to) (timer_of_base(to) + SYST_VAL) argument
60 * SYST_CON_EN: Clock enable. Shall be set to
65 * SYST_CON_IRQ_EN: Set to enable interrupt.
67 * SYST_CON_IRQ_CLR: Set to clear interrupt.
75 static void mtk_syst_ack_irq(struct timer_of *to) in mtk_syst_ack_irq() argument
78 writel(SYST_CON_EN, SYST_CON_REG(to)); in mtk_syst_ack_irq()
79 writel(SYST_CON_IRQ_CLR | SYST_CON_EN, SYST_CON_REG(to)); in mtk_syst_ack_irq()
85 struct timer_of *to = to_timer_of(clkevt); in mtk_syst_handler() local
87 mtk_syst_ack_irq(to); in mtk_syst_handler()
[all …]
/kernel/linux/linux-5.10/drivers/clocksource/
Dtimer-stm32.c55 * @to: a timer_of structure pointer
58 * Accessor helper to set the number of bits in the timer-of private
62 static void stm32_timer_of_bits_set(struct timer_of *to, int bits) in stm32_timer_of_bits_set() argument
64 struct stm32_timer_private *pd = to->private_data; in stm32_timer_of_bits_set()
71 * @to: a timer_of structure pointer
73 * Accessor helper to get the number of bits in the timer-of private
76 * Returns an integer corresponding to the number of bits.
78 static int stm32_timer_of_bits_get(struct timer_of *to) in stm32_timer_of_bits_get() argument
80 struct stm32_timer_private *pd = to->private_data; in stm32_timer_of_bits_get()
99 static void stm32_clock_event_disable(struct timer_of *to) in stm32_clock_event_disable() argument
[all …]
/kernel/linux/linux-6.6/tools/perf/pmu-events/arch/x86/broadwellx/
Duncore-memory.json3 "BriefDescription": "read requests to memory controller. Derived from unc_m_cas_count.rd",
13 "BriefDescription": "write requests to memory controller. Derived from unc_m_cas_count.wr",
23 "BriefDescription": "DRAM Activate Count; Activate due to Write",
27 …channel. Activate commands are issued to open up a page on the DRAM devices so that it can be rea…
32 "BriefDescription": "DRAM Activate Count; Activate due to Read",
36 …channel. Activate commands are issued to open up a page on the DRAM devices so that it can be rea…
41 "BriefDescription": "DRAM Activate Count; Activate due to Write",
45 …channel. Activate commands are issued to open up a page on the DRAM devices so that it can be rea…
113 …cause of partials hitting in the WPQ. While it is possible for underfills to be issed in both WMM…
166 "BriefDescription": "This event is deprecated. Refer to new event UNC_M_CLOCKTICKS_P",
[all …]
/kernel/linux/linux-6.6/tools/perf/pmu-events/arch/x86/haswellx/
Duncore-memory.json3 "BriefDescription": "read requests to memory controller. Derived from unc_m_cas_count.rd",
13 "BriefDescription": "write requests to memory controller. Derived from unc_m_cas_count.wr",
23 "BriefDescription": "DRAM Activate Count; Activate due to Write",
27 …channel. Activate commands are issued to open up a page on the DRAM devices so that it can be rea…
32 "BriefDescription": "DRAM Activate Count; Activate due to Read",
36 …channel. Activate commands are issued to open up a page on the DRAM devices so that it can be rea…
41 "BriefDescription": "DRAM Activate Count; Activate due to Write",
45 …channel. Activate commands are issued to open up a page on the DRAM devices so that it can be rea…
113 …cause of partials hitting in the WPQ. While it is possible for underfills to be issed in both WMM…
195 …ection regardless of the number of bits corrected. The iMC can correct up to 4 bit errors in inde…
[all …]
/kernel/linux/linux-6.6/tools/perf/pmu-events/arch/x86/broadwellde/
Duncore-memory.json3 "BriefDescription": "DRAM Activate Count; Activate due to Write",
7 …channel. Activate commands are issued to open up a page on the DRAM devices so that it can be rea…
12 "BriefDescription": "DRAM Activate Count; Activate due to Read",
16 …channel. Activate commands are issued to open up a page on the DRAM devices so that it can be rea…
21 "BriefDescription": "DRAM Activate Count; Activate due to Write",
25 …channel. Activate commands are issued to open up a page on the DRAM devices so that it can be rea…
93 …cause of partials hitting in the WPQ. While it is possible for underfills to be issed in both WMM…
169 …ection regardless of the number of bits corrected. The iMC can correct up to 4 bit errors in inde…
177 … mode.; We group these two modes together so that we can use four counters to track each of the ma…
186 …-wide, and not a per-rank (or dimm or bank) mode.; This major mode is used to drain starved underf…
[all …]
/kernel/linux/linux-6.6/drivers/usb/serial/
DKconfig11 ports, or acts like a serial device, and you want to connect it to
16 supported, and on how to use them.
18 To compile this driver as a module, choose M here: the
27 If you say Y here, it will be possible to use a USB to serial
31 terminal or printer is connected to that serial port.
37 your boot loader (lilo or loadlin) about how to pass options to the
41 kernel will automatically use the first USB to serial converter
49 Say Y here if you want to use the generic USB serial driver. Please
52 support" be compiled as a module for this driver to be used
58 Say Y here to use the USB serial "simple" driver. This driver
[all …]
/kernel/linux/linux-5.10/drivers/usb/serial/
DKconfig11 ports, or acts like a serial device, and you want to connect it to
16 supported, and on how to use them.
18 To compile this driver as a module, choose M here: the
27 If you say Y here, it will be possible to use a USB to serial
31 terminal or printer is connected to that serial port.
37 your boot loader (lilo or loadlin) about how to pass options to the
41 kernel will automatically use the first USB to serial converter
49 Say Y here if you want to use the generic USB serial driver. Please
52 support" be compiled as a module for this driver to be used
58 Say Y here to use the USB serial "simple" driver. This driver
[all …]
/kernel/linux/linux-5.10/tools/perf/pmu-events/arch/x86/cascadelakex/
Duncore-other.json257 …necessary to snoop them. However, if only 1 CV bit is set the core my have modified the data. If…
267 …necessary to snoop them. However, if only 1 CV bit is set the core my have modified the data. If…
307 …"PublicDescription": "Counts only multi-socket cacheline Directory state updates due to memory wri…
322 …"BriefDescription": "Read request from a remote socket which hit in the HitMe Cache to a line In t…
327 …om a remote socket which hit in the HitME cache (used to cache the multi-socket Directory state) t…
332 "BriefDescription": "Normal priority reads issued to the memory controller from the CHA",
337 …"PublicDescription": "Counts when a normal (Non-Isochronous) read is issued to any of the memory c…
342 "BriefDescription": "CHA to iMC Full Line Writes Issued; Full Line Non-ISOCH",
347 …nts when a normal (Non-Isochronous) full line write is issued from the CHA to the any of the memor…
407 … this socket for exclusive ownership of a cache line without receiving data (INVITOE) to the CHA.",
[all …]
/kernel/linux/linux-6.6/include/linux/atomic/
Datomic-instrumented.h8 * KASAN, KCSAN), which should be used unless it is necessary to avoid
9 * instrumentation. Where it is necessary to aovid instrumenation, the
21 * @v: pointer to atomic_t
25 * Unsafe to use in noinstr code; use raw_atomic_read() there.
38 * @v: pointer to atomic_t
42 * Unsafe to use in noinstr code; use raw_atomic_read_acquire() there.
55 * @v: pointer to atomic_t
56 * @i: int value to assign
58 * Atomically sets @v to @i with relaxed ordering.
60 * Unsafe to use in noinstr code; use raw_atomic_set() there.
[all …]
Datomic-long.h26 * @v: pointer to atomic_long_t
30 * Safe to use in noinstr code; prefer atomic_long_read() elsewhere.
46 * @v: pointer to atomic_long_t
50 * Safe to use in noinstr code; prefer atomic_long_read_acquire() elsewhere.
66 * @v: pointer to atomic_long_t
67 * @i: long value to assign
69 * Atomically sets @v to @i with relaxed ordering.
71 * Safe to use in noinstr code; prefer atomic_long_set() elsewhere.
87 * @v: pointer to atomic_long_t
88 * @i: long value to assign
[all …]
/kernel/linux/linux-6.6/Documentation/filesystems/
Dxfs-delayed-logging-design.rst18 reservations bounds. At this point we need to explain how relogging works. With
26 XFS uses Write Ahead Logging for ensuring changes to the filesystem metadata
29 physical logging mechanisms to provide the necessary recovery guarantees the
33 details logged are made up of the changes to in-core structures rather than
40 The reason for these differences is to keep the amount of log space and CPU time
41 required to process objects being modified as small as possible and hence the
46 The method used to log an item or chain modifications together isn't
47 particularly important in the scope of this document. It suffices to know that
51 followed to guarantee forwards progress and prevent deadlocks.
63 The type and size of reservation must be matched to the modification taking
[all …]
/kernel/linux/linux-5.10/tools/perf/pmu-events/arch/x86/skylakex/
Duncore-other.json257 …necessary to snoop them. However, if only 1 CV bit is set the core my have modified the data. If…
267 …necessary to snoop them. However, if only 1 CV bit is set the core my have modified the data. If…
307 …"PublicDescription": "Counts only multi-socket cacheline Directory state updates due to memory wri…
322 …"BriefDescription": "Read request from a remote socket which hit in the HitMe Cache to a line In t…
327 …om a remote socket which hit in the HitME cache (used to cache the multi-socket Directory state) t…
332 "BriefDescription": "Normal priority reads issued to the memory controller from the CHA",
337 …"PublicDescription": "Counts when a normal (Non-Isochronous) read is issued to any of the memory c…
342 "BriefDescription": "CHA to iMC Full Line Writes Issued; Full Line Non-ISOCH",
347 …nts when a normal (Non-Isochronous) full line write is issued from the CHA to the any of the memor…
407 … this socket for exclusive ownership of a cache line without receiving data (INVITOE) to the CHA.",
[all …]
/kernel/linux/linux-6.6/sound/soc/tegra/
DKconfig19 Say Y or M if you want to add support for codecs attached to the
20 Tegra20 AC97 interface. You will also need to select the individual
21 machine drivers to support below.
26 Say Y or M if you want to add support for the Tegra20 DAS module.
27 You will also need to select the individual machine drivers to
34 Say Y or M if you want to add support for codecs attached to the
35 Tegra20 I2S interface. You will also need to select the individual
36 machine drivers to support below.
41 Say Y or M if you want to add support for the Tegra20 SPDIF interface.
42 You will also need to select the individual machine drivers to support
[all …]
/kernel/linux/linux-5.10/Documentation/filesystems/
Dxfs-delayed-logging-design.rst7 Introduction to Re-logging in XFS
12 logged are made up of the changes to in-core structures rather than on-disk
14 logged. The reason for these differences is to reduce the amount of log space
21 modifications to a single object to be carried in the log at any given time.
22 This allows the log to avoid needing to flush each change to disk before
23 recording a new change to the object. XFS does this via a method called
25 new change to the object is recorded with a *new copy* of all the existing
26 changes in the new transaction that is written to the log.
28 That is, if we have a sequence of changes A through to F, and the object was
29 written to disk after change D, we would see in the log the following series
[all …]
/kernel/linux/linux-5.10/Documentation/admin-guide/pm/
Dcpufreq.rst19 different clock frequency and voltage configurations, often referred to as
28 In some situations it is desirable or even necessary to run the program as fast
29 as possible and then there is no reason to use any P-states different from the
31 available). In some other cases, however, it may not be necessary to execute
34 It also may not be physically possible to maintain maximum CPU capacity for too
35 long for thermal or power supply capacity reasons or similar. To cover those
36 cases, there are hardware interfaces allowing CPUs to be switched between
37 different frequency/voltage configurations or (in the ACPI terminology) to be
40 Typically, they are used along with algorithms to estimate the required CPU
41 capacity, so as to decide which P-states to put the CPUs into. Of course, since
[all …]
/kernel/linux/linux-6.6/Documentation/admin-guide/pm/
Dcpufreq.rst19 different clock frequency and voltage configurations, often referred to as
28 In some situations it is desirable or even necessary to run the program as fast
29 as possible and then there is no reason to use any P-states different from the
31 available). In some other cases, however, it may not be necessary to execute
34 It also may not be physically possible to maintain maximum CPU capacity for too
35 long for thermal or power supply capacity reasons or similar. To cover those
36 cases, there are hardware interfaces allowing CPUs to be switched between
37 different frequency/voltage configurations or (in the ACPI terminology) to be
40 Typically, they are used along with algorithms to estimate the required CPU
41 capacity, so as to decide which P-states to put the CPUs into. Of course, since
[all …]
/kernel/linux/linux-6.6/net/netfilter/
DKconfig10 This allows you to classify packets from ingress using the Netfilter
18 This allows you to classify packets before transmission using the
43 to list the base netfilter hooks via NFNETLINK.
71 and is also scheduled to replace the old syslog-based ipt_LOG
89 through your machine, in order to figure out how they are related
92 This is required to do Masquerading or other kinds of Network
93 Address Translation. It can also be used to enhance packet
96 To compile it as a module, choose M here. If unsure, say N.
105 This is a simpler but less flexible logging method compared to
107 If both are enabled the backend to use can be configured at run-time
[all …]
/kernel/linux/linux-5.10/net/netfilter/
DKconfig10 This allows you to classify packets from ingress using the Netfilter
47 and is also scheduled to replace the old syslog-based ipt_LOG
65 through your machine, in order to figure out how they are related
68 This is required to do Masquerading or other kinds of Network
69 Address Translation. It can also be used to enhance packet
72 To compile it as a module, choose M here. If unsure, say N.
90 `CONNMARK' target and `connmark' match. Similar to the mark value
99 This option enables security markings to be applied to
100 connections. Typically they are copied to connections from
102 connections to packets with the same target, with the packets
[all …]

12345678910>>...831