reorder struct fields to avoid holes, improving packing
diff --git a/libkmod/libkmod-module.c b/libkmod/libkmod-module.c
index 969d304..ac815b2 100644
--- a/libkmod/libkmod-module.c
+++ b/libkmod/libkmod-module.c
@@ -42,11 +42,10 @@
  */
 struct kmod_module {
 	struct kmod_ctx *ctx;
-	int refcount;
 	const char *path;
 	const char *name;
 	struct kmod_list *dep;
-
+	int refcount;
 	struct {
 		bool dep : 1;
 	} init;