Release 4.12 drivers/md/dm-round-robin.c
  
  
  
/*
 * Copyright (C) 2003 Sistina Software.
 * Copyright (C) 2004-2005 Red Hat, Inc. All rights reserved.
 *
 * Module Author: Heinz Mauelshagen
 *
 * This file is released under the GPL.
 *
 * Round-robin path selector.
 */
#include <linux/device-mapper.h>
#include "dm-path-selector.h"
#include <linux/slab.h>
#include <linux/module.h>
#define DM_MSG_PREFIX "multipath round-robin"
#define RR_MIN_IO     1
#define RR_VERSION    "1.2.0"
/*-----------------------------------------------------------------
 * Path-handling code, paths are held in lists
 *---------------------------------------------------------------*/
struct path_info {
	
struct list_head list;
	
struct dm_path *path;
	
unsigned repeat_count;
};
static void free_paths(struct list_head *paths)
{
	struct path_info *pi, *next;
	list_for_each_entry_safe(pi, next, paths, list) {
		list_del(&pi->list);
		kfree(pi);
	}
}
Contributors
| Person | Tokens | Prop | Commits | CommitProp | 
| Alasdair G. Kergon | 44 | 100.00% | 1 | 100.00% | 
| Total | 44 | 100.00% | 1 | 100.00% | 
/*-----------------------------------------------------------------
 * Round-robin selector
 *---------------------------------------------------------------*/
struct selector {
	
struct list_head valid_paths;
	
struct list_head invalid_paths;
	
spinlock_t lock;
};
static struct selector *alloc_selector(void)
{
	struct selector *s = kmalloc(sizeof(*s), GFP_KERNEL);
	if (s) {
		INIT_LIST_HEAD(&s->valid_paths);
		INIT_LIST_HEAD(&s->invalid_paths);
		spin_lock_init(&s->lock);
	}
	return s;
}
Contributors
| Person | Tokens | Prop | Commits | CommitProp | 
| Alasdair G. Kergon | 49 | 83.05% | 1 | 33.33% | 
| Mike Snitzer | 10 | 16.95% | 2 | 66.67% | 
| Total | 59 | 100.00% | 3 | 100.00% | 
static int rr_create(struct path_selector *ps, unsigned argc, char **argv)
{
	struct selector *s;
	s = alloc_selector();
	if (!s)
		return -ENOMEM;
	ps->context = s;
	return 0;
}
Contributors
| Person | Tokens | Prop | Commits | CommitProp | 
| Alasdair G. Kergon | 47 | 100.00% | 2 | 100.00% | 
| Total | 47 | 100.00% | 2 | 100.00% | 
static void rr_destroy(struct path_selector *ps)
{
	struct selector *s = ps->context;
	free_paths(&s->valid_paths);
	free_paths(&s->invalid_paths);
	kfree(s);
	ps->context = NULL;
}
Contributors
| Person | Tokens | Prop | Commits | CommitProp | 
| Alasdair G. Kergon | 47 | 100.00% | 2 | 100.00% | 
| Total | 47 | 100.00% | 2 | 100.00% | 
static int rr_status(struct path_selector *ps, struct dm_path *path,
		     status_type_t type, char *result, unsigned int maxlen)
{
	struct path_info *pi;
	int sz = 0;
	if (!path)
		DMEMIT("0 ");
	else {
		switch(type) {
		case STATUSTYPE_INFO:
			break;
		case STATUSTYPE_TABLE:
			pi = path->pscontext;
			DMEMIT("%u ", pi->repeat_count);
			break;
		}
	}
	return sz;
}
Contributors
| Person | Tokens | Prop | Commits | CommitProp | 
| Alasdair G. Kergon | 81 | 98.78% | 1 | 50.00% | 
| Josef 'Jeff' Sipek | 1 | 1.22% | 1 | 50.00% | 
| Total | 82 | 100.00% | 2 | 100.00% | 
/*
 * Called during initialisation to register each path with an
 * optional repeat_count.
 */
static int rr_add_path(struct path_selector *ps, struct dm_path *path,
		       int argc, char **argv, char **error)
{
	struct selector *s = ps->context;
	struct path_info *pi;
	unsigned repeat_count = RR_MIN_IO;
	char dummy;
	unsigned long flags;
	if (argc > 1) {
		*error = "round-robin ps: incorrect number of arguments";
		return -EINVAL;
	}
	/* First path argument is number of I/Os before switching path */
	if ((argc == 1) && (sscanf(argv[0], "%u%c", &repeat_count, &dummy) != 1)) {
		*error = "round-robin ps: invalid repeat count";
		return -EINVAL;
	}
	if (repeat_count > 1) {
		DMWARN_LIMIT("repeat_count > 1 is deprecated, using 1 instead");
		repeat_count = 1;
	}
	/* allocate the path */
	pi = kmalloc(sizeof(*pi), GFP_KERNEL);
	if (!pi) {
		*error = "round-robin ps: Error allocating path context";
		return -ENOMEM;
	}
	pi->path = path;
	pi->repeat_count = repeat_count;
	path->pscontext = pi;
	spin_lock_irqsave(&s->lock, flags);
	list_add_tail(&pi->list, &s->valid_paths);
	spin_unlock_irqrestore(&s->lock, flags);
	return 0;
}
Contributors
| Person | Tokens | Prop | Commits | CommitProp | 
| Alasdair G. Kergon | 163 | 76.53% | 1 | 16.67% | 
| Mike Snitzer | 41 | 19.25% | 2 | 33.33% | 
| Mikulas Patocka | 7 | 3.29% | 1 | 16.67% | 
| Josef 'Jeff' Sipek | 1 | 0.47% | 1 | 16.67% | 
| Jonathan E Brassow | 1 | 0.47% | 1 | 16.67% | 
| Total | 213 | 100.00% | 6 | 100.00% | 
static void rr_fail_path(struct path_selector *ps, struct dm_path *p)
{
	unsigned long flags;
	struct selector *s = ps->context;
	struct path_info *pi = p->pscontext;
	spin_lock_irqsave(&s->lock, flags);
	list_move(&pi->list, &s->invalid_paths);
	spin_unlock_irqrestore(&s->lock, flags);
}
Contributors
| Person | Tokens | Prop | Commits | CommitProp | 
| Alasdair G. Kergon | 46 | 64.79% | 1 | 33.33% | 
| Mike Snitzer | 24 | 33.80% | 1 | 33.33% | 
| Josef 'Jeff' Sipek | 1 | 1.41% | 1 | 33.33% | 
| Total | 71 | 100.00% | 3 | 100.00% | 
static int rr_reinstate_path(struct path_selector *ps, struct dm_path *p)
{
	unsigned long flags;
	struct selector *s = ps->context;
	struct path_info *pi = p->pscontext;
	spin_lock_irqsave(&s->lock, flags);
	list_move(&pi->list, &s->valid_paths);
	spin_unlock_irqrestore(&s->lock, flags);
	return 0;
}
Contributors
| Person | Tokens | Prop | Commits | CommitProp | 
| Alasdair G. Kergon | 49 | 66.22% | 1 | 33.33% | 
| Mike Snitzer | 24 | 32.43% | 1 | 33.33% | 
| Josef 'Jeff' Sipek | 1 | 1.35% | 1 | 33.33% | 
| Total | 74 | 100.00% | 3 | 100.00% | 
static struct dm_path *rr_select_path(struct path_selector *ps, size_t nr_bytes)
{
	unsigned long flags;
	struct selector *s = ps->context;
	struct path_info *pi = NULL;
	spin_lock_irqsave(&s->lock, flags);
	if (!list_empty(&s->valid_paths)) {
		pi = list_entry(s->valid_paths.next, struct path_info, list);
		list_move_tail(&pi->list, &s->valid_paths);
	}
	spin_unlock_irqrestore(&s->lock, flags);
	return pi ? pi->path : NULL;
}
Contributors
| Person | Tokens | Prop | Commits | CommitProp | 
| Alasdair G. Kergon | 73 | 68.22% | 1 | 20.00% | 
| Mike Snitzer | 31 | 28.97% | 2 | 40.00% | 
| Kiyoshi Ueda | 2 | 1.87% | 1 | 20.00% | 
| Josef 'Jeff' Sipek | 1 | 0.93% | 1 | 20.00% | 
| Total | 107 | 100.00% | 5 | 100.00% | 
static struct path_selector_type rr_ps = {
	.name = "round-robin",
	.module = THIS_MODULE,
	.table_args = 1,
	.info_args = 0,
	.create = rr_create,
	.destroy = rr_destroy,
	.status = rr_status,
	.add_path = rr_add_path,
	.fail_path = rr_fail_path,
	.reinstate_path = rr_reinstate_path,
	.select_path = rr_select_path,
};
static int __init dm_rr_init(void)
{
	int r = dm_register_path_selector(&rr_ps);
	if (r < 0)
		DMERR("register failed %d", r);
	DMINFO("version " RR_VERSION " loaded");
	return r;
}
Contributors
| Person | Tokens | Prop | Commits | CommitProp | 
| Alasdair G. Kergon | 38 | 92.68% | 2 | 66.67% | 
| Mike Snitzer | 3 | 7.32% | 1 | 33.33% | 
| Total | 41 | 100.00% | 3 | 100.00% | 
static void __exit dm_rr_exit(void)
{
	int r = dm_unregister_path_selector(&rr_ps);
	if (r < 0)
		DMERR("unregister failed %d", r);
}
Contributors
| Person | Tokens | Prop | Commits | CommitProp | 
| Alasdair G. Kergon | 31 | 100.00% | 2 | 100.00% | 
| Total | 31 | 100.00% | 2 | 100.00% | 
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_LICENSE("GPL");
Overall Contributors
| Person | Tokens | Prop | Commits | CommitProp | 
| Alasdair G. Kergon | 801 | 83.01% | 4 | 30.77% | 
| Mike Snitzer | 144 | 14.92% | 3 | 23.08% | 
| Mikulas Patocka | 8 | 0.83% | 2 | 15.38% | 
| Josef 'Jeff' Sipek | 6 | 0.62% | 1 | 7.69% | 
| Paul Gortmaker | 3 | 0.31% | 1 | 7.69% | 
| Kiyoshi Ueda | 2 | 0.21% | 1 | 7.69% | 
| Jonathan E Brassow | 1 | 0.10% | 1 | 7.69% | 
| Total | 965 | 100.00% | 13 | 100.00% | 
Information contained on this website is for historical information purposes only and does not indicate or represent copyright ownership.