Re: [PATCH 2/6] uprobes: introduce is_swbp_at_addr_fast()

From: Peter Zijlstra
Date: Mon Apr 16 2012 - 06:09:26 EST


On Fri, 2012-04-06 at 00:21 +0200, Oleg Nesterov wrote:
> +int __weak is_swbp_at_addr_fast(unsigned long vaddr)
> +{
> + uprobe_opcode_t opcode;
> + int fault;
> +
> + pagefault_disable();
> + fault = __copy_from_user_inatomic(&opcode, (void __user*)vaddr,
> + sizeof(opcode));
> + pagefault_enable();
> +
> + if (unlikely(fault)) {
> + /*
> + * XXX: read_opcode() lacks FOLL_FORCE, it can fail if
> + * we race with another thread which does mprotect(NONE)
> + * after we hit bp.
> + */
> + if (read_opcode(current->mm, vaddr, &opcode))
> + return -EFAULT;
> + }
> +
> + return is_swbp_insn(&opcode);
> +}

Why bother with the pagefault_disable() and unlikely fault case and not
simply do copy_from_user() and have it deal with the fault if its needed
anyway?
--
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/