Skip to content

Commit

Permalink
---
Browse files Browse the repository at this point in the history
yaml
---
r: 69075
b: refs/heads/master
c: 368059a
h: refs/heads/master
i:
  69073: f49b89a
  69071: 205de0d
v: v3
  • Loading branch information
Peter Zijlstra authored and Ingo Molnar committed Oct 15, 2007
1 parent c79bff8 commit 0423706
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 3 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: 02e4bac2a5b097e23d757bf2953740b3d51b7976
refs/heads/master: 368059a977871def0f88a92eefb6ecc1f7b6132f
4 changes: 2 additions & 2 deletions trunk/kernel/sched_fair.c
Original file line number Diff line number Diff line change
Expand Up @@ -117,8 +117,8 @@ static inline struct task_struct *task_of(struct sched_entity *se)
static inline u64
max_vruntime(u64 min_vruntime, u64 vruntime)
{
if ((vruntime > min_vruntime) ||
(min_vruntime > (1ULL << 61) && vruntime < (1ULL << 50)))
s64 delta = (s64)(vruntime - min_vruntime);
if (delta > 0)
min_vruntime = vruntime;

return min_vruntime;
Expand Down

0 comments on commit 0423706

Please sign in to comment.