> +/* > + * If it is a kprobe pagefault we can not be premptible so return before
Missing 'e' in preemptible. However, the old code you removed had a lot of preempt_disable/enable calls that you removed. Hope you checked that preemption was always disabled already and the calls were not necessary (true at least for s390). Are there cases where this code could be called with preemption enabled? If so then that looks like a bug anyway. I'd say the preemptible check should be removed or turned into a WARN_ON. > + * calling kprobe_running() as it will assert on smp_processor_id if > + * preemption is enabled. > + */ > +static inline int kprobe_handle_fault(struct pt_regs *regs, int trapnr) > +{ > + if (!user_mode(regs) && !preemptible() && kprobe_running() && > + kprobe_fault_handler(regs, trapnr)) > + return 1; > + else > + return 0; I like this better (not including any other changes): if (!user_mode(regs) && !preemptible() && kprobe_running()) return kprobe_fault_handler(regs, trapnr); return 0; -- To unsubscribe from this list: send the line "unsubscribe linux-kernel" in the body of a message to [EMAIL PROTECTED] More majordomo info at http://vger.kernel.org/majordomo-info.html Please read the FAQ at http://www.tux.org/lkml/