Skip to content
GitLab
Explore
Sign in
Primary navigation
Search or go to…
Project
linux-seco-imx
Manage
Activity
Members
Labels
Plan
Issues
0
Issue boards
Milestones
Iterations
Jira
Code
Merge requests
12
Repository
Branches
Commits
Tags
Repository graph
Compare revisions
Locked files
Deploy
Releases
Package Registry
Model registry
Operate
Terraform modules
Analyze
Model experiments
Help
Help
Support
GitLab documentation
Compare GitLab plans
Community forum
Contribute to GitLab
Provide feedback
Keyboard shortcuts
?
Snippets
Groups
Projects
Show more breadcrumbs
Clea OS
bsp
nxp
linux-seco-imx
Commits
a3b05e8f
Commit
a3b05e8f
authored
18 years ago
by
Jens Axboe
Committed by
Jens Axboe
18 years ago
Browse files
Options
Downloads
Patches
Plain Diff
[PATCH] Kill various deprecated/unused block layer defines/functions
Signed-off-by:
Jens Axboe
<
axboe@suse.de
>
parent
1ea25ecb
Loading
Loading
No related merge requests found
Changes
4
Hide whitespace changes
Inline
Side-by-side
Showing
4 changed files
drivers/block/cciss.c
+0
-1
0 additions, 1 deletion
drivers/block/cciss.c
drivers/block/cpqarray.c
+0
-1
0 additions, 1 deletion
drivers/block/cpqarray.c
include/linux/blkdev.h
+0
-29
0 additions, 29 deletions
include/linux/blkdev.h
include/linux/fs.h
+0
-1
0 additions, 1 deletion
include/linux/fs.h
with
0 additions
and
32 deletions
drivers/block/cciss.c
+
0
−
1
View file @
a3b05e8f
...
...
@@ -1229,7 +1229,6 @@ static inline void complete_buffers(struct bio *bio, int status)
int
nr_sectors
=
bio_sectors
(
bio
);
bio
->
bi_next
=
NULL
;
blk_finished_io
(
len
);
bio_endio
(
bio
,
nr_sectors
<<
9
,
status
?
0
:
-
EIO
);
bio
=
xbh
;
}
...
...
This diff is collapsed.
Click to expand it.
drivers/block/cpqarray.c
+
0
−
1
View file @
a3b05e8f
...
...
@@ -989,7 +989,6 @@ static inline void complete_buffers(struct bio *bio, int ok)
xbh
=
bio
->
bi_next
;
bio
->
bi_next
=
NULL
;
blk_finished_io
(
nr_sectors
);
bio_endio
(
bio
,
nr_sectors
<<
9
,
ok
?
0
:
-
EIO
);
bio
=
xbh
;
...
...
This diff is collapsed.
Click to expand it.
include/linux/blkdev.h
+
0
−
29
View file @
a3b05e8f
...
...
@@ -578,12 +578,6 @@ static inline void blk_clear_queue_full(struct request_queue *q, int rw)
#define rq_mergeable(rq) \
(!((rq)->cmd_flags & RQ_NOMERGE_FLAGS) && blk_fs_request((rq)))
/*
* noop, requests are automagically marked as active/inactive by I/O
* scheduler -- see elv_next_request
*/
#define blk_queue_headactive(q, head_active)
/*
* q->prep_rq_fn return values
*/
...
...
@@ -621,11 +615,6 @@ static inline void blk_queue_bounce(request_queue_t *q, struct bio **bio)
if ((rq->bio)) \
for (_bio = (rq)->bio; _bio; _bio = _bio->bi_next)
struct
sec_size
{
unsigned
block_size
;
unsigned
block_size_bits
;
};
extern
int
blk_register_queue
(
struct
gendisk
*
disk
);
extern
void
blk_unregister_queue
(
struct
gendisk
*
disk
);
extern
void
register_disk
(
struct
gendisk
*
dev
);
...
...
@@ -690,16 +679,6 @@ extern void end_that_request_last(struct request *, int);
extern
void
end_request
(
struct
request
*
req
,
int
uptodate
);
extern
void
blk_complete_request
(
struct
request
*
);
static
inline
int
rq_all_done
(
struct
request
*
rq
,
unsigned
int
nr_bytes
)
{
if
(
blk_fs_request
(
rq
))
return
(
nr_bytes
>=
(
rq
->
hard_nr_sectors
<<
9
));
else
if
(
blk_pc_request
(
rq
))
return
nr_bytes
>=
rq
->
data_len
;
return
0
;
}
/*
* end_that_request_first/chunk() takes an uptodate argument. we account
* any value <= as an io error. 0 means -EIO for compatability reasons,
...
...
@@ -807,14 +786,6 @@ static inline int queue_dma_alignment(request_queue_t *q)
return
retval
;
}
static
inline
int
bdev_dma_aligment
(
struct
block_device
*
bdev
)
{
return
queue_dma_alignment
(
bdev_get_queue
(
bdev
));
}
#define blk_finished_io(nsects) do { } while (0)
#define blk_started_io(nsects) do { } while (0)
/* assumes size > 256 */
static
inline
unsigned
int
blksize_bits
(
unsigned
int
size
)
{
...
...
This diff is collapsed.
Click to expand it.
include/linux/fs.h
+
0
−
1
View file @
a3b05e8f
...
...
@@ -79,7 +79,6 @@ extern int dir_notify_enable;
#define WRITE 1
#define READA 2
/* read-ahead - don't block if no resources */
#define SWRITE 3
/* for ll_rw_block() - wait for buffer lock */
#define SPECIAL 4
/* For non-blockdevice requests in request queue */
#define READ_SYNC (READ | (1 << BIO_RW_SYNC))
#define WRITE_SYNC (WRITE | (1 << BIO_RW_SYNC))
#define WRITE_BARRIER ((1 << BIO_RW) | (1 << BIO_RW_BARRIER))
...
...
This diff is collapsed.
Click to expand it.
Preview
0%
Loading
Try again
or
attach a new file
.
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Save comment
Cancel
Please
register
or
sign in
to comment