cregit-Linux how code gets into the kernel

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

/* SPDX-License-Identifier: GPL-2.0 */
#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 Molnar3354.10%112.50%
Babu Moger2236.07%225.00%
Thomas Gleixner46.56%337.50%
Greg Kroah-Hartman11.64%112.50%
Sam Ravnborg11.64%112.50%
Total61100.00%8100.00%
Information contained on this website is for historical information purposes only and does not indicate or represent copyright ownership.
Created with cregit.