cregit-Linux how code gets into the kernel

Release 4.14 arch/mips/lib/bswapdi.c

Directory: arch/mips/lib
// SPDX-License-Identifier: GPL-2.0
#include <linux/export.h>
#include <linux/compiler.h>


unsigned long long notrace __bswapdi2(unsigned long long u) { return (((u) & 0xff00000000000000ull) >> 56) | (((u) & 0x00ff000000000000ull) >> 40) | (((u) & 0x0000ff0000000000ull) >> 24) | (((u) & 0x000000ff00000000ull) >> 8) | (((u) & 0x00000000ff000000ull) << 8) | (((u) & 0x0000000000ff0000ull) << 24) | (((u) & 0x000000000000ff00ull) << 40) | (((u) & 0x00000000000000ffull) << 56); }

Contributors

PersonTokensPropCommitsCommitProp
Ralf Bächle10999.09%150.00%
Harvey Hunt10.91%150.00%
Total110100.00%2100.00%

EXPORT_SYMBOL(__bswapdi2);

Overall Contributors

PersonTokensPropCommitsCommitProp
Ralf Bächle11695.08%125.00%
Paul Gortmaker43.28%125.00%
Greg Kroah-Hartman10.82%125.00%
Harvey Hunt10.82%125.00%
Total122100.00%4100.00%
Directory: arch/mips/lib
Information contained on this website is for historical information purposes only and does not indicate or represent copyright ownership.
Created with cregit.