* [PATCH 1/1] direct-io: Change is_async member of struct dio from int to bool
@ 2019-09-27 4:52 Ritesh Harjani
0 siblings, 0 replies; only message in thread
From: Ritesh Harjani @ 2019-09-27 4:52 UTC (permalink / raw)
To: viro; +Cc: linux-fsdevel, linux-kernel, jlayton, riteshh
Change is_async member of struct dio from int to bool.
Found this during code review.
Signed-off-by: Ritesh Harjani <riteshh@linux.ibm.com>
---
fs/direct-io.c | 2 +-
1 file changed, 1 insertion(+), 1 deletion(-)
diff --git a/fs/direct-io.c b/fs/direct-io.c
index ae196784f487..b139876653ef 100644
--- a/fs/direct-io.c
+++ b/fs/direct-io.c
@@ -128,7 +128,7 @@ struct dio {
/* BIO completion state */
spinlock_t bio_lock; /* protects BIO fields below */
int page_errors; /* errno from get_user_pages() */
- int is_async; /* is IO async ? */
+ bool is_async; /* is IO async ? */
bool defer_completion; /* defer AIO completion to workqueue? */
bool should_dirty; /* if pages should be dirtied */
int io_error; /* IO error in completion path */
--
2.21.0
^ permalink raw reply related [flat|nested] only message in thread
only message in thread, other threads:[~2019-09-27 4:52 UTC | newest]
Thread overview: (only message) (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2019-09-27 4:52 [PATCH 1/1] direct-io: Change is_async member of struct dio from int to bool Ritesh Harjani
This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox;
as well as URLs for NNTP newsgroup(s).