cregit-Linux how code gets into the kernel

Release 4.14 arch/metag/include/asm/bitops.h

/* SPDX-License-Identifier: GPL-2.0 */
#ifndef __ASM_METAG_BITOPS_H

#define __ASM_METAG_BITOPS_H

#include <linux/compiler.h>
#include <asm/barrier.h>
#include <asm/global_lock.h>

#ifdef CONFIG_SMP
/*
 * These functions are the basis of our bit ops.
 */

static inline void set_bit(unsigned int bit, volatile unsigned long *p) { unsigned long flags; unsigned long mask = 1UL << (bit & 31); p += bit >> 5; __global_lock1(flags); fence(); *p |= mask; __global_unlock1(flags); }

Contributors

PersonTokensPropCommitsCommitProp
James Hogan57100.00%1100.00%
Total57100.00%1100.00%


static inline void clear_bit(unsigned int bit, volatile unsigned long *p) { unsigned long flags; unsigned long mask = 1UL << (bit & 31); p += bit >> 5; __global_lock1(flags); fence(); *p &= ~mask; __global_unlock1(flags); }

Contributors

PersonTokensPropCommitsCommitProp
James Hogan58100.00%1100.00%
Total58100.00%1100.00%


static inline void change_bit(unsigned int bit, volatile unsigned long *p) { unsigned long flags; unsigned long mask = 1UL << (bit & 31); p += bit >> 5; __global_lock1(flags); fence(); *p ^= mask; __global_unlock1(flags); }

Contributors

PersonTokensPropCommitsCommitProp
James Hogan57100.00%1100.00%
Total57100.00%1100.00%


static inline int test_and_set_bit(unsigned int bit, volatile unsigned long *p) { unsigned long flags; unsigned long old; unsigned long mask = 1UL << (bit & 31); p += bit >> 5; __global_lock1(flags); old = *p; if (!(old & mask)) { fence(); *p = old | mask; } __global_unlock1(flags); return (old & mask) != 0; }

Contributors

PersonTokensPropCommitsCommitProp
James Hogan88100.00%1100.00%
Total88100.00%1100.00%


static inline int test_and_clear_bit(unsigned int bit, volatile unsigned long *p) { unsigned long flags; unsigned long old; unsigned long mask = 1UL << (bit & 31); p += bit >> 5; __global_lock1(flags); old = *p; if (old & mask) { fence(); *p = old & ~mask; } __global_unlock1(flags); return (old & mask) != 0; }

Contributors

PersonTokensPropCommitsCommitProp
James Hogan86100.00%1100.00%
Total86100.00%1100.00%


static inline int test_and_change_bit(unsigned int bit, volatile unsigned long *p) { unsigned long flags; unsigned long old; unsigned long mask = 1UL << (bit & 31); p += bit >> 5; __global_lock1(flags); fence(); old = *p; *p = old ^ mask; __global_unlock1(flags); return (old & mask) != 0; }

Contributors

PersonTokensPropCommitsCommitProp
James Hogan77100.00%1100.00%
Total77100.00%1100.00%

#else #include <asm-generic/bitops/atomic.h> #endif /* CONFIG_SMP */ #include <asm-generic/bitops/non-atomic.h> #include <asm-generic/bitops/find.h> #include <asm-generic/bitops/ffs.h> #include <asm-generic/bitops/__ffs.h> #include <asm-generic/bitops/ffz.h> #include <asm-generic/bitops/fls.h> #include <asm-generic/bitops/__fls.h> #include <asm-generic/bitops/fls64.h> #include <asm-generic/bitops/hweight.h> #include <asm-generic/bitops/lock.h> #include <asm-generic/bitops/sched.h> #include <asm-generic/bitops/le.h> #include <asm-generic/bitops/ext2-atomic.h> #endif /* __ASM_METAG_BITOPS_H */

Overall Contributors

PersonTokensPropCommitsCommitProp
James Hogan49299.80%150.00%
Greg Kroah-Hartman10.20%150.00%
Total493100.00%2100.00%
Information contained on this website is for historical information purposes only and does not indicate or represent copyright ownership.
Created with cregit.