Skip to content

Commit

Permalink
---
Browse files Browse the repository at this point in the history
yaml
---
r: 302764
b: refs/heads/master
c: d9792ed
h: refs/heads/master
v: v3
  • Loading branch information
Lai Jiangshan authored and Paul E. McKenney committed Apr 30, 2012
1 parent e04479c commit 1f7c429
Show file tree
Hide file tree
Showing 2 changed files with 15 additions and 14 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: dc87917501e324701dbfb249def44054b5220187
refs/heads/master: d9792edd7a9a0858a3b1df92cf8beb31e4191e3c
27 changes: 14 additions & 13 deletions trunk/kernel/srcu.c
Original file line number Diff line number Diff line change
Expand Up @@ -266,26 +266,27 @@ EXPORT_SYMBOL_GPL(__srcu_read_unlock);
* we repeatedly block for 1-millisecond time periods. This approach
* has done well in testing, so there is no need for a config parameter.
*/
#define SYNCHRONIZE_SRCU_READER_DELAY 5
#define SYNCHRONIZE_SRCU_READER_DELAY 5
#define SYNCHRONIZE_SRCU_TRYCOUNT 2
#define SYNCHRONIZE_SRCU_EXP_TRYCOUNT 12

/*
* Wait until all pre-existing readers complete. Such readers
* will have used the index specified by "idx".
*/
static void wait_idx(struct srcu_struct *sp, int idx, bool expedited)
static void wait_idx(struct srcu_struct *sp, int idx, int trycount)
{
int trycount = 0;

/*
* SRCU read-side critical sections are normally short, so wait
* a small amount of time before possibly blocking.
*/
if (!srcu_readers_active_idx_check(sp, idx)) {
udelay(SYNCHRONIZE_SRCU_READER_DELAY);
while (!srcu_readers_active_idx_check(sp, idx)) {
if (expedited && ++ trycount < 10)
if (trycount > 0) {
trycount--;
udelay(SYNCHRONIZE_SRCU_READER_DELAY);
else
} else
schedule_timeout_interruptible(1);
}
}
Expand All @@ -299,7 +300,7 @@ static void srcu_flip(struct srcu_struct *sp)
/*
* Helper function for synchronize_srcu() and synchronize_srcu_expedited().
*/
static void __synchronize_srcu(struct srcu_struct *sp, bool expedited)
static void __synchronize_srcu(struct srcu_struct *sp, int trycount)
{
int busy_idx;

Expand All @@ -319,8 +320,8 @@ static void __synchronize_srcu(struct srcu_struct *sp, bool expedited)
* have completed:
*
* __synchronize_srcu() {
* wait_idx(sp, 0, expedited);
* wait_idx(sp, 1, expedited);
* wait_idx(sp, 0, trycount);
* wait_idx(sp, 1, trycount);
* }
*
* Starvation is prevented by the fact that we flip the index.
Expand All @@ -344,13 +345,13 @@ static void __synchronize_srcu(struct srcu_struct *sp, bool expedited)
* this call to wait_idx(), which waits on really old readers
* describe in this comment above, will almost never need to wait.
*/
wait_idx(sp, 1 - busy_idx, expedited);
wait_idx(sp, 1 - busy_idx, trycount);

/* Flip the index to avoid reader-induced starvation. */
srcu_flip(sp);

/* Wait for recent pre-existing readers. */
wait_idx(sp, busy_idx, expedited);
wait_idx(sp, busy_idx, trycount);

mutex_unlock(&sp->mutex);
}
Expand All @@ -371,7 +372,7 @@ static void __synchronize_srcu(struct srcu_struct *sp, bool expedited)
*/
void synchronize_srcu(struct srcu_struct *sp)
{
__synchronize_srcu(sp, 0);
__synchronize_srcu(sp, SYNCHRONIZE_SRCU_TRYCOUNT);
}
EXPORT_SYMBOL_GPL(synchronize_srcu);

Expand All @@ -392,7 +393,7 @@ EXPORT_SYMBOL_GPL(synchronize_srcu);
*/
void synchronize_srcu_expedited(struct srcu_struct *sp)
{
__synchronize_srcu(sp, 1);
__synchronize_srcu(sp, SYNCHRONIZE_SRCU_EXP_TRYCOUNT);
}
EXPORT_SYMBOL_GPL(synchronize_srcu_expedited);

Expand Down

0 comments on commit 1f7c429

Please sign in to comment.