diff options
author | Hannes Reinecke <hare@suse.de> | 2017-04-07 03:34:13 -0400 |
---|---|---|
committer | Martin K. Petersen <martin.petersen@oracle.com> | 2017-04-11 20:55:20 -0400 |
commit | 136e57bf43dc4babbfb8783abbf707d483cacbe3 (patch) | |
tree | 8352bac9729d2833557042c72c1b77adc4322a7c | |
parent | 745dfa0d8ec26b24f3304459ff6e9eacc5c8351b (diff) |
scsi: sg: remove 'save_scat_len'
Unused.
Signed-off-by: Hannes Reinecke <hare@suse.com>
Reviewed-by: Johannes Thumshirn <jthumshirn@suse.de>
Tested-by: Johannes Thumshirn <jthumshirn@suse.de>
Reviewed-by: Christoph Hellwig <hch@lst.de>
Signed-off-by: Martin K. Petersen <martin.petersen@oracle.com>
-rw-r--r-- | drivers/scsi/sg.c | 2 |
1 files changed, 0 insertions, 2 deletions
diff --git a/drivers/scsi/sg.c b/drivers/scsi/sg.c index 11ca00d8b54c..92cc658d8bc6 100644 --- a/drivers/scsi/sg.c +++ b/drivers/scsi/sg.c | |||
@@ -145,7 +145,6 @@ typedef struct sg_fd { /* holds the state of a file descriptor */ | |||
145 | int timeout; /* defaults to SG_DEFAULT_TIMEOUT */ | 145 | int timeout; /* defaults to SG_DEFAULT_TIMEOUT */ |
146 | int timeout_user; /* defaults to SG_DEFAULT_TIMEOUT_USER */ | 146 | int timeout_user; /* defaults to SG_DEFAULT_TIMEOUT_USER */ |
147 | Sg_scatter_hold reserve; /* buffer held for this file descriptor */ | 147 | Sg_scatter_hold reserve; /* buffer held for this file descriptor */ |
148 | unsigned save_scat_len; /* original length of trunc. scat. element */ | ||
149 | Sg_request *headrp; /* head of request slist, NULL->empty */ | 148 | Sg_request *headrp; /* head of request slist, NULL->empty */ |
150 | struct fasync_struct *async_qp; /* used by asynchronous notification */ | 149 | struct fasync_struct *async_qp; /* used by asynchronous notification */ |
151 | Sg_request req_arr[SG_MAX_QUEUE]; /* used as singly-linked list */ | 150 | Sg_request req_arr[SG_MAX_QUEUE]; /* used as singly-linked list */ |
@@ -2014,7 +2013,6 @@ sg_unlink_reserve(Sg_fd * sfp, Sg_request * srp) | |||
2014 | req_schp->pages = NULL; | 2013 | req_schp->pages = NULL; |
2015 | req_schp->page_order = 0; | 2014 | req_schp->page_order = 0; |
2016 | req_schp->sglist_len = 0; | 2015 | req_schp->sglist_len = 0; |
2017 | sfp->save_scat_len = 0; | ||
2018 | srp->res_used = 0; | 2016 | srp->res_used = 0; |
2019 | } | 2017 | } |
2020 | 2018 | ||