* is defined as 'unsigned int', meantime it has to be aligned to with the
  * logical block size, which is the minimum accepted unit by hardware.
  */
-static unsigned int bio_allowed_max_sectors(struct queue_limits *lim)
+static unsigned int bio_allowed_max_sectors(const struct queue_limits *lim)
 {
        return round_down(UINT_MAX, lim->logical_block_size) >> SECTOR_SHIFT;
 }
 
-static struct bio *bio_split_discard(struct bio *bio, struct queue_limits *lim,
-               unsigned *nsegs, struct bio_set *bs)
+static struct bio *bio_split_discard(struct bio *bio,
+                                    const struct queue_limits *lim,
+                                    unsigned *nsegs, struct bio_set *bs)
 {
        unsigned int max_discard_sectors, granularity;
        sector_t tmp;
 }
 
 static struct bio *bio_split_write_zeroes(struct bio *bio,
-               struct queue_limits *lim, unsigned *nsegs, struct bio_set *bs)
+                                         const struct queue_limits *lim,
+                                         unsigned *nsegs, struct bio_set *bs)
 {
        *nsegs = 0;
        if (!lim->max_write_zeroes_sectors)
  * aligned to a physical block boundary.
  */
 static inline unsigned get_max_io_size(struct bio *bio,
-               struct queue_limits *lim)
+                                      const struct queue_limits *lim)
 {
        unsigned pbs = lim->physical_block_size >> SECTOR_SHIFT;
        unsigned lbs = lim->logical_block_size >> SECTOR_SHIFT;
        return max_sectors & ~(lbs - 1);
 }
 
-static inline unsigned get_max_segment_size(struct queue_limits *lim,
+static inline unsigned get_max_segment_size(const struct queue_limits *lim,
                struct page *start_page, unsigned long offset)
 {
        unsigned long mask = lim->seg_boundary_mask;
  * *@nsegs segments and *@sectors sectors would make that bio unacceptable for
  * the block driver.
  */
-static bool bvec_split_segs(struct queue_limits *lim, const struct bio_vec *bv,
-               unsigned *nsegs, unsigned *bytes, unsigned max_segs,
-               unsigned max_bytes)
+static bool bvec_split_segs(const struct queue_limits *lim,
+               const struct bio_vec *bv, unsigned *nsegs, unsigned *bytes,
+               unsigned max_segs, unsigned max_bytes)
 {
        unsigned max_len = min(max_bytes, UINT_MAX) - *bytes;
        unsigned len = min(bv->bv_len, max_len);
  * responsible for ensuring that @bs is only destroyed after processing of the
  * split bio has finished.
  */
-static struct bio *bio_split_rw(struct bio *bio, struct queue_limits *lim,
+static struct bio *bio_split_rw(struct bio *bio, const struct queue_limits *lim,
                unsigned *segs, struct bio_set *bs, unsigned max_bytes)
 {
        struct bio_vec bv, bvprv, *bvprvp = NULL;
  * The split bio is allocated from @q->bio_split, which is provided by the
  * block layer.
  */
-struct bio *__bio_split_to_limits(struct bio *bio, struct queue_limits *lim,
-                      unsigned int *nr_segs)
+struct bio *__bio_split_to_limits(struct bio *bio,
+                                 const struct queue_limits *lim,
+                                 unsigned int *nr_segs)
 {
        struct bio_set *bs = &bio->bi_bdev->bd_disk->bio_split;
        struct bio *split;
  */
 struct bio *bio_split_to_limits(struct bio *bio)
 {
-       struct queue_limits *lim = &bdev_get_queue(bio->bi_bdev)->limits;
+       const struct queue_limits *lim = &bdev_get_queue(bio->bi_bdev)->limits;
        unsigned int nr_segs;
 
        if (bio_may_exceed_limits(bio, lim))
 
        return true;
 }
 
-static inline bool __bvec_gap_to_prev(struct queue_limits *lim,
+static inline bool __bvec_gap_to_prev(const struct queue_limits *lim,
                struct bio_vec *bprv, unsigned int offset)
 {
        return (offset & lim->virt_boundary_mask) ||
  * Check if adding a bio_vec after bprv with offset would create a gap in
  * the SG list. Most drivers don't care about this, but some do.
  */
-static inline bool bvec_gap_to_prev(struct queue_limits *lim,
+static inline bool bvec_gap_to_prev(const struct queue_limits *lim,
                struct bio_vec *bprv, unsigned int offset)
 {
        if (!lim->virt_boundary_mask)
                                const char *, size_t);
 
 static inline bool bio_may_exceed_limits(struct bio *bio,
-               struct queue_limits *lim)
+                                        const struct queue_limits *lim)
 {
        switch (bio_op(bio)) {
        case REQ_OP_DISCARD:
                bio->bi_io_vec->bv_len + bio->bi_io_vec->bv_offset > PAGE_SIZE;
 }
 
-struct bio *__bio_split_to_limits(struct bio *bio, struct queue_limits *lim,
-                      unsigned int *nr_segs);
+struct bio *__bio_split_to_limits(struct bio *bio,
+                                 const struct queue_limits *lim,
+                                 unsigned int *nr_segs);
 int ll_back_merge_fn(struct request *req, struct bio *bio,
                unsigned int nr_segs);
 bool blk_attempt_req_merge(struct request_queue *q, struct request *rq,