Re: [PATCH 3/5] trace-cmd: Add ULL suffix to MISSING_EVENTS since ints shouldn't be left shifted by 31

From: Steven Rostedt
Date: Mon Oct 09 2017 - 18:27:59 EST


On Sat, 12 Aug 2017 11:30:45 -0600
Michael Sartain <mikesart@xxxxxxxxxxxx> wrote:


> Signed-off-by: Michael Sartain <mikesart@xxxxxxxxxxxx>
> ---
> kbuffer-parse.c | 4 ++--
> 1 file changed, 2 insertions(+), 2 deletions(-)
>
> diff --git a/kbuffer-parse.c b/kbuffer-parse.c
> index 4e6e95e..dde642c 100644
> --- a/kbuffer-parse.c
> +++ b/kbuffer-parse.c
> @@ -24,8 +24,8 @@
>
> #include "kbuffer.h"
>
> -#define MISSING_EVENTS (1 << 31)

Actually, why not? This could also be just UL, because it's fine to
shift 31, that would give us: 0x80000000 And that bit is all we care
for.

-- Steve

> -#define MISSING_STORED (1 << 30)
> +#define MISSING_EVENTS (1ULL << 31)
> +#define MISSING_STORED (1ULL << 30)
>
> #define COMMIT_MASK ((1 << 27) - 1)
>