Skip to content

Commit

Permalink
---
Browse files Browse the repository at this point in the history
yaml
---
r: 46279
b: refs/heads/master
c: 3fb4a25
h: refs/heads/master
i:
  46277: 7c7d1d6
  46275: 902e888
  46271: 1a9e5b7
v: v3
  • Loading branch information
Patrick Caulfield authored and Steven Whitehouse committed Feb 5, 2007
1 parent ccf5357 commit 9c0da3b
Show file tree
Hide file tree
Showing 3 changed files with 5 additions and 5 deletions.
2 changes: 1 addition & 1 deletion [refs]
Original file line number Diff line number Diff line change
@@ -1,2 +1,2 @@
---
refs/heads/master: 5509826f1e548d14bb888c1cb6e3bbf23f855770
refs/heads/master: 3fb4a251febe70e4c65ea8250545b391fd414d5a
4 changes: 2 additions & 2 deletions trunk/fs/dlm/lowcomms-sctp.c
Original file line number Diff line number Diff line change
Expand Up @@ -1109,7 +1109,7 @@ static int dlm_recvd(void *data)
set_current_state(TASK_INTERRUPTIBLE);
add_wait_queue(&lowcomms_recv_wait, &wait);
if (!test_bit(CF_READ_PENDING, &sctp_con.flags))
cond_resched();
schedule();
remove_wait_queue(&lowcomms_recv_wait, &wait);
set_current_state(TASK_RUNNING);

Expand Down Expand Up @@ -1141,7 +1141,7 @@ static int dlm_sendd(void *data)
while (!kthread_should_stop()) {
set_current_state(TASK_INTERRUPTIBLE);
if (write_list_empty())
cond_resched();
schedule();
set_current_state(TASK_RUNNING);

if (sctp_con.eagain_flag) {
Expand Down
4 changes: 2 additions & 2 deletions trunk/fs/dlm/lowcomms-tcp.c
Original file line number Diff line number Diff line change
Expand Up @@ -996,7 +996,7 @@ static int dlm_recvd(void *data)
while (!kthread_should_stop()) {
set_current_state(TASK_INTERRUPTIBLE);
if (read_list_empty())
cond_resched();
schedule();
set_current_state(TASK_RUNNING);

process_sockets();
Expand Down Expand Up @@ -1030,7 +1030,7 @@ static int dlm_sendd(void *data)
while (!kthread_should_stop()) {
set_current_state(TASK_INTERRUPTIBLE);
if (write_and_state_lists_empty())
cond_resched();
schedule();
set_current_state(TASK_RUNNING);

process_state_queue();
Expand Down

0 comments on commit 9c0da3b

Please sign in to comment.