diff options
author | Jag Raman <jag.raman@oracle.com> | 2017-06-23 21:58:30 +0300 |
---|---|---|
committer | David S. Miller <davem@davemloft.net> | 2017-06-25 23:43:11 +0300 |
commit | ac6bb0255430f701ea3723aac5dd06f528078567 (patch) | |
tree | 7cbe7b1c1938e155c50bd338b7cf406d754c2a99 /arch | |
parent | 7b6e04a3edc140a82f5e0e29e59d6dc90a629d34 (diff) | |
download | linux-ac6bb0255430f701ea3723aac5dd06f528078567.tar.xz |
sparc64: specify the device class in VIO version info. packet
Specify the class of VIO device in the version info. packet. The device's
class identifies the type of VIO device, whether it's DISK, CONSOLE,
NETWORK, etc... This packet is used in the handshake between the
client and server for this device.
Signed-off-by: Jagannathan Raman <jag.raman@oracle.com>
Reviewed-by: Liam Merwick <liam.merwick@oracle.com>
Reviewed-by: Shannon Nelson <shannon.nelson@oracle.com>
Signed-off-by: David S. Miller <davem@davemloft.net>
Diffstat (limited to 'arch')
-rw-r--r-- | arch/sparc/kernel/viohs.c | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/arch/sparc/kernel/viohs.c b/arch/sparc/kernel/viohs.c index ea28cb7118bd..68e952a7bcdb 100644 --- a/arch/sparc/kernel/viohs.c +++ b/arch/sparc/kernel/viohs.c @@ -286,6 +286,7 @@ static int process_ver_info(struct vio_driver_state *vio, ver.minor = vap->minor; pkt->minor = ver.minor; pkt->tag.stype = VIO_SUBTYPE_ACK; + pkt->dev_class = vio->dev_class; viodbg(HS, "SEND VERSION ACK maj[%u] min[%u]\n", pkt->major, pkt->minor); err = send_ctrl(vio, &pkt->tag, sizeof(*pkt)); |