Displaying 2 results from an estimated 2 matches for "meta_flag".
2000 Jul 11
1
Help: R seg faults
...Type "q()" to quit R.
Program received signal SIGSEGV, Segmentation fault.
0x400da7bc in _IO_fflush (fp=0x819ecd8) at iofflush.c:41
41 result = _IO_SYNC (fp) ? EOF : 0;
(gdb) bt
#0 0x400da7bc in _IO_fflush (fp=0x819ecd8) at iofflush.c:41
#1 0x8122165 in rl_prep_terminal (meta_flag=0) at rltty.c:555
#2 0x811cb08 in _rl_callback_newline () at callback.c:76
#3 0x811cb4a in rl_callback_handler_install (prompt=0x4093c210 "> ", linefunc=0x80e8798 <readline_handler>) at callback.c:95
#4 0x80e89b5 in Rstd_ReadConsole (prompt=0x4093c210 "> ", buf=0x...
2011 Nov 01
0
[PATCH] Btrfs-progs: change the way mkfs picks raid profiles
...ot;, metadata_profile,
+ num_devices);
+ exit(1);
+ }
+ if (data_profile & ~allowed) {
+ fprintf(stderr, "unable to create FS with data "
+ "profile %llu (%llu devices)\n", data_profile,
+ num_devices);
+ exit(1);
+ }
+
if (allowed & metadata_profile) {
u64 meta_flags = BTRFS_BLOCK_GROUP_METADATA;
@@ -325,15 +352,16 @@ static u64 parse_profile(char *s)
if (strcmp(s, "raid0") == 0) {
return BTRFS_BLOCK_GROUP_RAID0;
} else if (strcmp(s, "raid1") == 0) {
- return BTRFS_BLOCK_GROUP_RAID1 | BTRFS_BLOCK_GROUP_DUP;
+ return BTRFS_BLOCK_G...