Skip to content
Projects
Groups
Snippets
Help
Loading...
Help
Support
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in / Register
Toggle navigation
L
linux
Project overview
Project overview
Details
Activity
Releases
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Issues
0
Issues
0
List
Boards
Labels
Milestones
Merge Requests
0
Merge Requests
0
Analytics
Analytics
Repository
Value Stream
Wiki
Wiki
Snippets
Snippets
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Create a new issue
Commits
Issue Boards
Open sidebar
nexedi
linux
Commits
a3b05e8f
Commit
a3b05e8f
authored
Jul 28, 2006
by
Jens Axboe
Committed by
Jens Axboe
Sep 30, 2006
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
[PATCH] Kill various deprecated/unused block layer defines/functions
Signed-off-by:
Jens Axboe
<
axboe@suse.de
>
parent
1ea25ecb
Changes
4
Hide whitespace changes
Inline
Side-by-side
Showing
4 changed files
with
0 additions
and
32 deletions
+0
-32
drivers/block/cciss.c
drivers/block/cciss.c
+0
-1
drivers/block/cpqarray.c
drivers/block/cpqarray.c
+0
-1
include/linux/blkdev.h
include/linux/blkdev.h
+0
-29
include/linux/fs.h
include/linux/fs.h
+0
-1
No files found.
drivers/block/cciss.c
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
;
}
...
...
drivers/block/cpqarray.c
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
;
...
...
include/linux/blkdev.h
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
)
{
...
...
include/linux/fs.h
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))
...
...
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment