Displaying 1 result from an estimated 1 matches for "journalsize_".
Did you mean:
  journalsize
  
2012 Aug 31
1
[PATCH V1] NEW API:ext:mke2fs
...int sparsesuper, int uninitbg,
+           int64_t blockscount)
+{
+  int r;
+  char *err = NULL;
+  const char *argv[MAX_ARGS];
+  char blocksize_s[64];
+  char fragsize_s[64];
+  char blockspergroup_s[64];
+  char numberofgroups_s[64];
+  char bytesperinode_s[64];
+  char inodesize_s[64];
+  char journalsize_s[64];
+  char journaldevice_s[256];
+  char reservedblockspercentage_s[64];
+  char numberofinodes_s[64];
+  char mmpupdateinterval_s[84];
+  char stridesize_s[74];
+  char stripewidth_s[84];
+  char maxonlineresize_s[74];
+  char blockscount_s[64];
+  size_t i = 0;
+  int feature = 0;
+  char feat...