Deleted Added
full compact
28c28
< * $FreeBSD: head/sys/compat/linux/linux_misc.c 113579 2003-04-16 20:43:10Z jhb $
---
> * $FreeBSD: head/sys/compat/linux/linux_misc.c 113613 2003-04-17 22:02:47Z jhb $
166a167
> struct proc *p;
180,181c181,183
< PROC_LOCK(td->td_proc);
< old_it = td->td_proc->p_realtimer;
---
> p = td->td_proc;
> PROC_LOCK(p);
> old_it = p->p_realtimer;
184c186
< callout_stop(&td->td_proc->p_itcallout);
---
> callout_stop(&p->p_itcallout);
186,187c188,189
< callout_reset(&td->td_proc->p_itcallout, tvtohz(&it.it_value),
< realitexpire, td->td_proc);
---
> callout_reset(&p->p_itcallout, tvtohz(&it.it_value),
> realitexpire, p);
190,191c192,193
< td->td_proc->p_realtimer = it;
< PROC_UNLOCK(td->td_proc);
---
> p->p_realtimer = it;
> PROC_UNLOCK(p);
811a814
> struct proc *p;
831,833c834,837
< PROC_LOCK(td->td_proc);
< SIGDELSET(td->td_proc->p_siglist, SIGCHLD);
< PROC_UNLOCK(td->td_proc);
---
> p = td->td_proc;
> PROC_LOCK(p);
> SIGDELSET(p->p_siglist, SIGCHLD);
> PROC_UNLOCK(p);