Commit 10d1a71b authored by Andrew Jones's avatar Andrew Jones Committed by Paolo Bonzini
Browse files

KVM: selftests: Remove unnecessary defines



BITS_PER_LONG and friends are provided by linux/bitops.h

Signed-off-by: default avatarAndrew Jones <drjones@redhat.com>
Signed-off-by: default avatarPaolo Bonzini <pbonzini@redhat.com>
parent f09ab268
Loading
Loading
Loading
Loading
+0 −11
Original line number Diff line number Diff line
@@ -12,17 +12,6 @@

#define KVM_DEV_PATH		"/dev/kvm"

#ifndef BITS_PER_BYTE
#define BITS_PER_BYTE		8
#endif

#ifndef BITS_PER_LONG
#define BITS_PER_LONG		(BITS_PER_BYTE * sizeof(long))
#endif

#define DIV_ROUND_UP(n, d)	(((n) + (d) - 1) / (d))
#define BITS_TO_LONGS(nr)	DIV_ROUND_UP(nr, BITS_PER_LONG)

struct userspace_mem_region {
	struct userspace_mem_region *next, *prev;
	struct kvm_userspace_memory_region region;