cregit-Linux how code gets into the kernel

Release 4.13 arch/sparc/include/asm/spinlock_types.h

#ifndef __SPARC_SPINLOCK_TYPES_H

#define __SPARC_SPINLOCK_TYPES_H

#ifdef CONFIG_QUEUED_SPINLOCKS
#include <asm-generic/qspinlock_types.h>
#else

typedef struct {
	
volatile unsigned char lock;

} arch_spinlock_t;


#define __ARCH_SPIN_LOCK_UNLOCKED	{ 0 }
#endif /* CONFIG_QUEUED_SPINLOCKS */

#ifdef CONFIG_QUEUED_RWLOCKS
#include <asm-generic/qrwlock_types.h>
#else
typedef struct {
	
volatile unsigned int lock;

} arch_rwlock_t;


#define __ARCH_RW_LOCK_UNLOCKED		{ 0 }
#endif /* CONFIG_QUEUED_RWLOCKS */
#endif

Overall Contributors

PersonTokensPropCommitsCommitProp
Ingo Molnar3355.00%114.29%
Babu Moger2236.67%228.57%
Thomas Gleixner46.67%342.86%
Sam Ravnborg11.67%114.29%
Total60100.00%7100.00%
Information contained on this website is for historical information purposes only and does not indicate or represent copyright ownership.
Created with cregit.