diff options
author | Michael Brown <mcb30@ipxe.org> | 2020-10-22 14:01:27 +0100 |
---|---|---|
committer | Michael Brown <mcb30@ipxe.org> | 2020-10-22 14:16:55 +0100 |
commit | bf051a76eef07bb4bd04ad4ff2b8b5e23ef26740 (patch) | |
tree | 0b479c39ade7f5f34e9be868a0c229a788dc48b0 /src/include/ipxe/fcp.h | |
parent | e6f9054d13bd9bc95720ca3e8cf6c4dcf4eae018 (diff) | |
download | ipxe-bf051a76eef07bb4bd04ad4ff2b8b5e23ef26740.tar.gz |
[fcp] Allow Fibre Channel device to be described using an EFI device path
Signed-off-by: Michael Brown <mcb30@ipxe.org>
Diffstat (limited to 'src/include/ipxe/fcp.h')
-rw-r--r-- | src/include/ipxe/fcp.h | 8 |
1 files changed, 8 insertions, 0 deletions
diff --git a/src/include/ipxe/fcp.h b/src/include/ipxe/fcp.h index 853ca13f6..d86afab42 100644 --- a/src/include/ipxe/fcp.h +++ b/src/include/ipxe/fcp.h @@ -163,4 +163,12 @@ struct fcp_prli_service_parameters { /** Enhanced discovery supported */ #define FCP_PRLI_ENH_DISC 0x0800 +/** An FCP device description */ +struct fcp_description { + /** Fibre Channel WWN */ + struct fc_name wwn; + /** SCSI LUN */ + struct scsi_lun lun; +}; + #endif /* _IPXE_FCP_H */ |