On Mon, Mar 5, 2018 at 3:39 PM, Mark Rutland <mark.rutland@xxxxxxx> wrote: > On Fri, Mar 02, 2018 at 08:44:27PM +0100, Andrey Konovalov wrote: >> ret = __do_krealloc(p, new_size, flags); >> - if (ret && p != ret) >> + if (ret && khwasan_reset_tag((void *)p) != khwasan_reset_tag(ret)) > > Why doesn't khwasan_reset_tag() take a const void *, like > khwasan_set_tag() does? That way, this cast wouldn't be necessary. Will do, thanks! -- 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>