Re: [patch 13/18] x86, ds: add leakage warning

From: Ingo Molnar
Date: Thu Apr 02 2009 - 15:28:25 EST



* markus.t.metzger@xxxxxxxxx <markus.t.metzger@xxxxxxxxx> wrote:

> +static inline void ds_warn_leak(struct task_struct *tsk)
> +{
> + WARN(tsk->thread.ds_ctx, "leaking DS context\n");
> +}

> + ds_warn_leak(tsk);

since we normally expect X86_DS enabled i'd suggest this
simplification: always have thread.ds_ctx around so the WARN_ON can
go there unconditionally. (it wont trigger in the !DS case)

> struct task_struct;
> struct mm_struct;
> +struct ds_context;

why is this needed in processor.h?

ds.h should be split into ds_types.h and ds_api.h, with the pure
data type definitions in ds_types.h. processor.h (which needs to
know about the DS context type) then includes ds_types.h - which
is a lightweight header.

Actual DS using facilities also disable ds_api.h.

This keeps data types nicely separated from methods and inlines.

Ingo
--
To unsubscribe from this list: send the line "unsubscribe linux-kernel" in
the body of a message to majordomo@xxxxxxxxxxxxxxx
More majordomo info at http://vger.kernel.org/majordomo-info.html
Please read the FAQ at http://www.tux.org/lkml/