cregit-Linux how code gets into the kernel

Release 4.14 drivers/nvme/target/configfs.c

/*
 * Configfs interface for the NVMe target.
 * Copyright (c) 2015-2016 HGST, a Western Digital Company.
 *
 * This program is free software; you can redistribute it and/or modify it
 * under the terms and conditions of the GNU General Public License,
 * version 2, as published by the Free Software Foundation.
 *
 * This program is distributed in the hope it will be useful, but WITHOUT
 * ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or
 * FITNESS FOR A PARTICULAR PURPOSE.  See the GNU General Public License for
 * more details.
 */

#define pr_fmt(fmt) KBUILD_MODNAME ": " fmt
#include <linux/kernel.h>
#include <linux/module.h>
#include <linux/slab.h>
#include <linux/stat.h>
#include <linux/ctype.h>

#include "nvmet.h"


static struct config_item_type nvmet_host_type;

static struct config_item_type nvmet_subsys_type;

/*
 * nvmet_port Generic ConfigFS definitions.
 * Used in any place in the ConfigFS tree that refers to an address.
 */

static ssize_t nvmet_addr_adrfam_show(struct config_item *item, char *page) { switch (to_nvmet_port(item)->disc_addr.adrfam) { case NVMF_ADDR_FAMILY_IP4: return sprintf(page, "ipv4\n"); case NVMF_ADDR_FAMILY_IP6: return sprintf(page, "ipv6\n"); case NVMF_ADDR_FAMILY_IB: return sprintf(page, "ib\n"); case NVMF_ADDR_FAMILY_FC: return sprintf(page, "fc\n"); default: return sprintf(page, "\n"); } }

Contributors

PersonTokensPropCommitsCommitProp
Christoph Hellwig7086.42%150.00%
James Smart1113.58%150.00%
Total81100.00%2100.00%


static ssize_t nvmet_addr_adrfam_store(struct config_item *item, const char *page, size_t count) { struct nvmet_port *port = to_nvmet_port(item); if (port->enabled) { pr_err("Cannot modify address while enabled\n"); pr_err("Disable the address before modifying\n"); return -EACCES; } if (sysfs_streq(page, "ipv4")) { port->disc_addr.adrfam = NVMF_ADDR_FAMILY_IP4; } else if (sysfs_streq(page, "ipv6")) { port->disc_addr.adrfam = NVMF_ADDR_FAMILY_IP6; } else if (sysfs_streq(page, "ib")) { port->disc_addr.adrfam = NVMF_ADDR_FAMILY_IB; } else if (sysfs_streq(page, "fc")) { port->disc_addr.adrfam = NVMF_ADDR_FAMILY_FC; } else { pr_err("Invalid value '%s' for adrfam\n", page); return -EINVAL; } return count; }

Contributors

PersonTokensPropCommitsCommitProp
Christoph Hellwig12786.39%150.00%
James Smart2013.61%150.00%
Total147100.00%2100.00%

CONFIGFS_ATTR(nvmet_, addr_adrfam);
static ssize_t nvmet_addr_portid_show(struct config_item *item, char *page) { struct nvmet_port *port = to_nvmet_port(item); return snprintf(page, PAGE_SIZE, "%d\n", le16_to_cpu(port->disc_addr.portid)); }

Contributors

PersonTokensPropCommitsCommitProp
Christoph Hellwig44100.00%1100.00%
Total44100.00%1100.00%


static ssize_t nvmet_addr_portid_store(struct config_item *item, const char *page, size_t count) { struct nvmet_port *port = to_nvmet_port(item); u16 portid = 0; if (kstrtou16(page, 0, &portid)) { pr_err("Invalid value '%s' for portid\n", page); return -EINVAL; } if (port->enabled) { pr_err("Cannot modify address while enabled\n"); pr_err("Disable the address before modifying\n"); return -EACCES; } port->disc_addr.portid = cpu_to_le16(portid); return count; }

Contributors

PersonTokensPropCommitsCommitProp
Christoph Hellwig95100.00%1100.00%
Total95100.00%1100.00%

CONFIGFS_ATTR(nvmet_, addr_portid);
static ssize_t nvmet_addr_traddr_show(struct config_item *item, char *page) { struct nvmet_port *port = to_nvmet_port(item); return snprintf(page, PAGE_SIZE, "%s\n", port->disc_addr.traddr); }

Contributors

PersonTokensPropCommitsCommitProp
Christoph Hellwig41100.00%1100.00%
Total41100.00%1100.00%


