search for: 76ab43b

Displaying 5 results from an estimated 5 matches for "76ab43b".

2019 Jan 21
0
[PATCH nbdkit v2 2/4] partition filter: Support MBR logical partitions.
...PRIu64 " <= current EBR %" PRIu64, + next_ebr, ebr); + return -1; + } + ebr = next_ebr; + } + nbdkit_error ("MBR partition %d not found", partnum); return -1; } diff --git a/tests/test-partitioning1.sh b/tests/test-partitioning1.sh index 76ab43b..8aa45b9 100755 --- a/tests/test-partitioning1.sh +++ b/tests/test-partitioning1.sh @@ -77,7 +77,27 @@ nbdkit -f -v -D partitioning.regions=1 -U - \ # Contents of partitioning1.out should be identical to file-data. cmp file-data partitioning1.out -# Same test with GPT and more partitions. +# Sa...
2019 Jan 22
2
Re: [PATCH nbdkit v2 2/4] partition filter: Support MBR logical partitions.
...nd", partnum); ...and eventually gives the misleading message that the partition was not found (when it was found, but was not usable because it is extended rather than primary). > return -1; > } > diff --git a/tests/test-partitioning1.sh b/tests/test-partitioning1.sh > index 76ab43b..8aa45b9 100755 > --- a/tests/test-partitioning1.sh > +++ b/tests/test-partitioning1.sh > @@ -77,7 +77,27 @@ nbdkit -f -v -D partitioning.regions=1 -U - \ > # Contents of partitioning1.out should be identical to file-data. > cmp file-data partitioning1.out > > -# Same test...
2019 Jan 21
8
[PATCH nbdkit v2 0/4] Support MBR logical partitions.
This is a revised version of the two series previously posted here: https://www.redhat.com/archives/libguestfs/2019-January/msg00137.html https://www.redhat.com/archives/libguestfs/2019-January/msg00139.html There have been many smaller changes but the highlights are: - Using SECTOR_SIZE instead of hard-coding 512 everywhere. - Additional safety checks that the EBR chain doesn't jump
2019 Jan 22
7
[PATCH nbdkit v3 0/5] partition filter: Support MBR logical partitions.
I think this addresses everything in Eric's v2 review. Note that the first patch is best viewed using ‘-w’ to ignore whitespaces changes. Rich.
2019 Jan 20
5
[PATCH nbdkit 0/4] partition: Support MBR logical partitions.
This implements support for MBR logical partitions in nbdkit-partition-filter, complementing existing support in the partitioning plugin. Rich.