Gentoo Websites Logo
Go to: Gentoo Home Documentation Forums Lists Bugs Planet Store Wiki Get Gentoo!
View | Details | Raw Unified | Return to bug 693296 | Differences between
and this patch

Collapse All | Expand All

(-)a/acommon/types.h (-3 / +4 lines)
Lines 33-41 Link Here
33
#define XFSDUMP_DIRPATH	inv_basepath()
33
#define XFSDUMP_DIRPATH	inv_basepath()
34
34
35
/*
35
/*
36
 * Should be, but isn't, defined in uuid/uuid.h
36
 * UUID_STR_LEN is defined by util-linux's built-in libuuid.
37
 * For Gentoo, there is no need to define/redefine it.
38
 * #define UUID_STR_LEN	36
37
 */
39
 */
38
#define UUID_STR_LEN	36
39
40
40
/* fundamental page size - probably should not be hardwired, but
41
/* fundamental page size - probably should not be hardwired, but
41
 * for now we will
42
 * for now we will
Lines 149-155 typedef struct stat64 stat64_t; Link Here
149
typedef struct getbmapx getbmapx_t;
150
typedef struct getbmapx getbmapx_t;
150
typedef struct fsdmidata fsdmidata_t;
151
typedef struct fsdmidata fsdmidata_t;
151
152
152
/* flg definitions for preemptchk 
153
/* flg definitions for preemptchk
153
 */
154
 */
154
#define PREEMPT_FULL		0
155
#define PREEMPT_FULL		0
155
#define PREEMPT_PROGRESSONLY	1
156
#define PREEMPT_PROGRESSONLY	1
(-)a/common/fs.c (-1 / +1 lines)
Lines 204-210 fs_mounted( char *typs, char *chrs, char Link Here
204
int
204
int
205
fs_getid( char *mnts, uuid_t *idb )
205
fs_getid( char *mnts, uuid_t *idb )
206
{
206
{
207
	xfs_fsop_geom_v1_t geo;
207
	struct xfs_fsop_geom_v1 geo; /* https://www.mail-archive.com/openembedded-devel@lists.openembedded.org/msg65431.html */
208
	int fd;
208
	int fd;
209
209
210
	fd = open( mnts, O_RDONLY );
210
	fd = open( mnts, O_RDONLY );
(-)a/common/drive.c (+1 lines)
Lines 17-22 Link Here
17
 */
17
 */
18
18
19
#include <stdio.h>
19
#include <stdio.h>
20
#include <stdlib.h> /* warning: implicit declaration of function ‘calloc’ [-Wimplicit-function-declaration] */
20
#include <unistd.h>
21
#include <unistd.h>
21
#include <sys/stat.h>
22
#include <sys/stat.h>
22
#include <time.h>
23
#include <time.h>

Return to bug 693296