static ssize_t nvmet_addr_traddr_store(struct config_item *item, const char *page, size_t count) { struct nvmet_port *port = to_nvmet_port(item); if (count > NVMF_TRADDR_SIZE) { pr_err("Invalid value '%s' for traddr\n", page); return -EINVAL; } if (port->enabled) { pr_err("Cannot modify address while enabled\n"); pr_err("Disable the address before modifying\n"); return -EACCES; } return snprintf(port->disc_addr.traddr, sizeof(port->disc_addr.traddr), "%s", page); }

Contributors

PersonTokensPropCommitsCommitProp
Christoph Hellwig93100.00%1100.00%
Total93100.00%1100.00%

CONFIGFS_ATTR(nvmet_, addr_traddr);
static ssize_t nvmet_addr_treq_show(struct config_item *item, char *page) { switch (to_nvmet_port(item)->disc_addr.treq) { case NVMF_TREQ_NOT_SPECIFIED: return sprintf(page, "not specified\n"); case NVMF_TREQ_REQUIRED: return sprintf(page, "required\n"); case NVMF_TREQ_NOT_REQUIRED: return sprintf(page, "not required\n"); default: return sprintf(page, "\n"); } }

Contributors

PersonTokensPropCommitsCommitProp
Christoph Hellwig70100.00%1100.00%
Total70100.00%1100.00%


static ssize_t nvmet_addr_treq_store(struct config_item *item, const char *page, size_t count) { struct nvmet_port *port = to_nvmet_port(item); if (port->enabled) { pr_err("Cannot modify address while enabled\n"); pr_err("Disable the address before modifying\n"); return -EACCES; } if (sysfs_streq(page, "not specified")) { port->disc_addr.treq = NVMF_TREQ_NOT_SPECIFIED; } else if (sysfs_streq(page, "required")) { port->disc_addr.treq = NVMF_TREQ_REQUIRED; } else if (sysfs_streq(page, "not required")) { port->disc_addr.treq = NVMF_TREQ_NOT_REQUIRED; } else { pr_err("Invalid value '%s' for treq\n", page); return -EINVAL; } return count; }

Contributors

PersonTokensPropCommitsCommitProp
Christoph Hellwig127100.00%1100.00%
Total127100.00%1100.00%

CONFIGFS_ATTR(nvmet_, addr_treq);
static ssize_t nvmet_addr_trsvcid_show(struct config_item *item, char *page) { struct nvmet_port *port = to_nvmet_port(item); return snprintf(page, PAGE_SIZE, "%s\n", port->disc_addr.trsvcid); }

Contributors

PersonTokensPropCommitsCommitProp
Christoph Hellwig41100.00%1100.00%
Total41100.00%1100.00%


static ssize_t nvmet_addr_trsvcid_store(struct config_item *item, const char *page, size_t count) { struct nvmet_port *port = to_nvmet_port(item); if (count > NVMF_TRSVCID_SIZE) { pr_err("Invalid value '%s' for trsvcid\n", page); return -EINVAL; } if (port->enabled) { pr_err("Cannot modify address while enabled\n"); pr_err("Disable the address before modifying\n"); return -EACCES; } return snprintf(port->disc_addr.trsvcid, sizeof(port->disc_addr.trsvcid), "%s", page); }

Contributors

PersonTokensPropCommitsCommitProp
Christoph Hellwig93100.00%1100.00%
Total93100.00%1100.00%

CONFIGFS_ATTR(nvmet_, addr_trsvcid);
static ssize_t nvmet_addr_trtype_show(struct config_item *item, char *page) { switch (to_nvmet_port(item)->disc_addr.trtype) { case NVMF_TRTYPE_RDMA: return sprintf(page, "rdma\n"); case NVMF_TRTYPE_LOOP: return sprintf(page, "loop\n"); case NVMF_TRTYPE_FC: return sprintf(page, "fc\n"); default: return sprintf(page, "\n"); } }

Contributors

PersonTokensPropCommitsCommitProp
Christoph Hellwig5984.29%150.00%
James Smart1115.71%150.00%
Total70100.00%2100.00%


static void nvmet_port_init_tsas_rdma(struct nvmet_port *port) { port->disc_addr.trtype = NVMF_TRTYPE_RDMA; memset(&port->disc_addr.tsas.rdma, 0, NVMF_TSAS_SIZE); port->disc_addr.tsas.rdma.qptype = NVMF_RDMA_QPTYPE_CONNECTED; port->disc_addr.tsas.rdma.prtype = NVMF_RDMA_PRTYPE_NOT_SPECIFIED; port->disc_addr.tsas.rdma.cms = NVMF_RDMA_CMS_RDMA_CM; }

Contributors

PersonTokensPropCommitsCommitProp
Christoph Hellwig71100.00%1100.00%
Total71100.00%1100.00%


