Anforderungen  |   Konzepte  |   Entwurf  |   Entwicklung  |   Qualitätssicherung  |   Lebenszyklus  |   Steuerung
 
 
 
 


Quelle  mtd.c   Sprache: C

 
// SPDX-License-Identifier: GPL-2.0-only
/****************************************************************************
 * Driver for Solarflare network controllers and boards
 * Copyright 2005-2006 Fen Systems Ltd.
 * Copyright 2006-2013 Solarflare Communications Inc.
 */


#include <linux/module.h>
#include <linux/mtd/mtd.h>
#include <linux/slab.h>
#include <linux/rtnetlink.h>

#include "net_driver.h"
#include "efx.h"

#define to_efx_mtd_partition(mtd)    \
 container_of(mtd, struct efx_mtd_partition, mtd)

/* MTD interface */

static int efx_mtd_erase(struct mtd_info *mtd, struct erase_info *erase)
{
 struct efx_nic *efx = mtd->priv;

 return efx->type->mtd_erase(mtd, erase->addr, erase->len);
}

static void efx_mtd_sync(struct mtd_info *mtd)
{
 struct efx_mtd_partition *part = to_efx_mtd_partition(mtd);
 struct efx_nic *efx = mtd->priv;
 int rc;

 rc = efx->type->mtd_sync(mtd);
 if (rc)
  pr_err("%s: %s sync failed (%d)\n",
         part->name, part->dev_type_name, rc);
}

static void efx_siena_mtd_remove_partition(struct efx_mtd_partition *part)
{
 int rc;

 for (;;) {
  rc = mtd_device_unregister(&part->mtd);
  if (rc != -EBUSY)
   break;
  ssleep(1);
 }
 WARN_ON(rc);
 list_del(&part->node);
}

int efx_siena_mtd_add(struct efx_nic *efx, struct efx_mtd_partition *parts,
        size_t n_parts, size_t sizeof_part)
{
 struct efx_mtd_partition *part;
 size_t i;

 for (i = 0; i < n_parts; i++) {
  part = (struct efx_mtd_partition *)((char *)parts +
          i * sizeof_part);

  part->mtd.writesize = 1;

  if (!(part->mtd.flags & MTD_NO_ERASE))
   part->mtd.flags |= MTD_WRITEABLE;

  part->mtd.owner = THIS_MODULE;
  part->mtd.priv = efx;
  part->mtd.name = part->name;
  part->mtd._erase = efx_mtd_erase;
  part->mtd._read = efx->type->mtd_read;
  part->mtd._write = efx->type->mtd_write;
  part->mtd._sync = efx_mtd_sync;

  efx->type->mtd_rename(part);

  if (mtd_device_register(&part->mtd, NULL, 0))
   goto fail;

  /* Add to list in order - efx_siena_mtd_remove() depends on this */
  list_add_tail(&part->node, &efx->mtd_list);
 }

 return 0;

fail:
 while (i--) {
  part = (struct efx_mtd_partition *)((char *)parts +
          i * sizeof_part);
  efx_siena_mtd_remove_partition(part);
 }
 /* Failure is unlikely here, but probably means we're out of memory */
 return -ENOMEM;
}

void efx_siena_mtd_remove(struct efx_nic *efx)
{
 struct efx_mtd_partition *parts, *part, *next;

 WARN_ON(efx_dev_registered(efx));

 if (list_empty(&efx->mtd_list))
  return;

 parts = list_first_entry(&efx->mtd_list, struct efx_mtd_partition,
     node);

 list_for_each_entry_safe(part, next, &efx->mtd_list, node)
  efx_siena_mtd_remove_partition(part);

 kfree(parts);
}

void efx_siena_mtd_rename(struct efx_nic *efx)
{
 struct efx_mtd_partition *part;

 ASSERT_RTNL();

 list_for_each_entry(part, &efx->mtd_list, node)
  efx->type->mtd_rename(part);
}

Messung V0.5
C=97 H=95 G=95

¤ 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.






                                                                                                                                                                                                                                                                                                                                                                                                     


Neuigkeiten

     Aktuelles
     Motto des Tages

Software

     Produkte
     Quellcodebibliothek

Aktivitäten

     Artikel über Sicherheit
     Anleitung zur Aktivierung von SSL

Muße

     Gedichte
     Musik
     Bilder

Jenseits des Üblichen ....
    

Besucherstatistik

Besucherstatistik

Monitoring

Montastic status badge