aboutsummaryrefslogtreecommitdiffstats
path: root/include
diff options
context:
space:
mode:
Diffstat (limited to 'include')
-rw-r--r--include/scsi/libfc.h2
1 files changed, 2 insertions, 0 deletions
diff --git a/include/scsi/libfc.h b/include/scsi/libfc.h
index 6d78df77dab6..b0310b9b3469 100644
--- a/include/scsi/libfc.h
+++ b/include/scsi/libfc.h
@@ -195,6 +195,7 @@ struct fc_rport_libfc_priv {
195 * @rp_mutex: The mutex that protects the remote port 195 * @rp_mutex: The mutex that protects the remote port
196 * @retry_work: Handle for retries 196 * @retry_work: Handle for retries
197 * @event_callback: Callback when READY, FAILED or LOGO states complete 197 * @event_callback: Callback when READY, FAILED or LOGO states complete
198 * @rcu: Structure used for freeing in an RCU-safe manner
198 */ 199 */
199struct fc_rport_priv { 200struct fc_rport_priv {
200 struct fc_lport *local_port; 201 struct fc_lport *local_port;
@@ -217,6 +218,7 @@ struct fc_rport_priv {
217 struct list_head peers; 218 struct list_head peers;
218 struct work_struct event_work; 219 struct work_struct event_work;
219 u32 supported_classes; 220 u32 supported_classes;
221 struct rcu_head rcu;
220}; 222};
221 223
222/** 224/**