diff options
author | Arnaldo Carvalho de Melo <acme@redhat.com> | 2017-04-25 20:45:35 +0200 |
---|---|---|
committer | Arnaldo Carvalho de Melo <acme@redhat.com> | 2017-04-25 20:45:35 +0200 |
commit | 98521b3869f8d6b4b9d2fdad8a56059e819ae002 (patch) | |
tree | 147c2ba21dcf8ca49cb87e106e8e1dbe9e4ef411 /tools/perf/util/memswap.c | |
parent | perf tools: Move event prototypes from util.h to event.h (diff) | |
download | linux-98521b3869f8d6b4b9d2fdad8a56059e819ae002.tar.xz linux-98521b3869f8d6b4b9d2fdad8a56059e819ae002.zip |
perf memswap: Split the byteswap memory range wrappers from util.[ch]
Just one more step into splitting util.[ch] to reduce the includes hell.
Cc: Adrian Hunter <adrian.hunter@intel.com>
Cc: David Ahern <dsahern@gmail.com>
Cc: Jiri Olsa <jolsa@kernel.org>
Cc: Namhyung Kim <namhyung@kernel.org>
Cc: Wang Nan <wangnan0@huawei.com>
Link: http://lkml.kernel.org/n/tip-navarr9mijkgwgbzu464dwam@git.kernel.org
Signed-off-by: Arnaldo Carvalho de Melo <acme@redhat.com>
Diffstat (limited to 'tools/perf/util/memswap.c')
-rw-r--r-- | tools/perf/util/memswap.c | 24 |
1 files changed, 24 insertions, 0 deletions
diff --git a/tools/perf/util/memswap.c b/tools/perf/util/memswap.c new file mode 100644 index 000000000000..55f7faa8d9ec --- /dev/null +++ b/tools/perf/util/memswap.c @@ -0,0 +1,24 @@ +#include <byteswap.h> +#include "memswap.h" +#include <linux/types.h> + +void mem_bswap_32(void *src, int byte_size) +{ + u32 *m = src; + while (byte_size > 0) { + *m = bswap_32(*m); + byte_size -= sizeof(u32); + ++m; + } +} + +void mem_bswap_64(void *src, int byte_size) +{ + u64 *m = src; + + while (byte_size > 0) { + *m = bswap_64(*m); + byte_size -= sizeof(u64); + ++m; + } +} |