All of lore.kernel.org
 help / color / mirror / Atom feed
* [PATCH] systemd: Refresh patches for uclibc
@ 2014-02-14  8:15 Khem Raj
  0 siblings, 0 replies; only message in thread
From: Khem Raj @ 2014-02-14  8:15 UTC (permalink / raw)
  To: openembedded-core

With recent patches added some of uclibc specific patches need
to be refreshed.

Signed-off-by: Khem Raj <raj.khem@gmail.com>
---
 .../systemd/systemd-pam-fix-fallocate.patch        |   53 ++++++++++----------
 1 file changed, 26 insertions(+), 27 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 7cf9626..d1740ef 100644
--- a/meta/recipes-core/systemd/systemd/systemd-pam-fix-fallocate.patch
+++ b/meta/recipes-core/systemd/systemd/systemd-pam-fix-fallocate.patch
@@ -1,11 +1,11 @@
 Upstream-Status: Denied [no desire for uclibc support]
 Signed-off-by: Khem Raj <raj.khem@gmail.com>
 
-Index: git/src/journal/journal-file.c
+Index: systemd-208/src/journal/journal-file.c
 ===================================================================
---- git.orig/src/journal/journal-file.c	2012-09-02 09:49:15.126089594 -0700
-+++ git/src/journal/journal-file.c	2012-09-02 09:49:17.118089670 -0700
-@@ -34,6 +34,8 @@
+--- systemd-208.orig/src/journal/journal-file.c	2014-02-14 00:05:05.000000000 -0800
++++ systemd-208/src/journal/journal-file.c	2014-02-14 00:08:41.338821677 -0800
+@@ -38,6 +38,8 @@
  #include "compress.h"
  #include "fsprg.h"
  
@@ -14,16 +14,16 @@ Index: git/src/journal/journal-file.c
  #define DEFAULT_DATA_HASH_TABLE_SIZE (2047ULL*sizeof(HashItem))
  #define DEFAULT_FIELD_HASH_TABLE_SIZE (333ULL*sizeof(HashItem))
  
-@@ -262,7 +264,7 @@
+@@ -316,7 +318,7 @@
  
  static int journal_file_allocate(JournalFile *f, uint64_t offset, uint64_t size) {
-         uint64_t old_size, new_size;
+         uint64_t old_size, new_size, file_size;
 -        int r;
 +        int r = 0;
  
          assert(f);
  
-@@ -307,10 +309,25 @@
+@@ -359,9 +361,24 @@
          /* Note that the glibc fallocate() fallback is very
             inefficient, hence we try to minimize the allocation area
             as we can. */
@@ -31,29 +31,28 @@ Index: git/src/journal/journal-file.c
          r = posix_fallocate(f->fd, old_size, new_size - old_size);
          if (r != 0)
                  return -r;
- 
 +#else
-+	/* Use good old method to write zeros into the journal file
-+	   perhaps very inefficient yet working. */
-+	if(new_size > old_size) {
-+		char *buf = alloca(new_size - old_size);
-+		off_t oldpos = lseek(f->fd, 0, SEEK_CUR);
-+		bzero(buf, new_size - old_size);
-+		lseek(f->fd, old_size, SEEK_SET);
-+		r = write(f->fd, buf, new_size - old_size);
-+		lseek(f->fd, oldpos, SEEK_SET);
-+	}
-+	if (r < 0)
-+		return -errno;
++       /* Use good old method to write zeros into the journal file
++          perhaps very inefficient yet working. */
++       if(new_size > old_size) {
++               char *buf = alloca(new_size - old_size);
++               off_t oldpos = lseek(f->fd, 0, SEEK_CUR);
++               bzero(buf, new_size - old_size);
++               lseek(f->fd, old_size, SEEK_SET);
++               r = write(f->fd, buf, new_size - old_size);
++               lseek(f->fd, oldpos, SEEK_SET);
++       }
++       if (r < 0)
++               return -errno;
 +#endif /* HAVE_POSIX_FALLOCATE */
-         if (fstat(f->fd, &f->last_stat) < 0)
-                 return -errno;
  
-Index: git/src/journal/journald-kmsg.c
+         /* Increase the file size a bit further than this, so that we
+          * we can create larger memory maps to cache */
+Index: systemd-208/src/journal/journald-kmsg.c
 ===================================================================
---- git.orig/src/journal/journald-kmsg.c	2012-09-02 09:49:15.130089595 -0700
-+++ git/src/journal/journald-kmsg.c	2012-09-02 12:26:17.326447895 -0700
-@@ -404,6 +404,7 @@
+--- systemd-208.orig/src/journal/journald-kmsg.c	2014-02-14 00:05:05.000000000 -0800
++++ systemd-208/src/journal/journald-kmsg.c	2014-02-14 00:05:47.498823000 -0800
+@@ -407,6 +407,7 @@
  
  int server_open_kernel_seqnum(Server *s) {
          int fd;
@@ -61,7 +60,7 @@ Index: git/src/journal/journald-kmsg.c
          uint64_t *p;
  
          assert(s);
-@@ -417,8 +418,19 @@
+@@ -420,8 +421,19 @@
                  log_error("Failed to open /run/systemd/journal/kernel-seqnum, ignoring: %m");
                  return 0;
          }
-- 
1.7.10.4



^ permalink raw reply related	[flat|nested] only message in thread

only message in thread, other threads:[~2014-02-14  8:15 UTC | newest]

Thread overview: (only message) (download: mbox.gz / follow: Atom feed)
-- links below jump to the message on this page --
2014-02-14  8:15 [PATCH] systemd: Refresh patches for uclibc Khem Raj

This is an external index of several public inboxes,
see mirroring instructions on how to clone and mirror
all data and code used by this external index.