Linux kernel mirror (for testing) git.kernel.org/pub/scm/linux/kernel/git/torvalds/linux.git
kernel os linux

svcrpc: move unused field from cache_deferred_req

This field is set once and never used; probably some artifact of an
earlier implementation idea.

Signed-off-by: J. Bruce Fields <bfields@citi.umich.edu>

-2
-1
include/linux/sunrpc/cache.h
··· 120 120 struct list_head hash; /* on hash chain */ 121 121 struct list_head recent; /* on fifo */ 122 122 struct cache_head *item; /* cache item we wait on */ 123 - time_t recv_time; 124 123 void *owner; /* we might need to discard all defered requests 125 124 * owned by someone */ 126 125 void (*revisit)(struct cache_deferred_req *req,
-1
net/sunrpc/cache.c
··· 571 571 return -ETIMEDOUT; 572 572 573 573 dreq->item = item; 574 - dreq->recv_time = get_seconds(); 575 574 576 575 spin_lock(&cache_defer_lock); 577 576