misc: vmci: remove redundant variable is_local
Variable is_local is being assigned but is never used hence it is redundant and can be removed. Cleans up clang warning: warning: variable 'is_local' set but not used [-Wunused-but-set-variable] Signed-off-by: Colin Ian King <colin.king@canonical.com> Signed-off-by: Greg Kroah-Hartman <gregkh@linuxfoundation.org>
This commit is contained in:
parent
53e44782e2
commit
c4bcaffa6b
@ -2214,7 +2214,6 @@ int vmci_qp_broker_map(struct vmci_handle handle,
|
||||
{
|
||||
struct qp_broker_entry *entry;
|
||||
const u32 context_id = vmci_ctx_get_id(context);
|
||||
bool is_local = false;
|
||||
int result;
|
||||
|
||||
if (vmci_handle_is_invalid(handle) || !context ||
|
||||
@ -2243,7 +2242,6 @@ int vmci_qp_broker_map(struct vmci_handle handle,
|
||||
goto out;
|
||||
}
|
||||
|
||||
is_local = entry->qp.flags & VMCI_QPFLAG_LOCAL;
|
||||
result = VMCI_SUCCESS;
|
||||
|
||||
if (context_id != VMCI_HOST_CONTEXT_ID) {
|
||||
@ -2325,7 +2323,6 @@ int vmci_qp_broker_unmap(struct vmci_handle handle,
|
||||
{
|
||||
struct qp_broker_entry *entry;
|
||||
const u32 context_id = vmci_ctx_get_id(context);
|
||||
bool is_local = false;
|
||||
int result;
|
||||
|
||||
if (vmci_handle_is_invalid(handle) || !context ||
|
||||
@ -2354,8 +2351,6 @@ int vmci_qp_broker_unmap(struct vmci_handle handle,
|
||||
goto out;
|
||||
}
|
||||
|
||||
is_local = entry->qp.flags & VMCI_QPFLAG_LOCAL;
|
||||
|
||||
if (context_id != VMCI_HOST_CONTEXT_ID) {
|
||||
qp_acquire_queue_mutex(entry->produce_q);
|
||||
result = qp_save_headers(entry);
|
||||
|
Loading…
x
Reference in New Issue
Block a user