[Kimchi-devel] [PATCH V2] Sort device paths shown when creating a logical storage pool

Aline Manera alinefm at linux.vnet.ibm.com
Wed Mar 26 15:37:28 UTC 2014


We usually do that on backend because of the better performance.

On 03/26/2014 11:10 AM, Rodrigo Trujillo wrote:
> This patch sorts the output list of devices by their paths, improving the
> user experience.
>
> Signed-off-by: Rodrigo Trujillo <rodrigo.trujillo at linux.vnet.ibm.com>
> ---
>   ui/js/src/kimchi.storagepool_add_main.js | 1 +
>   1 file changed, 1 insertion(+)
>
> diff --git a/ui/js/src/kimchi.storagepool_add_main.js b/ui/js/src/kimchi.storagepool_add_main.js
> index f347747..7a751aa 100644
> --- a/ui/js/src/kimchi.storagepool_add_main.js
> +++ b/ui/js/src/kimchi.storagepool_add_main.js
> @@ -26,6 +26,7 @@ kimchi.initStorageAddPage = function() {
>       kimchi.listHostPartitions(function(data) {
>           if (data.length > 0) {
>               var deviceHtml = $('#partitionTmpl').html();
> +            data.sort(function (a, b){return a.path.localeCompare(b.path)});
>               var listHtml = '';
>               $.each(data, function(index, value) {
>                   if (value.type === 'part' || value.type === 'disk') {




More information about the Kimchi-devel mailing list