Release 4.12 include/linux/bsg.h
#ifndef BSG_H
#define BSG_H
#include <uapi/linux/bsg.h>
#if defined(CONFIG_BLK_DEV_BSG)
struct bsg_class_device {
struct device *class_dev;
struct device *parent;
int minor;
struct request_queue *queue;
struct kref ref;
void (*release)(struct device *);
};
extern int bsg_register_queue(struct request_queue *q,
struct device *parent, const char *name,
void (*release)(struct device *));
extern void bsg_unregister_queue(struct request_queue *);
#else
static inline int bsg_register_queue(struct request_queue *q,
struct device *parent, const char *name,
void (*release)(struct device *))
{
return 0;
}
Contributors
Person | Tokens | Prop | Commits | CommitProp |
James Bottomley | 18 | 50.00% | 2 | 40.00% |
FUJITA Tomonori | 16 | 44.44% | 2 | 40.00% |
Jens Axboe | 2 | 5.56% | 1 | 20.00% |
Total | 36 | 100.00% | 5 | 100.00% |
static inline void bsg_unregister_queue(struct request_queue *q)
{
}
Contributors
Person | Tokens | Prop | Commits | CommitProp |
James Bottomley | 7 | 63.64% | 1 | 25.00% |
Jens Axboe | 2 | 18.18% | 1 | 25.00% |
FUJITA Tomonori | 2 | 18.18% | 2 | 50.00% |
Total | 11 | 100.00% | 4 | 100.00% |
#endif
#endif
Overall Contributors
Person | Tokens | Prop | Commits | CommitProp |
FUJITA Tomonori | 61 | 41.78% | 3 | 33.33% |
Jens Axboe | 52 | 35.62% | 1 | 11.11% |
James Bottomley | 29 | 19.86% | 2 | 22.22% |
Douglas Gilbert | 2 | 1.37% | 1 | 11.11% |
Tony Jones | 1 | 0.68% | 1 | 11.11% |
David Howells | 1 | 0.68% | 1 | 11.11% |
Total | 146 | 100.00% | 9 | 100.00% |
Information contained on this website is for historical information purposes only and does not indicate or represent copyright ownership.