Gentoo Websites Logo
Go to: Gentoo Home Documentation Forums Lists Bugs Planet Store Wiki Get Gentoo!
View | Details | Raw Unified | Return to bug 97048
Collapse All | Expand All

(-)1.739/include/reiser4/plugin.h (-9 / +12 lines)
Lines 285-304 enum reiser4_opset_id { Link Here
285
	OPSET_DIRITEM		= 0x7,
285
	OPSET_DIRITEM		= 0x7,
286
	OPSET_CRYPTO		= 0x8,
286
	OPSET_CRYPTO		= 0x8,
287
	OPSET_DIGEST		= 0x9,
287
	OPSET_DIGEST		= 0x9,
288
	OPSET_COMPRES		= 0xa,
288
	OPSET_CPRESS		= 0xa,
289
	OPSET_CPRESS_MODE	= 0xb,
290
	OPSET_CLUSTER		= 0xc,
291
	OPSET_REGULAR		= 0xd,
289
	
292
	
290
	OPSET_STORE_LAST        = (OPSET_COMPRES + 1),
293
	OPSET_STORE_LAST,
291
	
294
	
292
	/* These are not stored on disk in the current implementation. */
295
	/* These are not stored on disk in the current implementation. */
293
	OPSET_CREATE		= 0xb,
296
	OPSET_CREATE		= OPSET_STORE_LAST + 1,
294
	OPSET_MKDIR		= 0xc,
297
	OPSET_MKDIR		= OPSET_STORE_LAST + 2,
295
	OPSET_SYMLINK		= 0xd,
298
	OPSET_SYMLINK		= OPSET_STORE_LAST + 3,
296
	OPSET_MKNODE		= 0xe,
299
	OPSET_MKNODE		= OPSET_STORE_LAST + 4,
297
	
300
	
298
#ifndef ENABLE_MINIMAL
301
#ifndef ENABLE_MINIMAL
299
	OPSET_TAIL		= 0xf,
302
	OPSET_TAIL		= OPSET_STORE_LAST + 5,
300
	OPSET_EXTENT		= 0x10,
303
	OPSET_EXTENT		= OPSET_STORE_LAST + 6,
301
	OPSET_ACL		= 0x11,
304
	OPSET_ACL		= OPSET_STORE_LAST + 7,
302
#endif
305
#endif
303
	OPSET_LAST
306
	OPSET_LAST
304
};
307
};
(-)1.19/libreiser4/pset.c (-2 / +26 lines)
Lines 111-117 opset_member_t opset_prof[OPSET_LAST] = Link Here
111
		.ess = 1,
111
		.ess = 1,
112
#endif
112
#endif
113
	},
113
	},
114
	[OPSET_COMPRES] = {
114
	[OPSET_CPRESS] = {
115
		.type = INVAL_TYPE,
115
		.type = INVAL_TYPE,
116
#ifndef ENABLE_MINIMAL
116
#ifndef ENABLE_MINIMAL
117
		.group = INVAL_PID,
117
		.group = INVAL_PID,
Lines 119-125 opset_member_t opset_prof[OPSET_LAST] = Link Here
119
		.ess = 1,
119
		.ess = 1,
120
#endif
120
#endif
121
	},
121
	},
122
	
122
	[OPSET_CPRESS_MODE] = {
123
		.type = INVAL_TYPE,
124
#ifndef ENABLE_MINIMAL
125
		.group = INVAL_PID,
126
		.prof = INVAL_PID,
127
		.ess = 1,
128
#endif
129
	},
130
	[OPSET_CLUSTER] = {
131
		.type = INVAL_TYPE,
132
#ifndef ENABLE_MINIMAL
133
		.group = INVAL_PID,
134
		.prof = INVAL_PID,
135
		.ess = 1,
136
#endif
137
	},
138
	[OPSET_REGULAR] = {
139
		.type = INVAL_TYPE,
140
#ifndef ENABLE_MINIMAL
141
		.group = INVAL_PID,
142
		.prof = INVAL_PID,
143
		.ess = 1,
144
#endif
145
	},
146
123
	/* Note, plugins below are not stored on-disk. */
147
	/* Note, plugins below are not stored on-disk. */
124
148
125
	/* The 4 plugins below needs to be splited -- for now they are used for
149
	/* The 4 plugins below needs to be splited -- for now they are used for
(-)1.10/plugin/sdext/sdext_plug/sdext_plug_repair.c (-1 / +4 lines)
Lines 22-28 char *opset_name[OPSET_STORE_LAST] = { Link Here
22
	[OPSET_DIRITEM] = "diritem",
22
	[OPSET_DIRITEM] = "diritem",
23
	[OPSET_CRYPTO] =  "crypto",
23
	[OPSET_CRYPTO] =  "crypto",
24
	[OPSET_DIGEST] =  "digest",
24
	[OPSET_DIGEST] =  "digest",
25
	[OPSET_COMPRES] = "compress"
25
	[OPSET_CPRESS] =  "compress",
26
	[OPSET_CPRESS_MODE] = "compress mode",
27
	[OPSET_CLUSTER] = "cluster",
28
	[OPSET_REGULAR] =  "regular"
26
};
29
};
27
30
28
errno_t sdext_plug_check_struct(stat_entity_t *stat, repair_hint_t *hint) {
31
errno_t sdext_plug_check_struct(stat_entity_t *stat, repair_hint_t *hint) {

Return to bug 97048