From: Peter Zijlstra <peterz@infradead.org>
To: Vineet Gupta <Vineet.Gupta1@synopsys.com>
Cc: lkml <linux-kernel@vger.kernel.org>, arc-linux-dev@synopsys.com
Subject: Re: [PATCH 5/6] ARCv2: spinlock/rwlock/atomics: Delayed retry of failed SCOND with exponential backoff
Date: Mon, 3 Aug 2015 13:41:04 +0200 [thread overview]
Message-ID: <20150803114104.GK25159@twins.programming.kicks-ass.net> (raw)
In-Reply-To: <1438596188-10875-6-git-send-email-vgupta@synopsys.com>
On Mon, Aug 03, 2015 at 03:33:07PM +0530, Vineet Gupta wrote:
> +#define SCOND_FAIL_RETRY_VAR_DEF \
> + unsigned int delay = 1, tmp; \
> +
> +#define SCOND_FAIL_RETRY_ASM \
> + " bz 4f \n" \
> + " ; --- scond fail delay --- \n" \
> + " mov %[tmp], %[delay] \n" /* tmp = delay */ \
> + "2: brne.d %[tmp], 0, 2b \n" /* while (tmp != 0) */ \
> + " sub %[tmp], %[tmp], 1 \n" /* tmp-- */ \
> + " asl %[delay], %[delay], 1 \n" /* delay *= 2 */ \
> + " b 1b \n" /* start over */ \
> + "4: ; --- success --- \n" \
> +
> +#define SCOND_FAIL_RETRY_VARS \
> + ,[delay] "+&r" (delay),[tmp] "=&r" (tmp) \
> +
> +#define ATOMIC_OP(op, c_op, asm_op) \
> +static inline void atomic_##op(int i, atomic_t *v) \
> +{ \
> + unsigned int val, delay = 1, tmp; \
Maybe use your SCOND_FAIL_RETRY_VAR_DEF ?
> + \
> + __asm__ __volatile__( \
> + "1: llock %[val], [%[ctr]] \n" \
> + " " #asm_op " %[val], %[val], %[i] \n" \
> + " scond %[val], [%[ctr]] \n" \
> + " \n" \
> + SCOND_FAIL_RETRY_ASM \
> + \
> + : [val] "=&r" (val) /* Early clobber to prevent reg reuse */ \
> + SCOND_FAIL_RETRY_VARS \
> + : [ctr] "r" (&v->counter), /* Not "m": llock only supports reg direct addr mode */ \
> + [i] "ir" (i) \
> + : "cc"); \
> +} \
> +
> +#define ATOMIC_OP_RETURN(op, c_op, asm_op) \
> +static inline int atomic_##op##_return(int i, atomic_t *v) \
> +{ \
> + unsigned int val, delay = 1, tmp; \
Idem.
> + \
> + /* \
> + * Explicit full memory barrier needed before/after as \
> + * LLOCK/SCOND thmeselves don't provide any such semantics \
> + */ \
> + smp_mb(); \
> + \
> + __asm__ __volatile__( \
> + "1: llock %[val], [%[ctr]] \n" \
> + " " #asm_op " %[val], %[val], %[i] \n" \
> + " scond %[val], [%[ctr]] \n" \
> + " \n" \
> + SCOND_FAIL_RETRY_ASM \
> + \
> + : [val] "=&r" (val) \
> + SCOND_FAIL_RETRY_VARS \
> + : [ctr] "r" (&v->counter), \
> + [i] "ir" (i) \
> + : "cc"); \
> + \
> + smp_mb(); \
> + \
> + return val; \
> +}
> +#define SCOND_FAIL_RETRY_VAR_DEF \
> + unsigned int delay, tmp; \
> +
> +#define SCOND_FAIL_RETRY_ASM \
> + " ; --- scond fail delay --- \n" \
> + " mov %[tmp], %[delay] \n" /* tmp = delay */ \
> + "2: brne.d %[tmp], 0, 2b \n" /* while (tmp != 0) */ \
> + " sub %[tmp], %[tmp], 1 \n" /* tmp-- */ \
> + " asl %[delay], %[delay], 1 \n" /* delay *= 2 */ \
> + " b 1b \n" /* start over */ \
> + " \n" \
> + "4: ; --- done --- \n" \
> +
> +#define SCOND_FAIL_RETRY_VARS \
> + ,[delay] "=&r" (delay), [tmp] "=&r" (tmp) \
This is looking remarkably similar to the previous ones, why not a
shared header?
> +static inline void arch_spin_lock(arch_spinlock_t *lock)
> +{
> + unsigned int val;
> + SCOND_FAIL_RETRY_VAR_DEF;
> +
> + smp_mb();
> +
> + __asm__ __volatile__(
> + "0: mov %[delay], 1 \n"
> + "1: llock %[val], [%[slock]] \n"
> + " breq %[val], %[LOCKED], 1b \n" /* spin while LOCKED */
> + " scond %[LOCKED], [%[slock]] \n" /* acquire */
> + " bz 4f \n" /* done */
> + " \n"
> + SCOND_FAIL_RETRY_ASM
But,... in the case that macro is empty, the label 4 does not actually
exist. I see no real reason for this to be different from the previous
incarnation either.
next prev parent reply other threads:[~2015-08-03 11:41 UTC|newest]
Thread overview: 21+ messages / expand[flat|nested] mbox.gz Atom feed top
2015-08-03 10:03 [PATCH 0/6] ARC: spinlocks/atomics rework Vineet Gupta
2015-08-03 10:03 ` [PATCH 1/6] Revert "ARCv2: STAR 9000837815 workaround hardware exclusive transactions livelock" Vineet Gupta
2015-08-03 10:03 ` [PATCH 2/6] ARC: refactor atomic inline asm operands with symbolic names Vineet Gupta
2015-08-03 10:03 ` [PATCH 3/6] ARC: LLOCK/SCOND based spin_lock Vineet Gupta
2015-08-03 11:29 ` Peter Zijlstra
2015-08-03 11:44 ` Vineet Gupta
2015-08-03 10:03 ` [PATCH 4/6] ARC: LLOCK/SCOND based rwlock Vineet Gupta
2015-08-03 11:33 ` Peter Zijlstra
2015-08-03 11:51 ` Vineet Gupta
2015-08-03 10:03 ` [PATCH 5/6] ARCv2: spinlock/rwlock/atomics: Delayed retry of failed SCOND with exponential backoff Vineet Gupta
2015-08-03 11:41 ` Peter Zijlstra [this message]
2015-08-03 13:01 ` Vineet Gupta
2015-08-03 13:50 ` Vineet Gupta
2015-08-03 14:08 ` Peter Zijlstra
2015-08-03 11:50 ` Peter Zijlstra
2015-08-03 13:02 ` Vineet Gupta
2015-08-03 13:06 ` Peter Zijlstra
2015-08-03 10:03 ` [PATCH 6/6] ARCv2: spinlock/rwlock: Reset retry delay when starting a new spin-wait cycle Vineet Gupta
2015-08-03 11:43 ` Peter Zijlstra
2015-08-03 14:40 ` Vineet Gupta
2015-08-03 14:42 ` Peter Zijlstra
Reply instructions:
You may reply publicly to this message via plain-text email
using any one of the following methods:
* Save the following mbox file, import it into your mail client,
and reply-to-all from there: mbox
Avoid top-posting and favor interleaved quoting:
https://en.wikipedia.org/wiki/Posting_style#Interleaved_style
* Reply using the --to, --cc, and --in-reply-to
switches of git-send-email(1):
git send-email \
--in-reply-to=20150803114104.GK25159@twins.programming.kicks-ass.net \
--to=peterz@infradead.org \
--cc=Vineet.Gupta1@synopsys.com \
--cc=arc-linux-dev@synopsys.com \
--cc=linux-kernel@vger.kernel.org \
/path/to/YOUR_REPLY
https://kernel.org/pub/software/scm/git/docs/git-send-email.html
* If your mail client supports setting the In-Reply-To header
via mailto: links, try the mailto: link
Be sure your reply has a Subject: header at the top and a blank line
before the message body.
This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox