Displaying 3 results from an estimated 3 matches for "missing_devices".
2013 Oct 25
8
[PATCH] btrfs: add framework to read fs info from btrfs-control
...+	struct btrfs_fs_devices *fs_devices;
+
+	ucnt = fslist_arg->count;
+
+	list_for_each_entry(fs_devices, &fs_uuids, list) {
+		if (cnt < ucnt) {
+			memcpy(fslist->fsid, fs_devices->fsid,
+					BTRFS_FSID_SIZE);
+			fslist->num_devices = fs_devices->num_devices;
+			fslist->missing_devices = fs_devices->missing_devices;
+			fslist->total_devices = fs_devices->total_devices;
+
+			if (fs_devices->opened)
+				fslist->flags = BTRFS_FS_MOUNTED;
+
+			fslist = (struct btrfs_ioctl_fslist *) fslist +
+							sizeof(*fslist);
+		}
+		cnt++;
+	}
+	fslist_arg->count = cnt;
+...
2005 Oct 19
3
device problem
Does anyone know the problem with missing device nodes (like /dev/hda1) in domU?
Must the device nodes used in domU exist in the dom0?
What i have to do, when some device nodes are missing in domU?
Stephan
_______________________________________________
Xen-users mailing list
Xen-users@lists.xensource.com
http://lists.xensource.com/xen-users
2011 Aug 23
40
[PATCH 00/21] [RFC] Btrfs: restriper
Hello,
This patch series adds an initial implementation of restriper (it''s a
clever name for relocation framework that allows to do selective profile
changing and selective balancing with some goodies like pausing/resuming
and reporting progress to the user.
 
Profile changing is global (per-FS) so far, per-subvolume profiles
require some discussion and can be implemented in future.