On Mon, Dec 18, 2006 at 10:21:34PM -0800, Ulrich Drepper ([EMAIL PROTECTED])
wrote:
> Evgeniy Polyakov wrote:
> >I've uploaded the latest changes to the homepage.
>
> Thanks. But could you now update the patch so that it can be compiled
> with the current upstream kernel? At least <linux/kevent.h> has
> problems because of file->st accesses.
file->st is only defined for poll/select events, if it is not specified
at compile time, functions in linux/kevent.h becomes void:
#ifdef CONFIG_KEVENT_POLL
static inline void kevent_init_file(struct file *file)
{
kevent_storage_init(file, &file->st);
}
static inline void kevent_cleanup_file(struct file *file)
{
kevent_storage_fini(&file->st);
}
#else
static inline void kevent_init_file(struct file *file) {}
static inline void kevent_cleanup_file(struct file *file) {}
#endif
What error messages do you see and what are kevent related config
changes?
> --
> ➧ Ulrich Drepper ➧ Red Hat, Inc. ➧ 444 Castro St ➧ Mountain View,
> CA ❖
--
Evgeniy Polyakov
-
To unsubscribe from this list: send the line "unsubscribe linux-kernel" in
the body of a message to [EMAIL PROTECTED]
More majordomo info at http://vger.kernel.org/majordomo-info.html
Please read the FAQ at http://www.tux.org/lkml/