Skip to content

Commit

Permalink
---
Browse files Browse the repository at this point in the history
yaml
---
r: 73820
b: refs/heads/master
c: 330a9c1
h: refs/heads/master
v: v3
  • Loading branch information
Haavard Skinnemoen committed Nov 15, 2007
1 parent ab4e091 commit 0d7e5f4
Show file tree
Hide file tree
Showing 4 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: d32ddd8f20e7d7a49c45c337c2079be03c77dc41
refs/heads/master: 330a9c1df63ca5043c468698da0a1853fd6778bb
2 changes: 1 addition & 1 deletion trunk/include/pcmcia/cs_types.h
Original file line number Diff line number Diff line change
Expand Up @@ -21,7 +21,7 @@
#include <sys/types.h>
#endif

#if defined(__arm__) || defined(__mips__)
#if defined(__arm__) || defined(__mips__) || defined(__avr32__)
/* This (ioaddr_t) is exposed to userspace & hence cannot be changed. */
typedef u_int ioaddr_t;
#else
Expand Down
3 changes: 2 additions & 1 deletion trunk/kernel/exit.c
Original file line number Diff line number Diff line change
Expand Up @@ -1386,7 +1386,8 @@ static int wait_task_stopped(struct task_struct *p, int delayed_group_leader,
int why = (p->ptrace & PT_PTRACED) ? CLD_TRAPPED : CLD_STOPPED;

exit_code = p->exit_code;
if (unlikely(!exit_code) || unlikely(p->exit_state))
if (unlikely(!exit_code) ||
unlikely(p->state & TASK_TRACED))
goto bail_ref;
return wait_noreap_copyout(p, pid, uid,
why, (exit_code << 8) | 0x7f,
Expand Down
3 changes: 1 addition & 2 deletions trunk/mm/slob.c
Original file line number Diff line number Diff line change
Expand Up @@ -321,8 +321,7 @@ static void *slob_alloc(size_t size, gfp_t gfp, int align, int node)
/* Improve fragment distribution and reduce our average
* search time by starting our next search here. (see
* Knuth vol 1, sec 2.5, pg 449) */
if (prev != free_slob_pages.prev &&
free_slob_pages.next != prev->next)
if (free_slob_pages.next != prev->next)
list_move_tail(&free_slob_pages, prev->next);
break;
}
Expand Down

0 comments on commit 0d7e5f4

Please sign in to comment.