-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
move patch specifc desc to patch directory readmes
- Loading branch information
1 parent
b889ca1
commit 7bdc09f
Showing
4 changed files
with
44 additions
and
16 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,16 @@ | ||
|
||
## systemd-cgroup_patch | ||
|
||
Backport of a [Nova bugfix](https://review.openstack.org/#/c/432344/) for a [bug](https://bugs.launchpad.net/nova/+bug/1530860) that caused mounts to be removed when the Nova service was stopped or restarted. | ||
|
||
__Important__: Installations that applied the previous [Nova Mitaka external mount patch](https://github.com/quobyte/nova_mitaka_external-mount_patch) for this issue have to remove this previous patch before applying the systemd-cgroup_patch! | ||
Removal can easily be done via: | ||
|
||
patch -p1 -R < /path/to/patchfile | ||
|
||
### Usage | ||
|
||
These patches can be applied by navigating to the project to be patched root directory and running: | ||
|
||
patch -p1 < /path/to/patchfile | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,11 @@ | ||
|
||
## truncate-ephemeral_patch | ||
|
||
This patch changes Nova ephemeral image prealloc behaviour by running truncate instead of fallocate. This improves performance with ephemeral images on Quobyte volumes. | ||
This change may have a possible performance impact on other backends. | ||
|
||
### Usage | ||
|
||
This patch can be applied by navigating to the Nova project root directory and running: | ||
|
||
patch -p0 < /path/to/patchfile |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,13 @@ | ||
|
||
## xattr-removal_patch | ||
|
||
Backports of performance optimizations that remove the usage of xattr from the Nova driver and mount Quobyte volumes without xattr support, in order to improve iops. This patch comes in two flavors: | ||
|
||
* xattr-removal_mitaka-nova_plain-diff.patch: patches xattr out of the vanilla release code | ||
* xattr-removal_mitaka-nova_upon-systemd-run-patch.patch: patches xattr out of code that has previously been patched with the systemd-cgroup patch from this repository | ||
|
||
### Usage | ||
|
||
These patches can be applied by navigating to the project to be patched root directory and running: | ||
|
||
patch -p1 < /path/to/patchfile |