diff options
author | Marko Mäkelä <marko.makela@mariadb.com> | 2016-12-30 12:26:05 +0200 |
---|---|---|
committer | Marko Mäkelä <marko.makela@mariadb.com> | 2016-12-30 12:26:05 +0200 |
commit | 1ab3866de237fad4cb2cc6f532aa7750e15dd723 (patch) | |
tree | 2e8063df3d6094f82eb8ca1105866b821ff30b96 /storage/innobase/srv | |
parent | d4342702bf6ddc4dd63b620fecd4e40881039ef9 (diff) | |
download | mariadb-git-1ab3866de237fad4cb2cc6f532aa7750e15dd723.tar.gz |
MDEV-11687 innodb_use_fallocate has no effect
The configuration parameter innodb_use_fallocate, which is mapped to
the variable srv_use_posix_fallocate, has no effect in MariaDB 10.2.2
or MariaDB 10.2.3.
Thus the configuration parameter and the variable should be removed.
Diffstat (limited to 'storage/innobase/srv')
-rw-r--r-- | storage/innobase/srv/srv0srv.cc | 2 |
1 files changed, 0 insertions, 2 deletions
diff --git a/storage/innobase/srv/srv0srv.cc b/storage/innobase/srv/srv0srv.cc index 4ccbda71803..0eda03f7fd7 100644 --- a/storage/innobase/srv/srv0srv.cc +++ b/storage/innobase/srv/srv0srv.cc @@ -190,8 +190,6 @@ my_bool srv_numa_interleave = FALSE; /* If this flag is TRUE, then we will use fallocate(PUCH_HOLE) to the pages */ UNIV_INTERN my_bool srv_use_trim = FALSE; -/* If this flag is TRUE, then we will use posix fallocate for file extentsion */ -UNIV_INTERN my_bool srv_use_posix_fallocate = FALSE; /* If this flag is TRUE, then we disable doublewrite buffer */ UNIV_INTERN my_bool srv_use_atomic_writes = FALSE; /* If this flag IS TRUE, then we use this algorithm for page compressing the pages */ |