- 论坛徽章:
- 0
|
在__make_request中有这么一段代码,可证明一个req中包含多个bio- switch (el_ret) {
- 2834 case ELEVATOR_BACK_MERGE:
- 2835 BUG_ON(!rq_mergeable(req));
- 2836
- 2837 if (!q->back_merge_fn(q, req, bio))//将bio合并到req这个请求中,具体什么情况下满足合并条件,我还没弄清楚。
- 2838 break;
- 2839
- 2840 req->biotail->bi_next = bio;//合并成功后,将bio加入该req中。
- 2841 req->biotail = bio;//更新最后一个bio指针
- 2842 req->nr_sectors = req->hard_nr_sectors += nr_sectors;
- 2843 req->ioprio = ioprio_best(req->ioprio, prio);
- 2844 drive_stat_acct(req, nr_sectors, 0);
- 2845 if (!attempt_back_merge(q, req))
- 2846 elv_merged_request(q, req);
- 2847 goto out;
- 2848
- 2849 case ELEVATOR_FRONT_MERGE:
- 2850 BUG_ON(!rq_mergeable(req));
- 2851
- 2852 if (!q->front_merge_fn(q, req, bio))
- 2853 break;
- 2854
- 2855 bio->bi_next = req->bio;
- 2856 req->bio = bio;
复制代码 |
|