]> Pileus Git - ~andy/linux/blobdiff - drivers/block/xen-blkback/common.h
xen/blkback: Change statistics counter types to unsigned
[~andy/linux] / drivers / block / xen-blkback / common.h
index 195278ae993d3c966c0e7d2363c4a3425da4b5f5..da78346487ae85019087f7ec6c3df7905f6e22fb 100644 (file)
@@ -223,13 +223,13 @@ struct xen_blkif {
 
        /* statistics */
        unsigned long           st_print;
-       int                     st_rd_req;
-       int                     st_wr_req;
-       int                     st_oo_req;
-       int                     st_f_req;
-       int                     st_ds_req;
-       int                     st_rd_sect;
-       int                     st_wr_sect;
+       unsigned long long                      st_rd_req;
+       unsigned long long                      st_wr_req;
+       unsigned long long                      st_oo_req;
+       unsigned long long                      st_f_req;
+       unsigned long long                      st_ds_req;
+       unsigned long long                      st_rd_sect;
+       unsigned long long                      st_wr_sect;
 
        wait_queue_head_t       waiting_to_free;
 };