diff options
Diffstat (limited to 'include/scsi/scsi_transport_fc.h')
-rw-r--r-- | include/scsi/scsi_transport_fc.h | 38 |
1 files changed, 27 insertions, 11 deletions
diff --git a/include/scsi/scsi_transport_fc.h b/include/scsi/scsi_transport_fc.h index b7f62b85f0b3..c74be5dabfeb 100644 --- a/include/scsi/scsi_transport_fc.h +++ b/include/scsi/scsi_transport_fc.h | |||
@@ -312,7 +312,6 @@ struct fc_host_attrs { | |||
312 | u64 permanent_port_name; | 312 | u64 permanent_port_name; |
313 | u32 supported_classes; | 313 | u32 supported_classes; |
314 | u8 supported_fc4s[FC_FC4_LIST_SIZE]; | 314 | u8 supported_fc4s[FC_FC4_LIST_SIZE]; |
315 | char symbolic_name[FC_SYMBOLIC_NAME_SIZE]; | ||
316 | u32 supported_speeds; | 315 | u32 supported_speeds; |
317 | u32 maxframe_size; | 316 | u32 maxframe_size; |
318 | char serial_number[FC_SERIAL_NUMBER_SIZE]; | 317 | char serial_number[FC_SERIAL_NUMBER_SIZE]; |
@@ -324,6 +323,8 @@ struct fc_host_attrs { | |||
324 | u8 active_fc4s[FC_FC4_LIST_SIZE]; | 323 | u8 active_fc4s[FC_FC4_LIST_SIZE]; |
325 | u32 speed; | 324 | u32 speed; |
326 | u64 fabric_name; | 325 | u64 fabric_name; |
326 | char symbolic_name[FC_SYMBOLIC_NAME_SIZE]; | ||
327 | char system_hostname[FC_SYMBOLIC_NAME_SIZE]; | ||
327 | 328 | ||
328 | /* Private (Transport-managed) Attributes */ | 329 | /* Private (Transport-managed) Attributes */ |
329 | enum fc_tgtid_binding_type tgtid_bind_type; | 330 | enum fc_tgtid_binding_type tgtid_bind_type; |
@@ -354,8 +355,6 @@ struct fc_host_attrs { | |||
354 | (((struct fc_host_attrs *)(x)->shost_data)->supported_classes) | 355 | (((struct fc_host_attrs *)(x)->shost_data)->supported_classes) |
355 | #define fc_host_supported_fc4s(x) \ | 356 | #define fc_host_supported_fc4s(x) \ |
356 | (((struct fc_host_attrs *)(x)->shost_data)->supported_fc4s) | 357 | (((struct fc_host_attrs *)(x)->shost_data)->supported_fc4s) |
357 | #define fc_host_symbolic_name(x) \ | ||
358 | (((struct fc_host_attrs *)(x)->shost_data)->symbolic_name) | ||
359 | #define fc_host_supported_speeds(x) \ | 358 | #define fc_host_supported_speeds(x) \ |
360 | (((struct fc_host_attrs *)(x)->shost_data)->supported_speeds) | 359 | (((struct fc_host_attrs *)(x)->shost_data)->supported_speeds) |
361 | #define fc_host_maxframe_size(x) \ | 360 | #define fc_host_maxframe_size(x) \ |
@@ -374,6 +373,10 @@ struct fc_host_attrs { | |||
374 | (((struct fc_host_attrs *)(x)->shost_data)->speed) | 373 | (((struct fc_host_attrs *)(x)->shost_data)->speed) |
375 | #define fc_host_fabric_name(x) \ | 374 | #define fc_host_fabric_name(x) \ |
376 | (((struct fc_host_attrs *)(x)->shost_data)->fabric_name) | 375 | (((struct fc_host_attrs *)(x)->shost_data)->fabric_name) |
376 | #define fc_host_symbolic_name(x) \ | ||
377 | (((struct fc_host_attrs *)(x)->shost_data)->symbolic_name) | ||
378 | #define fc_host_system_hostname(x) \ | ||
379 | (((struct fc_host_attrs *)(x)->shost_data)->system_hostname) | ||
377 | #define fc_host_tgtid_bind_type(x) \ | 380 | #define fc_host_tgtid_bind_type(x) \ |
378 | (((struct fc_host_attrs *)(x)->shost_data)->tgtid_bind_type) | 381 | (((struct fc_host_attrs *)(x)->shost_data)->tgtid_bind_type) |
379 | #define fc_host_rports(x) \ | 382 | #define fc_host_rports(x) \ |
@@ -410,6 +413,7 @@ struct fc_function_template { | |||
410 | void (*get_host_speed)(struct Scsi_Host *); | 413 | void (*get_host_speed)(struct Scsi_Host *); |
411 | void (*get_host_fabric_name)(struct Scsi_Host *); | 414 | void (*get_host_fabric_name)(struct Scsi_Host *); |
412 | void (*get_host_symbolic_name)(struct Scsi_Host *); | 415 | void (*get_host_symbolic_name)(struct Scsi_Host *); |
416 | void (*set_host_system_hostname)(struct Scsi_Host *); | ||
413 | 417 | ||
414 | struct fc_host_statistics * (*get_fc_host_stats)(struct Scsi_Host *); | 418 | struct fc_host_statistics * (*get_fc_host_stats)(struct Scsi_Host *); |
415 | void (*reset_fc_host_stats)(struct Scsi_Host *); | 419 | void (*reset_fc_host_stats)(struct Scsi_Host *); |
@@ -457,6 +461,7 @@ struct fc_function_template { | |||
457 | unsigned long show_host_speed:1; | 461 | unsigned long show_host_speed:1; |
458 | unsigned long show_host_fabric_name:1; | 462 | unsigned long show_host_fabric_name:1; |
459 | unsigned long show_host_symbolic_name:1; | 463 | unsigned long show_host_symbolic_name:1; |
464 | unsigned long show_host_system_hostname:1; | ||
460 | }; | 465 | }; |
461 | 466 | ||
462 | 467 | ||
@@ -492,6 +497,25 @@ fc_remote_port_chkready(struct fc_rport *rport) | |||
492 | return result; | 497 | return result; |
493 | } | 498 | } |
494 | 499 | ||
500 | static inline u64 wwn_to_u64(u8 *wwn) | ||
501 | { | ||
502 | return (u64)wwn[0] << 56 | (u64)wwn[1] << 48 | | ||
503 | (u64)wwn[2] << 40 | (u64)wwn[3] << 32 | | ||
504 | (u64)wwn[4] << 24 | (u64)wwn[5] << 16 | | ||
505 | (u64)wwn[6] << 8 | (u64)wwn[7]; | ||
506 | } | ||
507 | |||
508 | static inline void u64_to_wwn(u64 inm, u8 *wwn) | ||
509 | { | ||
510 | wwn[0] = (inm >> 56) & 0xff; | ||
511 | wwn[1] = (inm >> 48) & 0xff; | ||
512 | wwn[2] = (inm >> 40) & 0xff; | ||
513 | wwn[3] = (inm >> 32) & 0xff; | ||
514 | wwn[4] = (inm >> 24) & 0xff; | ||
515 | wwn[5] = (inm >> 16) & 0xff; | ||
516 | wwn[6] = (inm >> 8) & 0xff; | ||
517 | wwn[7] = inm & 0xff; | ||
518 | } | ||
495 | 519 | ||
496 | struct scsi_transport_template *fc_attach_transport( | 520 | struct scsi_transport_template *fc_attach_transport( |
497 | struct fc_function_template *); | 521 | struct fc_function_template *); |
@@ -503,12 +527,4 @@ void fc_remote_port_delete(struct fc_rport *rport); | |||
503 | void fc_remote_port_rolechg(struct fc_rport *rport, u32 roles); | 527 | void fc_remote_port_rolechg(struct fc_rport *rport, u32 roles); |
504 | int scsi_is_fc_rport(const struct device *); | 528 | int scsi_is_fc_rport(const struct device *); |
505 | 529 | ||
506 | static inline u64 wwn_to_u64(u8 *wwn) | ||
507 | { | ||
508 | return (u64)wwn[0] << 56 | (u64)wwn[1] << 48 | | ||
509 | (u64)wwn[2] << 40 | (u64)wwn[3] << 32 | | ||
510 | (u64)wwn[4] << 24 | (u64)wwn[5] << 16 | | ||
511 | (u64)wwn[6] << 8 | (u64)wwn[7]; | ||
512 | } | ||
513 | |||
514 | #endif /* SCSI_TRANSPORT_FC_H */ | 530 | #endif /* SCSI_TRANSPORT_FC_H */ |