diff options
author | Drew Moseley <drew_moseley@mentor.com> | 2014-04-28 11:38:57 -0400 |
---|---|---|
committer | Richard Purdie <richard.purdie@linuxfoundation.org> | 2014-04-29 17:19:50 +0100 |
commit | 7e498c4c17e2c1b6928d4c1fd127977bb588991f (patch) | |
tree | 40c8279032b83ad13586e3ae5cced9c4c5cbd89f /meta/recipes-core | |
parent | b9a51fc1901c378375cca041da27ddbd450c0412 (diff) | |
download | openembedded-core-7e498c4c17e2c1b6928d4c1fd127977bb588991f.tar.gz openembedded-core-7e498c4c17e2c1b6928d4c1fd127977bb588991f.tar.bz2 openembedded-core-7e498c4c17e2c1b6928d4c1fd127977bb588991f.zip |
systemd: Check for HAVE_POSIX_FALLOCATE
The check for the config variable is using the wrong define
resulting in the #else always being used.
Signed-off-by: Drew Moseley <drew_moseley@mentor.com>
Signed-off-by: Saul Wold <sgw@linux.intel.com>
Diffstat (limited to 'meta/recipes-core')
-rw-r--r-- | meta/recipes-core/systemd/systemd/systemd-pam-fix-fallocate.patch | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/meta/recipes-core/systemd/systemd/systemd-pam-fix-fallocate.patch b/meta/recipes-core/systemd/systemd/systemd-pam-fix-fallocate.patch index de73be96a7..d25acefb59 100644 --- a/meta/recipes-core/systemd/systemd/systemd-pam-fix-fallocate.patch +++ b/meta/recipes-core/systemd/systemd/systemd-pam-fix-fallocate.patch @@ -27,7 +27,7 @@ Index: systemd-209/src/journal/journal-file.c /* Note that the glibc fallocate() fallback is very inefficient, hence we try to minimize the allocation area as we can. */ -+#ifdef HAVE_POSIX_ALLOCATE ++#ifdef HAVE_POSIX_FALLOCATE r = posix_fallocate(f->fd, old_size, new_size - old_size); if (r != 0) return -r; @@ -66,7 +66,7 @@ Index: systemd-209/src/journal/journald-kmsg.c } - - if (posix_fallocate(fd, 0, sizeof(uint64_t)) < 0) { -+#ifdef HAVE_POSIX_ALLOCATE ++#ifdef HAVE_POSIX_FALLOCATE + r = posix_fallocate(fd, 0, sizeof(uint64_t)); +#else + /* Use good old method to write zeros into the journal file |