Thread (13 messages) 13 messages, 4 authors, 2017-03-28

Re: [PATCH 1/2] blk-stat: convert blk-stat bucket callback to signed

From: Omar Sandoval <osandov@osandov.com>
Date: 2017-03-27 16:01:03
Also in: linux-nvme

On Mon, Mar 27, 2017 at 04:00:08PM +0000, Stephen  Bates wrote:
Thanks for the review Omar!
quoted
quoted
 
-unsigned int blk_stat_rq_ddir(const struct request *rq)
+int blk_stat_rq_ddir(const struct request *rq)
 {
-	return rq_data_dir(rq);
+	return (int)rq_data_dir(rq);
The cast here here isn't necessary, let's leave it off.
OK, I will add that in the respin!
quoted
quoted
 }
 EXPORT_SYMBOL_GPL(blk_stat_rq_ddir);
 
@@ -100,6 +100,8 @@ void blk_stat_add(struct request *rq)
 	list_for_each_entry_rcu(cb, &q->stats->callbacks, list) {
 		if (blk_stat_is_active(cb)) {
 			bucket = cb->bucket_fn(rq);
+			if (bucket < 0)
+				continue;
You also need to change the declaration of bucket to int above.
Ummmm, it is already is an int…
Yup, I was looking at the wrong place, sorry.
Keyboard shortcuts
hback out one level
jnext message in thread
kprevious message in thread
ldrill in
Escclose help / fold thread tree
?toggle this help