Searched refs:relax (Results 1 - 21 of 21) sorted by relevance

/linux-master/drivers/hwspinlock/
H A Dhwspinlock_internal.h24 * @relax: optional, platform-specific relax handler, called by hwspinlock
31 void (*relax)(struct hwspinlock *lock); member in struct:hwspinlock_ops
H A Du8500_hsem.c82 .relax = u8500_hsem_relax,
H A Domap_hwspinlock.c55 * relax the OMAP interconnect while spinning on it.
72 .relax = omap_hwspinlock_relax,
H A Dsprd_hwspinlock.c76 .relax = sprd_hwspinlock_relax,
H A Dstm32_hwspinlock.c54 .relax = stm32_hwspinlock_relax,
H A Dhwspinlock_core.c238 * Allow platform-specific relax handlers to prevent
241 if (hwlock->bank->ops->relax)
242 hwlock->bank->ops->relax(hwlock);
/linux-master/arch/riscv/
H A DMakefile15 LDFLAGS_vmlinux += --no-relax
50 KBUILD_CFLAGS += -mno-relax
51 KBUILD_AFLAGS += -mno-relax
53 KBUILD_CFLAGS += -Wa,-mno-relax
54 KBUILD_AFLAGS += -Wa,-mno-relax
60 KBUILD_LDFLAGS += -mllvm -mattr=+c -mllvm -mattr=+relax
64 KBUILD_LDFLAGS += --no-relax-gp
117 KBUILD_CFLAGS_MODULE += $(call cc-option,-mno-relax)
118 KBUILD_AFLAGS_MODULE += $(call as-option,-Wa$(comma)-mno-relax)
/linux-master/arch/mips/include/asm/
H A Dio.h196 #define __BUILD_MEMORY_SINGLE(pfx, bwlq, type, barrier, relax, irq) \
272 if (!relax) \
277 #define __BUILD_IOPORT_SINGLE(pfx, bwlq, type, barrier, relax) \
314 if (!relax) \
319 #define __BUILD_MEMORY_PFX(bus, bwlq, type, relax) \
321 __BUILD_MEMORY_SINGLE(bus, bwlq, type, 1, relax, 1)
/linux-master/arch/powerpc/lib/
H A Dqspinlock.c293 goto relax;
296 goto relax;
302 goto relax; /* owner vcpu is running */
326 /* Don't relax if we yielded. Maybe we should? */
330 relax:
382 goto relax;
416 goto relax;
420 goto relax; /* owner vcpu is running */
436 relax:
/linux-master/arch/xtensa/
H A DMakefile50 KBUILD_LDFLAGS += --no-relax
/linux-master/net/ipv4/
H A Dinet_connection_sock.c173 kuid_t sk_uid, bool relax,
187 if (!relax || (!reuseport_ok && sk->sk_reuseport &&
203 kuid_t sk_uid, bool relax,
216 return inet_bind_conflict(sk, sk2, sk_uid, relax,
223 bool relax, bool reuseport_cb_ok,
229 if (__inet_bhash2_conflict(sk, sk2, sk_uid, relax,
245 bool relax, bool reuseport_ok)
264 return tb2 && inet_bhash2_conflict(sk, tb2, uid, relax,
273 if (!inet_bind_conflict(sk, sk2, uid, relax, reuseport_cb_ok, reuseport_ok))
290 bool relax, boo
172 inet_bind_conflict(const struct sock *sk, struct sock *sk2, kuid_t sk_uid, bool relax, bool reuseport_cb_ok, bool reuseport_ok) argument
202 __inet_bhash2_conflict(const struct sock *sk, struct sock *sk2, kuid_t sk_uid, bool relax, bool reuseport_cb_ok, bool reuseport_ok) argument
220 inet_bhash2_conflict(const struct sock *sk, const struct inet_bind2_bucket *tb2, kuid_t sk_uid, bool relax, bool reuseport_cb_ok, bool reuseport_ok) argument
242 inet_csk_bind_conflict(const struct sock *sk, const struct inet_bind_bucket *tb, const struct inet_bind2_bucket *tb2, bool relax, bool reuseport_ok) argument
289 inet_bhash2_addr_any_conflict(const struct sock *sk, int port, int l3mdev, bool relax, bool reuseport_ok) argument
342 bool relax = false; local
[all...]
/linux-master/arch/loongarch/
H A DMakefile98 KBUILD_AFLAGS += $(call cc-option,-mno-relax) $(call cc-option,-Wa$(comma)-mno-relax)
99 KBUILD_CFLAGS += $(call cc-option,-mno-relax) $(call cc-option,-Wa$(comma)-mno-relax)
/linux-master/drivers/nvmem/
H A Dvf610-ocotp.c117 u32 relax, strobe_read, strobe_prog; local
123 relax = clk_rate / (1000000000 / DEF_RELAX) - 1;
127 timing = BF(relax, OCOTP_TIMING_RELAX);
H A Dimx-ocotp.c240 unsigned long strobe_read, relax, strobe_prog; local
273 relax = DIV_ROUND_UP(clk_rate * TIMING_RELAX_NS, 1000000000) - 1;
276 strobe_read += 2 * (relax + 1) - 1;
279 strobe_prog += 2 * (relax + 1) - 1;
283 timing |= (relax << 12) & 0x0000F000;
/linux-master/fs/xfs/scrub/
H A Discan.c269 unsigned long relax; local
275 relax = msecs_to_jiffies(iscan->iget_retry_delay);
286 } while (!schedule_timeout_killable(relax) &&
391 unsigned long relax; local
398 relax = msecs_to_jiffies(iscan->iget_retry_delay);
401 if (schedule_timeout_killable(relax) ||
691 * waiting to be inactivated, the CPU will relax for @iget_retry_delay
H A Dxfarray.h131 struct xchk_relax relax; member in struct:xfarray_sortinfo
H A Dscrub.h177 struct xchk_relax relax; member in struct:xfs_scrub
226 if (xchk_maybe_relax(&sc->relax)) {
H A Dxfarray.c489 si->relax = INIT_XCHK_RELAX;
491 si->relax.interruptible = false;
509 if (xchk_maybe_relax(&si->relax)) {
H A Dscrub.c622 sc->relax = INIT_XCHK_RELAX;
/linux-master/drivers/firmware/efi/libstub/
H A DMakefile31 cflags-$(CONFIG_RISCV) += -fpic -DNO_ALTERNATIVE -mno-relax
/linux-master/arch/riscv/kernel/
H A DMakefile16 AFLAGS_kexec_relocate.o := -mcmodel=medany $(call cc-option,-mno-relax)

Completed in 425 milliseconds