Commit 02a2a457 authored by David Mosberger's avatar David Mosberger

ia64: Fix unwinder bug which caused it to allocate more memory than strictly

	necessary.
parent 387178be
......@@ -78,7 +78,7 @@
# define STAT(x...)
#endif
#define alloc_reg_state() kmalloc(sizeof(struct unw_state_record), GFP_ATOMIC)
#define alloc_reg_state() kmalloc(sizeof(struct unw_reg_state), GFP_ATOMIC)
#define free_reg_state(usr) kfree(usr)
#define alloc_labeled_state() kmalloc(sizeof(struct unw_labeled_state), GFP_ATOMIC)
#define free_labeled_state(usr) kfree(usr)
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment