Skip to content

Commit

Permalink
---
Browse files Browse the repository at this point in the history
yaml
---
r: 218623
b: refs/heads/master
c: 231f3d3
h: refs/heads/master
i:
  218621: 210fc5f
  218619: 89333fe
  218615: f9c9dd1
  218607: a4c7d9a
  218591: 6f5ca35
  218559: d808516
  218495: 166c1fd
  218367: 31b7343
  218111: 66d32e6
v: v3
  • Loading branch information
Andrew Morton authored and Linus Torvalds committed Oct 28, 2010
1 parent 11bcbf9 commit b377a33
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 4 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: 61d8e11e519ee7912ab59610fba1aaf08e3c1d84
refs/heads/master: 231f3d393f63f6e3b505afa179999bba491d0f08
6 changes: 3 additions & 3 deletions trunk/fs/select.c
Original file line number Diff line number Diff line change
Expand Up @@ -67,7 +67,7 @@ static long __estimate_accuracy(struct timespec *tv)
return slack;
}

static long estimate_accuracy(struct timespec *tv)
static long select_estimate_accuracy(struct timespec *tv)
{
unsigned long ret;
struct timespec now;
Expand Down Expand Up @@ -417,7 +417,7 @@ int do_select(int n, fd_set_bits *fds, struct timespec *end_time)
}

if (end_time && !timed_out)
slack = estimate_accuracy(end_time);
slack = select_estimate_accuracy(end_time);

retval = 0;
for (;;) {
Expand Down Expand Up @@ -769,7 +769,7 @@ static int do_poll(unsigned int nfds, struct poll_list *list,
}

if (end_time && !timed_out)
slack = estimate_accuracy(end_time);
slack = select_estimate_accuracy(end_time);

for (;;) {
struct poll_list *walk;
Expand Down

0 comments on commit b377a33

Please sign in to comment.