]> git.kernelconcepts.de Git - karo-tx-linux.git/commit
iscsi-target: Fix up a few assignments
authorJesper Juhl <jj@chaosbits.net>
Sun, 15 Jan 2012 18:33:30 +0000 (19:33 +0100)
committerNicholas Bellinger <nab@linux-iscsi.org>
Wed, 18 Jan 2012 08:35:57 +0000 (08:35 +0000)
commite8904dc5008ef92f0f62391d6557f03f921eeb32
treeda3cdfc1e0be8166b58649840dac0d1ba0842081
parentf8d48ae52eeec906d7fb42485eb26a5d305bab0a
iscsi-target: Fix up a few assignments

A statement such as
  struct iscsi_node_attrib *na = na = iscsit_tpg_get_node_attrib(sess);
has undefined behaviour since there are two assignments to 'na', strictly
speaking (the order in which side-effects from the assignments take place
is undefined since there's no intervening sequence point), and it looks
unintentional in any case.

Signed-off-by: Jesper Juhl <jj@chaosbits.net>
Signed-off-by: Nicholas Bellinger <nab@linux-iscsi.org>
drivers/target/iscsi/iscsi_target_erl1.c