Right now to disable -fsanitize=kernel-address instrumentation, one needs to use no_sanitize("kernel-address"). Make either no_sanitize("address") or no_sanitize("kernel-address") disable both ASan and KASan instrumentation. Also remove redundant test.
Patch by Andrey Konovalov
I think this should work the other way round as well, i.e. `attribute((no_sanitize("kernel-address"))) should also disable ASan.
I hope nobody is gonna use that, but it's easier to treat the attributes as synonyms than to guess which of them implies the other one.
What do others think?