[RESEND PATCH v6 05/14] drm/print: rename drm_debug* to be more syslog-centric
jim.cromie at gmail.com
jim.cromie at gmail.com
Wed Jul 28 16:13:58 UTC 2021
On Wed, Jul 21, 2021 at 1:55 PM Sean Paul <sean at poorly.run> wrote:
>
> From: Sean Paul <seanpaul at chromium.org>
>
> In preparation for tracefs support, rename drm_debug related functions
> to reflect that it targets the syslog. This will allow us to selectively
> target syslog and/or tracefs.
>
> No functional changes here.
>
...
> +static inline bool drm_debug_syslog_enabled(enum drm_debug_category category)
> +{
> + return unlikely(__drm_debug_syslog & category);
> +}
> +
> static inline bool drm_debug_enabled(enum drm_debug_category category)
> {
> - return unlikely(__drm_debug & category);
> + return drm_debug_syslog_enabled(category);
> }
>
ok so the distinction is this has 2 drm_debug_enabled() fns,
allowing separate decisions later.
IIUC, in the long run, @danvet wants 0 of these.
More information about the dri-devel
mailing list