Files
linux-apfs/include/linux/cdev.h
T

36 lines
639 B
C
Raw Normal View History

2005-04-16 15:20:36 -07:00
#ifndef _LINUX_CDEV_H
#define _LINUX_CDEV_H
#include <linux/kobject.h>
#include <linux/kdev_t.h>
#include <linux/list.h>
2007-01-29 13:19:56 -08:00
struct file_operations;
struct inode;
struct module;
2005-04-16 15:20:36 -07:00
struct cdev {
struct kobject kobj;
struct module *owner;
2006-03-28 01:56:41 -08:00
const struct file_operations *ops;
2005-04-16 15:20:36 -07:00
struct list_head list;
dev_t dev;
unsigned int count;
};
2006-03-28 01:56:41 -08:00
void cdev_init(struct cdev *, const struct file_operations *);
2005-04-16 15:20:36 -07:00
struct cdev *cdev_alloc(void);
void cdev_put(struct cdev *p);
int cdev_add(struct cdev *, dev_t, unsigned);
void cdev_del(struct cdev *);
void cd_forget(struct inode *);
extern struct backing_dev_info directly_mappable_cdev_bdi;
2005-04-16 15:20:36 -07:00
#endif