blob: ac8923cb227dc17b25e6968ed1a2e50e5eb5c9c7 [file] [log] [blame]
Theodore Ts'o4d0f3e12001-01-11 15:48:50 +00001/*
2 * flushb.c --- Hides system-dependent information for both syncing a
3 * device to disk and to flush any buffers from disk cache.
Theodore Ts'oefc6f622008-08-27 23:07:54 -04004 *
Theodore Ts'o4d0f3e12001-01-11 15:48:50 +00005 * Copyright (C) 2000 Theodore Ts'o.
6 *
7 * %Begin-Header%
Theodore Ts'o543547a2010-05-17 21:31:56 -04008 * This file may be redistributed under the terms of the GNU Library
9 * General Public License, version 2.
Theodore Ts'o4d0f3e12001-01-11 15:48:50 +000010 * %End-Header%
11 */
12
Theodore Ts'od1154eb2011-09-18 17:34:37 -040013#include "config.h"
Theodore Ts'o4d0f3e12001-01-11 15:48:50 +000014#include <stdio.h>
15#if HAVE_ERRNO_H
16#include <errno.h>
17#endif
18#if HAVE_UNISTD_H
19#include <unistd.h>
20#endif
21#if HAVE_SYS_IOCTL_H
22#include <sys/ioctl.h>
23#endif
Theodore Ts'od90f3492001-06-22 21:01:17 -040024#if HAVE_SYS_MOUNT_H
Matthias Andreeb34cbdd2003-12-28 18:21:26 +010025#include <sys/param.h>
Theodore Ts'od90f3492001-06-22 21:01:17 -040026#include <sys/mount.h> /* This may define BLKFLSBUF */
27#endif
Theodore Ts'o4d0f3e12001-01-11 15:48:50 +000028
Theodore Ts'o4d0f3e12001-01-11 15:48:50 +000029#include "ext2_fs.h"
Theodore Ts'o4d0f3e12001-01-11 15:48:50 +000030#include "ext2fs.h"
31
32/*
Theodore Ts'oefc6f622008-08-27 23:07:54 -040033 * For Linux, define BLKFLSBUF and FDFLUSH if necessary, since
Theodore Ts'od90f3492001-06-22 21:01:17 -040034 * not all portable header file does so for us. This really should be
35 * fixed in the glibc header files. (Recent glibcs appear to define
36 * BLKFLSBUF in sys/mount.h, but FDFLUSH still doesn't seem to be
37 * defined anywhere portable.) Until then....
Theodore Ts'o4d0f3e12001-01-11 15:48:50 +000038 */
Theodore Ts'od90f3492001-06-22 21:01:17 -040039#ifdef __linux__
Theodore Ts'o4d0f3e12001-01-11 15:48:50 +000040#ifndef BLKFLSBUF
Theodore Ts'od90f3492001-06-22 21:01:17 -040041#define BLKFLSBUF _IO(0x12,97) /* flush buffer cache */
Theodore Ts'o4d0f3e12001-01-11 15:48:50 +000042#endif
43#ifndef FDFLUSH
Theodore Ts'od90f3492001-06-22 21:01:17 -040044#define FDFLUSH _IO(2,0x4b) /* flush floppy disk */
Theodore Ts'o4d0f3e12001-01-11 15:48:50 +000045#endif
46#endif
47
48/*
49 * This function will sync a device/file, and optionally attempt to
50 * flush the buffer cache. The latter is basically only useful for
51 * system benchmarks and for torturing systems in burn-in tests. :)
52 */
53errcode_t ext2fs_sync_device(int fd, int flushb)
54{
55 /*
56 * We always sync the device in case we're running on old
57 * kernels for which we can lose data if we don't. (There
58 * still is a race condition for those kernels, but this
59 * reduces it greatly.)
60 */
61 if (fsync (fd) == -1)
62 return errno;
63
64 if (flushb) {
65
66#ifdef BLKFLSBUF
Theodore Ts'o55ca9ae2002-10-31 12:21:05 -050067 if (ioctl (fd, BLKFLSBUF, 0) == 0)
68 return 0;
Andreas Dilgera1a76992011-06-11 11:50:01 -040069#elif defined(__linux__)
70#warning BLKFLSBUF not defined
Theodore Ts'o4d0f3e12001-01-11 15:48:50 +000071#endif
72#ifdef FDFLUSH
Theodore Ts'o55ca9ae2002-10-31 12:21:05 -050073 ioctl (fd, FDFLUSH, 0); /* In case this is a floppy */
Andreas Dilgera1a76992011-06-11 11:50:01 -040074#elif defined(__linux__)
75#warning FDFLUSH not defined
Theodore Ts'o4d0f3e12001-01-11 15:48:50 +000076#endif
77 }
78 return 0;
79}