aboutsummaryrefslogtreecommitdiffstats
path: root/meta/recipes-core/systemd/systemd/0013-journal-fix-Inappropriate-ioctl-for-device-on-ext4.patch
diff options
context:
space:
mode:
authorJoshua Lock <joshua.lock@collabora.co.uk>2015-05-01 11:41:29 +0100
committerRichard Purdie <richard.purdie@linuxfoundation.org>2015-05-03 11:39:47 +0100
commite45b8bf579f2050ebdb1aa1a4c2f9c3b530c9ad6 (patch)
tree1bdd87b28626d0c0a0f367330eda4584d5757527 /meta/recipes-core/systemd/systemd/0013-journal-fix-Inappropriate-ioctl-for-device-on-ext4.patch
parentf879a7406d8fce37e8baf5fe724d7ed0042d57f8 (diff)
downloadopenembedded-core-contrib-e45b8bf579f2050ebdb1aa1a4c2f9c3b530c9ad6.tar.gz
systemd: remove unused patches
These patches are no longer required since 7bfc9891ff498bdde31aadd2449d3b4692dbc510 Signed-off-by: Joshua Lock <joshua.lock@collabora.co.uk> Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
Diffstat (limited to 'meta/recipes-core/systemd/systemd/0013-journal-fix-Inappropriate-ioctl-for-device-on-ext4.patch')
-rw-r--r--meta/recipes-core/systemd/systemd/0013-journal-fix-Inappropriate-ioctl-for-device-on-ext4.patch37
1 files changed, 0 insertions, 37 deletions
diff --git a/meta/recipes-core/systemd/systemd/0013-journal-fix-Inappropriate-ioctl-for-device-on-ext4.patch b/meta/recipes-core/systemd/systemd/0013-journal-fix-Inappropriate-ioctl-for-device-on-ext4.patch
deleted file mode 100644
index a49d626824..0000000000
--- a/meta/recipes-core/systemd/systemd/0013-journal-fix-Inappropriate-ioctl-for-device-on-ext4.patch
+++ /dev/null
@@ -1,37 +0,0 @@
-From 65eae3b76243d2dfd869f8c43b787575f7b4b994 Mon Sep 17 00:00:00 2001
-From: =?UTF-8?q?Cristian=20Rodr=C3=ADguez?= <crrodriguez@opensuse.org>
-Date: Sun, 1 Mar 2015 21:13:10 -0300
-Subject: [PATCH] journal: fix Inappropriate ioctl for device on ext4
-
-Logs constantly show
-
-systemd-journald[395]: Failed to set file attributes: Inappropriate ioctl for device
-
-This is because ext4 does not support FS_NOCOW_FL.
-
-[zj: fold into one conditional as suggested on the ML and
- fix (preexisting) r/errno confusion in error message.]
-
-Signed-off-by: Randy Witt <randy.e.witt@linux.intel.com>
----
- src/journal/journal-file.c | 4 ++--
- 1 file changed, 2 insertions(+), 2 deletions(-)
-
-diff --git a/src/journal/journal-file.c b/src/journal/journal-file.c
-index 9c9a548..0e33a0f 100644
---- a/src/journal/journal-file.c
-+++ b/src/journal/journal-file.c
-@@ -2609,8 +2609,8 @@ int journal_file_open(
- * shouldn't be too bad, given that we do our own
- * checksumming). */
- r = chattr_fd(f->fd, true, FS_NOCOW_FL);
-- if (r < 0)
-- log_warning_errno(errno, "Failed to set file attributes: %m");
-+ if (r < 0 && r != -ENOTTY)
-+ log_warning_errno(r, "Failed to set file attributes: %m");
-
- /* Let's attach the creation time to the journal file,
- * so that the vacuuming code knows the age of this
---
-1.9.3
-