From: Daniel Wagner <[email protected]>

We track the state of the firmware loading with bit ops.  Since the
state machine has only a few states and they are all mutual exclusive
there are only a few simple state transition we can model this simplify.

           UNKNOWN -> LOADING -> DONE | ABORTED

Because we don't use any bit ops on fw_state::status anymore we are able
to change the data type to enum fw_status and update the function
arguments accordingly.

READ_ONCE() and WRITE_ONCE() are propably not needed because there are a
lot of load and stores around fw_st->status. But let's make it explicit
and not be sorry later.

Signed-off-by: Daniel Wagner <[email protected]>
Cc: Ming Lei <[email protected]>
Cc: Luis R. Rodriguez <[email protected]>
Cc: Greg Kroah-Hartman <[email protected]>
---
 drivers/base/firmware_class.c | 12 +++++-------
 1 file changed, 5 insertions(+), 7 deletions(-)

diff --git a/drivers/base/firmware_class.c b/drivers/base/firmware_class.c
index a6916a7aaeb2..a1dab6a792f1 100644
--- a/drivers/base/firmware_class.c
+++ b/drivers/base/firmware_class.c
@@ -106,7 +106,7 @@ enum fw_status {
  */
 struct fw_state {
        struct completion completion;
-       unsigned long status;
+       enum fw_status status;
 };
 
 static void fw_state_init(struct fw_state *fw_st)
@@ -117,7 +117,7 @@ static void fw_state_init(struct fw_state *fw_st)
 
 static int __fw_state_check(struct fw_state *fw_st, enum fw_status status)
 {
-       return test_bit(status, &fw_st->status);
+       return fw_st->status == status;
 }
 
 static int __fw_state_wait_common(struct fw_state *fw_st, long timeout)
@@ -126,7 +126,7 @@ static int __fw_state_wait_common(struct fw_state *fw_st, 
long timeout)
 
        ret = wait_for_completion_interruptible_timeout(&fw_st->completion,
                                                        timeout);
-       if (ret != 0 && test_bit(FW_STATUS_ABORTED, &fw_st->status))
+       if (ret != 0 && READ_ONCE(fw_st->status) == FW_STATUS_ABORTED)
                return -ENOENT;
 
        return ret;
@@ -135,12 +135,10 @@ static int __fw_state_wait_common(struct fw_state *fw_st, 
long timeout)
 static void __fw_state_set(struct fw_state *fw_st,
                         enum fw_status status)
 {
-       set_bit(status, &fw_st->status);
+       WRITE_ONCE(fw_st->status, status);
 
-       if (status == FW_STATUS_DONE || status == FW_STATUS_ABORTED) {
-               clear_bit(FW_STATUS_LOADING, &fw_st->status);
+       if (status == FW_STATUS_DONE || status == FW_STATUS_ABORTED)
                complete_all(&fw_st->completion);
-       }
 }
 
 #define fw_state_start(fw_st)                                  \
-- 
2.7.4

Reply via email to