Donate to e Foundation | Murena handsets with /e/OS | Own a part of Murena! Learn more

Commit 38b4e09f authored by Jens Axboe's avatar Jens Axboe
Browse files

null_blk: fix inline misuse



You can't magically mark a function inline and expect that to work.

Fixes: fceb5d1b ("null_blk: create a helper for zoned devices")
Signed-off-by: default avatarJens Axboe <axboe@kernel.dk>
parent a3d7d674
Loading
Loading
Loading
Loading
+3 −3
Original line number Diff line number Diff line
@@ -90,7 +90,7 @@ int null_zone_init(struct nullb_device *dev);
void null_zone_exit(struct nullb_device *dev);
int null_zone_report(struct gendisk *disk, sector_t sector,
		     struct blk_zone *zones, unsigned int *nr_zones);
inline blk_status_t null_handle_zoned(struct nullb_cmd *cmd,
blk_status_t null_handle_zoned(struct nullb_cmd *cmd,
				enum req_opf op, sector_t sector,
				sector_t nr_sectors);
#else
+2 −3
Original line number Diff line number Diff line
@@ -148,9 +148,8 @@ static blk_status_t null_zone_reset(struct nullb_cmd *cmd, sector_t sector)
	return BLK_STS_OK;
}

inline blk_status_t null_handle_zoned(struct nullb_cmd *cmd,
				       enum req_opf op, sector_t sector,
				       sector_t nr_sectors)
blk_status_t null_handle_zoned(struct nullb_cmd *cmd, enum req_opf op,
			       sector_t sector, sector_t nr_sectors)
{
	switch (op) {
	case REQ_OP_WRITE: