On Fri, Nov 14, 2014 at 09:15:11PM +0000, Matt Fleming wrote:
> +enum rmid_recycle_state {
> +     RMID_YOUNG = 0,
> +     RMID_AVAILABLE,
> +     RMID_DIRTY,
> +};
> +
>  struct cqm_rmid_entry {
> -     u64 rmid;
> +     unsigned int rmid;
>       struct list_head list;
> +     unsigned long queue_time;
> +     enum rmid_recycle_state state;
>  };

You probably want that enum after rmid to better pack the structure.
--
To unsubscribe from this list: send the line "unsubscribe linux-kernel" in
the body of a message to majord...@vger.kernel.org
More majordomo info at  http://vger.kernel.org/majordomo-info.html
Please read the FAQ at  http://www.tux.org/lkml/

Reply via email to