static void nvmet_port_init_tsas_loop(struct nvmet_port *port) { port->disc_addr.trtype = NVMF_TRTYPE_LOOP; memset(&port->disc_addr.tsas, 0, NVMF_TSAS_SIZE); }

Contributors

PersonTokensPropCommitsCommitProp
Christoph Hellwig33100.00%1100.00%
Total33100.00%1100.00%


static void nvmet_port_init_tsas_fc(struct nvmet_port *port) { port->disc_addr.trtype = NVMF_TRTYPE_FC; memset(&port->disc_addr.tsas, 0, NVMF_TSAS_SIZE); }

Contributors

PersonTokensPropCommitsCommitProp
James Smart33100.00%1100.00%
Total33100.00%1100.00%


static ssize_t nvmet_addr_trtype_store(struct config_item *item, const char *page, size_t count) { struct nvmet_port *port = to_nvmet_port(item); if (port->enabled) { pr_err("Cannot modify address while enabled\n"); pr_err("Disable the address before modifying\n"); return -EACCES; } if (sysfs_streq(page, "rdma")) { nvmet_port_init_tsas_rdma(port); } else if (sysfs_streq(page, "loop")) { nvmet_port_init_tsas_loop(port); } else if (sysfs_streq(page, "fc")) { nvmet_port_init_tsas_fc(port); } else { pr_err("Invalid value '%s' for trtype\n", page); return -EINVAL; } return count; }

Contributors

PersonTokensPropCommitsCommitProp
Christoph Hellwig10185.59%150.00%
James Smart1714.41%150.00%
Total118100.00%2100.00%

CONFIGFS_ATTR(nvmet_, addr_trtype); /* * Namespace structures & file operation functions below */
static ssize_t nvmet_ns_device_path_show(struct config_item *item, char *page) { return sprintf(page, "%s\n", to_nvmet_ns(item)->device_path); }

Contributors

PersonTokensPropCommitsCommitProp
Christoph Hellwig30100.00%1100.00%
Total30100.00%1100.00%


static ssize_t nvmet_ns_device_path_store(struct config_item *item, const char *page, size_t count) { struct nvmet_ns *ns = to_nvmet_ns(item); struct nvmet_subsys *subsys = ns->subsys; int ret; mutex_lock(&subsys->lock); ret = -EBUSY; if (ns->enabled) goto out_unlock; kfree(ns->device_path); ret = -ENOMEM; ns->device_path = kstrdup(page, GFP_KERNEL); if (!ns->device_path) goto out_unlock; mutex_unlock(&subsys->lock); return count; out_unlock: mutex_unlock(&subsys->lock); return ret; }

Contributors

PersonTokensPropCommitsCommitProp
Christoph Hellwig11898.33%150.00%
Alexander Solganik21.67%150.00%
Total120100.00%2100.00%

CONFIGFS_ATTR(nvmet_ns_, device_path);
static ssize_t nvmet_ns_device_uuid_show(struct config_item *item, char *page) { return sprintf(page, "%pUb\n", &to_nvmet_ns(item)->uuid); }

Contributors

PersonTokensPropCommitsCommitProp
Johannes Thumshirn31100.00%1100.00%
Total31100.00%1100.00%


static ssize_t nvmet_ns_device_uuid_store(struct config_item *item, const char *page, size_t count) { struct nvmet_ns *ns = to_nvmet_ns(item); struct nvmet_subsys *subsys = ns->subsys; int ret = 0; mutex_lock(&subsys->lock); if (ns->enabled) { ret = -EBUSY; goto out_unlock; } if (uuid_parse(page, &ns->uuid)) ret = -EINVAL; out_unlock: mutex_unlock(&subsys->lock); return ret ? ret : count; }

Contributors

PersonTokensPropCommitsCommitProp
Johannes Thumshirn101100.00%1100.00%
Total101100.00%1100.00%


static ssize_t nvmet_ns_device_nguid_show(struct config_item *item, char *page) { return sprintf(page, "%pUb\n", &to_nvmet_ns(item)->nguid); }

Contributors

PersonTokensPropCommitsCommitProp
Christoph Hellwig31100.00%1100.00%
Total31100.00%1100.00%

