Home
last modified time | relevance | path

Searched full:soft (Results 1 – 25 of 1330) sorted by relevance

12345678910>>...54

/linux/drivers/net/arcnet/
H A Drfc1201.c95 struct arc_rfc1201 *soft = &pkt->soft.rfc1201; in type_trans() local
110 switch (soft->proto) { in type_trans()
139 struct arc_rfc1201 *soft = &pkthdr->soft.rfc1201; in rx() local
151 if (soft->split_flag == 0xFF) { /* Exception Packet */ in rx()
164 soft, sizeof(pkt->soft)); in rx()
166 if (!soft->split_flag) { /* not split */ in rx()
168 soft->split_flag); in rx()
172 in->sequence, soft->split_flag, in rx()
173 soft->sequence); in rx()
174 lp->rfc1201.aborted_seq = soft->sequence; in rx()
[all …]
H A Dcapmode.c70 /* up to sizeof(pkt->soft) has already been copied from the card in rx()
77 memcpy(pktbuf, pkthdrbuf, ARC_HDR_SIZE + sizeof(pkt->soft.cap.proto)); in rx()
78 memcpy(pktbuf + ARC_HDR_SIZE + sizeof(pkt->soft.cap.proto) + sizeof(int), in rx()
79 pkthdrbuf + ARC_HDR_SIZE + sizeof(pkt->soft.cap.proto), in rx()
80 sizeof(struct archdr) - ARC_HDR_SIZE - sizeof(pkt->soft.cap.proto)); in rx()
82 if (length > sizeof(pkt->soft)) in rx()
83 lp->hw.copy_from_card(dev, bufnum, ofs + sizeof(pkt->soft), in rx()
84 pkt->soft.raw + sizeof(pkt->soft) in rx()
86 length - sizeof(pkt->soft)); in rx()
95 /* Create the ARCnet hard/soft headers for cap mode.
[all …]
H A Drfc1051.c91 struct arc_rfc1051 *soft = &pkt->soft.rfc1051; in type_trans() local
106 switch (soft->proto) { in type_trans()
147 /* up to sizeof(pkt->soft) has already been copied from the card */ in rx()
149 if (length > sizeof(pkt->soft)) in rx()
150 lp->hw.copy_from_card(dev, bufnum, ofs + sizeof(pkt->soft), in rx()
151 pkt->soft.raw + sizeof(pkt->soft), in rx()
152 length - sizeof(pkt->soft)); in rx()
161 /* Create the ARCnet hard/soft headers for RFC1051 */
167 struct arc_rfc1051 *soft = &pkt->soft.rfc1051; in build_header() local
172 soft->proto = ARC_P_IP_RFC1051; in build_header()
[all …]
H A Darc-rawmode.c2 * Linux ARCnet driver - "raw mode" packet encapsulation (no soft headers)
67 /* up to sizeof(pkt->soft) has already been copied from the card */ in rx()
69 if (length > sizeof(pkt->soft)) in rx()
70 lp->hw.copy_from_card(dev, bufnum, ofs + sizeof(pkt->soft), in rx()
71 pkt->soft.raw + sizeof(pkt->soft), in rx()
72 length - sizeof(pkt->soft)); in rx()
81 /* Create the ARCnet hard/soft headers for raw mode.
82 * There aren't any soft headers in raw mode - not even the protocol id.
146 lp->hw.copy_to_card(dev, bufnum, ofs, &pkt->soft, length); in prepare_tx()
/linux/Documentation/admin-guide/mm/
H A Dsoft-dirty.rst2 Soft-Dirty PTEs
5 The soft-dirty is a bit on a PTE which helps to track which pages a task
8 1. Clear soft-dirty bits from the task's PTEs.
15 3. Read soft-dirty bits from the PTEs.
18 64-bit qword is the soft-dirty one. If set, the respective PTE was
23 when the soft-dirty bit is cleared. So, after this, when the task tries to
25 the soft-dirty bit on the respective PTE.
28 soft-dirty bits clear, the #PF-s that occur after that are processed fast.
30 the kernel does is finds this fact out and puts both writable and soft-dirty
34 there is still a scenario when we can lose soft dirty bits -- a task
[all …]
/linux/drivers/platform/mellanox/
H A Dmlxbf-bootctl.h11 * the next chip soft reset. This call does not affect the current
14 * will not be enabled after the next soft reset. Non-zero errors are
21 * after the next chip soft reset. Returns the interval as set by
27 * Request that a specific boot action be taken at the next soft
39 * soft reset. Returns the reset action (see below for the parameter
45 * Request that a specific boot action be taken at the soft reset
46 * after the next soft reset. For a specified valid boot mode, the
48 * MLXBF_BOOTCTL_SET_RESET_ACTION after the next chip soft reset; in
53 * MLXBF_BOOTCTL_SET_RESET_ACTION be taken after the next chip soft reset.
54 * This call does not affect the action to be taken at the next soft
[all …]
/linux/arch/x86/math-emu/
H A Dfpu_system.h77 #define FPU_info (I387->soft.info)
87 #define FPU_lookahead (I387->soft.lookahead)
91 #define no_ip_update (*(u_char *)&(I387->soft.no_update))
92 #define FPU_rm (*(u_char *)&(I387->soft.rm))
96 #define access_limit (*(u_char *)&(I387->soft.alimit))
98 #define partial_status (I387->soft.swd)
99 #define control_word (I387->soft.cwd)
100 #define fpu_tag_word (I387->soft.twd)
101 #define registers (I387->soft.st_space)
102 #define top (I387->soft.ftop)
[all …]
H A Dfpu_aux.c34 void fpstate_init_soft(struct swregs_state *soft) in fpstate_init_soft() argument
37 memset(soft, 0, sizeof(*soft)); in fpstate_init_soft()
38 soft->cwd = 0x037f; in fpstate_init_soft()
39 soft->swd = 0; in fpstate_init_soft()
40 soft->ftop = 0; /* We don't keep top in the status word internally. */ in fpstate_init_soft()
41 soft->twd = 0xffff; in fpstate_init_soft()
44 oaddr = (struct address *)&soft->foo; in fpstate_init_soft()
47 iaddr = (struct address *)&soft->fip; in fpstate_init_soft()
51 soft->no_update = 1; in fpstate_init_soft()
56 fpstate_init_soft(&current->thread.fpu.fpstate->regs.soft); in finit()
/linux/tools/testing/selftests/drivers/net/mlxsw/
H A Dmirror_gre.sh52 # unsupported soft device.
54 tunnel_create gt6-soft ip6gretap 2001:db8:4::1 2001:db8:4::2 \
57 tunnel_create h3-gt6-soft ip6gretap 2001:db8:4::2 2001:db8:4::1
58 ip link set h3-gt6-soft vrf v$h3
59 matchall_sink_create h3-gt6-soft
74 tunnel_destroy h3-gt6-soft
75 tunnel_destroy gt6-soft
179 test_span_failable gt6-soft "mirror to gretap w/ soft underlay"
/linux/drivers/parisc/
H A Dpower.c3 * HP PARISC soft power switch driver
8 * Support of the soft power switch button may be enabled or disabled at
85 /* soft power switch enabled/disabled */
157 * the soft-power switch and allows the user to switch off
165 /* re-enable the soft-power switch */ in parisc_panic_event()
175 /* qemu soft power-off function */
194 /* enable the soft power switch if possible */ in power_init()
202 case 0: printk(KERN_INFO DRIVER_NAME ": Gecko-style soft power switch enabled.\n"); in power_init()
205 case -1UL: printk(KERN_INFO DRIVER_NAME ": Soft power switch support not available.\n"); in power_init()
208 default: printk(KERN_INFO DRIVER_NAME ": Soft power switch at 0x%08lx enabled.\n", in power_init()
[all …]
/linux/fs/xfs/
H A Dxfs_qm_syscalls.c231 xfs_qcnt_t soft, in xfs_setqlim_limits() argument
234 /* The hard limit can't be less than the soft limit. */ in xfs_setqlim_limits()
235 if (hard != 0 && hard < soft) { in xfs_setqlim_limits()
237 soft); in xfs_setqlim_limits()
242 res->softlimit = soft; in xfs_setqlim_limits()
245 qlim->soft = soft; in xfs_setqlim_limits()
285 xfs_qcnt_t hard, soft; in xfs_qm_scall_setqlim() local
319 * Make sure that hardlimits are >= soft limits before changing. in xfs_qm_scall_setqlim()
325 * used. Ditto for the default soft and hard limit values (already in xfs_qm_scall_setqlim()
329 * the soft limit. in xfs_qm_scall_setqlim()
[all …]
/linux/sound/oss/dmasound/
H A Ddmasound_q40.c14 * [0.3] - put in default hard/soft settings.
66 char *table = dmasound.soft.format == AFMT_MU_LAW ? dmasound_ulaw2dma8: dmasound_alaw2dma8; in q40_ct_law()
123 (dmasound.soft.format == AFMT_MU_LAW ? dmasound_ulaw2dma8: dmasound_alaw2dma8); in q40_ctx_law()
127 int hSpeed = dmasound.hard.speed, sSpeed = dmasound.soft.speed; in q40_ctx_law()
163 int hSpeed = dmasound.hard.speed, sSpeed = dmasound.soft.speed; in q40_ctx_s8()
200 int hSpeed = dmasound.hard.speed, sSpeed = dmasound.soft.speed; in q40_ctx_u8()
233 (dmasound.soft.format == AFMT_MU_LAW ? dmasound_ulaw2dma8: dmasound_alaw2dma8); in q40_ctc_law()
237 int hSpeed = dmasound.hard.speed, sSpeed = dmasound.soft.speed; in q40_ctc_law()
276 int hSpeed = dmasound.hard.speed, sSpeed = dmasound.soft.speed; in q40_ctc_s8()
315 int hSpeed = dmasound.hard.speed, sSpeed = dmasound.soft.speed; in q40_ctc_u8()
[all …]
H A Ddmasound_atari.c14 * 01/02/2001 [0.3] - put in default hard/soft settings.
159 char *table = dmasound.soft.format == AFMT_MU_LAW ? dmasound_ulaw2dma8 in ata_ct_law()
165 if (dmasound.soft.stereo) in ata_ct_law()
188 if (dmasound.soft.stereo) in ata_ct_s8()
204 if (!dmasound.soft.stereo) { in ata_ct_u8()
239 if (!dmasound.soft.stereo) { in ata_ct_s16be()
271 if (!dmasound.soft.stereo) { in ata_ct_u16be()
311 if (!dmasound.soft.stereo) { in ata_ct_s16le()
352 if (!dmasound.soft.stereo) { in ata_ct_u16le()
389 char *table = dmasound.soft.format == AFMT_MU_LAW ? dmasound_ulaw2dma8 in ata_ctx_law()
[all …]
/linux/net/batman-adv/
H A Dmulticast.c59 #include "soft-interface.h"
67 * @bat_priv: the bat priv with all the soft interface information
79 * If the given soft interface has a bridge on top then the refcount
152 * @bat_priv: the bat priv with all the soft interface information
183 * @bat_priv: the bat priv with all the soft interface information
214 * @bat_priv: the bat priv with all the soft interface information
240 * @bat_priv: the bat priv with all the soft interface information
271 * @bat_priv: the bat priv with all the soft interface information
361 * on this kernel on the given soft interface, dev, in
427 * on this kernel on the given soft interface, dev, in
[all …]
H A Dlog.h74 * @bat_priv: the bat priv with all the soft interface information
100 * @bat_priv: the bat priv with all the soft interface information
109 * @bat_priv: the bat priv with all the soft interface information
117 * @net_dev: the soft interface net device
131 * @net_dev: the soft interface net device
H A Dgateway_client.c43 #include "soft-interface.h"
75 * @bat_priv: the bat priv with all the soft interface information
99 * @bat_priv: the bat priv with all the soft interface information
148 * @bat_priv: the bat priv with all the soft interface information
164 * @bat_priv: the bat priv with all the soft interface information
196 * @bat_priv: the bat priv with all the soft interface information
284 * @bat_priv: the bat priv with all the soft interface information
318 * @bat_priv: the bat priv with all the soft interface information
365 * @bat_priv: the bat priv with all the soft interface information
395 * @bat_priv: the bat priv with all the soft interface information
[all …]
H A Dtvlv.c62 * @bat_priv: the bat priv with all the soft interface information
121 * @bat_priv: the bat priv with all the soft interface information
155 * @bat_priv: the bat priv with all the soft interface information
180 * @bat_priv: the bat priv with all the soft interface information
204 * @bat_priv: the bat priv with all the soft interface information
222 * @bat_priv: the bat priv with all the soft interface information
300 * @bat_priv: the bat priv with all the soft interface information
353 * @bat_priv: the bat priv with all the soft interface information
424 * @bat_priv: the bat priv with all the soft interface information
493 * @bat_priv: the bat priv with all the soft interface information
[all …]
/linux/Documentation/devicetree/bindings/power/reset/
H A Dkeystone-reset.txt10 Additionally soft or hard reset can be configured.
26 - ti,soft-reset: Boolean option indicating soft reset.
59 WDT0 or WDT2 is triggered it issues soft reset for SoC.
66 ti,soft-reset;
/linux/include/dt-bindings/reset/
H A Drealtek,rtd1195.h10 /* soft reset 1 */
40 /* soft reset 2 */
55 /* soft reset 3 */
58 /* iso soft reset */
H A Drealtek,rtd1295.h10 /* soft reset 1 */
44 /* soft reset 2 */
78 /* soft reset 3 */
81 /* soft reset 4 */
/linux/drivers/gpu/drm/panfrost/
H A Dpanfrost_issues.h43 /* Repeatedly Soft-stopping a job chain consisting of (Vertex Shader,
53 /* Compute endpoint has a 4-deep queue of tasks, meaning a soft stop
77 /* Soft-stopping fragment jobs might fail with TILE_RANGE_FAULT */
83 /* Soft-stopping fragment jobs might fail with TILE_RANGE_ERROR
87 /* Soft-stopped fragment shader job can restart with out-of-bound
104 * encoded by soft resetting the GPU. Only for T76X r0p0, r0p1 and
120 /* When a hard-stop follows close after a soft-stop, the completion
/linux/drivers/staging/media/atomisp/pci/isp/kernels/hdr/
H A Dia_css_hdr_param.h32 1]; /* Weight map soft threshold low bound parameter */
34 1]; /* Weight map soft threshold high bound parameter */
36 1]; /* Soft threshold linear function coefficient */
38 1]; /* Soft threshold precision shift parameter */
H A Dia_css_hdr_types.h33 1]; /** Weight map soft threshold low bound parameter */
35 1]; /** Weight map soft threshold high bound parameter */
37 1]; /** Soft threshold linear function coefficien */
39 1]; /** Soft threshold precision shift parameter */
/linux/drivers/gpu/drm/amd/pm/swsmu/inc/pmfw_if/
H A Dsmu_v13_0_1_ppsmc.h65 #define PPSMC_MSG_SetSoftMinVcn 0x15 ///< Set soft min for VCN clocks (VCLK and DCL…
71 #define PPSMC_MSG_SetSoftMaxGfxClk 0x1B ///< Set soft max for GFX CLK
73 #define PPSMC_MSG_SetSoftMaxSocclkByFreq 0x1D ///< Set soft max for SOC CLK
74 #define PPSMC_MSG_SetSoftMaxFclkByFreq 0x1E ///< Set soft max for FCLK
75 #define PPSMC_MSG_SetSoftMaxVcn 0x1F ///< Set soft max for VCN clocks (VCLK and DCL…
80 #define PPSMC_MSG_SetSoftMinSocclkByFreq 0x24 ///< Set soft min for SOC CLK
/linux/sound/soc/codecs/
H A Dtda7419.c394 SOC_SINGLE("Loudness Soft Step Switch", TDA7419_LOUDNESS_REG,
396 SOC_SINGLE("Soft Mute Switch", TDA7419_MUTE_CLK_REG, TDA7419_SOFT_MUTE, 1, 1),
398 SOC_ENUM("Soft Mute Time", soc_enum_soft_mute_time),
399 SOC_ENUM("Soft Step Time", soc_enum_soft_step_time),
404 SOC_SINGLE("Volume Soft Step Switch", TDA7419_VOLUME_REG,
413 SOC_SINGLE("Middle Soft Step Switch", TDA7419_MIDDLE_REG,
418 SOC_SINGLE("Bass Soft Step Switch", TDA7419_BASS_REG,
432 SOC_SINGLE("Left Front Soft Step Switch", TDA7419_ATTENUATOR_LF_REG,
434 SOC_SINGLE("Right Front Soft Step Switch", TDA7419_ATTENUATOR_RF_REG,
439 SOC_SINGLE("Left Rear Soft Step Switch", TDA7419_ATTENUATOR_LR_REG,
[all …]

12345678910>>...54