libparted
3.6
Toggle main menu visibility
Main Page
Related Pages
Modules
Data Structures
Data Structures
Data Fields
All
_
a
b
c
d
e
f
g
h
i
j
l
m
n
o
p
r
s
t
u
v
w
x
Functions
Variables
_
a
b
c
d
e
f
g
h
i
j
l
m
n
o
p
r
s
t
u
v
w
x
Files
File List
Globals
All
_
a
b
c
d
e
f
g
h
i
j
k
l
m
n
o
p
r
s
t
u
v
w
x
y
Functions
_
a
c
e
f
h
m
n
p
u
v
Variables
_
a
b
c
d
e
f
h
i
l
m
n
o
p
r
s
t
u
v
x
Typedefs
_
a
b
c
d
e
f
g
h
l
m
o
p
r
s
t
u
v
x
Enumerations
_
a
d
e
f
o
p
r
u
x
Enumerator
a
c
d
e
f
l
m
p
r
u
v
w
x
Macros
_
a
b
c
d
e
f
g
h
i
j
k
l
m
n
o
p
r
s
t
u
v
w
x
y
•
All
Data Structures
Files
Functions
Variables
Typedefs
Enumerations
Enumerator
Macros
Modules
Pages
Loading...
Searching...
No Matches
libparted
arch
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
27
typedef
struct
_LinuxSpecific
LinuxSpecific
;
28
29
struct
_LinuxSpecific
{
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 */
_LinuxSpecific
Definition:
linux.h:29
_LinuxSpecific::major
int major
Definition:
linux.h:31
_LinuxSpecific::minor
int minor
Definition:
linux.h:32
_LinuxSpecific::fd
int fd
Definition:
linux.h:30
_LinuxSpecific::dmtype
char * dmtype
device map target type
Definition:
linux.h:33
Generated by
1.9.6