summaryrefslogtreecommitdiff
path: root/image.h
blob: 3df996d5780ae127312bb5cf927b025ec835e1d8 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
/*
 */

#ifndef _IMAGE_H_
#define _IMAGE_H_

#include "memory.h"

extern int image_load(const char *image_path, int image_format, struct memory *mem);

/* Image file loader functions */
typedef int (*loader_func_t)(FILE *, const char *, struct memory *);
extern int srec_load(FILE *fp, const char *name, struct memory *mem);
extern int elf_load(FILE *fp, const char *name, struct memory *mem);

enum {
	FORMAT_SREC,
	FORMAT_ELF,
};

static inline char *image_format_str(int format)
{
	char *ret;

	switch (format) {
	case FORMAT_SREC:
		ret = "SREC";
		break;
	case FORMAT_ELF:
		ret = "ELF";
		break;
	default:
		ret = "<invalid format>";
	}

	return ret;
}

#endif /* _IMAGE_H_ */
f='/cgit.cgi/linux/net-next.git/patch/samples?id=69a9d09b2251aeb968e76f39f2b89774312daa3d'>patch) tree5f0f18269ce9086baa80f2842b6acb86cfd5d995 /samples parent6af2d5fff2fdcd481cb9a4f354a0880142b17c60 (diff)
samples/bpf: silence compiler warnings
silence some of the clang compiler warnings like: include/linux/fs.h:2693:9: warning: comparison of unsigned enum expression < 0 is always false arch/x86/include/asm/processor.h:491:30: warning: taking address of packed member 'sp0' of class or structure 'x86_hw_tss' may result in an unaligned pointer value include/linux/cgroup-defs.h:326:16: warning: field 'cgrp' with variable sized type 'struct cgroup' not at the end of a struct or class is a GNU extension since they add too much noise to samples/bpf/ build. Signed-off-by: Alexei Starovoitov <ast@kernel.org> Signed-off-by: David S. Miller <davem@davemloft.net>
Diffstat (limited to 'samples')
-rw-r--r--samples/bpf/Makefile2
1 files changed, 2 insertions, 0 deletions
diff --git a/samples/bpf/Makefile b/samples/bpf/Makefile