linux-kernel.vger.kernel.org archive mirror
 help / color / mirror / Atom feed
* xfs: compiler implementation dependent behavior?
@ 2016-04-15 19:09 Joe Perches
  0 siblings, 0 replies; only message in thread
From: Joe Perches @ 2016-04-15 19:09 UTC (permalink / raw)
  To: Dave Chinner; +Cc: xfs, LKML

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;
}

^ permalink raw reply	[flat|nested] only message in thread

only message in thread, other threads:[~2016-04-15 19:09 UTC | newest]

Thread overview: (only message) (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2016-04-15 19:09 xfs: compiler implementation dependent behavior? Joe Perches

This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox;
as well as URLs for NNTP newsgroup(s).