summaryrefslogtreecommitdiff
path: root/notifier.h
blob: 348ab929e926c27e1749064ceaabac997baaabd3 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
// SPDX-License-Identifier: GPL-2.0-only
/*
 * Driver for Wifi performance tracker
 *
 * Copyright 2022 Google LLC.
 *
 * Author: Star Chang <starchang@google.com>
 */
#ifndef __TP_TRACKER_NOTIFIER_H
#define __TP_TRACKER_NOTIFIER_H

#include <linux/notifier.h>
#include <linux/inetdevice.h>
#include <linux/netdevice.h>


struct wlan_ptracker_notifier {
	struct notifier_block nb;
	unsigned long prev_event;
	struct blocking_notifier_head notifier_head;
};

extern void wlan_ptracker_notifier_init(struct wlan_ptracker_notifier *nb);
extern void wlan_ptracker_notifier_exit(struct wlan_ptracker_notifier *nb);

extern int wlan_ptracker_register_notifier(struct wlan_ptracker_notifier *notifier,
	struct notifier_block *nb);
extern void wlan_ptracker_unregister_notifier(struct wlan_ptracker_notifier *notifier,
	struct notifier_block *nb);
extern int wlan_ptracker_call_chain(struct wlan_ptracker_notifier *notifier,
	unsigned long event, void *priv);

#endif /* __TP_TRACKER_NOTIFIER_H */