Release 4.7 drivers/block/drbd/drbd_debugfs.h
#include <linux/kernel.h>
#include <linux/module.h>
#include <linux/debugfs.h>
#include "drbd_int.h"
#ifdef CONFIG_DEBUG_FS
int __init drbd_debugfs_init(void);
void drbd_debugfs_cleanup(void);
void drbd_debugfs_resource_add(struct drbd_resource *resource);
void drbd_debugfs_resource_cleanup(struct drbd_resource *resource);
void drbd_debugfs_connection_add(struct drbd_connection *connection);
void drbd_debugfs_connection_cleanup(struct drbd_connection *connection);
void drbd_debugfs_device_add(struct drbd_device *device);
void drbd_debugfs_device_cleanup(struct drbd_device *device);
void drbd_debugfs_peer_device_add(struct drbd_peer_device *peer_device);
void drbd_debugfs_peer_device_cleanup(struct drbd_peer_device *peer_device);
#else
static inline int __init drbd_debugfs_init(void) { return -ENODEV; }
Contributors
| Person | Tokens | Prop | Commits | CommitProp |
lars ellenberg | lars ellenberg | 14 | 100.00% | 1 | 100.00% |
| Total | 14 | 100.00% | 1 | 100.00% |
static inline void drbd_debugfs_cleanup(void) { }
Contributors
| Person | Tokens | Prop | Commits | CommitProp |
lars ellenberg | lars ellenberg | 8 | 100.00% | 1 | 100.00% |
| Total | 8 | 100.00% | 1 | 100.00% |
static inline void drbd_debugfs_resource_add(struct drbd_resource *resource) { }
Contributors
| Person | Tokens | Prop | Commits | CommitProp |
lars ellenberg | lars ellenberg | 11 | 100.00% | 1 | 100.00% |
| Total | 11 | 100.00% | 1 | 100.00% |
static inline void drbd_debugfs_resource_cleanup(struct drbd_resource *resource) { }
Contributors
| Person | Tokens | Prop | Commits | CommitProp |
lars ellenberg | lars ellenberg | 11 | 100.00% | 1 | 100.00% |
| Total | 11 | 100.00% | 1 | 100.00% |
static inline void drbd_debugfs_connection_add(struct drbd_connection *connection) { }
Contributors
| Person | Tokens | Prop | Commits | CommitProp |
lars ellenberg | lars ellenberg | 11 | 100.00% | 1 | 100.00% |
| Total | 11 | 100.00% | 1 | 100.00% |
static inline void drbd_debugfs_connection_cleanup(struct drbd_connection *connection) { }
Contributors
| Person | Tokens | Prop | Commits | CommitProp |
lars ellenberg | lars ellenberg | 11 | 100.00% | 1 | 100.00% |
| Total | 11 | 100.00% | 1 | 100.00% |
static inline void drbd_debugfs_device_add(struct drbd_device *device) { }
Contributors
| Person | Tokens | Prop | Commits | CommitProp |
lars ellenberg | lars ellenberg | 11 | 100.00% | 1 | 100.00% |
| Total | 11 | 100.00% | 1 | 100.00% |
static inline void drbd_debugfs_device_cleanup(struct drbd_device *device) { }
Contributors
| Person | Tokens | Prop | Commits | CommitProp |
lars ellenberg | lars ellenberg | 11 | 100.00% | 1 | 100.00% |
| Total | 11 | 100.00% | 1 | 100.00% |
static inline void drbd_debugfs_peer_device_add(struct drbd_peer_device *peer_device) { }
Contributors
| Person | Tokens | Prop | Commits | CommitProp |
lars ellenberg | lars ellenberg | 11 | 100.00% | 1 | 100.00% |
| Total | 11 | 100.00% | 1 | 100.00% |
static inline void drbd_debugfs_peer_device_cleanup(struct drbd_peer_device *peer_device) { }
Contributors
| Person | Tokens | Prop | Commits | CommitProp |
lars ellenberg | lars ellenberg | 11 | 100.00% | 1 | 100.00% |
| Total | 11 | 100.00% | 1 | 100.00% |
#endif
Overall Contributors
| Person | Tokens | Prop | Commits | CommitProp |
lars ellenberg | lars ellenberg | 214 | 100.00% | 1 | 100.00% |
| Total | 214 | 100.00% | 1 | 100.00% |
Information contained on this website is for historical information purposes only and does not indicate or represent copyright ownership.