Blame SOURCES/0032-grub-core-normal-main.c-read_config_file-Buffer-conf.patch

23d2ea
From 8a7b98011d7a26e4e73b8b772921e011e4da3aa1 Mon Sep 17 00:00:00 2001
39700a
From: Vladimir Serbinenko <phcoder@gmail.com>
39700a
Date: Sat, 18 Jan 2014 19:54:09 +0100
27a4da
Subject: [PATCH 032/260] * grub-core/normal/main.c (read_config_file): Buffer
23d2ea
 config file. Reduces boot time.
39700a
39700a
---
39700a
 ChangeLog               |  5 +++++
39700a
 grub-core/normal/main.c | 14 +++++++++++---
39700a
 2 files changed, 16 insertions(+), 3 deletions(-)
39700a
39700a
diff --git a/ChangeLog b/ChangeLog
27a4da
index c3bfa9fcb..c84f7e7cc 100644
39700a
--- a/ChangeLog
39700a
+++ b/ChangeLog
39700a
@@ -1,3 +1,8 @@
39700a
+2014-01-18  Vladimir Serbinenko  <phcoder@gmail.com>
39700a
+
39700a
+	* grub-core/normal/main.c (read_config_file): Buffer config file.
39700a
+	Reduces boot time.
39700a
+
39700a
 2014-01-18  Andrey Borzenkov <arvidjaar@gmail.com>
39700a
 
39700a
 	* acinclude.m4 (grub_CHECK_LINK_DIR): Check that we can also remove
39700a
diff --git a/grub-core/normal/main.c b/grub-core/normal/main.c
27a4da
index c36663f73..3a926fc5f 100644
39700a
--- a/grub-core/normal/main.c
39700a
+++ b/grub-core/normal/main.c
39700a
@@ -32,6 +32,7 @@
39700a
 #include <grub/i18n.h>
39700a
 #include <grub/charset.h>
39700a
 #include <grub/script_sh.h>
39700a
+#include <grub/bufio.h>
39700a
 
39700a
 GRUB_MOD_LICENSE ("GPLv3+");
39700a
 
39700a
@@ -104,7 +105,7 @@ read_config_file_getline (char **line, int cont __attribute__ ((unused)),
39700a
 static grub_menu_t
39700a
 read_config_file (const char *config)
39700a
 {
39700a
-  grub_file_t file;
39700a
+  grub_file_t rawfile, file;
39700a
   char *old_file = 0, *old_dir = 0;
39700a
   char *config_dir, *ptr = 0;
39700a
   const char *ctmp;
39700a
@@ -122,10 +123,17 @@ read_config_file (const char *config)
39700a
     }
39700a
 
39700a
   /* Try to open the config file.  */
39700a
-  file = grub_file_open (config);
39700a
-  if (! file)
39700a
+  rawfile = grub_file_open (config);
39700a
+  if (! rawfile)
39700a
     return 0;
39700a
 
39700a
+  file = grub_bufio_open (rawfile, 0);
39700a
+  if (! file)
39700a
+    {
39700a
+      grub_file_close (file);
39700a
+      return 0;
39700a
+    }
39700a
+
39700a
   ctmp = grub_env_get ("config_file");
39700a
   if (ctmp)
39700a
     old_file = grub_strdup (ctmp);
39700a
-- 
27a4da
2.13.0
39700a