1
0
mirror of git://sourceware.org/git/lvm2.git synced 2024-12-21 13:34:40 +03:00

cleanup: use matching signed number comparation

This commit is contained in:
Zdenek Kabelac 2017-02-12 18:18:54 +01:00
parent 7cbee8f31a
commit a3579aafc5
6 changed files with 8 additions and 8 deletions

View File

@ -6383,7 +6383,7 @@ int vg_strip_outdated_historical_lvs(struct volume_group *vg) {
* Removal time in the future? Not likely, * Removal time in the future? Not likely,
* but skip this item in any case. * but skip this item in any case.
*/ */
if ((current_time) < glvl->glv->historical->timestamp_removed) if (current_time < (time_t) glvl->glv->historical->timestamp_removed)
continue; continue;
if ((current_time - glvl->glv->historical->timestamp_removed) > threshold) { if ((current_time - glvl->glv->historical->timestamp_removed) > threshold) {

View File

@ -4209,7 +4209,7 @@ static void _recalculate_fields(struct dm_report *rh)
{ {
struct row *row; struct row *row;
struct dm_report_field *field; struct dm_report_field *field;
size_t len; int len;
dm_list_iterate_items(row, &rh->rows) { dm_list_iterate_items(row, &rh->rows) {
dm_list_iterate_items(field, &row->fields) { dm_list_iterate_items(field, &row->fields) {

View File

@ -3294,7 +3294,7 @@ static void _sum_histogram_bins(const struct dm_stats *dms,
struct dm_stats_region *region; struct dm_stats_region *region;
struct dm_histogram_bin *bins; struct dm_histogram_bin *bins;
struct dm_histogram *dmh_cur; struct dm_histogram *dmh_cur;
uint64_t bin; int bin;
region = &dms->regions[region_id]; region = &dms->regions[region_id];
dmh_cur = region->counters[area_id].histogram; dmh_cur = region->counters[area_id].histogram;
@ -4003,7 +4003,7 @@ merge:
static void _stats_copy_histogram_bounds(struct dm_histogram *to, static void _stats_copy_histogram_bounds(struct dm_histogram *to,
struct dm_histogram *from) struct dm_histogram *from)
{ {
uint64_t i; int i;
to->nr_bins = from->nr_bins; to->nr_bins = from->nr_bins;
@ -4019,7 +4019,7 @@ static void _stats_copy_histogram_bounds(struct dm_histogram *to,
static int _stats_check_histogram_bounds(struct dm_histogram *h1, static int _stats_check_histogram_bounds(struct dm_histogram *h1,
struct dm_histogram *h2) struct dm_histogram *h2)
{ {
uint64_t i; int i;
if (!h1 || !h2) if (!h1 || !h2)
return 0; return 0;

View File

@ -707,7 +707,7 @@ int report_for_selection(struct cmd_context *cmd,
static void _check_pv_list(struct cmd_context *cmd, struct report_args *args, struct single_report_args *single_args) static void _check_pv_list(struct cmd_context *cmd, struct report_args *args, struct single_report_args *single_args)
{ {
unsigned i; int i;
int rescan_done = 0; int rescan_done = 0;
if (!args->argv) if (!args->argv)

View File

@ -4499,7 +4499,7 @@ int pvcreate_each_device(struct cmd_context *cmd,
int consistent = 0; int consistent = 0;
int must_use_all = (cmd->command->flags & MUST_USE_ALL_ARGS); int must_use_all = (cmd->command->flags & MUST_USE_ALL_ARGS);
int found; int found;
int i; unsigned i;
set_pv_notify(cmd); set_pv_notify(cmd);

View File

@ -49,7 +49,7 @@ static int _vgextend_restoremissing(struct cmd_context *cmd __attribute__((unuse
struct vgextend_params *vp = (struct vgextend_params *) handle->custom_handle; struct vgextend_params *vp = (struct vgextend_params *) handle->custom_handle;
struct pvcreate_params *pp = &vp->pp; struct pvcreate_params *pp = &vp->pp;
int fixed = 0; int fixed = 0;
int i; unsigned i;
if (!archive(vg)) if (!archive(vg))
return_0; return_0;