libparted 3.6
Loading...
Searching...
No Matches
linux.h
Go to the documentation of this file.
1/* libparted - a library for manipulating disk partitions
2 Copyright (C) 2009-2014, 2019-2023 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
28
30 int fd;
31 int major;
32 int minor;
33 char* dmtype;
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 */
Definition: linux.h:29
int major
Definition: linux.h:31
int minor
Definition: linux.h:32
int fd
Definition: linux.h:30
char * dmtype
device map target type
Definition: linux.h:33