cregit-Linux how code gets into the kernel

Release 4.8 arch/mips/lib/bswapdi.c

Directory: arch/mips/lib
#include <linux/module.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 baechleralf baechle10999.09%150.00%
harvey huntharvey hunt10.91%150.00%
Total110100.00%2100.00%

EXPORT_SYMBOL(__bswapdi2);

Overall Contributors

PersonTokensPropCommitsCommitProp
ralf baechleralf baechle11799.15%150.00%
harvey huntharvey hunt10.85%150.00%
Total118100.00%2100.00%
Directory: arch/mips/lib
Information contained on this website is for historical information purposes only and does not indicate or represent copyright ownership.