2019-05-29 01:10:04 +08:00
|
|
|
// SPDX-License-Identifier: GPL-2.0-only
|
2010-12-30 17:26:37 +08:00
|
|
|
/*
|
|
|
|
* Copyright (c) 2010, Intel Corporation.
|
|
|
|
*
|
|
|
|
* Author: John Fastabend <john.r.fastabend@intel.com>
|
|
|
|
*/
|
|
|
|
|
|
|
|
#include <linux/rtnetlink.h>
|
|
|
|
#include <linux/notifier.h>
|
2011-07-15 23:47:34 +08:00
|
|
|
#include <linux/export.h>
|
2013-03-08 17:07:44 +08:00
|
|
|
#include <net/dcbevent.h>
|
2010-12-30 17:26:37 +08:00
|
|
|
|
|
|
|
static ATOMIC_NOTIFIER_HEAD(dcbevent_notif_chain);
|
|
|
|
|
|
|
|
int register_dcbevent_notifier(struct notifier_block *nb)
|
|
|
|
{
|
|
|
|
return atomic_notifier_chain_register(&dcbevent_notif_chain, nb);
|
|
|
|
}
|
|
|
|
EXPORT_SYMBOL(register_dcbevent_notifier);
|
|
|
|
|
|
|
|
int unregister_dcbevent_notifier(struct notifier_block *nb)
|
|
|
|
{
|
|
|
|
return atomic_notifier_chain_unregister(&dcbevent_notif_chain, nb);
|
|
|
|
}
|
|
|
|
EXPORT_SYMBOL(unregister_dcbevent_notifier);
|
|
|
|
|
|
|
|
int call_dcbevent_notifiers(unsigned long val, void *v)
|
|
|
|
{
|
|
|
|
return atomic_notifier_call_chain(&dcbevent_notif_chain, val, v);
|
|
|
|
}
|