cregit-Linux how code gets into the kernel

Release 4.18 fs/ceph/ceph_frag.c

Directory: fs/ceph
// SPDX-License-Identifier: GPL-2.0
/*
 * Ceph 'frag' type
 */
#include <linux/module.h>
#include <linux/ceph/types.h>


int ceph_frag_compare(__u32 a, __u32 b) { unsigned va = ceph_frag_value(a); unsigned vb = ceph_frag_value(b); if (va < vb) return -1; if (va > vb) return 1; va = ceph_frag_bits(a); vb = ceph_frag_bits(b); if (va < vb) return -1; if (va > vb) return 1; return 0; }

Contributors

PersonTokensPropCommitsCommitProp
Sage Weil82100.00%1100.00%
Total82100.00%1100.00%


Overall Contributors

PersonTokensPropCommitsCommitProp
Sage Weil8594.44%133.33%
Yehuda Sadeh Weinraub44.44%133.33%
Greg Kroah-Hartman11.11%133.33%
Total90100.00%3100.00%
Directory: fs/ceph
Information contained on this website is for historical information purposes only and does not indicate or represent copyright ownership.
Created with cregit.