xfs: compiler implementation dependent behavior?

Joe Perches joe at perches.com
Fri Apr 15 14:09:00 CDT 2016


The value stored in *cycle in xlog_crack_grant_head_val
in xfs_log_priv.h is compiler implementation dependent.

Does it matter?

static inline void
xlog_crack_grant_head_val(int64_t val, int *cycle, int *space)
{
	*cycle = val >> 32;
	*space = val & 0xffffffff;
}




More information about the xfs mailing list