Commit dc4b6ded authored by Harald Freudenberger's avatar Harald Freudenberger Committed by Heiko Carstens

s390/ap: rename and clarify ap state machine related stuff

There is a state machine held for each ap queue device.
The states and functions related to this where somethimes
noted with _sm_ somethimes without. This patch clarifies
and renames all the ap queue state machine related functions,
enums and defines to have a _sm_ in the name.

There is no functional change coming with this patch - it's
only beautifying code.
Signed-off-by: default avatarHarald Freudenberger <freude@linux.ibm.com>
Signed-off-by: default avatarHeiko Carstens <heiko.carstens@de.ibm.com>
parent 7e202acb
...@@ -342,13 +342,13 @@ static int ap_query_queue(ap_qid_t qid, int *queue_depth, int *device_type, ...@@ -342,13 +342,13 @@ static int ap_query_queue(ap_qid_t qid, int *queue_depth, int *device_type,
} }
} }
void ap_wait(enum ap_wait wait) void ap_wait(enum ap_sm_wait wait)
{ {
ktime_t hr_time; ktime_t hr_time;
switch (wait) { switch (wait) {
case AP_WAIT_AGAIN: case AP_SM_WAIT_AGAIN:
case AP_WAIT_INTERRUPT: case AP_SM_WAIT_INTERRUPT:
if (ap_using_interrupts()) if (ap_using_interrupts())
break; break;
if (ap_poll_kthread) { if (ap_poll_kthread) {
...@@ -356,7 +356,7 @@ void ap_wait(enum ap_wait wait) ...@@ -356,7 +356,7 @@ void ap_wait(enum ap_wait wait)
break; break;
} }
fallthrough; fallthrough;
case AP_WAIT_TIMEOUT: case AP_SM_WAIT_TIMEOUT:
spin_lock_bh(&ap_poll_timer_lock); spin_lock_bh(&ap_poll_timer_lock);
if (!hrtimer_is_queued(&ap_poll_timer)) { if (!hrtimer_is_queued(&ap_poll_timer)) {
hr_time = poll_timeout; hr_time = poll_timeout;
...@@ -365,7 +365,7 @@ void ap_wait(enum ap_wait wait) ...@@ -365,7 +365,7 @@ void ap_wait(enum ap_wait wait)
} }
spin_unlock_bh(&ap_poll_timer_lock); spin_unlock_bh(&ap_poll_timer_lock);
break; break;
case AP_WAIT_NONE: case AP_SM_WAIT_NONE:
default: default:
break; break;
} }
...@@ -382,7 +382,7 @@ void ap_request_timeout(struct timer_list *t) ...@@ -382,7 +382,7 @@ void ap_request_timeout(struct timer_list *t)
struct ap_queue *aq = from_timer(aq, t, timeout); struct ap_queue *aq = from_timer(aq, t, timeout);
spin_lock_bh(&aq->lock); spin_lock_bh(&aq->lock);
ap_wait(ap_sm_event(aq, AP_EVENT_TIMEOUT)); ap_wait(ap_sm_event(aq, AP_SM_EVENT_TIMEOUT));
spin_unlock_bh(&aq->lock); spin_unlock_bh(&aq->lock);
} }
...@@ -418,7 +418,7 @@ static void ap_tasklet_fn(unsigned long dummy) ...@@ -418,7 +418,7 @@ static void ap_tasklet_fn(unsigned long dummy)
{ {
int bkt; int bkt;
struct ap_queue *aq; struct ap_queue *aq;
enum ap_wait wait = AP_WAIT_NONE; enum ap_sm_wait wait = AP_SM_WAIT_NONE;
/* Reset the indicator if interrupts are used. Thus new interrupts can /* Reset the indicator if interrupts are used. Thus new interrupts can
* be received. Doing it in the beginning of the tasklet is therefor * be received. Doing it in the beginning of the tasklet is therefor
...@@ -430,7 +430,7 @@ static void ap_tasklet_fn(unsigned long dummy) ...@@ -430,7 +430,7 @@ static void ap_tasklet_fn(unsigned long dummy)
spin_lock_bh(&ap_queues_lock); spin_lock_bh(&ap_queues_lock);
hash_for_each(ap_queues, bkt, aq, hnode) { hash_for_each(ap_queues, bkt, aq, hnode) {
spin_lock_bh(&aq->lock); spin_lock_bh(&aq->lock);
wait = min(wait, ap_sm_event_loop(aq, AP_EVENT_POLL)); wait = min(wait, ap_sm_event_loop(aq, AP_SM_EVENT_POLL));
spin_unlock_bh(&aq->lock); spin_unlock_bh(&aq->lock);
} }
spin_unlock_bh(&ap_queues_lock); spin_unlock_bh(&ap_queues_lock);
...@@ -1370,7 +1370,7 @@ static void _ap_scan_bus_adapter(int id) ...@@ -1370,7 +1370,7 @@ static void _ap_scan_bus_adapter(int id)
borked = 1; borked = 1;
else { else {
spin_lock_bh(&aq->lock); spin_lock_bh(&aq->lock);
borked = aq->state == AP_STATE_BORKED; borked = aq->sm_state == AP_SM_STATE_BORKED;
spin_unlock_bh(&aq->lock); spin_unlock_bh(&aq->lock);
} }
if (borked) { if (borked) {
......
...@@ -83,39 +83,39 @@ static inline int ap_test_bit(unsigned int *ptr, unsigned int nr) ...@@ -83,39 +83,39 @@ static inline int ap_test_bit(unsigned int *ptr, unsigned int nr)
#define AP_INTR_ENABLED 1 /* AP interrupt enabled */ #define AP_INTR_ENABLED 1 /* AP interrupt enabled */
/* /*
* AP device states * AP queue state machine states
*/ */
enum ap_state { enum ap_sm_state {
AP_STATE_RESET_START, AP_SM_STATE_RESET_START,
AP_STATE_RESET_WAIT, AP_SM_STATE_RESET_WAIT,
AP_STATE_SETIRQ_WAIT, AP_SM_STATE_SETIRQ_WAIT,
AP_STATE_IDLE, AP_SM_STATE_IDLE,
AP_STATE_WORKING, AP_SM_STATE_WORKING,
AP_STATE_QUEUE_FULL, AP_SM_STATE_QUEUE_FULL,
AP_STATE_REMOVE, /* about to be removed from driver */ AP_SM_STATE_REMOVE, /* about to be removed from driver */
AP_STATE_UNBOUND, /* momentary not bound to a driver */ AP_SM_STATE_UNBOUND, /* momentary not bound to a driver */
AP_STATE_BORKED, /* broken */ AP_SM_STATE_BORKED, /* broken */
NR_AP_STATES NR_AP_SM_STATES
}; };
/* /*
* AP device events * AP queue state machine events
*/ */
enum ap_event { enum ap_sm_event {
AP_EVENT_POLL, AP_SM_EVENT_POLL,
AP_EVENT_TIMEOUT, AP_SM_EVENT_TIMEOUT,
NR_AP_EVENTS NR_AP_SM_EVENTS
}; };
/* /*
* AP wait behaviour * AP queue state wait behaviour
*/ */
enum ap_wait { enum ap_sm_wait {
AP_WAIT_AGAIN, /* retry immediately */ AP_SM_WAIT_AGAIN, /* retry immediately */
AP_WAIT_TIMEOUT, /* wait for timeout */ AP_SM_WAIT_TIMEOUT, /* wait for timeout */
AP_WAIT_INTERRUPT, /* wait for thin interrupt (if available) */ AP_SM_WAIT_INTERRUPT, /* wait for thin interrupt (if available) */
AP_WAIT_NONE, /* no wait */ AP_SM_WAIT_NONE, /* no wait */
NR_AP_WAIT NR_AP_SM_WAIT
}; };
struct ap_device; struct ap_device;
...@@ -172,7 +172,7 @@ struct ap_queue { ...@@ -172,7 +172,7 @@ struct ap_queue {
ap_qid_t qid; /* AP queue id. */ ap_qid_t qid; /* AP queue id. */
int interrupt; /* indicate if interrupts are enabled */ int interrupt; /* indicate if interrupts are enabled */
int queue_count; /* # messages currently on AP queue. */ int queue_count; /* # messages currently on AP queue. */
enum ap_state state; /* State of the AP device. */ enum ap_sm_state sm_state; /* ap queue state machine state */
int pendingq_count; /* # requests on pendingq list. */ int pendingq_count; /* # requests on pendingq list. */
int requestq_count; /* # requests on requestq list. */ int requestq_count; /* # requests on requestq list. */
u64 total_request_count; /* # requests ever for this AP device.*/ u64 total_request_count; /* # requests ever for this AP device.*/
...@@ -185,7 +185,7 @@ struct ap_queue { ...@@ -185,7 +185,7 @@ struct ap_queue {
#define to_ap_queue(x) container_of((x), struct ap_queue, ap_dev.device) #define to_ap_queue(x) container_of((x), struct ap_queue, ap_dev.device)
typedef enum ap_wait (ap_func_t)(struct ap_queue *queue); typedef enum ap_sm_wait (ap_func_t)(struct ap_queue *queue);
struct ap_message { struct ap_message {
struct list_head list; /* Request queueing. */ struct list_head list; /* Request queueing. */
...@@ -231,15 +231,15 @@ static inline void ap_release_message(struct ap_message *ap_msg) ...@@ -231,15 +231,15 @@ static inline void ap_release_message(struct ap_message *ap_msg)
int ap_send(ap_qid_t, unsigned long long, void *, size_t); int ap_send(ap_qid_t, unsigned long long, void *, size_t);
int ap_recv(ap_qid_t, unsigned long long *, void *, size_t); int ap_recv(ap_qid_t, unsigned long long *, void *, size_t);
enum ap_wait ap_sm_event(struct ap_queue *aq, enum ap_event event); enum ap_sm_wait ap_sm_event(struct ap_queue *aq, enum ap_sm_event event);
enum ap_wait ap_sm_event_loop(struct ap_queue *aq, enum ap_event event); enum ap_sm_wait ap_sm_event_loop(struct ap_queue *aq, enum ap_sm_event event);
void ap_queue_message(struct ap_queue *aq, struct ap_message *ap_msg); void ap_queue_message(struct ap_queue *aq, struct ap_message *ap_msg);
void ap_cancel_message(struct ap_queue *aq, struct ap_message *ap_msg); void ap_cancel_message(struct ap_queue *aq, struct ap_message *ap_msg);
void ap_flush_queue(struct ap_queue *aq); void ap_flush_queue(struct ap_queue *aq);
void *ap_airq_ptr(void); void *ap_airq_ptr(void);
void ap_wait(enum ap_wait wait); void ap_wait(enum ap_sm_wait wait);
void ap_request_timeout(struct timer_list *t); void ap_request_timeout(struct timer_list *t);
void ap_bus_force_rescan(void); void ap_bus_force_rescan(void);
......
This diff is collapsed.
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment