diff options
author | Mike Snitzer <snitzer@redhat.com> | 2018-02-28 21:59:59 +0100 |
---|---|---|
committer | Mike Snitzer <snitzer@redhat.com> | 2018-04-03 21:04:10 +0200 |
commit | 1eb5fa849f2bf9186a618e85bea23f02e527540a (patch) | |
tree | b0f5e85395f06f86e7db283155c5f73a5b942c8b /drivers/md/dm-raid.c | |
parent | dm: fix dropped return code from dm_get_bdev_for_ioctl (diff) | |
download | linux-1eb5fa849f2bf9186a618e85bea23f02e527540a.tar.xz linux-1eb5fa849f2bf9186a618e85bea23f02e527540a.zip |
dm: allow targets to return output from messages they are sent
Could be useful for a target to return stats or other information.
If a target does DMEMIT() anything to @result from its .message method
then it must return 1 to the caller.
Signed-off-By: Mike Snitzer <snitzer@redhat.com>
Diffstat (limited to 'drivers/md/dm-raid.c')
-rw-r--r-- | drivers/md/dm-raid.c | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/drivers/md/dm-raid.c b/drivers/md/dm-raid.c index c1d1034ff7b7..b7a9c710ebec 100644 --- a/drivers/md/dm-raid.c +++ b/drivers/md/dm-raid.c @@ -3663,7 +3663,8 @@ static void raid_status(struct dm_target *ti, status_type_t type, } } -static int raid_message(struct dm_target *ti, unsigned int argc, char **argv) +static int raid_message(struct dm_target *ti, unsigned int argc, char **argv, + char *result, unsigned maxlen) { struct raid_set *rs = ti->private; struct mddev *mddev = &rs->md; |