~ [ source navigation ] ~ [ diff markup ] ~ [ identifier search ] ~

TOMOYO Linux Cross Reference
Linux/include/linux/mtd/blktrans.h

Version: ~ [ linux-6.11.5 ] ~ [ linux-6.10.14 ] ~ [ linux-6.9.12 ] ~ [ linux-6.8.12 ] ~ [ linux-6.7.12 ] ~ [ linux-6.6.58 ] ~ [ linux-6.5.13 ] ~ [ linux-6.4.16 ] ~ [ linux-6.3.13 ] ~ [ linux-6.2.16 ] ~ [ linux-6.1.114 ] ~ [ linux-6.0.19 ] ~ [ linux-5.19.17 ] ~ [ linux-5.18.19 ] ~ [ linux-5.17.15 ] ~ [ linux-5.16.20 ] ~ [ linux-5.15.169 ] ~ [ linux-5.14.21 ] ~ [ linux-5.13.19 ] ~ [ linux-5.12.19 ] ~ [ linux-5.11.22 ] ~ [ linux-5.10.228 ] ~ [ linux-5.9.16 ] ~ [ linux-5.8.18 ] ~ [ linux-5.7.19 ] ~ [ linux-5.6.19 ] ~ [ linux-5.5.19 ] ~ [ linux-5.4.284 ] ~ [ linux-5.3.18 ] ~ [ linux-5.2.21 ] ~ [ linux-5.1.21 ] ~ [ linux-5.0.21 ] ~ [ linux-4.20.17 ] ~ [ linux-4.19.322 ] ~ [ linux-4.18.20 ] ~ [ linux-4.17.19 ] ~ [ linux-4.16.18 ] ~ [ linux-4.15.18 ] ~ [ linux-4.14.336 ] ~ [ linux-4.13.16 ] ~ [ linux-4.12.14 ] ~ [ linux-4.11.12 ] ~ [ linux-4.10.17 ] ~ [ linux-4.9.337 ] ~ [ linux-4.4.302 ] ~ [ linux-3.10.108 ] ~ [ linux-2.6.32.71 ] ~ [ linux-2.6.0 ] ~ [ linux-2.4.37.11 ] ~ [ unix-v6-master ] ~ [ ccs-tools-1.8.9 ] ~ [ policy-sample ] ~
Architecture: ~ [ i386 ] ~ [ alpha ] ~ [ m68k ] ~ [ mips ] ~ [ ppc ] ~ [ sparc ] ~ [ sparc64 ] ~

  1 /* SPDX-License-Identifier: GPL-2.0-or-later */
  2 /*
  3  * Copyright © 2003-2010 David Woodhouse <dwmw2@infradead.org>
  4  */
  5 
  6 #ifndef __MTD_TRANS_H__
  7 #define __MTD_TRANS_H__
  8 
  9 #include <linux/mutex.h>
 10 #include <linux/kref.h>
 11 #include <linux/sysfs.h>
 12 
 13 struct hd_geometry;
 14 struct mtd_info;
 15 struct mtd_blktrans_ops;
 16 struct file;
 17 struct inode;
 18 
 19 struct mtd_blktrans_dev {
 20         struct mtd_blktrans_ops *tr;
 21         struct list_head list;
 22         struct mtd_info *mtd;
 23         struct mutex lock;
 24         int devnum;
 25         bool bg_stop;
 26         unsigned long size;
 27         int readonly;
 28         int open;
 29         struct kref ref;
 30         struct gendisk *disk;
 31         struct attribute_group *disk_attributes;
 32         struct request_queue *rq;
 33         struct list_head rq_list;
 34         struct blk_mq_tag_set *tag_set;
 35         spinlock_t queue_lock;
 36         void *priv;
 37         bool writable;
 38 };
 39 
 40 struct mtd_blktrans_ops {
 41         char *name;
 42         int major;
 43         int part_bits;
 44         int blksize;
 45         int blkshift;
 46 
 47         /* Access functions */
 48         int (*readsect)(struct mtd_blktrans_dev *dev,
 49                     unsigned long block, char *buffer);
 50         int (*writesect)(struct mtd_blktrans_dev *dev,
 51                      unsigned long block, char *buffer);
 52         int (*discard)(struct mtd_blktrans_dev *dev,
 53                        unsigned long block, unsigned nr_blocks);
 54         void (*background)(struct mtd_blktrans_dev *dev);
 55 
 56         /* Block layer ioctls */
 57         int (*getgeo)(struct mtd_blktrans_dev *dev, struct hd_geometry *geo);
 58         int (*flush)(struct mtd_blktrans_dev *dev);
 59 
 60         /* Called with mtd_table_mutex held; no race with add/remove */
 61         int (*open)(struct mtd_blktrans_dev *dev);
 62         void (*release)(struct mtd_blktrans_dev *dev);
 63 
 64         /* Called on {de,}registration and on subsequent addition/removal
 65            of devices, with mtd_table_mutex held. */
 66         void (*add_mtd)(struct mtd_blktrans_ops *tr, struct mtd_info *mtd);
 67         void (*remove_dev)(struct mtd_blktrans_dev *dev);
 68 
 69         struct list_head devs;
 70         struct list_head list;
 71         struct module *owner;
 72 };
 73 
 74 extern int register_mtd_blktrans(struct mtd_blktrans_ops *tr);
 75 extern int deregister_mtd_blktrans(struct mtd_blktrans_ops *tr);
 76 extern int add_mtd_blktrans_dev(struct mtd_blktrans_dev *dev);
 77 extern int del_mtd_blktrans_dev(struct mtd_blktrans_dev *dev);
 78 extern int mtd_blktrans_cease_background(struct mtd_blktrans_dev *dev);
 79 
 80 /**
 81  * module_mtd_blktrans() - Helper macro for registering a mtd blktrans driver
 82  * @__mtd_blktrans: mtd_blktrans_ops struct
 83  *
 84  * Helper macro for mtd blktrans drivers which do not do anything special in
 85  * module init/exit. This eliminates a lot of boilerplate. Each module may only
 86  * use this macro once, and calling it replaces module_init() and module_exit()
 87  */
 88 #define module_mtd_blktrans(__mtd_blktrans) \
 89         module_driver(__mtd_blktrans, register_mtd_blktrans, \
 90                                         deregister_mtd_blktrans)
 91 
 92 #endif /* __MTD_TRANS_H__ */
 93 

~ [ source navigation ] ~ [ diff markup ] ~ [ identifier search ] ~

kernel.org | git.kernel.org | LWN.net | Project Home | SVN repository | Mail admin

Linux® is a registered trademark of Linus Torvalds in the United States and other countries.
TOMOYO® is a registered trademark of NTT DATA CORPORATION.

sflogo.php