4032|2

6423

帖子

17

TA的资源

版主

楼主
 

ubuntu下bi_sector问题 [复制链接]

本帖最后由 白丁 于 2016-9-1 22:32 编辑

编译代码发现错误:error: ‘struct bio’ has no member named ‘bi_sector’
网上搜索bio给出的结构体如下
  1. bio(block input output)块的输入和输出
  2. 具体字段如下:
  3. /*
  4. * main unit of I/O for the block layer and lower layers (ie drivers and
  5. * stacking drivers)
  6. */
  7. struct bio {
  8. sector_t bi_sector; /* device address in 512 byte
  9. sectors */
  10. struct bio *bi_next; /* request queue link */
  11. struct block_device *bi_bdev;
  12. unsigned long bi_flags; /* status, command, etc */
  13. unsigned long bi_rw; /* bottom bits READ/WRITE,
  14. * top bits priority
  15. */
  16. unsigned short bi_vcnt; /* how many bio_vec's */
  17. unsigned short bi_idx; /* current index into bvl_vec */
  18. /* Number of segments in this BIO after
  19. * physical address coalescing is performed.
  20. */
  21. unsigned int bi_phys_segments;
  22. unsigned int bi_size; /* residual I/O count */
  23. /*
  24. * To keep track of the max segment size, we account for the
  25. * sizes of the first and last mergeable segments in this bio.
  26. */
  27. unsigned int bi_seg_front_size;
  28. unsigned int bi_seg_back_size;
  29. unsigned int bi_max_vecs; /* max bvl_vecs we can hold */
  30. unsigned int bi_comp_cpu; /* completion CPU */
  31. atomic_t bi_cnt; /* pin count */
  32. struct bio_vec *bi_io_vec; /* the actual vec list */
  33. bio_end_io_t *bi_end_io;
  34. void *bi_private;
  35. #if defined(CONFIG_BLK_DEV_INTEGRITY)
  36. struct bio_integrity_payload *bi_integrity; /* data integrity */
  37. #endif
  38. bio_destructor_t *bi_destructor; /* destructor */
  39. /*
  40. * We can inline a number of vecs at the end of the bio, to avoid
  41. * double allocations for a small number of bio_vecs. This member
  42. * MUST obviously be kept at the very end of the bio.
  43. */
  44. struct bio_vec bi_inline_vecs[0];
  45. };
复制代码


