Re: [PATCH 03/16] uuid: rename uuid types

From: David Howells
Date: Wed May 10 2017 - 14:20:47 EST


Christoph Hellwig <hch@xxxxxx> wrote:

> -#define NULL_UUID_LE \
> - UUID_LE(0x00000000, 0x0000, 0x0000, 0x00, 0x00, 0x00, 0x00, \
> - 0x00, 0x00, 0x00, 0x00)
> +#define NULL_GUID \
> + GUID(0x00000000, 0x0000, 0x0000, 0x00, 0x00, 0x00, 0x00, \
> + 0x00, 0x00, 0x00, 0x00)
>
> -#define NULL_UUID_BE \
> - UUID_BE(0x00000000, 0x0000, 0x0000, 0x00, 0x00, 0x00, 0x00, \
> - 0x00, 0x00, 0x00, 0x00)
> +#define NULL_UUID \
> + UUID(0x00000000, 0x0000, 0x0000, 0x00, 0x00, 0x00, 0x00, \
> + 0x00, 0x00, 0x00, 0x00)

These are UAPI and ought not to be renamed.

David