CONFIGFS_ATTR(nvmet_ns_, device_uuid);
static ssize_t nvmet_ns_device_nguid_store(struct config_item *item, const char *page, size_t count) { struct nvmet_ns *ns = to_nvmet_ns(item); struct nvmet_subsys *subsys = ns->subsys; u8 nguid[16]; const char *p = page; int i; int ret = 0; mutex_lock(&subsys->lock); if (ns->enabled) { ret = -EBUSY; goto out_unlock; } for (i = 0; i < 16; i++) { if (p + 2 > page + count) { ret = -EINVAL; goto out_unlock; } if (!isxdigit(p[0]) || !isxdigit(p[1])) { ret = -EINVAL; goto out_unlock; } nguid[i] = (hex_to_bin(p[0]) << 4) | hex_to_bin(p[1]); p += 2; if (*p == '-' || *p == ':') p++; } memcpy(&ns->nguid, nguid, sizeof(nguid)); out_unlock: mutex_unlock(&subsys->lock); return ret ? ret : count; }

Contributors

PersonTokensPropCommitsCommitProp
Christoph Hellwig22299.11%150.00%
Alexander Solganik20.89%150.00%
Total224100.00%2100.00%

CONFIGFS_ATTR(nvmet_ns_, device_nguid);
static ssize_t nvmet_ns_enable_show(struct config_item *item, char *page) { return sprintf(page, "%d\n", to_nvmet_ns(item)->enabled); }

Contributors

PersonTokensPropCommitsCommitProp
Christoph Hellwig2893.33%150.00%
Alexander Solganik26.67%150.00%
Total30100.00%2100.00%


static ssize_t nvmet_ns_enable_store(struct config_item *item, const char *page, size_t count) { struct nvmet_ns *ns = to_nvmet_ns(item); bool enable; int ret = 0; if (strtobool(page, &enable)) return -EINVAL; if (enable) ret = nvmet_ns_enable(ns); else nvmet_ns_disable(ns); return ret ? ret : count; }

Contributors

PersonTokensPropCommitsCommitProp
Christoph Hellwig75100.00%1100.00%
Total75100.00%1100.00%

CONFIGFS_ATTR(nvmet_ns_, enable); static struct configfs_attribute *nvmet_ns_attrs[] = { &nvmet_ns_attr_device_path, &nvmet_ns_attr_device_nguid, &nvmet_ns_attr_device_uuid, &nvmet_ns_attr_enable, NULL, };
static void nvmet_ns_release(struct config_item *item) { struct nvmet_ns *ns = to_nvmet_ns(item); nvmet_ns_free(ns); }

Contributors

PersonTokensPropCommitsCommitProp
Christoph Hellwig26100.00%1100.00%
Total26100.00%1100.00%

static struct configfs_item_operations nvmet_ns_item_ops = { .release = nvmet_ns_release, }; static struct config_item_type nvmet_ns_type = { .ct_item_ops = &nvmet_ns_item_ops, .ct_attrs = nvmet_ns_attrs, .ct_owner = THIS_MODULE, };
static struct config_group *nvmet_ns_make(struct config_group *group, const char *name) { struct nvmet_subsys *subsys = namespaces_to_subsys(&group->cg_item); struct nvmet_ns *ns; int ret; u32 nsid; ret = kstrtou32(name, 0, &nsid); if (ret) goto out; ret = -EINVAL; if (nsid == 0 || nsid == NVME_NSID_ALL) goto out; ret = -ENOMEM; ns = nvmet_ns_alloc(subsys, nsid); if (!ns) goto out; config_group_init_type_name(&ns->group, name, &nvmet_ns_type); pr_info("adding nsid %d to subsystem %s\n", nsid, subsys->subsysnqn); return &ns->group; out: return ERR_PTR(ret); }

Contributors

PersonTokensPropCommitsCommitProp
Christoph Hellwig139100.00%2100.00%
Total139100.00%2100.00%

static struct configfs_group_operations nvmet_namespaces_group_ops = { .make_group = nvmet_ns_make, }; static struct config_item_type nvmet_namespaces_type = { .ct_group_ops = &nvmet_namespaces_group_ops, .ct_owner = THIS_MODULE, };
static int nvmet_port_subsys_allow_link(struct config_item *parent, struct config_item *target) { struct nvmet_port *port = to_nvmet_port(parent->ci_parent); struct nvmet_subsys *subsys; struct nvmet_subsys_link *link, *p; int ret; if (target->ci_type != &nvmet_subsys_type) { pr_err("can only link subsystems into the subsystems dir.!\n"); return -EINVAL; } subsys = to_subsys(target); link = kmalloc(sizeof(*link), GFP_KERNEL); if (!link) return -ENOMEM; link->subsys = subsys; down_write(&nvmet_config_sem); ret = -EEXIST; list_for_each_entry(p, &port->subsystems, entry) { if (p->subsys == subsys) goto out_free_link; } if (list_empty(&port->subsystems)) { ret = nvmet_enable_port(port); if (ret) goto out_free_link; } list_add_tail(&link->entry, &port->subsystems); nvmet_genctr++; up_write(&nvmet_config_sem); return 0; out_free_link: up_write(&nvmet_config_sem); kfree(link); return ret; }

