qcacmn: Replace session_id in gateway_update_req_param
In struct gateway_update_req_param the legacy identifier session_id is currently used to identify the vdev of interest. To align with the converged nomenclature rename this to vdev_id. This is co-dependent with I2d24a54e80931a944580e968a841679d2da7b2a1 ("qcacld-3.0: Use vdev_id in gateway_update_req_param"). Change-Id: I84b28aa734b570f0a7834fbac7d27e9c66b8b026 CRs-Fixed: 2404012
This commit is contained in:
@@ -1,5 +1,5 @@
|
||||
/*
|
||||
* Copyright (c) 2013-2018 The Linux Foundation. All rights reserved.
|
||||
* Copyright (c) 2013-2019 The Linux Foundation. All rights reserved.
|
||||
*
|
||||
* Permission to use, copy, modify, and/or distribute this software for
|
||||
* any purpose with or without fee is hereby granted, provided that the
|
||||
@@ -26,7 +26,7 @@
|
||||
/**
|
||||
* struct gateway_update_req_param - gateway parameter update request
|
||||
* @request_id: request id
|
||||
* @session_id: session id
|
||||
* @vdev_id: vdev id
|
||||
* @max_retries: Max ARP/NS retry attempts
|
||||
* @timeout: Retry interval
|
||||
* @ipv4_addr_type: on ipv4 network
|
||||
@@ -37,7 +37,7 @@
|
||||
*/
|
||||
struct gateway_update_req_param {
|
||||
uint32_t request_id;
|
||||
uint32_t session_id;
|
||||
uint32_t vdev_id;
|
||||
uint32_t max_retries;
|
||||
uint32_t timeout;
|
||||
uint32_t ipv4_addr_type;
|
||||
|
Reference in New Issue
Block a user