Commit afc1f67b authored by Julian Wiedmann's avatar Julian Wiedmann Committed by David S. Miller

s390/qeth: use node_descriptor struct

Rather than fumbling with hard-coded offsets, use the proper struct to
access the retrieved RCD information.
Signed-off-by: default avatarJulian Wiedmann <jwi@linux.ibm.com>
Signed-off-by: default avatarDavid S. Miller <davem@davemloft.net>
parent d9bd6d27
...@@ -651,7 +651,7 @@ struct qeth_card_blkt { ...@@ -651,7 +651,7 @@ struct qeth_card_blkt {
struct qeth_card_info { struct qeth_card_info {
unsigned short unit_addr2; unsigned short unit_addr2;
unsigned short cula; unsigned short cula;
unsigned short chpid; u8 chpid;
__u16 func_level; __u16 func_level;
char mcl_level[QETH_MCL_LENGTH + 1]; char mcl_level[QETH_MCL_LENGTH + 1];
u8 open_when_online:1; u8 open_when_online:1;
......
...@@ -1775,19 +1775,32 @@ static int qeth_send_control_data(struct qeth_card *card, ...@@ -1775,19 +1775,32 @@ static int qeth_send_control_data(struct qeth_card *card,
return rc; return rc;
} }
struct qeth_node_desc {
struct node_descriptor nd1;
struct node_descriptor nd2;
struct node_descriptor nd3;
};
static void qeth_read_conf_data_cb(struct qeth_card *card, static void qeth_read_conf_data_cb(struct qeth_card *card,
struct qeth_cmd_buffer *iob) struct qeth_cmd_buffer *iob)
{ {
unsigned char *prcd = iob->data; struct qeth_node_desc *nd = (struct qeth_node_desc *) iob->data;
u8 *tag;
QETH_CARD_TEXT(card, 2, "cfgunit"); QETH_CARD_TEXT(card, 2, "cfgunit");
card->info.chpid = prcd[30]; card->info.is_vm_nic = nd->nd1.plant[0] == _ascebc['V'] &&
card->info.unit_addr2 = prcd[31]; nd->nd1.plant[1] == _ascebc['M'];
card->info.cula = prcd[63]; tag = (u8 *)&nd->nd1.tag;
card->info.is_vm_nic = ((prcd[0x10] == _ascebc['V']) && card->info.chpid = tag[0];
(prcd[0x11] == _ascebc['M'])); card->info.unit_addr2 = tag[1];
card->info.use_v1_blkt = prcd[74] == 0xF0 && prcd[75] == 0xF0 &&
prcd[76] >= 0xF1 && prcd[76] <= 0xF4; tag = (u8 *)&nd->nd2.tag;
card->info.cula = tag[1];
card->info.use_v1_blkt = nd->nd3.model[0] == 0xF0 &&
nd->nd3.model[1] == 0xF0 &&
nd->nd3.model[2] >= 0xF1 &&
nd->nd3.model[2] <= 0xF4;
qeth_notify_reply(iob->reply, 0); qeth_notify_reply(iob->reply, 0);
qeth_put_cmd(iob); qeth_put_cmd(iob);
...@@ -1803,6 +1816,8 @@ static int qeth_read_conf_data(struct qeth_card *card) ...@@ -1803,6 +1816,8 @@ static int qeth_read_conf_data(struct qeth_card *card)
ciw = ccw_device_get_ciw(channel->ccwdev, CIW_TYPE_RCD); ciw = ccw_device_get_ciw(channel->ccwdev, CIW_TYPE_RCD);
if (!ciw || ciw->cmd == 0) if (!ciw || ciw->cmd == 0)
return -EOPNOTSUPP; return -EOPNOTSUPP;
if (ciw->count < sizeof(struct qeth_node_desc))
return -EINVAL;
iob = qeth_alloc_cmd(channel, ciw->count, 1, QETH_RCD_TIMEOUT); iob = qeth_alloc_cmd(channel, ciw->count, 1, QETH_RCD_TIMEOUT);
if (!iob) if (!iob)
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment