From 523ae8b9e224035f81b40a01832faa3a1062824f Mon Sep 17 00:00:00 2001 From: Oleg Drokin Date: Sun, 27 Sep 2015 15:07:45 -0400 Subject: [PATCH] LU-4423 ptlrpc: incorrect AT index type Arnd Bergmann noticed that rq_at_index is incorrectly labelled as time_t where as it's really an integer index. Change-Id: Id6858def627054eb87d9860ce3d98984970ed481 Signed-off-by: Oleg Drokin Reviewed-on: http://review.whamcloud.com/16693 Tested-by: Jenkins Reviewed-by: Dmitry Eremin Reviewed-by: James Simmons Reviewed-by: John L. Hammond Tested-by: Maloo --- lustre/include/lustre_net.h | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/lustre/include/lustre_net.h b/lustre/include/lustre_net.h index 26d6f01..e71b2db 100644 --- a/lustre/include/lustre_net.h +++ b/lustre/include/lustre_net.h @@ -889,7 +889,7 @@ struct ptlrpc_srv_req { /** history sequence # */ __u64 sr_hist_seq; /** the index of service's srv_at_array into which request is linked */ - time_t sr_at_index; + __u32 sr_at_index; /** authed uid */ uid_t sr_auth_uid; /** authed uid mapped to */ -- 1.8.3.1