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
Kirill Smelkov
linux
Commits
2c99d295
Commit
2c99d295
authored
Mar 11, 2004
by
Andrew Morton
Committed by
Linus Torvalds
Mar 11, 2004
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
[PATCH] dm: list_for_each_entry audit
From: Joe Thornber <thornber@redhat.com> Audit for list_for_each_*entry*
parent
ba657cf7
Changes
3
Hide whitespace changes
Inline
Side-by-side
Showing
3 changed files
with
8 additions
and
21 deletions
+8
-21
drivers/md/dm-ioctl.c
drivers/md/dm-ioctl.c
+5
-12
drivers/md/dm-table.c
drivers/md/dm-table.c
+2
-4
drivers/md/dm-target.c
drivers/md/dm-target.c
+1
-5
No files found.
drivers/md/dm-ioctl.c
View file @
2c99d295
...
...
@@ -88,30 +88,24 @@ static unsigned int hash_str(const char *str)
*---------------------------------------------------------------*/
static
struct
hash_cell
*
__get_name_cell
(
const
char
*
str
)
{
struct
list_head
*
tmp
;
struct
hash_cell
*
hc
;
unsigned
int
h
=
hash_str
(
str
);
list_for_each
(
tmp
,
_name_buckets
+
h
)
{
hc
=
list_entry
(
tmp
,
struct
hash_cell
,
name_list
);
list_for_each_entry
(
hc
,
_name_buckets
+
h
,
name_list
)
if
(
!
strcmp
(
hc
->
name
,
str
))
return
hc
;
}
return
NULL
;
}
static
struct
hash_cell
*
__get_uuid_cell
(
const
char
*
str
)
{
struct
list_head
*
tmp
;
struct
hash_cell
*
hc
;
unsigned
int
h
=
hash_str
(
str
);
list_for_each
(
tmp
,
_uuid_buckets
+
h
)
{
hc
=
list_entry
(
tmp
,
struct
hash_cell
,
uuid_list
);
list_for_each_entry
(
hc
,
_uuid_buckets
+
h
,
uuid_list
)
if
(
!
strcmp
(
hc
->
uuid
,
str
))
return
hc
;
}
return
NULL
;
}
...
...
@@ -935,6 +929,7 @@ static void retrieve_deps(struct dm_table *table,
unsigned
int
count
=
0
;
struct
list_head
*
tmp
;
size_t
len
,
needed
;
struct
dm_dev
*
dd
;
struct
dm_target_deps
*
deps
;
deps
=
get_result_buffer
(
param
,
param_size
,
&
len
);
...
...
@@ -942,7 +937,7 @@ static void retrieve_deps(struct dm_table *table,
/*
* Count the devices.
*/
list_for_each
(
tmp
,
dm_table_get_devices
(
table
))
list_for_each
(
tmp
,
dm_table_get_devices
(
table
))
count
++
;
/*
...
...
@@ -959,10 +954,8 @@ static void retrieve_deps(struct dm_table *table,
*/
deps
->
count
=
count
;
count
=
0
;
list_for_each
(
tmp
,
dm_table_get_devices
(
table
))
{
struct
dm_dev
*
dd
=
list_entry
(
tmp
,
struct
dm_dev
,
list
);
list_for_each_entry
(
dd
,
dm_table_get_devices
(
table
),
list
)
deps
->
dev
[
count
++
]
=
huge_encode_dev
(
dd
->
bdev
->
bd_dev
);
}
param
->
data_size
=
param
->
data_start
+
needed
;
}
...
...
drivers/md/dm-table.c
View file @
2c99d295
...
...
@@ -329,13 +329,11 @@ static int lookup_device(const char *path, dev_t *dev)
*/
static
struct
dm_dev
*
find_device
(
struct
list_head
*
l
,
dev_t
dev
)
{
struct
list_head
*
tmp
;
struct
dm_dev
*
dd
;
list_for_each
(
tmp
,
l
)
{
struct
dm_dev
*
dd
=
list_entry
(
tmp
,
struct
dm_dev
,
list
);
list_for_each_entry
(
dd
,
l
,
list
)
if
(
dd
->
bdev
->
bd_dev
==
dev
)
return
dd
;
}
return
NULL
;
}
...
...
drivers/md/dm-target.c
View file @
2c99d295
...
...
@@ -25,15 +25,11 @@ static DECLARE_RWSEM(_lock);
static
inline
struct
tt_internal
*
__find_target_type
(
const
char
*
name
)
{
struct
list_head
*
tih
;
struct
tt_internal
*
ti
;
list_for_each
(
tih
,
&
_targets
)
{
ti
=
list_entry
(
tih
,
struct
tt_internal
,
list
);
list_for_each_entry
(
ti
,
&
_targets
,
list
)
if
(
!
strcmp
(
name
,
ti
->
tt
.
name
))
return
ti
;
}
return
NULL
;
}
...
...
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