mboxd: Check that window size is indeed a power of 2

The window size can be specified on the command line however we restrict
this to being a power of 2 due to the internal working of the daemon.

Currently we specify that this is the case in the help message but don't
explicitly verify this when parsing the command line.

Check that if the window size parameter is provided that the value is
indeed a power of 2 and error out if this is not the case.

Signed-off-by: Suraj Jitindar Singh <sjitindarsingh@gmail.com>
Change-Id: I0cb36222d53830996380702802373d862010f503
diff --git a/common.h b/common.h
index ee537a8..14fdfe9 100644
--- a/common.h
+++ b/common.h
@@ -83,6 +83,11 @@
 	return ret;
 }
 
+static inline bool is_power_of_2(unsigned val)
+{
+	return __builtin_popcount(val) == 1;
+}
+
 char *get_dev_mtd(void);
 
 #endif /* COMMON_H */