mirror of
git://git.kernel.org/pub/scm/linux/kernel/git/torvalds/linux.git
synced 2025-08-05 16:54:27 +00:00
KVM: rename __kvm_io_bus_sort_cmp to kvm_io_bus_cmp
This is the type-safe comparison function, so the double-underscore is not related. Signed-off-by: Paolo Bonzini <pbonzini@redhat.com> Signed-off-by: Gleb Natapov <gleb@redhat.com>
This commit is contained in:
parent
11feeb4980
commit
c21fbff16b
1 changed files with 8 additions and 8 deletions
|
@ -2795,8 +2795,8 @@ static void kvm_io_bus_destroy(struct kvm_io_bus *bus)
|
||||||
kfree(bus);
|
kfree(bus);
|
||||||
}
|
}
|
||||||
|
|
||||||
static inline int __kvm_io_bus_sort_cmp(const struct kvm_io_range *r1,
|
static inline int kvm_io_bus_cmp(const struct kvm_io_range *r1,
|
||||||
const struct kvm_io_range *r2)
|
const struct kvm_io_range *r2)
|
||||||
{
|
{
|
||||||
if (r1->addr < r2->addr)
|
if (r1->addr < r2->addr)
|
||||||
return -1;
|
return -1;
|
||||||
|
@ -2807,7 +2807,7 @@ static inline int __kvm_io_bus_sort_cmp(const struct kvm_io_range *r1,
|
||||||
|
|
||||||
static int kvm_io_bus_sort_cmp(const void *p1, const void *p2)
|
static int kvm_io_bus_sort_cmp(const void *p1, const void *p2)
|
||||||
{
|
{
|
||||||
return __kvm_io_bus_sort_cmp(p1, p2);
|
return kvm_io_bus_cmp(p1, p2);
|
||||||
}
|
}
|
||||||
|
|
||||||
static int kvm_io_bus_insert_dev(struct kvm_io_bus *bus, struct kvm_io_device *dev,
|
static int kvm_io_bus_insert_dev(struct kvm_io_bus *bus, struct kvm_io_device *dev,
|
||||||
|
@ -2843,7 +2843,7 @@ static int kvm_io_bus_get_first_dev(struct kvm_io_bus *bus,
|
||||||
|
|
||||||
off = range - bus->range;
|
off = range - bus->range;
|
||||||
|
|
||||||
while (off > 0 && __kvm_io_bus_sort_cmp(&key, &bus->range[off-1]) == 0)
|
while (off > 0 && kvm_io_bus_cmp(&key, &bus->range[off-1]) == 0)
|
||||||
off--;
|
off--;
|
||||||
|
|
||||||
return off;
|
return off;
|
||||||
|
@ -2859,7 +2859,7 @@ static int __kvm_io_bus_write(struct kvm_io_bus *bus,
|
||||||
return -EOPNOTSUPP;
|
return -EOPNOTSUPP;
|
||||||
|
|
||||||
while (idx < bus->dev_count &&
|
while (idx < bus->dev_count &&
|
||||||
__kvm_io_bus_sort_cmp(range, &bus->range[idx]) == 0) {
|
kvm_io_bus_cmp(range, &bus->range[idx]) == 0) {
|
||||||
if (!kvm_iodevice_write(bus->range[idx].dev, range->addr,
|
if (!kvm_iodevice_write(bus->range[idx].dev, range->addr,
|
||||||
range->len, val))
|
range->len, val))
|
||||||
return idx;
|
return idx;
|
||||||
|
@ -2903,7 +2903,7 @@ int kvm_io_bus_write_cookie(struct kvm *kvm, enum kvm_bus bus_idx, gpa_t addr,
|
||||||
|
|
||||||
/* First try the device referenced by cookie. */
|
/* First try the device referenced by cookie. */
|
||||||
if ((cookie >= 0) && (cookie < bus->dev_count) &&
|
if ((cookie >= 0) && (cookie < bus->dev_count) &&
|
||||||
(__kvm_io_bus_sort_cmp(&range, &bus->range[cookie]) == 0))
|
(kvm_io_bus_cmp(&range, &bus->range[cookie]) == 0))
|
||||||
if (!kvm_iodevice_write(bus->range[cookie].dev, addr, len,
|
if (!kvm_iodevice_write(bus->range[cookie].dev, addr, len,
|
||||||
val))
|
val))
|
||||||
return cookie;
|
return cookie;
|
||||||
|
@ -2925,7 +2925,7 @@ static int __kvm_io_bus_read(struct kvm_io_bus *bus, struct kvm_io_range *range,
|
||||||
return -EOPNOTSUPP;
|
return -EOPNOTSUPP;
|
||||||
|
|
||||||
while (idx < bus->dev_count &&
|
while (idx < bus->dev_count &&
|
||||||
__kvm_io_bus_sort_cmp(range, &bus->range[idx]) == 0) {
|
kvm_io_bus_cmp(range, &bus->range[idx]) == 0) {
|
||||||
if (!kvm_iodevice_read(bus->range[idx].dev, range->addr,
|
if (!kvm_iodevice_read(bus->range[idx].dev, range->addr,
|
||||||
range->len, val))
|
range->len, val))
|
||||||
return idx;
|
return idx;
|
||||||
|
@ -2969,7 +2969,7 @@ int kvm_io_bus_read_cookie(struct kvm *kvm, enum kvm_bus bus_idx, gpa_t addr,
|
||||||
|
|
||||||
/* First try the device referenced by cookie. */
|
/* First try the device referenced by cookie. */
|
||||||
if ((cookie >= 0) && (cookie < bus->dev_count) &&
|
if ((cookie >= 0) && (cookie < bus->dev_count) &&
|
||||||
(__kvm_io_bus_sort_cmp(&range, &bus->range[cookie]) == 0))
|
(kvm_io_bus_cmp(&range, &bus->range[cookie]) == 0))
|
||||||
if (!kvm_iodevice_read(bus->range[cookie].dev, addr, len,
|
if (!kvm_iodevice_read(bus->range[cookie].dev, addr, len,
|
||||||
val))
|
val))
|
||||||
return cookie;
|
return cookie;
|
||||||
|
|
Loading…
Add table
Reference in a new issue