Contributors

PersonTokensPropCommitsCommitProp
Christoph Hellwig198100.00%1100.00%
Total198100.00%1100.00%


static void nvmet_port_subsys_drop_link(struct config_item *parent, struct config_item *target) { struct nvmet_port *port = to_nvmet_port(parent->ci_parent); struct nvmet_subsys *subsys = to_subsys(target); struct nvmet_subsys_link *p; down_write(&nvmet_config_sem); list_for_each_entry(p, &port->subsystems, entry) { if (p->subsys == subsys) goto found; } up_write(&nvmet_config_sem); return; found: list_del(&p->entry); nvmet_genctr++; if (list_empty(&port->subsystems)) nvmet_disable_port(port); up_write(&nvmet_config_sem); kfree(p); }

Contributors

PersonTokensPropCommitsCommitProp
Christoph Hellwig11498.28%150.00%
Andrzej Pietrasiewicz21.72%150.00%
Total116100.00%2100.00%

static struct configfs_item_operations nvmet_port_subsys_item_ops = { .allow_link = nvmet_port_subsys_allow_link, .drop_link = nvmet_port_subsys_drop_link, }; static struct config_item_type nvmet_port_subsys_type = { .ct_item_ops = &nvmet_port_subsys_item_ops, .ct_owner = THIS_MODULE, };
static int nvmet_allowed_hosts_allow_link(struct config_item *parent, struct config_item *target) { struct nvmet_subsys *subsys = to_subsys(parent->ci_parent); struct nvmet_host *host; struct nvmet_host_link *link, *p; int ret; if (target->ci_type != &nvmet_host_type) { pr_err("can only link hosts into the allowed_hosts directory!\n"); return -EINVAL; } host = to_host(target); link = kmalloc(sizeof(*link), GFP_KERNEL); if (!link) return -ENOMEM; link->host = host; down_write(&nvmet_config_sem); ret = -EINVAL; if (subsys->allow_any_host) { pr_err("can't add hosts when allow_any_host is set!\n"); goto out_free_link; } ret = -EEXIST; list_for_each_entry(p, &subsys->hosts, entry) { if (!strcmp(nvmet_host_name(p->host), nvmet_host_name(host))) goto out_free_link; } list_add_tail(&link->entry, &subsys->hosts); nvmet_genctr++; up_write(&nvmet_config_sem); return 0; out_free_link: up_write(&nvmet_config_sem); kfree(link); return ret; }

Contributors

PersonTokensPropCommitsCommitProp
Christoph Hellwig203100.00%1100.00%
Total203100.00%1100.00%


static void nvmet_allowed_hosts_drop_link(struct config_item *parent, struct config_item *target) { struct nvmet_subsys *subsys = to_subsys(parent->ci_parent); struct nvmet_host *host = to_host(target); struct nvmet_host_link *p; down_write(&nvmet_config_sem); list_for_each_entry(p, &subsys->hosts, entry) { if (!strcmp(nvmet_host_name(p->host), nvmet_host_name(host))) goto found; } up_write(&nvmet_config_sem); return; found: list_del(&p->entry); nvmet_genctr++; up_write(&nvmet_config_sem); kfree(p); }

Contributors

PersonTokensPropCommitsCommitProp
Christoph Hellwig10998.20%150.00%
Andrzej Pietrasiewicz21.80%150.00%
Total111100.00%2100.00%

static struct configfs_item_operations nvmet_allowed_hosts_item_ops = { .allow_link = nvmet_allowed_hosts_allow_link, .drop_link = nvmet_allowed_hosts_drop_link, }; static struct config_item_type nvmet_allowed_hosts_type = { .ct_item_ops = &nvmet_allowed_hosts_item_ops, .ct_owner = THIS_MODULE, };
static ssize_t nvmet_subsys_attr_allow_any_host_show(struct config_item *item, char *page) { return snprintf(page, PAGE_SIZE, "%d\n", to_subsys(item)->allow_any_host); }

Contributors

PersonTokensPropCommitsCommitProp
Christoph Hellwig32100.00%1100.00%
Total32100.00%1100.00%


