cregit-Linux how code gets into the kernel

Release 4.10 fs/ceph/ceph_frag.c

Directory: fs/ceph
/*
 * 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 weilsage weil82100.00%1100.00%
Total82100.00%1100.00%


Overall Contributors

PersonTokensPropCommitsCommitProp
sage weilsage weil8595.51%150.00%
yehuda sadehyehuda sadeh44.49%150.00%
Total89100.00%2100.00%
Directory: fs/ceph
Information contained on this website is for historical information purposes only and does not indicate or represent copyright ownership.