On Wed, May 22, 2013 at 12:47:09PM +0300, Michael S. Tsirkin wrote: > > > > +static inline bool __can_fault(void) > > +{ > > + /* > > + * Some code (nfs/sunrpc) uses socket ops on kernel memory while > > + * holding the mmap_sem, this is safe because kernel memory doesn't > > + * get paged out, therefore we'll never actually fault, and the > > + * below annotations will generate false positives. > > + */ > > + if (segment_eq(get_fs(), KERNEL_DS)) > > + return false; > > + > > + if (in_atomic() /* || pagefault_disabled() */) > > One question here: I'm guessing you put this comment here > for illustrative purposes, implying code that will > be enabled in -rt? > We don't want it upstream I think, right? Right, and as a reminder that when we do this we need to add a patch to -rt. But yeah, we should have a look and see if its worth pulling those patches from -rt into mainline in some way shape or form. They're big but trivial IIRC. I'm fine with you leaving that comment out though.. -- To unsubscribe, send a message with 'unsubscribe linux-mm' in the body to majordomo@xxxxxxxxx. For more info on Linux MM, see: http://www.linux-mm.org/ . Don't email: <a href=mailto:"dont@xxxxxxxxx"> email@xxxxxxxxx </a>