The Design and Implementation of the FreeBSD Operating System, Second Edition
Now available: The Design and Implementation of the FreeBSD Operating System (Second Edition)


[ source navigation ] [ diff markup ] [ identifier search ] [ freetext search ] [ file search ] [ list types ] [ track identifier ]

FreeBSD/Linux Kernel Cross Reference
sys/fs/ntfs/super.h

Version: -  FREEBSD  -  FREEBSD-13-STABLE  -  FREEBSD-13-0  -  FREEBSD-12-STABLE  -  FREEBSD-12-0  -  FREEBSD-11-STABLE  -  FREEBSD-11-0  -  FREEBSD-10-STABLE  -  FREEBSD-10-0  -  FREEBSD-9-STABLE  -  FREEBSD-9-0  -  FREEBSD-8-STABLE  -  FREEBSD-8-0  -  FREEBSD-7-STABLE  -  FREEBSD-7-0  -  FREEBSD-6-STABLE  -  FREEBSD-6-0  -  FREEBSD-5-STABLE  -  FREEBSD-5-0  -  FREEBSD-4-STABLE  -  FREEBSD-3-STABLE  -  FREEBSD22  -  l41  -  OPENBSD  -  linux-2.6  -  MK84  -  PLAN9  -  xnu-8792 
SearchContext: -  none  -  3  -  10 

    1 /*
    2  * super.h - Header file for super.c
    3  *
    4  * Copyright (C) 1995-1997 Martin von Löwis
    5  * Copyright (C) 1996-1997 Régis Duchesne
    6  * Copyright (c) 2001 Anton Altaparmakov
    7  */
    8 
    9 int ntfs_get_free_cluster_count(ntfs_inode *bitmap);
   10 
   11 int ntfs_get_volumesize(ntfs_volume *vol, __s64 *vol_size);
   12 
   13 int ntfs_init_volume(ntfs_volume *vol, char *boot);
   14 
   15 int ntfs_load_special_files(ntfs_volume *vol);
   16 
   17 int ntfs_release_volume(ntfs_volume *vol);
   18 
   19 int ntfs_insert_fixups(unsigned char *rec, int rec_size);
   20 
   21 int ntfs_fixup_record(char *record, char *magic, int size);
   22 
   23 int ntfs_allocate_clusters(ntfs_volume *vol, ntfs_cluster_t *location,
   24                 ntfs_cluster_t *count, ntfs_runlist **rl, int *rl_len,
   25                 const NTFS_CLUSTER_ALLOCATION_ZONES zone);
   26 
   27 int ntfs_deallocate_cluster_run(const ntfs_volume *vol,
   28                 const ntfs_cluster_t lcn, const ntfs_cluster_t len);
   29 
   30 int ntfs_deallocate_clusters(const ntfs_volume *vol, const ntfs_runlist *rl,
   31                 const int rl_len);
   32 

Cache object: 64f1f68df6f6887bf4065448e5cd6836


[ source navigation ] [ diff markup ] [ identifier search ] [ freetext search ] [ file search ] [ list types ] [ track identifier ]


This page is part of the FreeBSD/Linux Linux Kernel Cross-Reference, and was automatically generated using a modified version of the LXR engine.