From 8ee11d587fcf66a50146b00f04bb5db7b955b795 Mon Sep 17 00:00:00 2001 From: phk Date: Sun, 2 Apr 2000 15:24:56 +0000 Subject: Move B_ERROR flag to b_ioflags and call it BIO_ERROR. (Much of this done by script) Move B_ORDERED flag to b_ioflags and call it BIO_ORDERED. Move b_pblkno and b_iodone_chain to struct bio while we transition, they will be obsoleted once bio structs chain/stack. Add bio_queue field for struct bio aware disksort. Address a lot of stylistic issues brought up by bde. --- sys/dev/mlx/mlx.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'sys/dev/mlx/mlx.c') diff --git a/sys/dev/mlx/mlx.c b/sys/dev/mlx/mlx.c index 94e2863..7ec3da4 100644 --- a/sys/dev/mlx/mlx.c +++ b/sys/dev/mlx/mlx.c @@ -1722,7 +1722,7 @@ mlx_completeio(struct mlx_command *mc) if (mc->mc_status != MLX_STATUS_OK) { /* could be more verbose here? */ bp->b_error = EIO; - bp->b_flags |= B_ERROR; + bp->b_ioflags |= BIO_ERROR; switch(mc->mc_status) { case MLX_STATUS_RDWROFFLINE: /* system drive has gone offline */ -- cgit v1.1