cregit-Linux how code gets into the kernel

Release 4.10 arch/s390/lib/spinlock.c

Directory: arch/s390/lib
/*
 *    Out of line spinlock code.
 *
 *    Copyright IBM Corp. 2004, 2006
 *    Author(s): Martin Schwidefsky (schwidefsky@de.ibm.com)
 */

#include <linux/types.h>
#include <linux/module.h>
#include <linux/spinlock.h>
#include <linux/init.h>
#include <linux/smp.h>
#include <asm/io.h>


int spin_retry = -1;


static int __init spin_retry_init(void) { if (spin_retry < 0) spin_retry = MACHINE_HAS_CAD ? 10 : 1000; return 0; }

Contributors

PersonTokensPropCommitsCommitProp
martin schwidefskymartin schwidefsky26100.00%1100.00%
Total26100.00%1100.00%

early_initcall(spin_retry_init); /** * spin_retry= parameter */
static int __init spin_retry_setup(char *str) { spin_retry = simple_strtoul(str, &str, 0); return 1; }

Contributors

PersonTokensPropCommitsCommitProp
martin schwidefskymartin schwidefsky26100.00%1100.00%
Total26100.00%1100.00%

__setup("spin_retry=", spin_retry_setup);
static inline void _raw_compare_and_delay(unsigned int *lock, unsigned int old) { asm(".insn rsy,0xeb0000000022,%0,0,%1" : : "d" (old), "Q" (*lock)); }

Contributors

PersonTokensPropCommitsCommitProp
martin schwidefskymartin schwidefsky17100.00%1100.00%
Total17100.00%1100.00%


void arch_spin_lock_wait(arch_spinlock_t *lp) { unsigned int cpu = SPINLOCK_LOCKVAL; unsigned int owner; int count, first_diag; first_diag = 1; while (1) { owner = ACCESS_ONCE(lp->lock); /* Try to get the lock if it is free. */ if (!owner) { if (_raw_compare_and_swap(&lp->lock, 0, cpu)) return; continue; } /* First iteration: check if the lock owner is running. */ if (first_diag && arch_vcpu_is_preempted(~owner)) { smp_yield_cpu(~owner); first_diag = 0; continue; } /* Loop for a while on the lock value. */ count = spin_retry; do { if (MACHINE_HAS_CAD) _raw_compare_and_delay(&lp->lock, owner); owner = ACCESS_ONCE(lp->lock); } while (owner && count-- > 0); if (!owner) continue; /* * For multiple layers of hypervisors, e.g. z/VM + LPAR * yield the CPU unconditionally. For LPAR rely on the * sense running status. */ if (!MACHINE_IS_LPAR || arch_vcpu_is_preempted(~owner)) { smp_yield_cpu(~owner); first_diag = 0; } } }

Contributors

PersonTokensPropCommitsCommitProp
martin schwidefskymartin schwidefsky11973.46%646.15%
gerald schaefergerald schaefer3622.22%215.38%
philipp hachtmannphilipp hachtmann31.85%215.38%
thomas gleixnerthomas gleixner21.23%215.38%
christian borntraegerchristian borntraeger21.23%17.69%
Total162100.00%13100.00%

EXPORT_SYMBOL(arch_spin_lock_wait);
void arch_spin_lock_wait_flags(arch_spinlock_t *lp, unsigned long flags) { unsigned int cpu = SPINLOCK_LOCKVAL; unsigned int owner; int count, first_diag; local_irq_restore(flags); first_diag = 1; while (1) { owner = ACCESS_ONCE(lp->lock); /* Try to get the lock if it is free. */ if (!owner) { local_irq_disable(); if (_raw_compare_and_swap(&lp->lock, 0, cpu)) return; local_irq_restore(flags); continue; } /* Check if the lock owner is running. */ if (first_diag && arch_vcpu_is_preempted(~owner)) { smp_yield_cpu(~owner); first_diag = 0; continue; } /* Loop for a while on the lock value. */ count = spin_retry; do { if (MACHINE_HAS_CAD) _raw_compare_and_delay(&lp->lock, owner); owner = ACCESS_ONCE(lp->lock); } while (owner && count-- > 0); if (!owner) continue; /* * For multiple layers of hypervisors, e.g. z/VM + LPAR * yield the CPU unconditionally. For LPAR rely on the * sense running status. */ if (!MACHINE_IS_LPAR || arch_vcpu_is_preempted(~owner)) { smp_yield_cpu(~owner); first_diag = 0; } } }

Contributors

PersonTokensPropCommitsCommitProp
martin schwidefskymartin schwidefsky8245.81%325.00%
hisashi hifumihisashi hifumi5530.73%18.33%
gerald schaefergerald schaefer3318.44%216.67%
philipp hachtmannphilipp hachtmann42.23%216.67%
thomas gleixnerthomas gleixner21.12%216.67%
christian borntraegerchristian borntraeger21.12%18.33%
heiko carstensheiko carstens10.56%18.33%
Total179100.00%12100.00%

EXPORT_SYMBOL(arch_spin_lock_wait_flags);
int arch_spin_trylock_retry(arch_spinlock_t *lp) { unsigned int cpu = SPINLOCK_LOCKVAL; unsigned int owner; int count; for (count = spin_retry; count > 0; count--) { owner = ACCESS_ONCE(lp->lock); /* Try to get the lock if it is free. */ if (!owner) { if (_raw_compare_and_swap(&lp->lock, 0, cpu)) return 1; } else if (MACHINE_HAS_CAD) _raw_compare_and_delay(&lp->lock, owner); } return 0; }

Contributors

PersonTokensPropCommitsCommitProp
martin schwidefskymartin schwidefsky7988.76%360.00%
philipp hachtmannphilipp hachtmann88.99%120.00%
christian ehrhardtchristian ehrhardt22.25%120.00%
Total89100.00%5100.00%

