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

Quelle  vxfs_immed.c   Sprache: C

 
// SPDX-License-Identifier: GPL-2.0-only
/*
 * Copyright (c) 2000-2001 Christoph Hellwig.
 */


/*
 * Veritas filesystem driver - support for 'immed' inodes.
 */

#include <linux/fs.h>
#include <linux/pagemap.h>

#include "vxfs.h"
#include "vxfs_extern.h"
#include "vxfs_inode.h"

/**
 * vxfs_immed_read_folio - read part of an immed inode into pagecache
 * @fp: file context (unused)
 * @folio: folio to fill in.
 *
 * Description:
 *   vxfs_immed_read_folio reads a part of the immed area of the
 *   file that hosts @folio into the pagecache.
 *
 * Returns:
 *   Zero on success, else a negative error code.
 *
 * Locking status:
 *   @folio is locked and will be unlocked.
 */

static int vxfs_immed_read_folio(struct file *fp, struct folio *folio)
{
 struct vxfs_inode_info *vip = VXFS_INO(folio->mapping->host);
 void *src = vip->vii_immed.vi_immed + folio_pos(folio);
 unsigned long i;

 for (i = 0; i < folio_nr_pages(folio); i++) {
  memcpy_to_page(folio_page(folio, i), 0, src, PAGE_SIZE);
  src += PAGE_SIZE;
 }

 folio_mark_uptodate(folio);
 folio_unlock(folio);

 return 0;
}

/*
 * Address space operations for immed files and directories.
 */

const struct address_space_operations vxfs_immed_aops = {
 .read_folio = vxfs_immed_read_folio,
};

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

¤ Dauer der Verarbeitung: 0.12 Sekunden  (vorverarbeitet)  ¤

*© 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.