Quellcodebibliothek Statistik Leitseite products/Sources/formale Sprachen/C/Linux/drivers/peci/   (Open Source Betriebssystem Version 6.17.9©)  Datei vom 24.10.2025 mit Größe 1 kB image not shown  

Quelle  sysfs.c   Sprache: C

 
// SPDX-License-Identifier: GPL-2.0-only
// Copyright (c) 2021 Intel Corporation

#include <linux/device.h>
#include <linux/kernel.h>
#include <linux/peci.h>

#include "internal.h"

static int rescan_controller(struct device *dev, void *data)
{
 if (dev->type != &peci_controller_type)
  return 0;

 return peci_controller_scan_devices(to_peci_controller(dev));
}

static ssize_t rescan_store(const struct bus_type *bus, const char *buf, size_t count)
{
 bool res;
 int ret;

 ret = kstrtobool(buf, &res);
 if (ret)
  return ret;

 if (!res)
  return count;

 ret = bus_for_each_dev(&peci_bus_type, NULL, NULL, rescan_controller);
 if (ret)
  return ret;

 return count;
}
static BUS_ATTR_WO(rescan);

static struct attribute *peci_bus_attrs[] = {
 &bus_attr_rescan.attr,
 NULL
};

static const struct attribute_group peci_bus_group = {
 .attrs = peci_bus_attrs,
};

const struct attribute_group *peci_bus_groups[] = {
 &peci_bus_group,
 NULL
};

static ssize_t remove_store(struct device *dev, struct device_attribute *attr,
       const char *buf, size_t count)
{
 struct peci_device *device = to_peci_device(dev);
 bool res;
 int ret;

 ret = kstrtobool(buf, &res);
 if (ret)
  return ret;

 if (res && device_remove_file_self(dev, attr))
  peci_device_destroy(device);

 return count;
}
static DEVICE_ATTR_IGNORE_LOCKDEP(remove, 0200, NULL, remove_store);

static struct attribute *peci_device_attrs[] = {
 &dev_attr_remove.attr,
 NULL
};

static const struct attribute_group peci_device_group = {
 .attrs = peci_device_attrs,
};

const struct attribute_group *peci_device_groups[] = {
 &peci_device_group,
 NULL
};

Messung V0.5
C=96 H=94 G=94

¤ Dauer der Verarbeitung: 0.3 Sekunden  ¤

*© Formatika GbR, Deutschland






Wurzel

Suchen

Beweissystem der NASA

Beweissystem Isabelle

NIST Cobol Testsuite

Cephes Mathematical Library

Wiener Entwicklungsmethode

Haftungshinweis

Die Informationen auf dieser Webseite wurden nach bestem Wissen sorgfältig zusammengestellt. Es wird jedoch weder Vollständigkeit, noch Richtigkeit, noch Qualität der bereit gestellten Informationen zugesichert.

Bemerkung:

Die farbliche Syntaxdarstellung und die Messung sind noch experimentell.