Skip to content

Commit

Permalink
[Kernel] Add flag in wait queue and fix wakeup issue.
Browse files Browse the repository at this point in the history
  • Loading branch information
BernardXiong committed Jun 26, 2018
1 parent 6ecdfca commit a1a56ce
Show file tree
Hide file tree
Showing 6 changed files with 68 additions and 24 deletions.
4 changes: 2 additions & 2 deletions components/dfs/filesystems/net/net_sockets.c
Original file line number Diff line number Diff line change
Expand Up @@ -141,7 +141,7 @@ int accept(int s, struct sockaddr *addr, socklen_t *addrlen)
d->fops = dfs_net_get_fops();
/* initialize wait head */
lwsock = lwip_tryget_socket(new_client);
rt_list_init(&(lwsock->wait_head));
rt_wqueue_init(&(lwsock->wait_head));

d->flags = O_RDWR; /* set flags as read and write */
d->size = 0;
Expand Down Expand Up @@ -317,7 +317,7 @@ int socket(int domain, int type, int protocol)
d->data = (void *) sock;

lwsock = lwip_tryget_socket(sock);
rt_list_init(&(lwsock->wait_head));
rt_wqueue_init(&(lwsock->wait_head));
lwsock->conn->callback = event_callback;
}
else
Expand Down
14 changes: 12 additions & 2 deletions components/drivers/include/ipc/waitqueue.h
Original file line number Diff line number Diff line change
Expand Up @@ -3,9 +3,10 @@

#include <rtthread.h>

struct rt_wqueue_node;
#define RT_WQ_FLAG_CLEAN 0x00
#define RT_WQ_FLAG_WAKEUP 0x01

typedef rt_list_t rt_wqueue_t;
struct rt_wqueue_node;
typedef int (*rt_wqueue_func_t)(struct rt_wqueue_node *wait, void *key);

struct rt_wqueue_node
Expand All @@ -20,6 +21,14 @@ typedef struct rt_wqueue_node rt_wqueue_node_t;

int __wqueue_default_wake(struct rt_wqueue_node *wait, void *key);

rt_inline void rt_wqueue_init(rt_wqueue_t *queue)
{
RT_ASSERT(queue != RT_NULL);

queue->flag = RT_WQ_FLAG_CLEAN;
rt_list_init(&(queue->waiting_list));
}

void rt_wqueue_add(rt_wqueue_t *queue, struct rt_wqueue_node *node);
void rt_wqueue_remove(struct rt_wqueue_node *node);
int rt_wqueue_wait(rt_wqueue_t *queue, int condition, int timeout);
Expand All @@ -37,3 +46,4 @@ void rt_wqueue_wakeup(rt_wqueue_t *queue, void *key);
#define DEFINE_WAIT(name) DEFINE_WAIT_FUNC(name, __wqueue_default_wake)

#endif

4 changes: 2 additions & 2 deletions components/drivers/src/pipe.c
Original file line number Diff line number Diff line change
Expand Up @@ -438,8 +438,8 @@ rt_pipe_t *rt_pipe_create(const char *name, int bufsz)

rt_memset(pipe, 0, sizeof(rt_pipe_t));
rt_mutex_init(&(pipe->lock), name, RT_IPC_FLAG_FIFO);
rt_list_init(&(pipe->reader_queue));
rt_list_init(&(pipe->writer_queue));
rt_wqueue_init(&(pipe->reader_queue));
rt_wqueue_init(&(pipe->writer_queue));

RT_ASSERT(bufsz < 0xFFFF);
pipe->bufsz = bufsz;
Expand Down
48 changes: 32 additions & 16 deletions components/drivers/src/waitqueue.c
Original file line number Diff line number Diff line change
Expand Up @@ -4,14 +4,12 @@
#include <rtdevice.h>
#include <rtservice.h>

extern struct rt_thread *rt_current_thread;

void rt_wqueue_add(rt_wqueue_t *queue, struct rt_wqueue_node *node)
{
rt_base_t level;

level = rt_hw_interrupt_disable();
rt_list_insert_before(queue, &(node->list));
rt_list_insert_before(&(queue->waiting_list), &(node->list));
rt_hw_interrupt_enable(level);
}

Expand All @@ -34,24 +32,30 @@ void rt_wqueue_wakeup(rt_wqueue_t *queue, void *key)
rt_base_t level;
register int need_schedule = 0;

