1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
/* SPDX-License-Identifier: GPL-2.0 */
#ifndef _LINUX_TEXT_PATCHING_H
#define _LINUX_TEXT_PATCHING_H

#include <asm/text-patching.h>

#ifndef text_poke_copy
static inline void *text_poke_copy(void *dst, const void *src, size_t len)
{
	return memcpy(dst, src, len);
}
#define text_poke_copy text_poke_copy
#endif

#endif /* _LINUX_TEXT_PATCHING_H */
当你的天空 突然 下起了大雨 那是我 在为你 炸乌云