search for: btrfsfilesystemsshow

Displaying 6 results from an estimated 6 matches for "btrfsfilesystemsshow".

2016 May 12
1
[PATCH] New API: btrfs-filesystem-show (RHBZ#1164765)
...ownload deleted or inaccessible files." }; + { defaults with + name = "btrfs_filesystem_show"; added = (1, 33, 29); + style = RStringList "devices", [Device "device"], []; + proc_nr = Some 465; + optional = Some "btrfs"; camel_name = "BTRFSFilesystemsShow"; + tests = [ + InitScratchFS, Always, TestLastFail ( + [["btrfs_filesystem_show"; "/dev/sdb"]]), []; + InitPartition, Always, TestResult ( + [["mkfs_btrfs"; "/dev/sda1"; ""; ""; "NOARG"; "&qu...
2017 May 04
4
[PATCH 0/3] generator: Allow returned strings to be annotated as devices.
If we want to permit more than 255 drives to be added, then we will have to add the disks to the same virtio-scsi target using different unit (LUN) numbers. Unfortunately SCSI LUN enumeration in the Linux is not deterministic (eg. two disks with target=0, lun=[0,1] can be enumerated as /dev/sda or /dev/sdb randomly). Dealing with that will require some very complex device name translation on the
2017 Feb 21
1
[PATCH] generator: Put all the daemon procedure numbers (proc_nr)
This is a follow-up to the other generator changes in: https://www.redhat.com/archives/libguestfs/2017-February/msg00217.html Rich.
2017 Apr 21
0
[PATCH 1/2] generator: Simplify the handling of string parameters.
...with name = "btrfs_filesystem_show"; added = (1, 33, 29); - style = RStringList "devices", [Device "device"], []; + style = RStringList "devices", [String (Device, "device")], []; optional = Some "btrfs"; camel_name = "BTRFSFilesystemsShow"; tests = [ InitScratchFS, Always, TestLastFail ( @@ -9563,7 +9563,7 @@ fails and the C<errno> is set to C<ENODEV>." }; { defaults with name = "selinux_relabel"; added = (1, 33, 43); - style = RErr, [String "specfile"; Pathname &quo...
2017 Apr 21
4
[PATCH 0/2] generator: Simplify the handling of string parameters.
Very large but mechanical change to the generator. Rich.
2017 Feb 18
8
[PATCH 0/6] generator: Split up generator/actions.ml
Split up the huge generator/actions.ml into several smaller files. Rich.