mirror of
https://github.com/torvalds/linux.git
synced 2026-06-02 19:43:40 +02:00
HWPOISON: Turn addr_valid from bitfield into char
The addr_valid flag is the only flag in "to_kill" and it's slightly more efficient to have it as char instead of a bitfield. Signed-off-by: Andi Kleen <ak@linux.intel.com>
This commit is contained in:
parent
898e70d1e5
commit
9033ae1640
|
|
@ -272,7 +272,7 @@ struct to_kill {
|
|||
struct list_head nd;
|
||||
struct task_struct *tsk;
|
||||
unsigned long addr;
|
||||
unsigned addr_valid:1;
|
||||
char addr_valid;
|
||||
};
|
||||
|
||||
/*
|
||||
|
|
|
|||
Loading…
Reference in New Issue
Block a user