rt_list_t *queue_list;
struct rt_list_node *node;
struct rt_wqueue_node *entry;

if (rt_list_isempty(queue))
return;
queue_list = &(queue->waiting_list);

level = rt_hw_interrupt_disable();
for (node = queue->next; node != queue; node = node->next)
/* set wakeup flag in the queue */
queue->flag = RT_WQ_FLAG_WAKEUP;

if (!(rt_list_isempty(queue_list)))
{
entry = rt_list_entry(node, struct rt_wqueue_node, list);
if (entry->wakeup(entry, key) == 0)
{
rt_thread_resume(entry->polling_thread);
need_schedule = 1;

rt_wqueue_remove(entry);
break;
}
for (node = queue_list->next; node != queue_list; node = node->next)
{
entry = rt_list_entry(node, struct rt_wqueue_node, list);
if (entry->wakeup(entry, key) == 0)
{
rt_thread_resume(entry->polling_thread);
need_schedule = 1;

rt_wqueue_remove(entry);
break;
}
}
}
rt_hw_interrupt_enable(level);

Expand All @@ -62,7 +66,7 @@ void rt_wqueue_wakeup(rt_wqueue_t *queue, void *key)
int rt_wqueue_wait(rt_wqueue_t *queue, int condition, int msec)
{
int tick;
rt_thread_t tid = rt_current_thread;
rt_thread_t tid = rt_thread_self();
rt_timer_t tmr = &(tid->thread_timer);
struct rt_wqueue_node __wait;
rt_base_t level;
Expand All @@ -81,6 +85,12 @@ int rt_wqueue_wait(rt_wqueue_t *queue, int condition, int msec)
rt_list_init(&__wait.list);

level = rt_hw_interrupt_disable();
if (queue->flag == RT_WQ_FLAG_WAKEUP)
{
/* already wakeup */
goto __exit_wakeup;
}

rt_wqueue_add(queue, &__wait);
rt_thread_suspend(tid);

Expand All @@ -97,6 +107,12 @@ int rt_wqueue_wait(rt_wqueue_t *queue, int condition, int msec)

rt_schedule();

level = rt_hw_interrupt_disable();

__exit_wakeup:
queue->flag = 0;
rt_hw_interrupt_enable(level);

rt_wqueue_remove(&__wait);

return 0;
Expand Down
17 changes: 16 additions & 1 deletion include/rtdef.h
Original file line number Diff line number Diff line change
Expand Up @@ -848,6 +848,9 @@ enum rt_device_class_type
#define RT_DEVICE_CTRL_RTC_SET_ALARM 0x13 /**< set alarm */

typedef struct rt_device *rt_device_t;
/**
* operations set for device object
*/
struct rt_device_ops
{
/* common device interface */
Expand All @@ -859,6 +862,18 @@ struct rt_device_ops
rt_err_t (*control)(rt_device_t dev, int cmd, void *args);
};

#if defined(RT_USING_POSIX)
/**
* WaitQueue structure
*/
struct rt_wqueue
{
rt_uint32_t flag;
rt_list_t waiting_list;
};
typedef struct rt_wqueue rt_wqueue_t;
#endif

/**
* Device structure
*/
Expand Down Expand Up @@ -891,7 +906,7 @@ struct rt_device

#if defined(RT_USING_POSIX)
const struct dfs_file_ops *fops;
rt_list_t wait_queue;
struct rt_wqueue wait_queue;
#endif

void *user_data; /**< device private data */
Expand Down
5 changes: 4 additions & 1 deletion src/device.c
Original file line number Diff line number Diff line change
Expand Up @@ -29,6 +29,9 @@
*/

#include <rtthread.h>
#if defined(RT_USING_POSIX)
#include <rtdevice.h> /* for wqueue_init */
#endif

#ifdef RT_USING_DEVICE

Expand Down Expand Up @@ -74,7 +77,7 @@ rt_err_t rt_device_register(rt_device_t dev,

#if defined(RT_USING_POSIX)
dev->fops = RT_NULL;
rt_list_init(&(dev->wait_queue));
rt_wqueue_init(&(dev->wait_queue));
#endif

return RT_EOK;
Expand Down

0 comments on commit a1a56ce

Please sign in to comment.