EXPORT_SYMBOL(arch_spin_trylock_retry);
void _raw_read_lock_wait(arch_rwlock_t *rw) { unsigned int owner, old; int count = spin_retry; #ifdef CONFIG_HAVE_MARCH_Z196_FEATURES __RAW_LOCK(&rw->lock, -1, __RAW_OP_ADD); #endif owner = 0; while (1) { if (count-- <= 0) { if (owner && arch_vcpu_is_preempted(~owner)) smp_yield_cpu(~owner); count = spin_retry; } old = ACCESS_ONCE(rw->lock); owner = ACCESS_ONCE(rw->owner); if ((int) old < 0) { if (MACHINE_HAS_CAD) _raw_compare_and_delay(&rw->lock, old); continue; } if (_raw_compare_and_swap(&rw->lock, old, old + 1)) return; } }

Contributors

PersonTokensPropCommitsCommitProp
martin schwidefskymartin schwidefsky13698.55%675.00%
thomas gleixnerthomas gleixner10.72%112.50%
christian borntraegerchristian borntraeger10.72%112.50%
Total138100.00%8100.00%

EXPORT_SYMBOL(_raw_read_lock_wait);
int _raw_read_trylock_retry(arch_rwlock_t *rw) { unsigned int old; int count = spin_retry; while (count-- > 0) { old = ACCESS_ONCE(rw->lock); if ((int) old < 0) { if (MACHINE_HAS_CAD) _raw_compare_and_delay(&rw->lock, old); continue; } if (_raw_compare_and_swap(&rw->lock, old, old + 1)) return 1; } return 0; }

Contributors

PersonTokensPropCommitsCommitProp
martin schwidefskymartin schwidefsky8398.81%480.00%
thomas gleixnerthomas gleixner11.19%120.00%
Total84100.00%5100.00%

EXPORT_SYMBOL(_raw_read_trylock_retry); #ifdef CONFIG_HAVE_MARCH_Z196_FEATURES
void _raw_write_lock_wait(arch_rwlock_t *rw, unsigned int prev) { unsigned int owner, old; int count = spin_retry; owner = 0; while (1) { if (count-- <= 0) { if (owner && arch_vcpu_is_preempted(~owner)) smp_yield_cpu(~owner); count = spin_retry; } old = ACCESS_ONCE(rw->lock); owner = ACCESS_ONCE(rw->owner); smp_mb(); if ((int) old >= 0) { prev = __RAW_LOCK(&rw->lock, 0x80000000, __RAW_OP_OR); old = prev; } if ((old & 0x7fffffff) == 0 && (int) prev >= 0) break; if (MACHINE_HAS_CAD) _raw_compare_and_delay(&rw->lock, old); } }

Contributors

PersonTokensPropCommitsCommitProp
martin schwidefskymartin schwidefsky14398.62%250.00%
christian borntraegerchristian borntraeger21.38%250.00%
Total145100.00%4100.00%

EXPORT_SYMBOL(_raw_write_lock_wait); #else /* CONFIG_HAVE_MARCH_Z196_FEATURES */
void _raw_write_lock_wait(arch_rwlock_t *rw) { unsigned int owner, old, prev; int count = spin_retry; prev = 0x80000000; owner = 0; while (1) { if (count-- <= 0) { if (owner && arch_vcpu_is_preempted(~owner)) smp_yield_cpu(~owner); count = spin_retry; } old = ACCESS_ONCE(rw->lock); owner = ACCESS_ONCE(rw->owner); if ((int) old >= 0 && _raw_compare_and_swap(&rw->lock, old, old | 0x80000000)) prev = old; else smp_mb(); if ((old & 0x7fffffff) == 0 && (int) prev >= 0) break; if (MACHINE_HAS_CAD) _raw_compare_and_delay(&rw->lock, old); } }

Contributors

PersonTokensPropCommitsCommitProp
martin schwidefskymartin schwidefsky14095.89%660.00%
christian ehrhardtchristian ehrhardt32.05%110.00%
christian borntraegerchristian borntraeger21.37%220.00%
thomas gleixnerthomas gleixner10.68%110.00%
Total146100.00%10100.00%

EXPORT_SYMBOL(_raw_write_lock_wait); #endif /* CONFIG_HAVE_MARCH_Z196_FEATURES */
int _raw_write_trylock_retry(arch_rwlock_t *rw) { unsigned int old; int count = spin_retry; while (count-- > 0) { old = ACCESS_ONCE(rw->lock); if (old) { if (MACHINE_HAS_CAD) _raw_compare_and_delay(&rw->lock, old); continue; } if (_raw_compare_and_swap(&rw->lock, 0, 0x80000000)) return 1; } return 0; }

Contributors

PersonTokensPropCommitsCommitProp
martin schwidefskymartin schwidefsky6989.61%466.67%
christian ehrhardtchristian ehrhardt79.09%116.67%
thomas gleixnerthomas gleixner11.30%116.67%
Total77100.00%6100.00%

EXPORT_SYMBOL(_raw_write_trylock_retry);
void arch_lock_relax(unsigned int cpu) { if (!cpu) return; if (MACHINE_IS_LPAR && !arch_vcpu_is_preempted(~cpu)) return; smp_yield_cpu(~cpu); }

Contributors

PersonTokensPropCommitsCommitProp
martin schwidefskymartin schwidefsky3296.97%266.67%
christian borntraegerchristian borntraeger13.03%133.33%
Total33100.00%3100.00%

EXPORT_SYMBOL(arch_lock_relax);

Overall Contributors

PersonTokensPropCommitsCommitProp
martin schwidefskymartin schwidefsky103685.34%1145.83%
gerald schaefergerald schaefer695.68%28.33%
hisashi hifumihisashi hifumi594.86%14.17%
philipp hachtmannphilipp hachtmann151.24%28.33%
christian ehrhardtchristian ehrhardt120.99%14.17%
thomas gleixnerthomas gleixner110.91%312.50%
christian borntraegerchristian borntraeger100.82%28.33%
heiko carstensheiko carstens20.16%28.33%
Total1214100.00%24100.00%
Directory: arch/s390/lib
Information contained on this website is for historical information purposes only and does not indicate or represent copyright ownership.