cregit-Linux how code gets into the kernel

Release 4.16 drivers/pci/hotplug/rpadlpar_sysfs.c

// SPDX-License-Identifier: GPL-2.0+
/*
 * Interface for Dynamic Logical Partitioning of I/O Slots on
 * RPA-compliant PPC64 platform.
 *
 * John Rose <johnrose@austin.ibm.com>
 * October 2003
 *
 * Copyright (C) 2003 IBM.
 */
#include <linux/kobject.h>
#include <linux/string.h>
#include <linux/pci.h>
#include <linux/pci_hotplug.h>
#include "rpaphp.h"
#include "rpadlpar.h"
#include "../pci.h"


#define DLPAR_KOBJ_NAME       "control"

/* Those two have no quotes because they are passed to __ATTR() which
 * stringifies the argument (yuck !)
 */

#define ADD_SLOT_ATTR_NAME    add_slot

#define REMOVE_SLOT_ATTR_NAME remove_slot


static ssize_t add_slot_store(struct kobject *kobj, struct kobj_attribute *attr, const char *buf, size_t nbytes) { char drc_name[MAX_DRC_NAME_LEN]; char *end; int rc; if (nbytes >= MAX_DRC_NAME_LEN) return 0; memcpy(drc_name, buf, nbytes); end = strchr(drc_name, '\n'); if (!end) end = &drc_name[nbytes]; *end = '\0'; rc = dlpar_add_slot(drc_name); if (rc) return rc; return nbytes; }

Contributors

PersonTokensPropCommitsCommitProp
John Rose8686.87%133.33%
Greg Kroah-Hartman1212.12%133.33%
Linda Xie11.01%133.33%
Total99100.00%3100.00%


static ssize_t add_slot_show(struct kobject *kobj, struct kobj_attribute *attr, char *buf) { return sprintf(buf, "0\n"); }

Contributors

PersonTokensPropCommitsCommitProp
Greg Kroah-Hartman28100.00%1100.00%
Total28100.00%1100.00%


static ssize_t remove_slot_store(struct kobject *kobj, struct kobj_attribute *attr, const char *buf, size_t nbytes) { char drc_name[MAX_DRC_NAME_LEN]; int rc; char *end; if (nbytes >= MAX_DRC_NAME_LEN) return 0; memcpy(drc_name, buf, nbytes); end = strchr(drc_name, '\n'); if (!end) end = &drc_name[nbytes]; *end = '\0'; rc = dlpar_remove_slot(drc_name); if (rc) return rc; return nbytes; }

Contributors

PersonTokensPropCommitsCommitProp
John Rose8181.82%133.33%
Greg Kroah-Hartman1717.17%133.33%
Linda Xie11.01%133.33%
Total99100.00%3100.00%


static ssize_t remove_slot_show(struct kobject *kobj, struct kobj_attribute *attr, char *buf) { return sprintf(buf, "0\n"); }

Contributors

PersonTokensPropCommitsCommitProp
Greg Kroah-Hartman28100.00%1100.00%
Total28100.00%1100.00%

static struct kobj_attribute add_slot_attr = __ATTR(ADD_SLOT_ATTR_NAME, 0644, add_slot_show, add_slot_store); static struct kobj_attribute remove_slot_attr = __ATTR(REMOVE_SLOT_ATTR_NAME, 0644, remove_slot_show, remove_slot_store); static struct attribute *default_attrs[] = { &add_slot_attr.attr, &remove_slot_attr.attr, NULL, }; static const struct attribute_group dlpar_attr_group = { .attrs = default_attrs, }; static struct kobject *dlpar_kobj;
int dlpar_sysfs_init(void) { int error; dlpar_kobj = kobject_create_and_add(DLPAR_KOBJ_NAME, &pci_slots_kset->kobj); if (!dlpar_kobj) return -EINVAL; error = sysfs_create_group(dlpar_kobj, &dlpar_attr_group); if (error) kobject_put(dlpar_kobj); return error; }

Contributors

PersonTokensPropCommitsCommitProp
Greg Kroah-Hartman3667.92%360.00%
John Rose1630.19%120.00%
Alexander Chiang11.89%120.00%
Total53100.00%5100.00%


void dlpar_sysfs_exit(void) { sysfs_remove_group(dlpar_kobj, &dlpar_attr_group); kobject_put(dlpar_kobj); }

Contributors

PersonTokensPropCommitsCommitProp
John Rose1155.00%133.33%
Greg Kroah-Hartman945.00%266.67%
Total20100.00%3100.00%


Overall Contributors

PersonTokensPropCommitsCommitProp
John Rose26260.23%19.09%
Greg Kroah-Hartman15535.63%436.36%
Alexander Chiang71.61%19.09%
Benjamin Herrenschmidt30.69%19.09%
Michael Bringmann30.69%19.09%
Linda Xie20.46%19.09%
Björn Helgaas20.46%19.09%
Arvind Yadav10.23%19.09%
Total435100.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.