static ssize_t nvmet_subsys_attr_allow_any_host_store(struct config_item *item, const char *page, size_t count) { struct nvmet_subsys *subsys = to_subsys(item); bool allow_any_host; int ret = 0; if (strtobool(page, &allow_any_host)) return -EINVAL; down_write(&nvmet_config_sem); if (allow_any_host && !list_empty(&subsys->hosts)) { pr_err("Can't set allow_any_host when explicit hosts are set!\n"); ret = -EINVAL; goto out_unlock; } subsys->allow_any_host = allow_any_host; out_unlock: up_write(&nvmet_config_sem); return ret ? ret : count; }

Contributors

PersonTokensPropCommitsCommitProp
Christoph Hellwig106100.00%1100.00%
Total106100.00%1100.00%

CONFIGFS_ATTR(nvmet_subsys_, attr_allow_any_host);
static ssize_t nvmet_subsys_attr_version_show(struct config_item *item, char *page) { struct nvmet_subsys *subsys = to_subsys(item); if (NVME_TERTIARY(subsys->ver)) return snprintf(page, PAGE_SIZE, "%d.%d.%d\n", (int)NVME_MAJOR(subsys->ver), (int)NVME_MINOR(subsys->ver), (int)NVME_TERTIARY(subsys->ver)); else return snprintf(page, PAGE_SIZE, "%d.%d\n", (int)NVME_MAJOR(subsys->ver), (int)NVME_MINOR(subsys->ver)); }

Contributors

PersonTokensPropCommitsCommitProp
Johannes Thumshirn105100.00%2100.00%
Total105100.00%2100.00%


static ssize_t nvmet_subsys_attr_version_store(struct config_item *item, const char *page, size_t count) { struct nvmet_subsys *subsys = to_subsys(item); int major, minor, tertiary = 0; int ret; ret = sscanf(page, "%d.%d.%d\n", &major, &minor, &tertiary); if (ret != 2 && ret != 3) return -EINVAL; down_write(&nvmet_config_sem); subsys->ver = NVME_VS(major, minor, tertiary); up_write(&nvmet_config_sem); return count; }

Contributors

PersonTokensPropCommitsCommitProp
Johannes Thumshirn101100.00%2100.00%
Total101100.00%2100.00%

CONFIGFS_ATTR(nvmet_subsys_, attr_version);
static ssize_t nvmet_subsys_attr_serial_show(struct config_item *item, char *page) { struct nvmet_subsys *subsys = to_subsys(item); return snprintf(page, PAGE_SIZE, "%llx\n", subsys->serial); }

Contributors

PersonTokensPropCommitsCommitProp
Johannes Thumshirn39100.00%1100.00%
Total39100.00%1100.00%


static ssize_t nvmet_subsys_attr_serial_store(struct config_item *item, const char *page, size_t count) { struct nvmet_subsys *subsys = to_subsys(item); down_write(&nvmet_config_sem); sscanf(page, "%llx\n", &subsys->serial); up_write(&nvmet_config_sem); return count; }

Contributors

PersonTokensPropCommitsCommitProp
Johannes Thumshirn56100.00%1100.00%
Total56100.00%1100.00%

CONFIGFS_ATTR(nvmet_subsys_, attr_serial); static struct configfs_attribute *nvmet_subsys_attrs[] = { &nvmet_subsys_attr_attr_allow_any_host, &nvmet_subsys_attr_attr_version, &nvmet_subsys_attr_attr_serial, NULL, }; /* * Subsystem structures & folder operation functions below */
static void nvmet_subsys_release(struct config_item *item) { struct nvmet_subsys *subsys = to_subsys(item); nvmet_subsys_del_ctrls(subsys); nvmet_subsys_put(subsys); }

Contributors

PersonTokensPropCommitsCommitProp
Christoph Hellwig2683.87%150.00%
Sagi Grimberg516.13%150.00%
Total31100.00%2100.00%

static struct configfs_item_operations nvmet_subsys_item_ops = { .release = nvmet_subsys_release, }; static struct config_item_type nvmet_subsys_type = { .ct_item_ops = &nvmet_subsys_item_ops, .ct_attrs = nvmet_subsys_attrs, .ct_owner = THIS_MODULE, };
static struct config_group *nvmet_subsys_make(struct config_group *group, const char *name) { struct nvmet_subsys *subsys; if (sysfs_streq(name, NVME_DISC_SUBSYS_NAME)) { pr_err("can't create discovery subsystem through configfs\n"); return ERR_PTR(-EINVAL); } subsys = nvmet_subsys_alloc(name, NVME_NQN_NVME); if (!subsys) return ERR_PTR(-ENOMEM); config_group_init_type_name(&subsys->group, name, &nvmet_subsys_type); config_group_init_type_name(&subsys->namespaces_group, "namespaces", &nvmet_namespaces_type); configfs_add_default_group(&subsys->namespaces_group, &subsys->group); config_group_init_type_name(&subsys->allowed_hosts_group, "allowed_hosts", &nvmet_allowed_hosts_type); configfs_add_default_group(&subsys->allowed_hosts_group, &subsys->group); return &subsys->group; }

Contributors

PersonTokensPropCommitsCommitProp
Christoph Hellwig138100.00%1100.00%
Total138100.00%1100.00%

static struct configfs_group_operations nvmet_subsystems_group_ops = { .make_group = nvmet_subsys_make, }; static struct config_item_type nvmet_subsystems_type = { .ct_group_ops = &nvmet_subsystems_group_ops, .ct_owner = THIS_MODULE, };
static ssize_t nvmet_referral_enable_show(struct config_item *item, char *page) { return snprintf(page, PAGE_SIZE, "%d\n", to_nvmet_port(item)->enabled); }

Contributors

PersonTokensPropCommitsCommitProp
Christoph Hellwig32100.00%1100.00%
Total32100.00%1100.00%


static ssize_t nvmet_referral_enable_store(struct config_item *item, const char *page, size_t count) { struct nvmet_port *parent = to_nvmet_port(item->ci_parent->ci_parent); struct nvmet_port *port = to_nvmet_port(item); bool enable; if (strtobool(page, &enable)) goto inval; if (enable) nvmet_referral_enable(parent, port); else nvmet_referral_disable(port); return count; inval: pr_err("Invalid value '%s' for enable\n", page); return -EINVAL; }

Contributors

PersonTokensPropCommitsCommitProp
Christoph Hellwig92100.00%1100.00%
Total92100.00%1100.00%

CONFIGFS_ATTR(nvmet_referral_, enable); /* * Discovery Service subsystem definitions */ static struct configfs_attribute *nvmet_referral_attrs[] = { &nvmet_attr_addr_adrfam, &nvmet_attr_addr_portid, &nvmet_attr_addr_treq, &nvmet_attr_addr_traddr, &nvmet_attr_addr_trsvcid, &nvmet_attr_addr_trtype, &nvmet_referral_attr_enable, NULL, };
static void nvmet_referral_release(struct config_item *item) { struct nvmet_port *port = to_nvmet_port(item); nvmet_referral_disable(port); kfree(port); }

Contributors

PersonTokensPropCommitsCommitProp
Christoph Hellwig31100.00%1100.00%
Total31100.00%1100.00%

static struct configfs_item_operations nvmet_referral_item_ops = { .release = nvmet_referral_release, }; static struct config_item_type nvmet_referral_type = { .ct_owner = THIS_MODULE, .ct_attrs = nvmet_referral_attrs, .ct_item_ops = &nvmet_referral_item_ops, };
static struct config_group *nvmet_referral_make( struct config_group *group, const char *name) { struct nvmet_port *port; port = kzalloc(sizeof(*port), GFP_KERNEL); if (!port) return ERR_PTR(-ENOMEM); INIT_LIST_HEAD(&port->entry); config_group_init_type_name(&port->group, name, &nvmet_referral_type); return &port->group; }

Contributors

PersonTokensPropCommitsCommitProp
Christoph Hellwig7296.00%150.00%
Dan Carpenter34.00%150.00%
Total75100.00%2100.00%

static struct configfs_group_operations nvmet_referral_group_ops = { .make_group = nvmet_referral_make, }; static struct config_item_type nvmet_referrals_type = { .ct_owner = THIS_MODULE, .ct_group_ops = &nvmet_referral_group_ops, }; /* * Ports definitions. */
static void nvmet_port_release(struct config_item *item) { struct nvmet_port *port = to_nvmet_port(item); kfree(port); }

Contributors

PersonTokensPropCommitsCommitProp
Christoph Hellwig26100.00%1100.00%
Total26100.00%1100.00%

static struct configfs_attribute *nvmet_port_attrs[] = { &nvmet_attr_addr_adrfam, &nvmet_attr_addr_treq, &nvmet_attr_addr_traddr, &nvmet_attr_addr_trsvcid, &nvmet_attr_addr_trtype, NULL, }; static struct configfs_item_operations nvmet_port_item_ops = { .release = nvmet_port_release, }; static struct config_item_type nvmet_port_type = { .ct_attrs = nvmet_port_attrs, .ct_item_ops = &nvmet_port_item_ops, .ct_owner = THIS_MODULE, };
static struct config_group *nvmet_ports_make(struct config_group *group, const char *name) { struct nvmet_port *port; u16 portid; if (kstrtou16(name, 0, &portid)) return ERR_PTR(-EINVAL); port = kzalloc(sizeof(*port), GFP_KERNEL); if (!port) return ERR_PTR(-ENOMEM); INIT_LIST_HEAD(&port->entry); INIT_LIST_HEAD(&port->subsystems); INIT_LIST_HEAD(&port->referrals); port->disc_addr.portid = cpu_to_le16(portid); config_group_init_type_name(&port->group, name, &nvmet_port_type); config_group_init_type_name(&port->subsys_group, "subsystems", &nvmet_port_subsys_type); configfs_add_default_group(&port->subsys_group, &port->group); config_group_init_type_name(&port->referrals_group, "referrals", &nvmet_referrals_type); configfs_add_default_group(&port->referrals_group, &port->group); return &port->group; }