原因在于ubuntu中有如下改动:bio->bi_sector  改为bio->bi_iter.bi_sector
bio.h存在于以下路径:/usr/src/linux-headers-4.4.0-33/include/linux
bio结构体定义在/usr/src/linux-headers-4.4.0-33/include/linux路径下的blk_types.h
如下
  1. /*
  2. * Block data types and constants.  Directly include this file only to
  3. * break include dependency loop.
  4. */
  5. #ifndef __LINUX_BLK_TYPES_H
  6. #define __LINUX_BLK_TYPES_H

  7. #include <linux/types.h>

  8. struct bio_set;
  9. struct bio;
  10. struct bio_integrity_payload;
  11. struct page;
  12. struct block_device;
  13. struct io_context;
  14. struct cgroup_subsys_state;
  15. typedef void (bio_end_io_t) (struct bio *);
  16. typedef void (bio_destructor_t) (struct bio *);

  17. /*
  18. * was unsigned short, but we might as well be ready for > 64kB I/O pages
  19. */
  20. struct bio_vec {
  21.         struct page        *bv_page;
  22.         unsigned int        bv_len;
  23.         unsigned int        bv_offset;
  24. };

  25. #ifdef CONFIG_BLOCK

  26. struct bvec_iter {
  27.         sector_t                bi_sector;        /* device address in 512 byte
  28.                                                    sectors */
  29.         unsigned int                bi_size;        /* residual I/O count */

  30.         unsigned int                bi_idx;                /* current index into bvl_vec */

  31.         unsigned int            bi_bvec_done;        /* number of bytes completed in
  32.                                                    current bvec */
  33. };

  34. /*
  35. * main unit of I/O for the block layer and lower layers (ie drivers and
  36. * stacking drivers)
  37. */
  38. struct bio {
  39.         struct bio                *bi_next;        /* request queue link */
  40.         struct block_device        *bi_bdev;
  41.         unsigned int                bi_flags;        /* status, command, etc */
  42.         int                        bi_error;
  43.         unsigned long                bi_rw;                /* bottom bits READ/WRITE,
  44.                                                  * top bits priority
  45.                                                  */

  46.         struct bvec_iter        bi_iter;

  47.         /* Number of segments in this BIO after
  48.          * physical address coalescing is performed.
  49.          */
  50.         unsigned int                bi_phys_segments;

  51.         /*
  52.          * To keep track of the max segment size, we account for the
  53.          * sizes of the first and last mergeable segments in this bio.
  54.          */
  55.         unsigned int                bi_seg_front_size;
  56.         unsigned int                bi_seg_back_size;

  57.         atomic_t                __bi_remaining;

  58.         bio_end_io_t                *bi_end_io;

  59.         void                        *bi_private;
  60. #ifdef CONFIG_BLK_CGROUP
  61.         /*
  62.          * Optional ioc and css associated with this bio.  Put on bio
  63.          * release.  Read comment on top of bio_associate_current().
  64.          */
  65.         struct io_context        *bi_ioc;
  66.         struct cgroup_subsys_state *bi_css;
  67. #endif
  68.         union {
  69. #if defined(CONFIG_BLK_DEV_INTEGRITY)
  70.                 struct bio_integrity_payload *bi_integrity; /* data integrity */
  71. #endif
  72.         };

  73.         unsigned short                bi_vcnt;        /* how many bio_vec's */

  74.         /*
  75.          * Everything starting with bi_max_vecs will be preserved by bio_reset()
  76.          */

  77.         unsigned short                bi_max_vecs;        /* max bvl_vecs we can hold */

  78.         atomic_t                __bi_cnt;        /* pin count */

  79.         struct bio_vec                *bi_io_vec;        /* the actual vec list */

  80.         struct bio_set                *bi_pool;

  81.         /*
  82.          * We can inline a number of vecs at the end of the bio, to avoid
  83.          * double allocations for a small number of bio_vecs. This member
  84.          * MUST obviously be kept at the very end of the bio.
  85.          */
  86.         struct bio_vec                bi_inline_vecs[0];
  87. };

  88. #define BIO_RESET_BYTES                offsetof(struct bio, bi_max_vecs)

  89. /*
  90. * bio flags
  91. */
  92. #define BIO_SEG_VALID        1        /* bi_phys_segments valid */
  93. #define BIO_CLONED        2        /* doesn't own data */
  94. #define BIO_BOUNCED        3        /* bio is a bounce bio */
  95. #define BIO_USER_MAPPED 4        /* contains user pages */
  96. #define BIO_NULL_MAPPED 5        /* contains invalid user pages */
  97. #define BIO_QUIET        6        /* Make BIO Quiet */
  98. #define BIO_CHAIN        7        /* chained bio, ->bi_remaining in effect */
  99. #define BIO_REFFED        8        /* bio has elevated ->bi_cnt */

  100. /*
  101. * Flags starting here get preserved by bio_reset() - this includes
  102. * BIO_POOL_IDX()
  103. */
  104. #define BIO_RESET_BITS        13
  105. #define BIO_OWNS_VEC        13        /* bio_free() should free bvec */

  106. /*
  107. * top 4 bits of bio flags indicate the pool this bio came from
  108. */
  109. #define BIO_POOL_BITS                (4)
  110. #define BIO_POOL_NONE                ((1UL << BIO_POOL_BITS) - 1)
  111. #define BIO_POOL_OFFSET                (32 - BIO_POOL_BITS)
  112. #define BIO_POOL_MASK                (1UL << BIO_POOL_OFFSET)
  113. #define BIO_POOL_IDX(bio)        ((bio)->bi_flags >> BIO_POOL_OFFSET)

  114. #endif /* CONFIG_BLOCK */

  115. /*
  116. * Request flags.  For use in the cmd_flags field of struct request, and in
  117. * bi_rw of struct bio.  Note that some flags are only valid in either one.
  118. */
  119. enum rq_flag_bits {
  120.         /* common flags */
  121.         __REQ_WRITE,                /* not set, read. set, write */
  122.         __REQ_FAILFAST_DEV,        /* no driver retries of device errors */
  123.         __REQ_FAILFAST_TRANSPORT, /* no driver retries of transport errors */
  124.         __REQ_FAILFAST_DRIVER,        /* no driver retries of driver errors */

  125.         __REQ_SYNC,                /* request is sync (sync write or read) */
  126.         __REQ_META,                /* metadata io request */
  127.         __REQ_PRIO,                /* boost priority in cfq */
  128.         __REQ_DISCARD,                /* request to discard sectors */
  129.         __REQ_SECURE,                /* secure discard (used with __REQ_DISCARD) */
  130.         __REQ_WRITE_SAME,        /* write same block many times */

  131.         __REQ_NOIDLE,                /* don't anticipate more IO after this one */
  132.         __REQ_INTEGRITY,        /* I/O includes block integrity payload */
  133.         __REQ_FUA,                /* forced unit access */
  134.         __REQ_FLUSH,                /* request for cache flush */

  135.         /* bio only flags */
  136.         __REQ_RAHEAD,                /* read ahead, can fail anytime */
  137.         __REQ_THROTTLED,        /* This bio has already been subjected to
  138.                                  * throttling rules. Don't do it again. */

  139.         /* request only flags */
  140.         __REQ_SORTED,                /* elevator knows about this request */
  141.         __REQ_SOFTBARRIER,        /* may not be passed by ioscheduler */
  142.         __REQ_NOMERGE,                /* don't touch this for merging */
  143.         __REQ_STARTED,                /* drive already may have started this one */
  144.         __REQ_DONTPREP,                /* don't call prep for this one */
  145.         __REQ_QUEUED,                /* uses queueing */
  146.         __REQ_ELVPRIV,                /* elevator private data attached */
  147.         __REQ_FAILED,                /* set if the request failed */
  148.         __REQ_QUIET,                /* don't worry about errors */
  149.         __REQ_PREEMPT,                /* set for "ide_preempt" requests and also
  150.                                    for requests for which the SCSI "quiesce"
  151.                                    state must be ignored. */
  152.         __REQ_ALLOCED,                /* request came from our alloc pool */
  153.         __REQ_COPY_USER,        /* contains copies of user pages */
  154.         __REQ_FLUSH_SEQ,        /* request for flush sequence */
  155.         __REQ_IO_STAT,                /* account I/O stat */
  156.         __REQ_MIXED_MERGE,        /* merge of different types, fail separately */
  157.         __REQ_PM,                /* runtime pm request */
  158.         __REQ_HASHED,                /* on IO scheduler merge hash */
  159.         __REQ_MQ_INFLIGHT,        /* track inflight for MQ */
  160.         __REQ_NO_TIMEOUT,        /* requests may never expire */
  161.         __REQ_NR_BITS,                /* stops here */
  162. };

  163. #define REQ_WRITE                (1ULL << __REQ_WRITE)
  164. #define REQ_FAILFAST_DEV        (1ULL << __REQ_FAILFAST_DEV)
  165. #define REQ_FAILFAST_TRANSPORT        (1ULL << __REQ_FAILFAST_TRANSPORT)
  166. #define REQ_FAILFAST_DRIVER        (1ULL << __REQ_FAILFAST_DRIVER)
  167. #define REQ_SYNC                (1ULL << __REQ_SYNC)
  168. #define REQ_META                (1ULL << __REQ_META)
  169. #define REQ_PRIO                (1ULL << __REQ_PRIO)
  170. #define REQ_DISCARD                (1ULL << __REQ_DISCARD)
  171. #define REQ_WRITE_SAME                (1ULL << __REQ_WRITE_SAME)
  172. #define REQ_NOIDLE                (1ULL << __REQ_NOIDLE)
  173. #define REQ_INTEGRITY                (1ULL << __REQ_INTEGRITY)

  174. #define REQ_FAILFAST_MASK \
  175.         (REQ_FAILFAST_DEV | REQ_FAILFAST_TRANSPORT | REQ_FAILFAST_DRIVER)
  176. #define REQ_COMMON_MASK \
  177.         (REQ_WRITE | REQ_FAILFAST_MASK | REQ_SYNC | REQ_META | REQ_PRIO | \
  178.          REQ_DISCARD | REQ_WRITE_SAME | REQ_NOIDLE | REQ_FLUSH | REQ_FUA | \
  179.          REQ_SECURE | REQ_INTEGRITY)
  180. #define REQ_CLONE_MASK                REQ_COMMON_MASK

  181. #define BIO_NO_ADVANCE_ITER_MASK        (REQ_DISCARD|REQ_WRITE_SAME)

  182. /* This mask is used for both bio and request merge checking */
  183. #define REQ_NOMERGE_FLAGS \
  184.         (REQ_NOMERGE | REQ_STARTED | REQ_SOFTBARRIER | REQ_FLUSH | REQ_FUA | REQ_FLUSH_SEQ)

  185. #define REQ_RAHEAD                (1ULL << __REQ_RAHEAD)
  186. #define REQ_THROTTLED                (1ULL << __REQ_THROTTLED)

  187. #define REQ_SORTED                (1ULL << __REQ_SORTED)
  188. #define REQ_SOFTBARRIER                (1ULL << __REQ_SOFTBARRIER)
  189. #define REQ_FUA                        (1ULL << __REQ_FUA)
  190. #define REQ_NOMERGE                (1ULL << __REQ_NOMERGE)
  191. #define REQ_STARTED                (1ULL << __REQ_STARTED)
  192. #define REQ_DONTPREP                (1ULL << __REQ_DONTPREP)
  193. #define REQ_QUEUED                (1ULL << __REQ_QUEUED)
  194. #define REQ_ELVPRIV                (1ULL << __REQ_ELVPRIV)
  195. #define REQ_FAILED                (1ULL << __REQ_FAILED)
  196. #define REQ_QUIET                (1ULL << __REQ_QUIET)
  197. #define REQ_PREEMPT                (1ULL << __REQ_PREEMPT)
  198. #define REQ_ALLOCED                (1ULL << __REQ_ALLOCED)
  199. #define REQ_COPY_USER                (1ULL << __REQ_COPY_USER)
  200. #define REQ_FLUSH                (1ULL << __REQ_FLUSH)
  201. #define REQ_FLUSH_SEQ                (1ULL << __REQ_FLUSH_SEQ)
  202. #define REQ_IO_STAT                (1ULL << __REQ_IO_STAT)
  203. #define REQ_MIXED_MERGE                (1ULL << __REQ_MIXED_MERGE)
  204. #define REQ_SECURE                (1ULL << __REQ_SECURE)
  205. #define REQ_PM                        (1ULL << __REQ_PM)
  206. #define REQ_HASHED                (1ULL << __REQ_HASHED)
  207. #define REQ_MQ_INFLIGHT                (1ULL << __REQ_MQ_INFLIGHT)
  208. #define REQ_NO_TIMEOUT                (1ULL << __REQ_NO_TIMEOUT)

  209. typedef unsigned int blk_qc_t;
  210. #define BLK_QC_T_NONE        -1U
  211. #define BLK_QC_T_SHIFT        16

  212. static inline bool blk_qc_t_valid(blk_qc_t cookie)
  213. {
  214.         return cookie != BLK_QC_T_NONE;
  215. }

  216. static inline blk_qc_t blk_tag_to_qc_t(unsigned int tag, unsigned int queue_num)
  217. {
  218.         return tag | (queue_num << BLK_QC_T_SHIFT);
  219. }

  220. static inline unsigned int blk_qc_t_to_queue_num(blk_qc_t cookie)
  221. {
  222.         return cookie >> BLK_QC_T_SHIFT;
  223. }

  224. static inline unsigned int blk_qc_t_to_tag(blk_qc_t cookie)
  225. {
  226.         return cookie & ((1u << BLK_QC_T_SHIFT) - 1);
  227. }

  228. #endif /* __LINUX_BLK_TYPES_H */
复制代码



此帖出自Linux开发论坛
点赞 关注
个人签名training

回复
举报

6423

帖子

17

TA的资源

版主

沙发
 
所用ubuntu版本位16.04
此帖出自Linux开发论坛
 
个人签名training
 

回复

6423

帖子

17

TA的资源

版主

板凳
 
看了linux4.5内核代码发现错怪ubuntu了,这个结构体确实已经改变,且由原来的bio.h放到了blk_types.h中
此帖出自Linux开发论坛
 
个人签名training
 
 

回复
您需要登录后才可以回帖 登录 | 注册

随便看看
查找数据手册?

EEWorld Datasheet 技术支持

相关文章 更多>>
关闭
站长推荐上一条 1/7 下一条

 
EEWorld订阅号

 
EEWorld服务号

 
汽车开发圈

About Us 关于我们 客户服务 联系方式 器件索引 网站地图 最新更新 手机版

站点相关: 国产芯 安防电子 汽车电子 手机便携 工业控制 家用电子 医疗电子 测试测量 网络通信 物联网

北京市海淀区中关村大街18号B座15层1530室 电话:(010)82350740 邮编:100190

电子工程世界版权所有 京B2-20211791 京ICP备10001474号-1 电信业务审批[2006]字第258号函 京公网安备 11010802033920号 Copyright © 2005-2025 EEWORLD.com.cn, Inc. All rights reserved
快速回复 返回顶部 返回列表