Hi all,
Thanks for the prompt reply about 2.4.13.
I applied the patch after I'd applied the win4lin and mki patches and it
fails. The .rej file is included after this message. If you need any further
info I'll try and supply it.
Thanks
Robyn
This file is sched.h.rej from /usr/src/linux/include/linux/sched.h.rej
***************
*** 399,404 ****
u32 self_exec_id;
/* Protection of (de-)allocation: mm, files, fs, tty */
spinlock_t alloc_lock;
};
/*
--- 399,407 ----
u32 self_exec_id;
/* Protection of (de-)allocation: mm, files, fs, tty */
spinlock_t alloc_lock;
+
+ /* journalling filesystem info */
+ void *journal_info;
};
/*
***************
*** 485,491 ****
sig: &init_signals, \
pending: { NULL, &tsk.pending.head, {{0}}}, \
blocked: {{0}}, \
- alloc_lock: SPIN_LOCK_UNLOCKED
\ }
--- 488,495 ----
sig: &init_signals, \
pending: { NULL, &tsk.pending.head, {{0}}}, \
blocked: {{0}}, \
+ alloc_lock: SPIN_LOCK_UNLOCKED,
\+ journal_info: NULL \
}
Hi, On Thu, Nov 08, 2001 at 02:19:48AM +1030, Robyn Manning wrote:> Thanks for the prompt reply about 2.4.13. > > I applied the patch after I'd applied the win4lin and mki patches and it > fails. The .rej file is included after this message. If you need any further > info I'll try and supply it.Given that I don't have the mki patches here, it's hard to be particularly helpful, but both of the rejects appear to come in the places where ext3 adds a single field to (2) the "struct task" process structure, and (1) the initialisation of that struct. Just add the chunks that the ext3 patch is adding manually in each case and it should work. Cheers, Stephen