Re: [PATCH] kvm/eventfd : unnecessory conversion to bool

2019-01-11 Thread Radim Krčmář
2018-12-27 14:22+0800, Peng Hao:
> Conversion to bool is not needed in ioeventfd_in_range.
> 
> Signed-off-by: Peng Hao 
> ---

Fixed the typo in subject and queued, thanks.


[PATCH] kvm/eventfd : unnecessory conversion to bool

2018-12-26 Thread Peng Hao
Conversion to bool is not needed in ioeventfd_in_range.

Signed-off-by: Peng Hao 
---
 virt/kvm/eventfd.c | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/virt/kvm/eventfd.c b/virt/kvm/eventfd.c
index b20b751..d4cdc9c 100644
--- a/virt/kvm/eventfd.c
+++ b/virt/kvm/eventfd.c
@@ -723,7 +723,7 @@ struct _ioeventfd {
return false;
}
 
-   return _val == p->datamatch ? true : false;
+   return _val == p->datamatch;
 }
 
 /* MMIO/PIO writes trigger an event if the addr/val match */
-- 
1.8.3.1