Re: [PATCH 4/5] signal(ia64): add a signal stack overflow check

From: Matthew Wilcox
Date: Mon Feb 18 2008 - 07:31:09 EST


On Mon, Feb 18, 2008 at 06:26:23PM +0800, Shi Weihua wrote:
> + if (!rbs_on_sig_stack(scr->pt.ar_bspstore))
> + new_rbs = (current->sas_ss_sp +
> + sizeof(long) - 1) & ~(sizeof(long) - 1);

I know you're only moving this code, but how about fixing it to use
ALIGN at the same time?

+ if (!rbs_on_sig_stack(scr->pt.ar_bspstore))
+ new_rbs = ALIGN(current->sas_ss_sp,
+ sizeof(long));

--
Intel are signing my paycheques ... these opinions are still mine
"Bill, look, we understand that you're interested in selling us this
operating system, but compare it to ours. We can't possibly take such
a retrograde step."
--
To unsubscribe from this list: send the line "unsubscribe linux-kernel" in
the body of a message to majordomo@xxxxxxxxxxxxxxx
More majordomo info at http://vger.kernel.org/majordomo-info.html
Please read the FAQ at http://www.tux.org/lkml/