Contributors

PersonTokensPropCommitsCommitProp
Christoph Hellwig17398.30%150.00%
Dan Carpenter31.70%150.00%
Total176100.00%2100.00%

static struct configfs_group_operations nvmet_ports_group_ops = { .make_group = nvmet_ports_make, }; static struct config_item_type nvmet_ports_type = { .ct_group_ops = &nvmet_ports_group_ops, .ct_owner = THIS_MODULE, }; static struct config_group nvmet_subsystems_group; static struct config_group nvmet_ports_group;
static void nvmet_host_release(struct config_item *item) { struct nvmet_host *host = to_host(item); kfree(host); }

Contributors

PersonTokensPropCommitsCommitProp
Christoph Hellwig26100.00%1100.00%
Total26100.00%1100.00%

static struct configfs_item_operations nvmet_host_item_ops = { .release = nvmet_host_release, }; static struct config_item_type nvmet_host_type = { .ct_item_ops = &nvmet_host_item_ops, .ct_owner = THIS_MODULE, };
static struct config_group *nvmet_hosts_make_group(struct config_group *group, const char *name) { struct nvmet_host *host; host = kzalloc(sizeof(*host), GFP_KERNEL); if (!host) return ERR_PTR(-ENOMEM); config_group_init_type_name(&host->group, name, &nvmet_host_type); return &host->group; }

Contributors

PersonTokensPropCommitsCommitProp
Christoph Hellwig67100.00%1100.00%
Total67100.00%1100.00%

static struct configfs_group_operations nvmet_hosts_group_ops = { .make_group = nvmet_hosts_make_group, }; static struct config_item_type nvmet_hosts_type = { .ct_group_ops = &nvmet_hosts_group_ops, .ct_owner = THIS_MODULE, }; static struct config_group nvmet_hosts_group; static struct config_item_type nvmet_root_type = { .ct_owner = THIS_MODULE, }; static struct configfs_subsystem nvmet_configfs_subsystem = { .su_group = { .cg_item = { .ci_namebuf = "nvmet", .ci_type = &nvmet_root_type, }, }, };
int __init nvmet_init_configfs(void) { int ret; config_group_init(&nvmet_configfs_subsystem.su_group); mutex_init(&nvmet_configfs_subsystem.su_mutex); config_group_init_type_name(&nvmet_subsystems_group, "subsystems", &nvmet_subsystems_type); configfs_add_default_group(&nvmet_subsystems_group, &nvmet_configfs_subsystem.su_group); config_group_init_type_name(&nvmet_ports_group, "ports", &nvmet_ports_type); configfs_add_default_group(&nvmet_ports_group, &nvmet_configfs_subsystem.su_group); config_group_init_type_name(&nvmet_hosts_group, "hosts", &nvmet_hosts_type); configfs_add_default_group(&nvmet_hosts_group, &nvmet_configfs_subsystem.su_group); ret = configfs_register_subsystem(&nvmet_configfs_subsystem); if (ret) { pr_err("configfs_register_subsystem: %d\n", ret); return ret; } return 0; }

Contributors

PersonTokensPropCommitsCommitProp
Christoph Hellwig120100.00%1100.00%
Total120100.00%1100.00%


void __exit nvmet_exit_configfs(void) { configfs_unregister_subsystem(&nvmet_configfs_subsystem); }

Contributors

PersonTokensPropCommitsCommitProp
Christoph Hellwig14100.00%1100.00%
Total14100.00%1100.00%


Overall Contributors

PersonTokensPropCommitsCommitProp
Christoph Hellwig396887.32%218.18%
Johannes Thumshirn46310.19%436.36%
James Smart922.02%19.09%
Alexander Solganik60.13%19.09%
Dan Carpenter60.13%19.09%
Sagi Grimberg50.11%19.09%
Andrzej Pietrasiewicz40.09%19.09%
Total4544100.00%11100.00%
Information contained on this website is for historical information purposes only and does not indicate or represent copyright ownership.
Created with cregit.