Donate to e Foundation | Murena handsets with /e/OS | Own a part of Murena! Learn more

Commit 6ff968cc authored by Betty Dall's avatar Betty Dall Committed by Ingo Molnar
Browse files

x86/nmi: Fix the type of the nmiaction.flags field



This patch changes the type of the struct nmiaction flags field
to unsigned long from unsigned int. All the usages of the flags
field are unsigned long already. There is only one flag used
currently, NMI_FLAG_FIRST, but having the wrong size could cause
a truncation bug in the future on 64 bit architectures.

Signed-off-by: default avatarBetty Dall <betty.dall@hp.com>
Acked-by: default avatarDon Zickus <dzickus@redhat.com>
Link: http://lkml.kernel.org/r/1335559255-13454-1-git-send-email-betty.dall@hp.com


Signed-off-by: default avatarIngo Molnar <mingo@kernel.org>
parent 72b3fb24
Loading
Loading
Loading
Loading
+1 −1
Original line number Diff line number Diff line
@@ -40,7 +40,7 @@ typedef int (*nmi_handler_t)(unsigned int, struct pt_regs *);
struct nmiaction {
	struct list_head	list;
	nmi_handler_t		handler;
	unsigned int		flags;
	unsigned long		flags;
	const char		*name;
};