X-Git-Url: https://git.whamcloud.com/?p=fs%2Flustre-release.git;a=blobdiff_plain;f=lustre%2Flov%2Flproc_lov.c;h=234eeb331f5f4df43347aaa83f9ca03682ae3a3a;hp=f8e6d547084dbe1b46dddf5b905dc47d809eb927;hb=f07508d17b49574c7ea47a855c6e8af2b23c3add;hpb=860e20e42ddc45bf5521cbd5f53d35a310b34ded diff --git a/lustre/lov/lproc_lov.c b/lustre/lov/lproc_lov.c index f8e6d54..234eeb3 100644 --- a/lustre/lov/lproc_lov.c +++ b/lustre/lov/lproc_lov.c @@ -38,7 +38,6 @@ #include #include "lov_internal.h" -#ifdef CONFIG_PROC_FS static int lov_stripesize_seq_show(struct seq_file *m, void *v) { struct obd_device *dev = (struct obd_device *)m->private; @@ -55,18 +54,26 @@ static ssize_t lov_stripesize_seq_write(struct file *file, const char __user *buffer, size_t count, loff_t *off) { - struct obd_device *dev = ((struct seq_file *)file->private_data)->private; + struct seq_file *m = file->private_data; + struct obd_device *dev = m->private; struct lov_desc *desc; - s64 val; + char kernbuf[22] = ""; + u64 val; int rc; LASSERT(dev != NULL); desc = &dev->u.lov.desc; - rc = lprocfs_str_with_units_to_s64(buffer, count, &val, '1'); - if (rc) + + if (count >= sizeof(kernbuf)) + return -EINVAL; + + if (copy_from_user(kernbuf, buffer, count)) + return -EFAULT; + kernbuf[count] = 0; + + rc = sysfs_memparse(kernbuf, count, &val, "B"); + if (rc < 0) return rc; - if (val < 0) - return -ERANGE; lov_fix_desc_stripe_size(&val); desc->ld_default_stripe_size = val; @@ -75,29 +82,26 @@ static ssize_t lov_stripesize_seq_write(struct file *file, } LPROC_SEQ_FOPS(lov_stripesize); -static int lov_stripeoffset_seq_show(struct seq_file *m, void *v) +static ssize_t stripeoffset_show(struct kobject *kobj, struct attribute *attr, + char *buf) { - struct obd_device *dev = (struct obd_device *)m->private; - struct lov_desc *desc; + struct obd_device *dev = container_of(kobj, struct obd_device, + obd_kset.kobj); + struct lov_desc *desc = &dev->u.lov.desc; - LASSERT(dev != NULL); - desc = &dev->u.lov.desc; - seq_printf(m, "%lld\n", desc->ld_default_stripe_offset); - return 0; + return sprintf(buf, "%lld\n", desc->ld_default_stripe_offset); } -static ssize_t lov_stripeoffset_seq_write(struct file *file, - const char __user *buffer, - size_t count, loff_t *off) +static ssize_t stripeoffset_store(struct kobject *kobj, struct attribute *attr, + const char *buf, size_t count) { - struct obd_device *dev = ((struct seq_file *)file->private_data)->private; - struct lov_desc *desc; + struct obd_device *dev = container_of(kobj, struct obd_device, + obd_kset.kobj); + struct lov_desc *desc = &dev->u.lov.desc; long val; int rc; - LASSERT(dev != NULL); - desc = &dev->u.lov.desc; - rc = kstrtol_from_user(buffer, count, 0, &val); + rc = kstrtol(buf, 0, &val); if (rc) return rc; if (val < -1 || val > LOV_MAX_STRIPE_COUNT) @@ -107,31 +111,28 @@ static ssize_t lov_stripeoffset_seq_write(struct file *file, return count; } -LPROC_SEQ_FOPS(lov_stripeoffset); +LUSTRE_RW_ATTR(stripeoffset); -static int lov_stripetype_seq_show(struct seq_file *m, void *v) +static ssize_t stripetype_show(struct kobject *kobj, struct attribute *attr, + char *buf) { - struct obd_device* dev = (struct obd_device*)m->private; - struct lov_desc *desc; + struct obd_device *dev = container_of(kobj, struct obd_device, + obd_kset.kobj); + struct lov_desc *desc = &dev->u.lov.desc; - LASSERT(dev != NULL); - desc = &dev->u.lov.desc; - seq_printf(m, "%u\n", desc->ld_pattern); - return 0; + return sprintf(buf, "%u\n", desc->ld_pattern); } -static ssize_t lov_stripetype_seq_write(struct file *file, - const char __user *buffer, - size_t count, loff_t *off) +static ssize_t stripetype_store(struct kobject *kobj, struct attribute *attr, + const char *buffer, size_t count) { - struct obd_device *dev = ((struct seq_file *)file->private_data)->private; - struct lov_desc *desc; + struct obd_device *dev = container_of(kobj, struct obd_device, + obd_kset.kobj); + struct lov_desc *desc = &dev->u.lov.desc; u32 pattern; int rc; - LASSERT(dev != NULL); - desc = &dev->u.lov.desc; - rc = kstrtouint_from_user(buffer, count, 0, &pattern); + rc = kstrtouint(buffer, 0, &pattern); if (rc) return rc; @@ -140,32 +141,29 @@ static ssize_t lov_stripetype_seq_write(struct file *file, return count; } -LPROC_SEQ_FOPS(lov_stripetype); +LUSTRE_RW_ATTR(stripetype); -static int lov_stripecount_seq_show(struct seq_file *m, void *v) +static ssize_t stripecount_show(struct kobject *kobj, struct attribute *attr, + char *buf) { - struct obd_device *dev = (struct obd_device *)m->private; - struct lov_desc *desc; + struct obd_device *dev = container_of(kobj, struct obd_device, + obd_kset.kobj); + struct lov_desc *desc = &dev->u.lov.desc; - LASSERT(dev != NULL); - desc = &dev->u.lov.desc; - seq_printf(m, "%d\n", - (__s16)(desc->ld_default_stripe_count + 1) - 1); - return 0; + return sprintf(buf, "%d\n", + (__s16)(desc->ld_default_stripe_count + 1) - 1); } -static ssize_t lov_stripecount_seq_write(struct file *file, - const char __user *buffer, - size_t count, loff_t *off) +static ssize_t stripecount_store(struct kobject *kobj, struct attribute *attr, + const char *buffer, size_t count) { - struct obd_device *dev = ((struct seq_file *)file->private_data)->private; - struct lov_desc *desc; + struct obd_device *dev = container_of(kobj, struct obd_device, + obd_kset.kobj); + struct lov_desc *desc = &dev->u.lov.desc; int stripe_count; int rc; - LASSERT(dev != NULL); - desc = &dev->u.lov.desc; - rc = kstrtoint_from_user(buffer, count, 0, &stripe_count); + rc = kstrtoint(buffer, 0, &stripe_count); if (rc) return rc; @@ -177,44 +175,42 @@ static ssize_t lov_stripecount_seq_write(struct file *file, return count; } -LPROC_SEQ_FOPS(lov_stripecount); +LUSTRE_RW_ATTR(stripecount); -static int lov_numobd_seq_show(struct seq_file *m, void *v) +static ssize_t numobd_show(struct kobject *kobj, struct attribute *attr, + char *buf) { - struct obd_device *dev = (struct obd_device*)m->private; - struct lov_desc *desc; + struct obd_device *dev = container_of(kobj, struct obd_device, + obd_kset.kobj); + struct lov_desc *desc = &dev->u.lov.desc; - LASSERT(dev != NULL); - desc = &dev->u.lov.desc; - seq_printf(m, "%u\n", desc->ld_tgt_count); - return 0; + return sprintf(buf, "%u\n", desc->ld_tgt_count); } -LPROC_SEQ_FOPS_RO(lov_numobd); +LUSTRE_RO_ATTR(numobd); -static int lov_activeobd_seq_show(struct seq_file *m, void *v) +static ssize_t activeobd_show(struct kobject *kobj, struct attribute *attr, + char *buf) { - struct obd_device* dev = (struct obd_device*)m->private; - struct lov_desc *desc; + struct obd_device *dev = container_of(kobj, struct obd_device, + obd_kset.kobj); + struct lov_desc *desc = &dev->u.lov.desc; - LASSERT(dev != NULL); - desc = &dev->u.lov.desc; - seq_printf(m, "%u\n", desc->ld_active_tgt_count); - return 0; + return sprintf(buf, "%u\n", desc->ld_active_tgt_count); } -LPROC_SEQ_FOPS_RO(lov_activeobd); +LUSTRE_RO_ATTR(activeobd); -static int lov_desc_uuid_seq_show(struct seq_file *m, void *v) +static ssize_t desc_uuid_show(struct kobject *kobj, struct attribute *attr, + char *buf) { - struct obd_device *dev = m->private; - struct lov_obd *lov; + struct obd_device *dev = container_of(kobj, struct obd_device, + obd_kset.kobj); + struct lov_desc *desc = &dev->u.lov.desc; - LASSERT(dev != NULL); - lov = &dev->u.lov; - seq_printf(m, "%s\n", lov->desc.ld_uuid.uuid); - return 0; + return sprintf(buf, "%s\n", desc->ld_uuid.uuid); } -LPROC_SEQ_FOPS_RO(lov_desc_uuid); +LUSTRE_RO_ATTR(desc_uuid); +#ifdef CONFIG_PROC_FS static void *lov_tgt_seq_start(struct seq_file *p, loff_t *pos) { struct obd_device *dev = p->private; @@ -247,6 +243,7 @@ static void *lov_tgt_seq_next(struct seq_file *p, void *v, loff_t *pos) static int lov_tgt_seq_show(struct seq_file *p, void *v) { struct lov_tgt_desc *tgt = v; + seq_printf(p, "%d: %s %sACTIVE\n", tgt->ltd_index, obd_uuid2str(&tgt->ltd_uuid), tgt->ltd_active ? "" : "IN"); @@ -265,10 +262,6 @@ static int lov_target_seq_open(struct inode *inode, struct file *file) struct seq_file *seq; int rc; - rc = LPROCFS_ENTRY_CHECK(inode); - if (rc < 0) - return rc; - rc = seq_open(file, &lov_tgt_sops); if (rc) return rc; @@ -279,24 +272,12 @@ static int lov_target_seq_open(struct inode *inode, struct file *file) } struct lprocfs_vars lprocfs_lov_obd_vars[] = { - { .name = "stripesize", - .fops = &lov_stripesize_fops }, - { .name = "stripeoffset", - .fops = &lov_stripeoffset_fops }, - { .name = "stripecount", - .fops = &lov_stripecount_fops }, - { .name = "stripetype", - .fops = &lov_stripetype_fops }, - { .name = "numobd", - .fops = &lov_numobd_fops }, - { .name = "activeobd", - .fops = &lov_activeobd_fops }, - { .name = "desc_uuid", - .fops = &lov_desc_uuid_fops }, + { .name = "stripesize", + .fops = &lov_stripesize_fops }, { NULL } }; -struct file_operations lov_proc_target_fops = { +const struct file_operations lov_proc_target_fops = { .owner = THIS_MODULE, .open = lov_target_seq_open, .read = seq_read, @@ -304,3 +285,45 @@ struct file_operations lov_proc_target_fops = { .release = lprocfs_seq_release, }; #endif /* CONFIG_PROC_FS */ + +static struct attribute *lov_attrs[] = { + &lustre_attr_activeobd.attr, + &lustre_attr_numobd.attr, + &lustre_attr_desc_uuid.attr, + &lustre_attr_stripeoffset.attr, + &lustre_attr_stripetype.attr, + &lustre_attr_stripecount.attr, + NULL, +}; + +int lov_tunables_init(struct obd_device *obd) +{ + struct lov_obd *lov = &obd->u.lov; + int rc; + + obd->obd_vars = lprocfs_lov_obd_vars; + obd->obd_ktype.default_attrs = lov_attrs; + rc = lprocfs_obd_setup(obd, false); + if (rc) + GOTO(out, rc); + +#ifdef CONFIG_PROC_FS + rc = lprocfs_seq_create(obd->obd_proc_entry, "target_obd", 0444, + &lov_proc_target_fops, obd); + if (rc) + CWARN("%s: Error adding the target_obd file : rc %d\n", + obd->obd_name, rc); + + lov->lov_pool_proc_entry = lprocfs_register("pools", + obd->obd_proc_entry, + NULL, NULL); + if (IS_ERR(lov->lov_pool_proc_entry)) { + rc = PTR_ERR(lov->lov_pool_proc_entry); + CERROR("%s: error setting up debugfs for pools : rc %d\n", + obd->obd_name, rc); + lov->lov_pool_proc_entry = NULL; + } +#endif /* CONFIG_FS_PROC */ +out: + return rc; +}