Commit 43394c67 authored by Hannes Reinecke's avatar Hannes Reinecke Committed by Martin K. Petersen

scsi_dh_alua: Use separate alua_port_group structure

The port group needs to be a separate structure as several
LUNs might belong to the same group.
Reviewed-by: default avatarChristoph Hellwig <hch@lst.de>
Reviewed-by: default avatarEwan Milne <emilne@redhat.com>
Signed-off-by: default avatarHannes Reinecke <hare@suse.de>
Signed-off-by: default avatarMartin K. Petersen <martin.petersen@oracle.com>
parent c49c8345
...@@ -64,14 +64,24 @@ ...@@ -64,14 +64,24 @@
#define ALUA_OPTIMIZE_STPG 1 #define ALUA_OPTIMIZE_STPG 1
#define ALUA_RTPG_EXT_HDR_UNSUPP 2 #define ALUA_RTPG_EXT_HDR_UNSUPP 2
struct alua_dh_data { static LIST_HEAD(port_group_list);
static DEFINE_SPINLOCK(port_group_lock);
struct alua_port_group {
struct kref kref;
struct list_head node;
int group_id; int group_id;
int rel_port;
int tpgs; int tpgs;
int state; int state;
int pref; int pref;
unsigned flags; /* used for optimizing STPG */ unsigned flags; /* used for optimizing STPG */
unsigned char transition_tmo; unsigned char transition_tmo;
};
struct alua_dh_data {
struct alua_port_group *pg;
int group_id;
int rel_port;
struct scsi_device *sdev; struct scsi_device *sdev;
activate_complete callback_fn; activate_complete callback_fn;
void *callback_data; void *callback_data;
...@@ -82,6 +92,17 @@ struct alua_dh_data { ...@@ -82,6 +92,17 @@ struct alua_dh_data {
static char print_alua_state(int); static char print_alua_state(int);
static void release_port_group(struct kref *kref)
{
struct alua_port_group *pg;
pg = container_of(kref, struct alua_port_group, kref);
spin_lock(&port_group_lock);
list_del(&pg->node);
spin_unlock(&port_group_lock);
kfree(pg);
}
/* /*
* submit_rtpg - Issue a REPORT TARGET GROUP STATES command * submit_rtpg - Issue a REPORT TARGET GROUP STATES command
* @sdev: sdev the command should be sent to * @sdev: sdev the command should be sent to
...@@ -141,6 +162,35 @@ static int submit_stpg(struct scsi_device *sdev, int group_id, ...@@ -141,6 +162,35 @@ static int submit_stpg(struct scsi_device *sdev, int group_id,
ALUA_FAILOVER_RETRIES, NULL, req_flags); ALUA_FAILOVER_RETRIES, NULL, req_flags);
} }
/*
* alua_alloc_pg - Allocate a new port_group structure
* @sdev: scsi device
* @h: alua device_handler data
* @group_id: port group id
*
* Allocate a new port_group structure for a given
* device.
*/
struct alua_port_group *alua_alloc_pg(struct scsi_device *sdev,
int group_id, int tpgs)
{
struct alua_port_group *pg;
pg = kzalloc(sizeof(struct alua_port_group), GFP_KERNEL);
if (!pg)
return NULL;
pg->group_id = group_id;
pg->tpgs = tpgs;
pg->state = TPGS_STATE_OPTIMIZED;
kref_init(&pg->kref);
spin_lock(&port_group_lock);
list_add(&pg->node, &port_group_list);
spin_unlock(&port_group_lock);
return pg;
}
/* /*
* alua_check_tpgs - Evaluate TPGS setting * alua_check_tpgs - Evaluate TPGS setting
* @sdev: device to be checked * @sdev: device to be checked
...@@ -216,7 +266,6 @@ static int alua_check_vpd(struct scsi_device *sdev, struct alua_dh_data *h) ...@@ -216,7 +266,6 @@ static int alua_check_vpd(struct scsi_device *sdev, struct alua_dh_data *h)
ALUA_DH_NAME); ALUA_DH_NAME);
return SCSI_DH_DEV_UNSUPP; return SCSI_DH_DEV_UNSUPP;
} }
h->state = TPGS_STATE_OPTIMIZED;
h->group_id = group_id; h->group_id = group_id;
sdev_printk(KERN_INFO, sdev, sdev_printk(KERN_INFO, sdev,
...@@ -312,7 +361,7 @@ static int alua_check_sense(struct scsi_device *sdev, ...@@ -312,7 +361,7 @@ static int alua_check_sense(struct scsi_device *sdev,
* Returns SCSI_DH_DEV_OFFLINED if the path is * Returns SCSI_DH_DEV_OFFLINED if the path is
* found to be unusable. * found to be unusable.
*/ */
static int alua_rtpg(struct scsi_device *sdev, struct alua_dh_data *h, int wait_for_transition) static int alua_rtpg(struct scsi_device *sdev, struct alua_port_group *pg, int wait_for_transition)
{ {
struct scsi_sense_hdr sense_hdr; struct scsi_sense_hdr sense_hdr;
int len, k, off, valid_states = 0, bufflen = ALUA_RTPG_SIZE; int len, k, off, valid_states = 0, bufflen = ALUA_RTPG_SIZE;
...@@ -322,17 +371,17 @@ static int alua_rtpg(struct scsi_device *sdev, struct alua_dh_data *h, int wait_ ...@@ -322,17 +371,17 @@ static int alua_rtpg(struct scsi_device *sdev, struct alua_dh_data *h, int wait_
unsigned int tpg_desc_tbl_off; unsigned int tpg_desc_tbl_off;
unsigned char orig_transition_tmo; unsigned char orig_transition_tmo;
if (!h->transition_tmo) if (!pg->transition_tmo)
expiry = round_jiffies_up(jiffies + ALUA_FAILOVER_TIMEOUT * HZ); expiry = round_jiffies_up(jiffies + ALUA_FAILOVER_TIMEOUT * HZ);
else else
expiry = round_jiffies_up(jiffies + h->transition_tmo * HZ); expiry = round_jiffies_up(jiffies + pg->transition_tmo * HZ);
buff = kzalloc(bufflen, GFP_KERNEL); buff = kzalloc(bufflen, GFP_KERNEL);
if (!buff) if (!buff)
return SCSI_DH_DEV_TEMP_BUSY; return SCSI_DH_DEV_TEMP_BUSY;
retry: retry:
retval = submit_rtpg(sdev, buff, bufflen, &sense_hdr, h->flags); retval = submit_rtpg(sdev, buff, bufflen, &sense_hdr, pg->flags);
if (retval) { if (retval) {
if (!scsi_sense_valid(&sense_hdr)) { if (!scsi_sense_valid(&sense_hdr)) {
...@@ -353,10 +402,10 @@ static int alua_rtpg(struct scsi_device *sdev, struct alua_dh_data *h, int wait_ ...@@ -353,10 +402,10 @@ static int alua_rtpg(struct scsi_device *sdev, struct alua_dh_data *h, int wait_
* The retry without rtpg_ext_hdr_req set * The retry without rtpg_ext_hdr_req set
* handles this. * handles this.
*/ */
if (!(h->flags & ALUA_RTPG_EXT_HDR_UNSUPP) && if (!(pg->flags & ALUA_RTPG_EXT_HDR_UNSUPP) &&
sense_hdr.sense_key == ILLEGAL_REQUEST && sense_hdr.sense_key == ILLEGAL_REQUEST &&
sense_hdr.asc == 0x24 && sense_hdr.ascq == 0) { sense_hdr.asc == 0x24 && sense_hdr.ascq == 0) {
h->flags |= ALUA_RTPG_EXT_HDR_UNSUPP; pg->flags |= ALUA_RTPG_EXT_HDR_UNSUPP;
goto retry; goto retry;
} }
/* /*
...@@ -397,18 +446,18 @@ static int alua_rtpg(struct scsi_device *sdev, struct alua_dh_data *h, int wait_ ...@@ -397,18 +446,18 @@ static int alua_rtpg(struct scsi_device *sdev, struct alua_dh_data *h, int wait_
goto retry; goto retry;
} }
orig_transition_tmo = h->transition_tmo; orig_transition_tmo = pg->transition_tmo;
if ((buff[4] & RTPG_FMT_MASK) == RTPG_FMT_EXT_HDR && buff[5] != 0) if ((buff[4] & RTPG_FMT_MASK) == RTPG_FMT_EXT_HDR && buff[5] != 0)
h->transition_tmo = buff[5]; pg->transition_tmo = buff[5];
else else
h->transition_tmo = ALUA_FAILOVER_TIMEOUT; pg->transition_tmo = ALUA_FAILOVER_TIMEOUT;
if (wait_for_transition && if (wait_for_transition &&
(orig_transition_tmo != h->transition_tmo)) { (orig_transition_tmo != pg->transition_tmo)) {
sdev_printk(KERN_INFO, sdev, sdev_printk(KERN_INFO, sdev,
"%s: transition timeout set to %d seconds\n", "%s: transition timeout set to %d seconds\n",
ALUA_DH_NAME, h->transition_tmo); ALUA_DH_NAME, pg->transition_tmo);
expiry = jiffies + h->transition_tmo * HZ; expiry = jiffies + pg->transition_tmo * HZ;
} }
if ((buff[4] & RTPG_FMT_MASK) == RTPG_FMT_EXT_HDR) if ((buff[4] & RTPG_FMT_MASK) == RTPG_FMT_EXT_HDR)
...@@ -420,9 +469,9 @@ static int alua_rtpg(struct scsi_device *sdev, struct alua_dh_data *h, int wait_ ...@@ -420,9 +469,9 @@ static int alua_rtpg(struct scsi_device *sdev, struct alua_dh_data *h, int wait_
k < len; k < len;
k += off, ucp += off) { k += off, ucp += off) {
if (h->group_id == get_unaligned_be16(&ucp[2])) { if (pg->group_id == get_unaligned_be16(&ucp[2])) {
h->state = ucp[0] & 0x0f; pg->state = ucp[0] & 0x0f;
h->pref = ucp[0] >> 7; pg->pref = ucp[0] >> 7;
valid_states = ucp[1]; valid_states = ucp[1];
} }
off = 8 + (ucp[7] * 4); off = 8 + (ucp[7] * 4);
...@@ -430,8 +479,8 @@ static int alua_rtpg(struct scsi_device *sdev, struct alua_dh_data *h, int wait_ ...@@ -430,8 +479,8 @@ static int alua_rtpg(struct scsi_device *sdev, struct alua_dh_data *h, int wait_
sdev_printk(KERN_INFO, sdev, sdev_printk(KERN_INFO, sdev,
"%s: port group %02x state %c %s supports %c%c%c%c%c%c%c\n", "%s: port group %02x state %c %s supports %c%c%c%c%c%c%c\n",
ALUA_DH_NAME, h->group_id, print_alua_state(h->state), ALUA_DH_NAME, pg->group_id, print_alua_state(pg->state),
h->pref ? "preferred" : "non-preferred", pg->pref ? "preferred" : "non-preferred",
valid_states&TPGS_SUPPORT_TRANSITION?'T':'t', valid_states&TPGS_SUPPORT_TRANSITION?'T':'t',
valid_states&TPGS_SUPPORT_OFFLINE?'O':'o', valid_states&TPGS_SUPPORT_OFFLINE?'O':'o',
valid_states&TPGS_SUPPORT_LBA_DEPENDENT?'L':'l', valid_states&TPGS_SUPPORT_LBA_DEPENDENT?'L':'l',
...@@ -440,7 +489,7 @@ static int alua_rtpg(struct scsi_device *sdev, struct alua_dh_data *h, int wait_ ...@@ -440,7 +489,7 @@ static int alua_rtpg(struct scsi_device *sdev, struct alua_dh_data *h, int wait_
valid_states&TPGS_SUPPORT_NONOPTIMIZED?'N':'n', valid_states&TPGS_SUPPORT_NONOPTIMIZED?'N':'n',
valid_states&TPGS_SUPPORT_OPTIMIZED?'A':'a'); valid_states&TPGS_SUPPORT_OPTIMIZED?'A':'a');
switch (h->state) { switch (pg->state) {
case TPGS_STATE_TRANSITIONING: case TPGS_STATE_TRANSITIONING:
if (wait_for_transition) { if (wait_for_transition) {
if (time_before(jiffies, expiry)) { if (time_before(jiffies, expiry)) {
...@@ -455,7 +504,7 @@ static int alua_rtpg(struct scsi_device *sdev, struct alua_dh_data *h, int wait_ ...@@ -455,7 +504,7 @@ static int alua_rtpg(struct scsi_device *sdev, struct alua_dh_data *h, int wait_
} }
/* Transitioning time exceeded, set port to standby */ /* Transitioning time exceeded, set port to standby */
h->state = TPGS_STATE_STANDBY; pg->state = TPGS_STATE_STANDBY;
break; break;
case TPGS_STATE_OFFLINE: case TPGS_STATE_OFFLINE:
/* Path unusable */ /* Path unusable */
...@@ -478,22 +527,22 @@ static int alua_rtpg(struct scsi_device *sdev, struct alua_dh_data *h, int wait_ ...@@ -478,22 +527,22 @@ static int alua_rtpg(struct scsi_device *sdev, struct alua_dh_data *h, int wait_
* a re-evaluation of the target group state or SCSI_DH_OK * a re-evaluation of the target group state or SCSI_DH_OK
* if no further action needs to be taken. * if no further action needs to be taken.
*/ */
static unsigned alua_stpg(struct scsi_device *sdev, struct alua_dh_data *h) static unsigned alua_stpg(struct scsi_device *sdev, struct alua_port_group *pg)
{ {
int retval; int retval;
struct scsi_sense_hdr sense_hdr; struct scsi_sense_hdr sense_hdr;
if (!(h->tpgs & TPGS_MODE_EXPLICIT)) { if (!(pg->tpgs & TPGS_MODE_EXPLICIT)) {
/* Only implicit ALUA supported, retry */ /* Only implicit ALUA supported, retry */
return SCSI_DH_RETRY; return SCSI_DH_RETRY;
} }
switch (h->state) { switch (pg->state) {
case TPGS_STATE_OPTIMIZED: case TPGS_STATE_OPTIMIZED:
return SCSI_DH_OK; return SCSI_DH_OK;
case TPGS_STATE_NONOPTIMIZED: case TPGS_STATE_NONOPTIMIZED:
if ((h->flags & ALUA_OPTIMIZE_STPG) && if ((pg->flags & ALUA_OPTIMIZE_STPG) &&
!h->pref && !pg->pref &&
(h->tpgs & TPGS_MODE_IMPLICIT)) (pg->tpgs & TPGS_MODE_IMPLICIT))
return SCSI_DH_OK; return SCSI_DH_OK;
break; break;
case TPGS_STATE_STANDBY: case TPGS_STATE_STANDBY:
...@@ -506,10 +555,10 @@ static unsigned alua_stpg(struct scsi_device *sdev, struct alua_dh_data *h) ...@@ -506,10 +555,10 @@ static unsigned alua_stpg(struct scsi_device *sdev, struct alua_dh_data *h)
default: default:
sdev_printk(KERN_INFO, sdev, sdev_printk(KERN_INFO, sdev,
"%s: stpg failed, unhandled TPGS state %d", "%s: stpg failed, unhandled TPGS state %d",
ALUA_DH_NAME, h->state); ALUA_DH_NAME, pg->state);
return SCSI_DH_NOSYS; return SCSI_DH_NOSYS;
} }
retval = submit_stpg(sdev, h->group_id, &sense_hdr); retval = submit_stpg(sdev, pg->group_id, &sense_hdr);
if (retval) { if (retval) {
if (!scsi_sense_valid(&sense_hdr)) { if (!scsi_sense_valid(&sense_hdr)) {
...@@ -519,7 +568,7 @@ static unsigned alua_stpg(struct scsi_device *sdev, struct alua_dh_data *h) ...@@ -519,7 +568,7 @@ static unsigned alua_stpg(struct scsi_device *sdev, struct alua_dh_data *h)
if (driver_byte(retval) == DRIVER_ERROR) if (driver_byte(retval) == DRIVER_ERROR)
return SCSI_DH_DEV_TEMP_BUSY; return SCSI_DH_DEV_TEMP_BUSY;
} else { } else {
sdev_printk(KERN_INFO, h->sdev, "%s: stpg failed\n", sdev_printk(KERN_INFO, sdev, "%s: stpg failed\n",
ALUA_DH_NAME); ALUA_DH_NAME);
scsi_print_sense_hdr(sdev, ALUA_DH_NAME, &sense_hdr); scsi_print_sense_hdr(sdev, ALUA_DH_NAME, &sense_hdr);
} }
...@@ -537,20 +586,24 @@ static unsigned alua_stpg(struct scsi_device *sdev, struct alua_dh_data *h) ...@@ -537,20 +586,24 @@ static unsigned alua_stpg(struct scsi_device *sdev, struct alua_dh_data *h)
*/ */
static int alua_initialize(struct scsi_device *sdev, struct alua_dh_data *h) static int alua_initialize(struct scsi_device *sdev, struct alua_dh_data *h)
{ {
int err = SCSI_DH_DEV_UNSUPP; int err = SCSI_DH_DEV_UNSUPP, tpgs;
h->tpgs = alua_check_tpgs(sdev); tpgs = alua_check_tpgs(sdev);
if (h->tpgs == TPGS_MODE_NONE) if (tpgs == TPGS_MODE_NONE)
goto out; goto out;
err = alua_check_vpd(sdev, h); err = alua_check_vpd(sdev, h);
if (err != SCSI_DH_OK) if (err != SCSI_DH_OK)
goto out; goto out;
err = alua_rtpg(sdev, h, 0); h->pg = alua_alloc_pg(sdev, h->group_id, tpgs);
if (err != SCSI_DH_OK) if (!h->pg) {
err = SCSI_DH_NOMEM;
goto out; goto out;
}
kref_get(&h->pg->kref);
err = alua_rtpg(sdev, h->pg, 0);
kref_put(&h->pg->kref, release_port_group);
out: out:
return err; return err;
} }
...@@ -566,6 +619,7 @@ static int alua_initialize(struct scsi_device *sdev, struct alua_dh_data *h) ...@@ -566,6 +619,7 @@ static int alua_initialize(struct scsi_device *sdev, struct alua_dh_data *h)
static int alua_set_params(struct scsi_device *sdev, const char *params) static int alua_set_params(struct scsi_device *sdev, const char *params)
{ {
struct alua_dh_data *h = sdev->handler_data; struct alua_dh_data *h = sdev->handler_data;
struct alua_port_group *pg = NULL;
unsigned int optimize = 0, argc; unsigned int optimize = 0, argc;
const char *p = params; const char *p = params;
int result = SCSI_DH_OK; int result = SCSI_DH_OK;
...@@ -578,10 +632,14 @@ static int alua_set_params(struct scsi_device *sdev, const char *params) ...@@ -578,10 +632,14 @@ static int alua_set_params(struct scsi_device *sdev, const char *params)
if ((sscanf(p, "%u", &optimize) != 1) || (optimize > 1)) if ((sscanf(p, "%u", &optimize) != 1) || (optimize > 1))
return -EINVAL; return -EINVAL;
pg = h->pg;
if (!pg)
return -ENXIO;
if (optimize) if (optimize)
h->flags |= ALUA_OPTIMIZE_STPG; pg->flags |= ALUA_OPTIMIZE_STPG;
else else
h->flags &= ~ALUA_OPTIMIZE_STPG; pg->flags &= ~ALUA_OPTIMIZE_STPG;
return result; return result;
} }
...@@ -606,16 +664,23 @@ static int alua_activate(struct scsi_device *sdev, ...@@ -606,16 +664,23 @@ static int alua_activate(struct scsi_device *sdev,
struct alua_dh_data *h = sdev->handler_data; struct alua_dh_data *h = sdev->handler_data;
int err = SCSI_DH_OK; int err = SCSI_DH_OK;
err = alua_rtpg(sdev, h, 1); if (!h->pg)
if (err != SCSI_DH_OK)
goto out; goto out;
kref_get(&h->pg->kref);
if (optimize_stpg) if (optimize_stpg)
h->flags |= ALUA_OPTIMIZE_STPG; h->pg->flags |= ALUA_OPTIMIZE_STPG;
err = alua_stpg(sdev, h); err = alua_rtpg(sdev, h->pg, 1);
if (err != SCSI_DH_OK) {
kref_put(&h->pg->kref, release_port_group);
goto out;
}
err = alua_stpg(sdev, h->pg);
if (err == SCSI_DH_RETRY) if (err == SCSI_DH_RETRY)
err = alua_rtpg(sdev, h, 1); err = alua_rtpg(sdev, h->pg, 1);
kref_put(&h->pg->kref, release_port_group);
out: out:
if (fn) if (fn)
fn(data, err); fn(data, err);
...@@ -631,13 +696,19 @@ static int alua_activate(struct scsi_device *sdev, ...@@ -631,13 +696,19 @@ static int alua_activate(struct scsi_device *sdev,
static int alua_prep_fn(struct scsi_device *sdev, struct request *req) static int alua_prep_fn(struct scsi_device *sdev, struct request *req)
{ {
struct alua_dh_data *h = sdev->handler_data; struct alua_dh_data *h = sdev->handler_data;
int state;
int ret = BLKPREP_OK; int ret = BLKPREP_OK;
if (h->state == TPGS_STATE_TRANSITIONING) if (!h->pg)
return ret;
kref_get(&h->pg->kref);
state = h->pg->state;
kref_put(&h->pg->kref, release_port_group);
if (state == TPGS_STATE_TRANSITIONING)
ret = BLKPREP_DEFER; ret = BLKPREP_DEFER;
else if (h->state != TPGS_STATE_OPTIMIZED && else if (state != TPGS_STATE_OPTIMIZED &&
h->state != TPGS_STATE_NONOPTIMIZED && state != TPGS_STATE_NONOPTIMIZED &&
h->state != TPGS_STATE_LBA_DEPENDENT) { state != TPGS_STATE_LBA_DEPENDENT) {
ret = BLKPREP_KILL; ret = BLKPREP_KILL;
req->cmd_flags |= REQ_QUIET; req->cmd_flags |= REQ_QUIET;
} }
...@@ -652,18 +723,18 @@ static int alua_prep_fn(struct scsi_device *sdev, struct request *req) ...@@ -652,18 +723,18 @@ static int alua_prep_fn(struct scsi_device *sdev, struct request *req)
static int alua_bus_attach(struct scsi_device *sdev) static int alua_bus_attach(struct scsi_device *sdev)
{ {
struct alua_dh_data *h; struct alua_dh_data *h;
int err; int err, ret = -EINVAL;
h = kzalloc(sizeof(*h) , GFP_KERNEL); h = kzalloc(sizeof(*h) , GFP_KERNEL);
if (!h) if (!h)
return -ENOMEM; return -ENOMEM;
h->tpgs = TPGS_MODE_UNINITIALIZED; h->pg = NULL;
h->state = TPGS_STATE_OPTIMIZED;
h->group_id = -1;
h->rel_port = -1; h->rel_port = -1;
h->sdev = sdev; h->sdev = sdev;
err = alua_initialize(sdev, h); err = alua_initialize(sdev, h);
if (err == SCSI_DH_NOMEM)
ret = -ENOMEM;
if (err != SCSI_DH_OK && err != SCSI_DH_DEV_OFFLINED) if (err != SCSI_DH_OK && err != SCSI_DH_DEV_OFFLINED)
goto failed; goto failed;
...@@ -671,7 +742,7 @@ static int alua_bus_attach(struct scsi_device *sdev) ...@@ -671,7 +742,7 @@ static int alua_bus_attach(struct scsi_device *sdev)
return 0; return 0;
failed: failed:
kfree(h); kfree(h);
return -EINVAL; return ret;
} }
/* /*
...@@ -682,6 +753,10 @@ static void alua_bus_detach(struct scsi_device *sdev) ...@@ -682,6 +753,10 @@ static void alua_bus_detach(struct scsi_device *sdev)
{ {
struct alua_dh_data *h = sdev->handler_data; struct alua_dh_data *h = sdev->handler_data;
if (h->pg) {
kref_put(&h->pg->kref, release_port_group);
h->pg = NULL;
}
sdev->handler_data = NULL; sdev->handler_data = NULL;
kfree(h); kfree(h);
} }
......
...@@ -52,6 +52,7 @@ enum { ...@@ -52,6 +52,7 @@ enum {
SCSI_DH_TIMED_OUT, SCSI_DH_TIMED_OUT,
SCSI_DH_RES_TEMP_UNAVAIL, SCSI_DH_RES_TEMP_UNAVAIL,
SCSI_DH_DEV_OFFLINED, SCSI_DH_DEV_OFFLINED,
SCSI_DH_NOMEM,
SCSI_DH_NOSYS, SCSI_DH_NOSYS,
SCSI_DH_DRIVER_MAX, SCSI_DH_DRIVER_MAX,
}; };
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment