mirror of
https://git.kernel.org/pub/scm/linux/kernel/git/stable/linux.git
synced 2024-11-01 17:08:10 +00:00
2a7156b9e8
We can convert this file to using export.h since it only wants to export symbols, but when we do we'll see also that it was implicitly getting notifier.h from module.h via this failure: CC arch/powerpc/platforms/cell/spu_notify.o arch/powerpc/platforms/cell/spu_notify.c:28: warning: type defaults to 'int' in declaration of 'BLOCKING_NOTIFIER_HEAD' arch/powerpc/platforms/cell/spu_notify.c:28: warning: parameter names (without types) in function declaration arch/powerpc/platforms/cell/spu_notify.c: In function 'spu_switch_notify': arch/powerpc/platforms/cell/spu_notify.c:32: error: implicit declaration of function 'blocking_notifier_call_chain' arch/powerpc/platforms/cell/spu_notify.c:32: error: 'spu_switch_notifier' undeclared (first use in this function) Signed-off-by: Paul Gortmaker <paul.gortmaker@windriver.com>
68 lines
2 KiB
C
68 lines
2 KiB
C
/*
|
|
* Move OProfile dependencies from spufs module to the kernel so it
|
|
* can run on non-cell PPC.
|
|
*
|
|
* Copyright (C) IBM 2005
|
|
*
|
|
* This program is free software; you can redistribute it and/or modify
|
|
* it under the terms of the GNU General Public License as published by
|
|
* the Free Software Foundation; either version 2, or (at your option)
|
|
* any later version.
|
|
*
|
|
* This program is distributed in the hope that it will be useful,
|
|
* but WITHOUT ANY WARRANTY; without even the implied warranty of
|
|
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
|
|
* GNU General Public License for more details.
|
|
*
|
|
* You should have received a copy of the GNU General Public License
|
|
* along with this program; if not, write to the Free Software
|
|
* Foundation, Inc., 675 Mass Ave, Cambridge, MA 02139, USA.
|
|
*/
|
|
|
|
#undef DEBUG
|
|
|
|
#include <linux/export.h>
|
|
#include <linux/notifier.h>
|
|
#include <asm/spu.h>
|
|
#include "spufs/spufs.h"
|
|
|
|
static BLOCKING_NOTIFIER_HEAD(spu_switch_notifier);
|
|
|
|
void spu_switch_notify(struct spu *spu, struct spu_context *ctx)
|
|
{
|
|
blocking_notifier_call_chain(&spu_switch_notifier,
|
|
ctx ? ctx->object_id : 0, spu);
|
|
}
|
|
EXPORT_SYMBOL_GPL(spu_switch_notify);
|
|
|
|
int spu_switch_event_register(struct notifier_block *n)
|
|
{
|
|
int ret;
|
|
ret = blocking_notifier_chain_register(&spu_switch_notifier, n);
|
|
if (!ret)
|
|
notify_spus_active();
|
|
return ret;
|
|
}
|
|
EXPORT_SYMBOL_GPL(spu_switch_event_register);
|
|
|
|
int spu_switch_event_unregister(struct notifier_block *n)
|
|
{
|
|
return blocking_notifier_chain_unregister(&spu_switch_notifier, n);
|
|
}
|
|
EXPORT_SYMBOL_GPL(spu_switch_event_unregister);
|
|
|
|
void spu_set_profile_private_kref(struct spu_context *ctx,
|
|
struct kref *prof_info_kref,
|
|
void (* prof_info_release) (struct kref *kref))
|
|
{
|
|
ctx->prof_priv_kref = prof_info_kref;
|
|
ctx->prof_priv_release = prof_info_release;
|
|
}
|
|
EXPORT_SYMBOL_GPL(spu_set_profile_private_kref);
|
|
|
|
void *spu_get_profile_private_kref(struct spu_context *ctx)
|
|
{
|
|
return ctx->prof_priv_kref;
|
|
}
|
|
EXPORT_SYMBOL_GPL(spu_get_profile_private_kref);
|
|
|