Search notes:

arch/x86/boot/version.c

arch/x86/boot/version.c contains the kernel version string:
const char kernel_version[] =
        UTS_RELEASE " (" LINUX_COMPILE_BY "@" LINUX_COMPILE_HOST ") "
        UTS_VERSION;
UTS_VERSION is defined in include/generated/utsversion.h.

Index