blob: 62f7d6abf11e1af9b761c7601b2eeee4e4213c9b (
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
|
/*
* Copyright (C) 2013-2015 Kay Sievers
* Copyright (C) 2013-2015 Greg Kroah-Hartman <gregkh@linuxfoundation.org>
* Copyright (C) 2013-2015 Daniel Mack <daniel@zonque.org>
* Copyright (C) 2013-2015 David Herrmann <dh.herrmann@gmail.com>
* Copyright (C) 2013-2015 Linux Foundation
*
* kdbus is free software; you can redistribute it and/or modify it under
* the terms of the GNU Lesser General Public License as published by the
* Free Software Foundation; either version 2.1 of the License, or (at
* your option) any later version.
*/
#ifndef __KDBUSFS_H
#define __KDBUSFS_H
#include <linux/kernel.h>
struct kdbus_node;
int kdbus_fs_init(void);
void kdbus_fs_exit(void);
void kdbus_fs_flush(struct kdbus_node *node);
#define kdbus_node_from_inode(_inode) \
((struct kdbus_node *)(_inode)->i_private)
#endif
|