Skip to content

Commit 1dc0d1c

Browse files
karstengrkuba-moo
authored andcommitted
s390/ism: fix incorrect system EID
The system EID that is defined by the ISM driver is not correct. Using an incorrect system EID allows to communicate with remote Linux systems that use the same incorrect system EID, but when it comes to interoperability with other operating systems then the system EIDs do never match which prevents SMC-Dv2 communication. Using the correct system EID fixes this problem. Fixes: 201091e ("net/smc: introduce System Enterprise ID (SEID)") Signed-off-by: Karsten Graul <kgraul@linux.ibm.com> Signed-off-by: Jakub Kicinski <kuba@kernel.org>
1 parent 96d6fde commit 1dc0d1c

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

drivers/s390/net/ism_drv.c

+1-1
Original file line numberDiff line numberDiff line change
@@ -390,7 +390,7 @@ static int ism_move(struct smcd_dev *smcd, u64 dmb_tok, unsigned int idx,
390390
}
391391

392392
static struct ism_systemeid SYSTEM_EID = {
393-
.seid_string = "IBM-SYSZ-IBMSEID00000000",
393+
.seid_string = "IBM-SYSZ-ISMSEID00000000",
394394
.serial_number = "0000",
395395
.type = "0000",
396396
};

0 commit comments

Comments
 (0)