~youscribe/parted/3.1

« back to all changes in this revision

Viewing changes to libparted/arch/linux.h

  • Committer: Guilhem Lettron
  • Date: 2012-10-22 14:37:59 UTC
  • Revision ID: guilhem+ubuntu@lettron.fr-20121022143759-m403kecgz13sknvp
3.1 from tarball

Show diffs side-by-side

added added

removed removed

Lines of Context:
 
1
/* libparted - a library for manipulating disk partitions
 
2
    Copyright (C) 2009-2012 Free Software Foundation, Inc.
 
3
 
 
4
    This program is free software; you can redistribute it and/or modify
 
5
    it under the terms of the GNU General Public License as published by
 
6
    the Free Software Foundation; either version 3 of the License, or
 
7
    (at your option) any later version.
 
8
 
 
9
    This program is distributed in the hope that it will be useful,
 
10
    but WITHOUT ANY WARRANTY; without even the implied warranty of
 
11
    MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
 
12
    GNU General Public License for more details.
 
13
 
 
14
    You should have received a copy of the GNU General Public License
 
15
    along with this program.  If not, see <http://www.gnu.org/licenses/>.
 
16
*/
 
17
 
 
18
#ifndef PED_ARCH_LINUX_H_INCLUDED
 
19
#define PED_ARCH_LINUX_H_INCLUDED
 
20
 
 
21
#if HAVE_BLKID_BLKID_H
 
22
#  include <blkid/blkid.h>
 
23
#endif
 
24
 
 
25
#define LINUX_SPECIFIC(dev)     ((LinuxSpecific*) (dev)->arch_specific)
 
26
 
 
27
typedef struct _LinuxSpecific   LinuxSpecific;
 
28
 
 
29
struct _LinuxSpecific {
 
30
        int     fd;
 
31
        int     major;
 
32
        int     minor;
 
33
        char*   dmtype;         /**< device map target type */
 
34
#if defined __s390__ || defined __s390x__
 
35
        unsigned int real_sector_size;
 
36
        unsigned int devno;
 
37
#endif
 
38
#if USE_BLKID
 
39
        blkid_probe probe;
 
40
        blkid_topology topology;
 
41
#endif
 
42
};
 
43
 
 
44
#endif /* PED_ARCH_LINUX_H_INCLUDED */