mirror of
https://github.com/MariaDB/server.git
synced 2026-05-06 07:05:33 +02:00
into gbichot3.local:/home/mysql_src/mysql-maria BitKeeper/etc/ignore: auto-union BUILD/SETUP.sh: Auto merged client/mysqldump.c: Auto merged config/ac-macros/plugins.m4: Auto merged configure.in: Auto merged include/Makefile.am: Auto merged include/atomic/nolock.h: Auto merged include/atomic/rwlock.h: Auto merged include/atomic/x86-gcc.h: Auto merged include/atomic/x86-msvc.h: Auto merged include/ft_global.h: Auto merged include/keycache.h: Auto merged include/m_string.h: Auto merged include/my_atomic.h: Auto merged include/my_base.h: Auto merged include/my_dbug.h: Auto merged include/my_global.h: Auto merged include/my_handler.h: Auto merged include/my_sys.h: Auto merged include/myisam.h: Auto merged libmysql/CMakeLists.txt: Auto merged libmysqld/Makefile.am: Auto merged mysql-test/mysql-test-run.pl: Auto merged mysql-test/r/events_logs_tests.result: Auto merged mysql-test/t/events_logs_tests.test: Auto merged mysys/Makefile.am: Auto merged mysys/array.c: Auto merged mysys/mf_keycache.c: Auto merged mysys/mf_keycaches.c: Auto merged mysys/my_atomic.c: Auto merged mysys/my_bit.c: Auto merged mysys/my_bitmap.c: Auto merged mysys/my_create.c: Auto merged mysys/my_delete.c: Auto merged mysys/my_getsystime.c: Auto merged mysys/my_handler.c: Auto merged mysys/my_init.c: Auto merged mysys/my_open.c: Auto merged mysys/my_pread.c: Auto merged mysys/my_rename.c: Auto merged mysys/my_symlink.c: Auto merged mysys/my_sync.c: Auto merged plugin/daemon_example/daemon_example.cc: Auto merged sql/Makefile.am: Auto merged sql/filesort.cc: Auto merged sql/gen_lex_hash.cc: Auto merged sql/ha_ndbcluster.cc: Auto merged sql/handler.h: Auto merged sql/item_func.cc: Auto merged sql/item_func.h: Auto merged sql/log.cc: Auto merged sql/mysql_priv.h: Auto merged sql/set_var.h: Auto merged sql/sql_class.h: Auto merged sql/sql_parse.cc: Auto merged sql/sql_select.cc: Auto merged sql/sql_sort.h: Auto merged sql/sql_test.cc: Auto merged sql/uniques.cc: Auto merged sql/unireg.cc: Auto merged storage/Makefile.am: Auto merged storage/csv/ha_tina.cc: Auto merged storage/myisam/Makefile.am: Auto merged storage/myisam/ft_boolean_search.c: Auto merged storage/myisam/ft_nlq_search.c: Auto merged storage/myisam/ft_parser.c: Auto merged storage/myisam/ft_static.c: Auto merged storage/myisam/ft_stopwords.c: Auto merged storage/myisam/ft_update.c: Auto merged storage/myisam/fulltext.h: Auto merged storage/myisam/ha_myisam.h: Auto merged storage/myisam/mi_check.c: Auto merged storage/myisam/mi_create.c: Auto merged storage/myisam/mi_delete.c: Auto merged storage/myisam/mi_delete_all.c: Auto merged storage/myisam/mi_dynrec.c: Auto merged storage/myisam/mi_key.c: Auto merged storage/myisam/mi_log.c: Auto merged storage/myisam/mi_open.c: Auto merged storage/myisam/mi_packrec.c: Auto merged storage/myisam/mi_range.c: Auto merged storage/myisam/mi_rsamepos.c: Auto merged storage/myisam/mi_search.c: Auto merged storage/myisam/mi_test1.c: Auto merged storage/myisam/mi_test2.c: Auto merged storage/myisam/mi_unique.c: Auto merged storage/myisam/mi_update.c: Auto merged storage/myisam/mi_write.c: Auto merged storage/myisam/myisamchk.c: Auto merged storage/myisam/myisamlog.c: Auto merged storage/myisam/myisampack.c: Auto merged storage/myisam/rt_index.c: Auto merged storage/myisam/sort.c: Auto merged storage/myisammrg/ha_myisammrg.h: Auto merged unittest/mytap/tap.c: Auto merged mysql-test/r/view.result: manual merge mysql-test/t/view.test: manual merge Makefile.am: manual merge mysql-test/t/disabled.def: manual merge sql/mysqld.cc: manual merge sql/set_var.cc: manual merge sql/udf_example.c: manual merge storage/myisam/ha_myisam.cc: manual merge storage/myisam/myisamdef.h: manual merge storage/ndb/src/mgmapi/mgmapi.cpp: manual merge unittest/Makefile.am: manual merge unittest/mysys/Makefile.am: manual merge unittest/mysys/my_atomic-t.c: manual merge
154 lines
4.1 KiB
C
154 lines
4.1 KiB
C
/* Copyright (C) 2003 MySQL AB
|
|
|
|
This program is free software; you can redistribute it and/or modify
|
|
it under the terms of the GNU General Public License as published by
|
|
the Free Software Foundation; version 2 of the License.
|
|
|
|
This program is distributed in the hope that it will be useful,
|
|
but WITHOUT ANY WARRANTY; without even the implied warranty of
|
|
MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
|
|
GNU General Public License for more details.
|
|
|
|
You should have received a copy of the GNU General Public License
|
|
along with this program; if not, write to the Free Software
|
|
Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA */
|
|
|
|
#include "mysys_priv.h"
|
|
#include "mysys_err.h"
|
|
#include <errno.h>
|
|
|
|
/*
|
|
Sync data in file to disk
|
|
|
|
SYNOPSIS
|
|
my_sync()
|
|
fd File descritor to sync
|
|
my_flags Flags (now only MY_WME is supported)
|
|
|
|
NOTE
|
|
If file system supports its, only file data is synced, not inode data.
|
|
|
|
MY_IGNORE_BADFD is useful when fd is "volatile" - not protected by a
|
|
mutex. In this case by the time of fsync(), fd may be already closed by
|
|
another thread, or even reassigned to a different file. With this flag -
|
|
MY_IGNORE_BADFD - such a situation will not be considered an error.
|
|
(which is correct behaviour, if we know that the other thread synced the
|
|
file before closing)
|
|
|
|
RETURN
|
|
0 ok
|
|
-1 error
|
|
*/
|
|
|
|
int my_sync(File fd, myf my_flags)
|
|
{
|
|
int res;
|
|
DBUG_ENTER("my_sync");
|
|
DBUG_PRINT("my",("Fd: %d my_flags: %d", fd, my_flags));
|
|
|
|
do
|
|
{
|
|
#if defined(F_FULLFSYNC)
|
|
/*
|
|
In Mac OS X >= 10.3 this call is safer than fsync() (it forces the
|
|
disk's cache and guarantees ordered writes).
|
|
*/
|
|
if (!(res= fcntl(fd, F_FULLFSYNC, 0)))
|
|
break; /* ok */
|
|
/* Some file systems don't support F_FULLFSYNC and fail above: */
|
|
DBUG_PRINT("info",("fcntl(F_FULLFSYNC) failed, falling back"));
|
|
#endif
|
|
#if defined(HAVE_FDATASYNC)
|
|
res= fdatasync(fd);
|
|
#elif defined(HAVE_FSYNC)
|
|
res= fsync(fd);
|
|
#elif defined(__WIN__)
|
|
res= _commit(fd);
|
|
#else
|
|
#error Cannot find a way to sync a file, durability in danger
|
|
res= 0; /* No sync (strange OS) */
|
|
#endif
|
|
} while (res == -1 && errno == EINTR);
|
|
|
|
if (res)
|
|
{
|
|
int er= errno;
|
|
if (!(my_errno= er))
|
|
my_errno= -1; /* Unknown error */
|
|
if ((my_flags & MY_IGNORE_BADFD) &&
|
|
(er == EBADF || er == EINVAL || er == EROFS))
|
|
{
|
|
DBUG_PRINT("info", ("ignoring errno %d", er));
|
|
res= 0;
|
|
}
|
|
else if (my_flags & MY_WME)
|
|
my_error(EE_SYNC, MYF(ME_BELL+ME_WAITTANG), my_filename(fd), my_errno);
|
|
}
|
|
DBUG_RETURN(res);
|
|
} /* my_sync */
|
|
|
|
|
|
static const char cur_dir_name[]= {FN_CURLIB, 0};
|
|
/*
|
|
Force directory information to disk.
|
|
|
|
SYNOPSIS
|
|
my_sync_dir()
|
|
dir_name the name of the directory
|
|
my_flags flags (MY_WME etc)
|
|
|
|
RETURN
|
|
0 if ok, !=0 if error
|
|
*/
|
|
int my_sync_dir(const char *dir_name, myf my_flags)
|
|
{
|
|
#ifdef NEED_EXPLICIT_SYNC_DIR
|
|
DBUG_ENTER("my_sync_dir");
|
|
DBUG_PRINT("my",("Dir: '%s' my_flags: %d", dir_name, my_flags));
|
|
File dir_fd;
|
|
int res= 0;
|
|
const char *correct_dir_name;
|
|
/* Sometimes the path does not contain an explicit directory */
|
|
correct_dir_name= (dir_name[0] == 0) ? cur_dir_name : dir_name;
|
|
/*
|
|
Syncing a dir may give EINVAL on tmpfs on Linux, which is ok.
|
|
EIO on the other hand is very important. Hence MY_IGNORE_BADFD.
|
|
*/
|
|
if ((dir_fd= my_open(correct_dir_name, O_RDONLY, MYF(my_flags))) >= 0)
|
|
{
|
|
if (my_sync(dir_fd, MYF(my_flags | MY_IGNORE_BADFD)))
|
|
res= 2;
|
|
if (my_close(dir_fd, MYF(my_flags)))
|
|
res= 3;
|
|
}
|
|
else
|
|
res= 1;
|
|
DBUG_RETURN(res);
|
|
#else
|
|
return 0;
|
|
#endif
|
|
}
|
|
|
|
|
|
/*
|
|
Force directory information to disk.
|
|
|
|
SYNOPSIS
|
|
my_sync_dir_by_file()
|
|
file_name the name of a file in the directory
|
|
my_flags flags (MY_WME etc)
|
|
|
|
RETURN
|
|
0 if ok, !=0 if error
|
|
*/
|
|
int my_sync_dir_by_file(const char *file_name, myf my_flags)
|
|
{
|
|
#ifdef NEED_EXPLICIT_SYNC_DIR
|
|
char dir_name[FN_REFLEN];
|
|
dirname_part(dir_name, file_name);
|
|
return my_sync_dir(dir_name, my_flags);
|
|
#else
|
|
return 0;
|
|
#endif
|
|
}
|
|
|