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
fa34e589
Commit
fa34e589
authored
Feb 07, 2024
by
Mike Snitzer
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
dm: update relevant MODULE_AUTHOR entries to latest dm-devel mailing list
Signed-off-by:
Mike Snitzer
<
snitzer@kernel.org
>
parent
86ab1b84
Changes
16
Hide whitespace changes
Inline
Side-by-side
Showing
16 changed files
with
17 additions
and
17 deletions
+17
-17
drivers/md/dm-bio-prison-v1.c
drivers/md/dm-bio-prison-v1.c
+1
-1
drivers/md/dm-bufio.c
drivers/md/dm-bufio.c
+1
-1
drivers/md/dm-cache-policy-smq.c
drivers/md/dm-cache-policy-smq.c
+1
-1
drivers/md/dm-dust.c
drivers/md/dm-dust.c
+1
-1
drivers/md/dm-ebs-target.c
drivers/md/dm-ebs-target.c
+1
-1
drivers/md/dm-flakey.c
drivers/md/dm-flakey.c
+1
-1
drivers/md/dm-log-userspace-base.c
drivers/md/dm-log-userspace-base.c
+1
-1
drivers/md/dm-log.c
drivers/md/dm-log.c
+1
-1
drivers/md/dm-mpath.c
drivers/md/dm-mpath.c
+1
-1
drivers/md/dm-ps-round-robin.c
drivers/md/dm-ps-round-robin.c
+1
-1
drivers/md/dm-raid.c
drivers/md/dm-raid.c
+2
-2
drivers/md/dm-region-hash.c
drivers/md/dm-region-hash.c
+1
-1
drivers/md/dm-thin.c
drivers/md/dm-thin.c
+1
-1
drivers/md/dm-writecache.c
drivers/md/dm-writecache.c
+1
-1
drivers/md/dm.c
drivers/md/dm.c
+1
-1
drivers/md/persistent-data/dm-block-manager.c
drivers/md/persistent-data/dm-block-manager.c
+1
-1
No files found.
drivers/md/dm-bio-prison-v1.c
View file @
fa34e589
...
...
@@ -489,5 +489,5 @@ module_init(dm_bio_prison_init);
module_exit
(
dm_bio_prison_exit
);
MODULE_DESCRIPTION
(
DM_NAME
" bio prison"
);
MODULE_AUTHOR
(
"Joe Thornber <dm-devel@
redhat.com
>"
);
MODULE_AUTHOR
(
"Joe Thornber <dm-devel@
lists.linux.dev
>"
);
MODULE_LICENSE
(
"GPL"
);
drivers/md/dm-bufio.c
View file @
fa34e589
...
...
@@ -2998,6 +2998,6 @@ MODULE_PARM_DESC(allocated_vmalloc_bytes, "Memory allocated with vmalloc");
module_param_named
(
current_allocated_bytes
,
dm_bufio_current_allocated
,
ulong
,
0444
);
MODULE_PARM_DESC
(
current_allocated_bytes
,
"Memory currently used by the cache"
);
MODULE_AUTHOR
(
"Mikulas Patocka <dm-devel@
redhat.com
>"
);
MODULE_AUTHOR
(
"Mikulas Patocka <dm-devel@
lists.linux.dev
>"
);
MODULE_DESCRIPTION
(
DM_NAME
" buffered I/O library"
);
MODULE_LICENSE
(
"GPL"
);
drivers/md/dm-cache-policy-smq.c
View file @
fa34e589
...
...
@@ -1947,7 +1947,7 @@ static void __exit smq_exit(void)
module_init
(
smq_init
);
module_exit
(
smq_exit
);
MODULE_AUTHOR
(
"Joe Thornber <dm-devel@
redhat.com
>"
);
MODULE_AUTHOR
(
"Joe Thornber <dm-devel@
lists.linux.dev
>"
);
MODULE_LICENSE
(
"GPL"
);
MODULE_DESCRIPTION
(
"smq cache policy"
);
...
...
drivers/md/dm-dust.c
View file @
fa34e589
...
...
@@ -573,5 +573,5 @@ static struct target_type dust_target = {
module_dm
(
dust
);
MODULE_DESCRIPTION
(
DM_NAME
" dust test target"
);
MODULE_AUTHOR
(
"Bryan Gurney <dm-devel@
redhat.com
>"
);
MODULE_AUTHOR
(
"Bryan Gurney <dm-devel@
lists.linux.dev
>"
);
MODULE_LICENSE
(
"GPL"
);
drivers/md/dm-ebs-target.c
View file @
fa34e589
...
...
@@ -454,6 +454,6 @@ static struct target_type ebs_target = {
};
module_dm
(
ebs
);
MODULE_AUTHOR
(
"Heinz Mauelshagen <dm-devel@
redhat.com
>"
);
MODULE_AUTHOR
(
"Heinz Mauelshagen <dm-devel@
lists.linux.dev
>"
);
MODULE_DESCRIPTION
(
DM_NAME
" emulated block size target"
);
MODULE_LICENSE
(
"GPL"
);
drivers/md/dm-flakey.c
View file @
fa34e589
...
...
@@ -690,5 +690,5 @@ static struct target_type flakey_target = {
module_dm
(
flakey
);
MODULE_DESCRIPTION
(
DM_NAME
" flakey target"
);
MODULE_AUTHOR
(
"Joe Thornber <dm-devel@
redhat.com
>"
);
MODULE_AUTHOR
(
"Joe Thornber <dm-devel@
lists.linux.dev
>"
);
MODULE_LICENSE
(
"GPL"
);
drivers/md/dm-log-userspace-base.c
View file @
fa34e589
...
...
@@ -926,5 +926,5 @@ module_init(userspace_dirty_log_init);
module_exit
(
userspace_dirty_log_exit
);
MODULE_DESCRIPTION
(
DM_NAME
" userspace dirty log link"
);
MODULE_AUTHOR
(
"Jonathan Brassow <dm-devel@
redhat.com
>"
);
MODULE_AUTHOR
(
"Jonathan Brassow <dm-devel@
lists.linux.dev
>"
);
MODULE_LICENSE
(
"GPL"
);
drivers/md/dm-log.c
View file @
fa34e589
...
...
@@ -908,5 +908,5 @@ module_init(dm_dirty_log_init);
module_exit
(
dm_dirty_log_exit
);
MODULE_DESCRIPTION
(
DM_NAME
" dirty region log"
);
MODULE_AUTHOR
(
"Joe Thornber, Heinz Mauelshagen <dm-devel@
redhat.com
>"
);
MODULE_AUTHOR
(
"Joe Thornber, Heinz Mauelshagen <dm-devel@
lists.linux.dev
>"
);
MODULE_LICENSE
(
"GPL"
);
drivers/md/dm-mpath.c
View file @
fa34e589
...
...
@@ -2266,5 +2266,5 @@ module_param_named(queue_if_no_path_timeout_secs, queue_if_no_path_timeout_secs,
MODULE_PARM_DESC
(
queue_if_no_path_timeout_secs
,
"No available paths queue IO timeout in seconds"
);
MODULE_DESCRIPTION
(
DM_NAME
" multipath target"
);
MODULE_AUTHOR
(
"Sistina Software <dm-devel@
redhat.com
>"
);
MODULE_AUTHOR
(
"Sistina Software <dm-devel@
lists.linux.dev
>"
);
MODULE_LICENSE
(
"GPL"
);
drivers/md/dm-ps-round-robin.c
View file @
fa34e589
...
...
@@ -240,5 +240,5 @@ module_init(dm_rr_init);
module_exit
(
dm_rr_exit
);
MODULE_DESCRIPTION
(
DM_NAME
" round-robin multipath path selector"
);
MODULE_AUTHOR
(
"Sistina Software <dm-devel@
redhat.com
>"
);
MODULE_AUTHOR
(
"Sistina Software <dm-devel@
lists.linux.dev
>"
);
MODULE_LICENSE
(
"GPL"
);
drivers/md/dm-raid.c
View file @
fa34e589
...
...
@@ -4091,6 +4091,6 @@ MODULE_ALIAS("dm-raid10");
MODULE_ALIAS
(
"dm-raid4"
);
MODULE_ALIAS
(
"dm-raid5"
);
MODULE_ALIAS
(
"dm-raid6"
);
MODULE_AUTHOR
(
"Neil Brown <dm-devel@
redhat.com
>"
);
MODULE_AUTHOR
(
"Heinz Mauelshagen <dm-devel@
redhat.com
>"
);
MODULE_AUTHOR
(
"Neil Brown <dm-devel@
lists.linux.dev
>"
);
MODULE_AUTHOR
(
"Heinz Mauelshagen <dm-devel@
lists.linux.dev
>"
);
MODULE_LICENSE
(
"GPL"
);
drivers/md/dm-region-hash.c
View file @
fa34e589
...
...
@@ -723,5 +723,5 @@ void dm_rh_start_recovery(struct dm_region_hash *rh)
EXPORT_SYMBOL_GPL
(
dm_rh_start_recovery
);
MODULE_DESCRIPTION
(
DM_NAME
" region hash"
);
MODULE_AUTHOR
(
"Joe Thornber/Heinz Mauelshagen <dm-devel@
redhat.com
>"
);
MODULE_AUTHOR
(
"Joe Thornber/Heinz Mauelshagen <dm-devel@
lists.linux.dev
>"
);
MODULE_LICENSE
(
"GPL"
);
drivers/md/dm-thin.c
View file @
fa34e589
...
...
@@ -4564,5 +4564,5 @@ module_param_named(no_space_timeout, no_space_timeout_secs, uint, 0644);
MODULE_PARM_DESC
(
no_space_timeout
,
"Out of data space queue IO timeout in seconds"
);
MODULE_DESCRIPTION
(
DM_NAME
" thin provisioning target"
);
MODULE_AUTHOR
(
"Joe Thornber <dm-devel@
redhat.com
>"
);
MODULE_AUTHOR
(
"Joe Thornber <dm-devel@
lists.linux.dev
>"
);
MODULE_LICENSE
(
"GPL"
);
drivers/md/dm-writecache.c
View file @
fa34e589
...
...
@@ -2776,5 +2776,5 @@ static struct target_type writecache_target = {
module_dm
(
writecache
);
MODULE_DESCRIPTION
(
DM_NAME
" writecache target"
);
MODULE_AUTHOR
(
"Mikulas Patocka <dm-devel@
redhat.com
>"
);
MODULE_AUTHOR
(
"Mikulas Patocka <dm-devel@
lists.linux.dev
>"
);
MODULE_LICENSE
(
"GPL"
);
drivers/md/dm.c
View file @
fa34e589
...
...
@@ -3512,5 +3512,5 @@ module_param(swap_bios, int, 0644);
MODULE_PARM_DESC
(
swap_bios
,
"Maximum allowed inflight swap IOs"
);
MODULE_DESCRIPTION
(
DM_NAME
" driver"
);
MODULE_AUTHOR
(
"Joe Thornber <dm-devel@
redhat.com
>"
);
MODULE_AUTHOR
(
"Joe Thornber <dm-devel@
lists.linux.dev
>"
);
MODULE_LICENSE
(
"GPL"
);
drivers/md/persistent-data/dm-block-manager.c
View file @
fa34e589
...
...
@@ -656,7 +656,7 @@ EXPORT_SYMBOL_GPL(dm_bm_checksum);
/*----------------------------------------------------------------*/
MODULE_LICENSE
(
"GPL"
);
MODULE_AUTHOR
(
"Joe Thornber <dm-devel@
redhat.com
>"
);
MODULE_AUTHOR
(
"Joe Thornber <dm-devel@
lists.linux.dev
>"
);
MODULE_DESCRIPTION
(
"Immutable metadata library for dm"
);
/*----------------------------------------------------------------*/
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