iwlegacy: always check if got h/w access before write
Before we write to the device register always check if _il_grap_nic_access() was successful. Change type return type _il_grap_nic_access() to bool, and add likely()/unlikely() statements. Signed-off-by: Stanislaw Gruszka <sgruszka@redhat.com> Signed-off-by: John W. Linville <linville@tuxdriver.com>
Esse commit está contido em:

commit de
John W. Linville

pai
b6603036ad
commit
1e0f32a43a
@@ -3778,7 +3778,7 @@ il4965_perform_ct_kill_task(struct il_priv *il)
|
||||
_il_rd(il, CSR_UCODE_DRV_GP1);
|
||||
|
||||
spin_lock_irqsave(&il->reg_lock, flags);
|
||||
if (!_il_grab_nic_access(il))
|
||||
if (likely(_il_grab_nic_access(il)))
|
||||
_il_release_nic_access(il);
|
||||
spin_unlock_irqrestore(&il->reg_lock, flags);
|
||||
}
|
||||
|
Referência em uma nova issue
Block a user