https://bugs.freedesktop.org/show_bug.cgi?id=78092
--- Comment #16 from Ilia Mirkin <[email protected]> --- BTW, this isn't the immediate problem, but in your patch you have, if (!dhandle) printk("DEBUG: !dhandle\n"); return false; Which is unlikely to do what you expect. Unlike Python, C uses braces to define blocks, so that probably should have been if (!dhandle) { printk("DEBUG: !dhandle\n"); return false; } But if the first print isn't getting triggered, it doesn't even get far enough for this to be a problem. -- You are receiving this mail because: You are the assignee for the bug.
_______________________________________________ Nouveau mailing list [email protected] http://lists.freedesktop.org/mailman/listinfo/nouveau
