Re: [PATCH 01/16] GFS2: Core header files
- From: Jan Engelhardt <jengelh@xxxxxxxxxxxxxxx>
- Date: Thu, 31 Aug 2006 16:16:46 +0200 (MEST)
+ *
+ * This copyrighted material is made available to anyone wishing to use,
+ * modify, copy, or redistribute it subject to the terms and conditions
+ * of the GNU General Public License v.2.
+ */
"v2" perhaps? From a math pov, the extra dot implies v0.2.
+struct gfs2_log_operations;
I would suggest listing only struct lines that are actually required, i.e. the
compiler would barf without them.
+enum {
+ /* Actions */
+ HIF_MUTEX = 0,
+ HIF_PROMOTE = 1,
+ HIF_DEMOTE = 2,
+ HIF_GREEDY = 3,
I leave it to you whether going with the above or
enum {
HIF_MUTEX = 0,
HIF_PROMOTE,
HIF_DEMOTE,
HIF_GREEDY,
...
};
If these values need to stay the same, for example to maintain on-disk
compatibility, I prefer the former, though.
+ /* Quota stuff */
+
+ struct gfs2_quota_data *al_qd[4];
What four quotas can there be? Use the MAXQUOTAS macro if feasible.
+struct gfs2_quota_lvb {
+ uint32_t qb_magic;
+ uint32_t __pad;
+ uint64_t qb_limit; /* Hard limit of # blocks to alloc */
+ uint64_t qb_warn; /* Warn user when alloc is above this # */
+ int64_t qb_value; /* Current # blocks allocated */
+};
Is this an on-disk structure or why is there a __pad field?
Jan Engelhardt
--
-
To unsubscribe from this list: send the line "unsubscribe linux-kernel" in
the body of a message to majordomo@xxxxxxxxxxxxxxx
More majordomo info at http://vger.kernel.org/majordomo-info.html
Please read the FAQ at http://www.tux.org/lkml/
- Follow-Ups:
- Re: [PATCH 01/16] GFS2: Core header files
- From: Steven Whitehouse
- Re: [PATCH 01/16] GFS2: Core header files
- References:
- [PATCH 01/16] GFS2: Core header files
- From: Steven Whitehouse
- [PATCH 01/16] GFS2: Core header files
- Prev by Date: Re: [Kgdb-bugreport] [RFC] [Crash-utility] Patch to use gdb's bt in crash - works great with kgdb! - KGDB in Linus Kernel.
- Next by Date: Re: [RFC][PATCH 8/8] SLIM: documentation
- Previous by thread: [PATCH 01/16] GFS2: Core header files
- Next by thread: Re: [PATCH 01/16] GFS2: Core header files
- Index(es):
Relevant Pages
|
|