<?xml version="1.0" encoding="UTF-8"?>
<rdf:RDF xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" xmlns="http://purl.org/rss/1.0/" xmlns:taxo="http://purl.org/rss/1.0/modules/taxonomy/" xmlns:dc="http://purl.org/dc/elements/1.1/" xmlns:syn="http://purl.org/rss/1.0/modules/syndication/" xmlns:admin="http://webns.net/mvcb/">
  <channel rdf:about="http://blog.gmane.org/gmane.linux.kernel.kexec">
    <title>gmane.linux.kernel.kexec</title>
    <link>http://blog.gmane.org/gmane.linux.kernel.kexec</link>
    <description/>
    <syn:updatePeriod>hourly</syn:updatePeriod>
    <syn:updateFrequency>1</syn:updateFrequency>
    <syn:updateBase>1901-01-01T00:00+00:00</syn:updateBase>
    <items>
      <rdf:Seq>
        <rdf:li rdf:resource="http://comments.gmane.org/gmane.linux.kernel.kexec/6139"/>
        <rdf:li rdf:resource="http://comments.gmane.org/gmane.linux.kernel.kexec/6132"/>
        <rdf:li rdf:resource="http://comments.gmane.org/gmane.linux.kernel.kexec/6131"/>
        <rdf:li rdf:resource="http://comments.gmane.org/gmane.linux.kernel.kexec/6120"/>
        <rdf:li rdf:resource="http://comments.gmane.org/gmane.linux.kernel.kexec/6119"/>
        <rdf:li rdf:resource="http://comments.gmane.org/gmane.linux.kernel.kexec/6103"/>
        <rdf:li rdf:resource="http://comments.gmane.org/gmane.linux.kernel.kexec/6093"/>
        <rdf:li rdf:resource="http://comments.gmane.org/gmane.linux.kernel.kexec/6092"/>
        <rdf:li rdf:resource="http://comments.gmane.org/gmane.linux.kernel.kexec/6081"/>
        <rdf:li rdf:resource="http://comments.gmane.org/gmane.linux.kernel.kexec/6076"/>
        <rdf:li rdf:resource="http://comments.gmane.org/gmane.linux.kernel.kexec/6075"/>
        <rdf:li rdf:resource="http://comments.gmane.org/gmane.linux.kernel.kexec/6069"/>
        <rdf:li rdf:resource="http://comments.gmane.org/gmane.linux.kernel.kexec/6067"/>
        <rdf:li rdf:resource="http://comments.gmane.org/gmane.linux.kernel.kexec/6039"/>
        <rdf:li rdf:resource="http://comments.gmane.org/gmane.linux.kernel.kexec/6038"/>
        <rdf:li rdf:resource="http://comments.gmane.org/gmane.linux.kernel.kexec/6014"/>
        <rdf:li rdf:resource="http://comments.gmane.org/gmane.linux.kernel.kexec/5994"/>
        <rdf:li rdf:resource="http://comments.gmane.org/gmane.linux.kernel.kexec/5987"/>
        <rdf:li rdf:resource="http://comments.gmane.org/gmane.linux.kernel.kexec/5986"/>
        <rdf:li rdf:resource="http://comments.gmane.org/gmane.linux.kernel.kexec/5985"/>
      </rdf:Seq>
    </items>
    <image rdf:resource="http://gmane.org/img/gmane-25t.png"/>
    <textinput rdf:resource=""/>
  </channel>
  <image rdf:about="http://gmane.org/img/gmane-25t.png">
    <title>Gmane</title>
    <url>http://gmane.org/img/gmane-25t.png</url>
    <link>http://gmane.org</link>
  </image>
  <item rdf:about="http://comments.gmane.org/gmane.linux.kernel.kexec/6139">
    <title>Kexec corrupts command line in x86-linux-setup.c setup_edd_info()</title>
    <link>http://comments.gmane.org/gmane.linux.kernel.kexec/6139</link>
    <description>&lt;pre&gt;Hi,
I've been chasing strange problem with kdump kernel. It was crashing on 
boot without any messages to the console.
Finally I found that kdump kernel command line was corrupt.
Digging down I found the problem in  setup_edd_info() and 
add_edd_entry(). It doesn't check for array size of
real_mode-&amp;gt;eddbuf[] and real_mode-&amp;gt;edd_mbr_sig_buffer[]
So when it overruns eddbuf[] it corrupts command_line that follows it.

Here is the fix:

--- a/kexec-tools/kexec/arch/i386/x86-linux-setup.c
+++ b/kexec-tools/kexec/arch/i386/x86-linux-setup.c
&amp;lt; at &amp;gt;&amp;lt; at &amp;gt; -275,9 +275,9 &amp;lt; at &amp;gt;&amp;lt; at &amp;gt; static int add_edd_entry(struct 
x86_linux_param_header *real_mode,
                                 "must not be NULL", __FUNCTION__);
                 return -1;
         }
-
-       edd_info = &amp;amp;real_mode-&amp;gt;eddbuf[*current_edd];
-       memset(edd_info, 0, sizeof(struct edd_info));
+       if (*current_mbr &amp;gt;= EDD_MBR_SIG_MAX) {
+               return 0;
+       }

         /* extract the device number */
         if (sscanf(basename(sysfs_name), "int13_dev%h&lt;/pre&gt;</description>
    <dc:creator>Dmitry Trikoz</dc:creator>
    <dc:date>2012-05-24T17:26:51</dc:date>
  </item>
  <item rdf:about="http://comments.gmane.org/gmane.linux.kernel.kexec/6132">
    <title>[PATCH v2] kexec: simply pass LINUX_REBOOT_CMD_KEXEC to reboot</title>
    <link>http://comments.gmane.org/gmane.linux.kernel.kexec/6132</link>
    <description>&lt;pre&gt;While trying to port kexec cleanly to klibc,
came across this syscall usage for reboot(2).
Calling reboot directly simplifies the code.

Signed-off-by: maximilian attems &amp;lt;max-U9r9yeDMy7A&amp;lt; at &amp;gt;public.gmane.org&amp;gt;
---
 kexec/kexec-syscall.h |   18 ------------------
 kexec/kexec.c         |    3 ++-
 2 files changed, 2 insertions(+), 19 deletions(-)

v2: keep LINUX_REBOOT_CMD_KEXEC defines, thus no need of &amp;lt;linux/reboot.h&amp;gt;.
    (The packagers don't like linux header deps..)

The next TODO item is to add proper syscall kexec_load() to glibc.
Funnily here klibc has an head start! -maks

diff --git a/kexec/kexec-syscall.h b/kexec/kexec-syscall.h
index f4df45c..b56cb00 100644
--- a/kexec/kexec-syscall.h
+++ b/kexec/kexec-syscall.h
&amp;lt; at &amp;gt;&amp;lt; at &amp;gt; -5,18 +5,6 &amp;lt; at &amp;gt;&amp;lt; at &amp;gt;
 #include &amp;lt;sys/syscall.h&amp;gt;
 #include &amp;lt;unistd.h&amp;gt;
 
-#defineLINUX_REBOOT_MAGIC10xfee1dead
-#defineLINUX_REBOOT_MAGIC2672274793
-#defineLINUX_REBOOT_MAGIC2A85072278
-#defineLINUX_REBOOT_MAGIC2B369367448
-
-#defineLINUX_REBOOT_CMD_RESTART0x01234567
-#defineLINUX_REBOOT_CM&lt;/pre&gt;</description>
    <dc:creator>maximilian attems</dc:creator>
    <dc:date>2012-05-22T16:59:47</dc:date>
  </item>
  <item rdf:about="http://comments.gmane.org/gmane.linux.kernel.kexec/6131">
    <title>[PATCH] kexec: simply pass LINUX_REBOOT_CMD_KEXEC to reboot</title>
    <link>http://comments.gmane.org/gmane.linux.kernel.kexec/6131</link>
    <description>&lt;pre&gt;While trying to port kexec cleanly to klibc,
came across this syscall usage for reboot(2).
Calling reboot directly simplifies the code.

Signed-off-by: maximilian attems &amp;lt;max-U9r9yeDMy7A&amp;lt; at &amp;gt;public.gmane.org&amp;gt;
---
 kexec/kexec-syscall.h |   20 --------------------
 kexec/kexec.c         |    4 +++-
 2 files changed, 3 insertions(+), 21 deletions(-)

The next TODO item is to add proper syscall kexec_load() to glibc.
Funnily here klibc has an head start! -maks

diff --git a/kexec/kexec-syscall.h b/kexec/kexec-syscall.h
index f4df45c..415fbd7 100644
--- a/kexec/kexec-syscall.h
+++ b/kexec/kexec-syscall.h
&amp;lt; at &amp;gt;&amp;lt; at &amp;gt; -5,22 +5,6 &amp;lt; at &amp;gt;&amp;lt; at &amp;gt;
 #include &amp;lt;sys/syscall.h&amp;gt;
 #include &amp;lt;unistd.h&amp;gt;
 
-#defineLINUX_REBOOT_MAGIC10xfee1dead
-#defineLINUX_REBOOT_MAGIC2672274793
-#defineLINUX_REBOOT_MAGIC2A85072278
-#defineLINUX_REBOOT_MAGIC2B369367448
-
-#defineLINUX_REBOOT_CMD_RESTART0x01234567
-#defineLINUX_REBOOT_CMD_HALT0xCDEF0123
-#defineLINUX_REBOOT_CMD_CAD_ON0x89ABCDEF
-#defineLINUX_REBOOT_CMD_CAD_OFF0x00000000
-#defineLINUX_&lt;/pre&gt;</description>
    <dc:creator>maximilian attems</dc:creator>
    <dc:date>2012-05-22T16:09:58</dc:date>
  </item>
  <item rdf:about="http://comments.gmane.org/gmane.linux.kernel.kexec/6120">
    <title>[PATCH] Use HOSTCC for build utilities</title>
    <link>http://comments.gmane.org/gmane.linux.kernel.kexec/6120</link>
    <description>&lt;pre&gt;Subject: [PATCH] Use HOSTCC for build utilities

bin-to-hex is used during the build and needs to be compiled with the host
compiler to be able to run during the build.

Signed-off-by: Baruch Even &amp;lt;baruch-6P1Dz+XQpLLYtjvyW6yDsg&amp;lt; at &amp;gt;public.gmane.org&amp;gt;
---
 util/Makefile |    4 ++--
 1 file changed, 2 insertions(+), 2 deletions(-)

diff --git a/util/Makefile b/util/Makefile
index 948ee63..82c7407 100644
--- a/util/Makefile
+++ b/util/Makefile
&amp;lt; at &amp;gt;&amp;lt; at &amp;gt; -4,8 +4,8 &amp;lt; at &amp;gt;&amp;lt; at &amp;gt; $(BIN_TO_HEX): $(srcdir)/util/bin-to-hex.c
 &amp;lt; at &amp;gt;$(MKDIR) -p $(&amp;lt; at &amp;gt;D)
 $(LINK.o) $(CFLAGS) -o $&amp;lt; at &amp;gt; $^

-$(BIN_TO_HEX): CC=$(BUILD_CC)
-$(BIN_TO_HEX): CFLAGS=$(BUILD_CFLAGS)
+$(BIN_TO_HEX): CC=$(HOSTCC)
+$(BIN_TO_HEX): CFLAGS=$(HOST_CFLAGS)
 $(BIN_TO_HEX): LDFLAGS=

 dist += util/Makefile util/bin-to-hex.c
&lt;/pre&gt;</description>
    <dc:creator>Baruch Even</dc:creator>
    <dc:date>2012-05-20T00:00:05</dc:date>
  </item>
  <item rdf:about="http://comments.gmane.org/gmane.linux.kernel.kexec/6119">
    <title>Your Mailbox Is Almost Full</title>
    <link>http://comments.gmane.org/gmane.linux.kernel.kexec/6119</link>
    <description>&lt;pre&gt;Your Mailbox Is Almost Full "CLICK HERE&amp;lt;https://docs.google.com/spreadsheet/viewform?formkey=dE1tZWZNRzVyalFmbG9JOUNERzF5enc6MQ&amp;gt;" Update Your MailBox And Increase Your Account. Thanks System Administrator.
&lt;/pre&gt;</description>
    <dc:creator>Cerda, Weston</dc:creator>
    <dc:date>2012-05-18T07:33:42</dc:date>
  </item>
  <item rdf:about="http://comments.gmane.org/gmane.linux.kernel.kexec/6103">
    <title>[v2 PATCH] ppc: move DEBUG code to --debug</title>
    <link>http://comments.gmane.org/gmane.linux.kernel.kexec/6103</link>
    <description>&lt;pre&gt;From: Cong Wang &amp;lt;xiyou.wangcong-Re5JQEeQqe8AvxtiuMwx3w&amp;lt; at &amp;gt;public.gmane.org&amp;gt;


From: Cong Wang &amp;lt;xiyou.wangcong-Re5JQEeQqe8AvxtiuMwx3w&amp;lt; at &amp;gt;public.gmane.org&amp;gt;
V2: Fix a compile error

Like commit 28d4ab53280853d2aeefdfb7c369331e89ab9ac2
("Add generic debug option"), this one moves code
under #if DEBUG to --debug on ppc arch.

Sorry that I still can't find a ppc32 machine to test this.

Cc: Simon Horman &amp;lt;horms-/R6kz+dDXgpPR4JQBCEnsQ&amp;lt; at &amp;gt;public.gmane.org&amp;gt;
Signed-off-by: Cong Wang &amp;lt;xiyou.wangcong-Re5JQEeQqe8AvxtiuMwx3w&amp;lt; at &amp;gt;public.gmane.org&amp;gt;
---
 kexec/arch/ppc/crashdump-powerpc.c |   18 ++++++++----------
 kexec/arch/ppc/fixup_dtb.c         |   32 ++++++++++++++------------------
 kexec/arch/ppc/fs2dt.c             |    6 +++---
 kexec/arch/ppc/kexec-ppc.c         |   17 ++++++++---------
 kexec/arch/ppc/libfdt-wrapper.c    |    4 ++--
 kexec/arch/ppc64/crashdump-ppc64.c |   16 ++++++----------
 kexec/arch/ppc64/kexec-elf-ppc64.c |   23 +++++++++++------------
 kexec/arch/ppc64/kexec-ppc64.c     |    9 +++------
 8 files changed,&lt;/pre&gt;</description>
    <dc:creator>Cong Wang</dc:creator>
    <dc:date>2012-05-14T06:34:56</dc:date>
  </item>
  <item rdf:about="http://comments.gmane.org/gmane.linux.kernel.kexec/6093">
    <title>kexec from live image failing periodically</title>
    <link>http://comments.gmane.org/gmane.linux.kernel.kexec/6093</link>
    <description>&lt;pre&gt;Hello,

I am trying to run kexec into the RHEL62 kickstart installer from a RHEL62
LiveCD.

It works most of the time, but sometimes it fails with a kernel crash
stack.

The last message before the crash is always:

"Trying to unpack rootfs image as initramfs...."


Below is a sample stack from the crash.

Does any one have any clues on tracking down this issue?

Cheers,
Ivan


BUG: soft lockup - CPU#0 stuck for 67s! [swapper:1]
Modules linked in:
CPU 0 
Modules linked in:

Pid: 1, comm: swapper Not tainted 2.6.32-220.el6.x86_64 #1 EMC
S2600GZ/S2600GZ
RIP: 0010:[&amp;lt;ffffffff81c4c8d8&amp;gt;]  [&amp;lt;ffffffff81c4c8d8&amp;gt;] rc_get_bit+0x6/0x79
RSP: 0018:ffff88102ceadce8  EFLAGS: 00000246
RAX: 0000000000000007 RBX: ffff88102ceadcf0 RCX: 0000000000000000
RDX: ffff88102ceaddfc RSI: ffffc90016e47686 RDI: ffff88102ceaddb0
RBP: ffffffff8100bc0e R08: ffffc90016e47678 R09: 0000000000000003
R10: 0000000000000003 R11: 0000000000000000 R12: 0000000004000605
R13: 000000000acff908 R14: ffffc90016e47644 R15: 0000000000000003
FS:  000000000000&lt;/pre&gt;</description>
    <dc:creator>Ivan.Novick-mb1K0bWo544&lt; at &gt;public.gmane.org</dc:creator>
    <dc:date>2012-05-10T20:12:11</dc:date>
  </item>
  <item rdf:about="http://comments.gmane.org/gmane.linux.kernel.kexec/6092">
    <title>PROJECT(reply via gaddafisaadi-dbdLmdGazhY&lt; at &gt;public.gmane.org )</title>
    <link>http://comments.gmane.org/gmane.linux.kernel.kexec/6092</link>
    <description>&lt;pre&gt;I would like to discuss a project with you.Please email me back.via gaddafisaadi-dbdLmdGazhY&amp;lt; at &amp;gt;public.gmane.org  if interested
&lt;/pre&gt;</description>
    <dc:creator>Contact</dc:creator>
    <dc:date>2012-05-10T09:28:50</dc:date>
  </item>
  <item rdf:about="http://comments.gmane.org/gmane.linux.kernel.kexec/6081">
    <title>WESTERN UNION</title>
    <link>http://comments.gmane.org/gmane.linux.kernel.kexec/6081</link>
    <description>&lt;pre&gt;Attn, We are grateful to contact you and announce to you that your e-mail was
among the listed beneficiary that won our western union on-line award.
 
Contact us upon receipt of this mail with the requested information below to
enable us file your information to your location country payment zone:
 
1*First Name :...........
2*Last Name :..............
3*Gender :..........
4*Occupation:.........
5*Home Telephone Number :...............
6*Mobile Telephone Number :..............
7*State :..........
8*Country :......................
9*Age:...................
 
Once again congratulation, and have a nice day.
NOTE: Due to poor network service HERE,You may receive this Notification as 
junk/spam
 
Name: Manager Mr Christopher Roland
Tel: +2348071169011
western.union.money.trasfer.westafrica-FmXjaEvEckLQT0dZR+AlfA&amp;lt; at &amp;gt;public.gmane.org
©2012- Western Union Holdings
&lt;/pre&gt;</description>
    <dc:creator>Western Union Money Transfer</dc:creator>
    <dc:date>2012-04-28T21:22:06</dc:date>
  </item>
  <item rdf:about="http://comments.gmane.org/gmane.linux.kernel.kexec/6076">
    <title>makedumpfile availability for x86 3.2 kernels</title>
    <link>http://comments.gmane.org/gmane.linux.kernel.kexec/6076</link>
    <description>&lt;pre&gt;Hello Kumagai-san,

Do you have an idea of the availability of makedumpfile for 3.2 flavor
kernels ?

Ubuntu 12.04 Precise have just been released today and, since it is
based on a 3.2 kernel, makedumpfile no longer works for it.

Kind regards,

...Louis
&lt;/pre&gt;</description>
    <dc:creator>Bouchard Louis</dc:creator>
    <dc:date>2012-04-26T20:27:31</dc:date>
  </item>
  <item rdf:about="http://comments.gmane.org/gmane.linux.kernel.kexec/6075">
    <title>[RFC PATCH V2]  Disable Bus Master bit on PCI device shutdown</title>
    <link>http://comments.gmane.org/gmane.linux.kernel.kexec/6075</link>
    <description>&lt;pre&gt;Eric suggested I disable bus master bit in PCI susbsystem instead
and that makes perfect sense. So here is take 2 on this patch. Please
review and let me know if I missed anything.


Subject: [PATCH] Disable Bus Master bit on the device in
 pci_device_shutdown() to ensure PCI devices do not continue
 to DMA data after shutdown. This can cause memory
 corruption in case of a kexec where the current kernel
 shuts down and transfers control to a new kernel while a
 PCI device continues to DMA to memory that does not belong
 to it any more in the new kernel.


Signed-off-by: Khalid Aziz &amp;lt;khalid.aziz-VXdhtT5mjnY&amp;lt; at &amp;gt;public.gmane.org&amp;gt;
---
 drivers/pci/pci-driver.c |    6 ++++++
 1 files changed, 6 insertions(+), 0 deletions(-)

diff --git a/drivers/pci/pci-driver.c b/drivers/pci/pci-driver.c
index 6b54b23..9db5940 100644
--- a/drivers/pci/pci-driver.c
+++ b/drivers/pci/pci-driver.c
&amp;lt; at &amp;gt;&amp;lt; at &amp;gt; -420,6 +420,12 &amp;lt; at &amp;gt;&amp;lt; at &amp;gt; static void pci_device_shutdown(struct device *dev)
 pci_msi_shutdown(pci_dev);
 pci_msix_shutdown(pci_dev);
 
+/*&lt;/pre&gt;</description>
    <dc:creator>Khalid Aziz</dc:creator>
    <dc:date>2012-04-26T18:30:42</dc:date>
  </item>
  <item rdf:about="http://comments.gmane.org/gmane.linux.kernel.kexec/6069">
    <title>[PATCH] Correct section number for shutdown and clarify what -e does in manpage</title>
    <link>http://comments.gmane.org/gmane.linux.kernel.kexec/6069</link>
    <description>&lt;pre&gt;Another patch that I have been carrying in debian kexec-tools package. 
It corrects the section number for shutdown in the man page. This
patch also adds little more descriptive note for the -e option to
clarify that this does not do an orderly shutdown.

Please apply.

Signed-off-by: Khalid Aziz &amp;lt;khalid.aziz-VXdhtT5mjnY&amp;lt; at &amp;gt;public.gmane.org&amp;gt;
---
 kexec/kexec.8 |    6 +++---
 1 files changed, 3 insertions(+), 3 deletions(-)

diff --git a/kexec/kexec.8 b/kexec/kexec.8
index da03c40..aff674c 100644
--- a/kexec/kexec.8
+++ b/kexec/kexec.8
&amp;lt; at &amp;gt;&amp;lt; at &amp;gt; -71,7 +71,7 &amp;lt; at &amp;gt;&amp;lt; at &amp;gt; It's also possible to invoke
 .B kexec
 without an option parameter. In that case, kexec loads the specified
 kernel and then invokes
-.BR shutdown (1).
+.BR shutdown (8).
 If the shutdown scripts of your Linux distribution support
 kexec-based rebooting, they then call
 .B kexec
&amp;lt; at &amp;gt;&amp;lt; at &amp;gt; -105,13 +105,13 &amp;lt; at &amp;gt;&amp;lt; at &amp;gt; command:
 .SH OPTIONS
 .TP
 .B \-e\ (\-\-exec)
-Run the currently loaded kernel.
+Run the currently loaded kernel. Note that it will reboot into the loaded kernel w&lt;/pre&gt;</description>
    <dc:creator>Khalid Aziz</dc:creator>
    <dc:date>2012-04-20T16:39:14</dc:date>
  </item>
  <item rdf:about="http://comments.gmane.org/gmane.linux.kernel.kexec/6067">
    <title>[PATCH] kexec-tools: Fix CRC calculation for padded uImage</title>
    <link>http://comments.gmane.org/gmane.linux.kernel.kexec/6067</link>
    <description>&lt;pre&gt;Instead of calulating the CRC on the whole file just calculate the CRC
on the actual uImage length as given by the uImage header. This fixes
loading padded uImages, for example from a mtd partition.

Signed-off-by: Helmut Schaa &amp;lt;helmut.schaa-gM/Ye1E23mwN+BqQ9rBEUg&amp;lt; at &amp;gt;public.gmane.org&amp;gt;
---
 kexec/kexec-uImage.c |    2 +-
 1 files changed, 1 insertions(+), 1 deletions(-)

diff --git a/kexec/kexec-uImage.c b/kexec/kexec-uImage.c
index 409e516..83e7910 100644
--- a/kexec/kexec-uImage.c
+++ b/kexec/kexec-uImage.c
&amp;lt; at &amp;gt;&amp;lt; at &amp;gt; -72,7 +72,7 &amp;lt; at &amp;gt;&amp;lt; at &amp;gt; int uImage_probe(const unsigned char *buf, off_t len, unsigned int arch)
 return -1;
 }
 #ifdef HAVE_LIBZ
-crc = crc32(0, (void *)buf + sizeof(header), len - sizeof(header));
+crc = crc32(0, (void *)buf + sizeof(header), be32_to_cpu(header.ih_size));
 if (crc != be32_to_cpu(header.ih_dcrc)) {
 printf("The data CRC does not match. Computed: %08x "
 "expected %08x\n", crc,
&lt;/pre&gt;</description>
    <dc:creator>Helmut Schaa</dc:creator>
    <dc:date>2012-04-20T09:58:16</dc:date>
  </item>
  <item rdf:about="http://comments.gmane.org/gmane.linux.kernel.kexec/6039">
    <title>(unknown)</title>
    <link>http://comments.gmane.org/gmane.linux.kernel.kexec/6039</link>
    <description>&lt;pre&gt;

Dear Sir/Madam
----------------------------------------------------------------------------------------

____________________________AVISO LEGAL_______________________________

Este mensaje es privado y confidencial, y esta dirigido exclusivamente
a su(s) destinatario(s).   Si usted ha recibido este mensaje por 
error, debe abstenerse de distribuirlo, copiarlo o usarlo en cualquier
sentido. Asi mismo, le agradecemos comunicarlo al remitente y borrar el 
mensaje y cualquier documento adjunto. 
Cualquier opinión contenida en este mensaje pertenece unicamente al
autor remitente y no representa necesariamente la opinión del
Ministerio del Poder Popular del Despacho de la Presidencia, a menos
que ello se señale en forma expresa.
Eventualmente, los correos electronicos pueden ser interceptados o
alterados, llegar con demora o incompletos. Al respecto, el Ministerio
del Poder Popular del Despacho de la Presidencia no se hace
responsable por los errores, defectos u omisiones que pudieran afectar
al mensaje orig&lt;/pre&gt;</description>
    <dc:creator>Nasy Merly Ysea</dc:creator>
    <dc:date>2012-04-14T04:02:37</dc:date>
  </item>
  <item rdf:about="http://comments.gmane.org/gmane.linux.kernel.kexec/6038">
    <title>[PATCH] Add more debug infos when usable memory range changing</title>
    <link>http://comments.gmane.org/gmane.linux.kernel.kexec/6038</link>
    <description>&lt;pre&gt;In the past, we did neglected some usable memory range
changing infos. With those deubg code added, we can now
catch them.
---
 kexec/arch/ppc64/crashdump-ppc64.c |   12 ++++++++++++
 1 files changed, 12 insertions(+), 0 deletions(-)

diff --git a/kexec/arch/ppc64/crashdump-ppc64.c b/kexec/arch/ppc64/crashdump-ppc64.c
index d52b438..b5ec2c8 100644
--- a/kexec/arch/ppc64/crashdump-ppc64.c
+++ b/kexec/arch/ppc64/crashdump-ppc64.c
&amp;lt; at &amp;gt;&amp;lt; at &amp;gt; -465,12 +465,24 &amp;lt; at &amp;gt;&amp;lt; at &amp;gt; void add_usable_mem_rgns(unsigned long long base, unsigned long long size)
 if (base &amp;lt; ustart &amp;amp;&amp;amp; end &amp;gt; uend) {
 usablemem_rgns.ranges[i].start = base;
 usablemem_rgns.ranges[i].end = end;
+#ifdef DEBUG
+fprintf(stderr, "usable memory rgn %u: new base:%llx new size:%llx\n",
+i, base, size);
+#endif
 return;
 } else if (base &amp;lt; ustart) {
 usablemem_rgns.ranges[i].start = base;
+#ifdef DEBUG
+fprintf(stderr, "usable memory rgn %u: new base:%llx new size:%llx",
+i, base, usablemem_rgns.ranges[i].end - base);
+#endif
 return;&lt;/pre&gt;</description>
    <dc:creator>Han Pingtian</dc:creator>
    <dc:date>2012-04-13T09:32:42</dc:date>
  </item>
  <item rdf:about="http://comments.gmane.org/gmane.linux.kernel.kexec/6014">
    <title>012/03/ZYO12</title>
    <link>http://comments.gmane.org/gmane.linux.kernel.kexec/6014</link>
    <description>&lt;pre&gt;Tu email ha ganado £375.000
&lt;/pre&gt;</description>
    <dc:creator>©2012 Microsoft</dc:creator>
    <dc:date>2012-04-06T20:15:01</dc:date>
  </item>
  <item rdf:about="http://comments.gmane.org/gmane.linux.kernel.kexec/5994">
    <title>(unknown)</title>
    <link>http://comments.gmane.org/gmane.linux.kernel.kexec/5994</link>
    <description>&lt;pre&gt;


RS LOANS is now providing financial services &amp;amp; loans .

Are you a business man or woman ? Do you need a loan or funding for any
reason such as : Personal Loan,Business Expansion, Business
Start-up,Education, Hard Money Loans, Investment Loans, etc.

For more information, inquiries and Application, Please Contact our
representative via this e-mail:  jan737.b-j+4cLNCRU+OzR313v1King&amp;lt; at &amp;gt;public.gmane.org
&lt;/pre&gt;</description>
    <dc:creator>jan737.b-j+4cLNCRU+OzR313v1King&lt; at &gt;public.gmane.org</dc:creator>
    <dc:date>2012-03-29T16:48:25</dc:date>
  </item>
  <item rdf:about="http://comments.gmane.org/gmane.linux.kernel.kexec/5987">
    <title>makedumpfile memory usage grows with system memory size</title>
    <link>http://comments.gmane.org/gmane.linux.kernel.kexec/5987</link>
    <description>&lt;pre&gt;Hello Ken'ichi-san,

I was talking to Vivek about kdump memory requirements and he mentioned
that they vary based on how much system memory is used.

I was interested in knowing why that was and again he mentioned that
makedumpfile needed lots of memory if it was running on a large machine
(for example 1TB of system memory).

Looking through the makedumpfile README and using what Vivek remembered of
makedumpfile, we gathered that as the number of pages grows, the more
makedumpfile has to temporarily store the information in memory.  The
possible reason was to calculate the size of the file before it was copied
to its final destination?

I was curious if that was true and if it was, would it be possible to only
process memory in chunks instead of all at once.

The idea is that a machine with 4Gigs of memory should consume the same
the amount of kdump runtime memory as a 1TB memory system.

Just trying to research ways to keep the memory requirements consistent
across all memory ranges.

Thanks,
Don
&lt;/pre&gt;</description>
    <dc:creator>Don Zickus</dc:creator>
    <dc:date>2012-03-28T21:22:04</dc:date>
  </item>
  <item rdf:about="http://comments.gmane.org/gmane.linux.kernel.kexec/5986">
    <title>Add a descriptive error message for kexec load failure</title>
    <link>http://comments.gmane.org/gmane.linux.kernel.kexec/5986</link>
    <description>&lt;pre&gt;kexec-tools package for debian includes a patch that adds a more 
descriptive error message when someone tries to laod a crash kernel 
and didn't remember to boot up with crashkernel= parameter. This 
patch would be of general interest. This patch was originally written 
by Alastair McKinstry.

Please apply.

Signed-off-by: Khalid Aziz &amp;lt;khalid.aziz-VXdhtT5mjnY&amp;lt; at &amp;gt;public.gmane.org&amp;gt;
---
 kexec/arch/i386/crashdump-x86.c |   10 ++++++----
 kexec/kexec.c                   |   18 ++++++++++++++----
 kexec/kexec.h                   |    6 ++++++
 3 files changed, 26 insertions(+), 8 deletions(-)

diff --git a/kexec/arch/i386/crashdump-x86.c b/kexec/arch/i386/crashdump-x86.c
index 590c883..2af090c 100644
--- a/kexec/arch/i386/crashdump-x86.c
+++ b/kexec/arch/i386/crashdump-x86.c
&amp;lt; at &amp;gt;&amp;lt; at &amp;gt; -776,7 +776,9 &amp;lt; at &amp;gt;&amp;lt; at &amp;gt; int load_crashdump_segments(struct kexec_info *info, char* mod_cmdline,
 memset(memmap_p, 0, sz);
 add_memmap(memmap_p, info-&amp;gt;backup_src_start, info-&amp;gt;backup_src_size);
 sz = crash_reserved_mem.end - crash_reserved_mem.sta&lt;/pre&gt;</description>
    <dc:creator>Khalid Aziz</dc:creator>
    <dc:date>2012-03-28T19:09:02</dc:date>
  </item>
  <item rdf:about="http://comments.gmane.org/gmane.linux.kernel.kexec/5985">
    <title>Fwd: RE: Fwd: Re: makedumpfile security key enhancement using SIAL</title>
    <link>http://comments.gmane.org/gmane.linux.kernel.kexec/5985</link>
    <description>&lt;pre&gt;Thanks Luc. We will let you know if in case we need any info/help.

I am also forwarding this mail to kexec mailing list.

Regards,
Aravinda


-------- Original Message --------
Subject: RE: Fwd: Re: makedumpfile security key enhancement using SIAL
Date: Wed, 28 Mar 2012 07:07:49 -0400
From: Luc Chouinard &amp;lt;LChouinard-NWkMez96xTsAvxtiuMwx3w&amp;lt; at &amp;gt;public.gmane.org&amp;gt;
To: Aravinda Prasad &amp;lt;aravinda-23VcF4HTsmIX0ybBhKVfKdBPR1lH4CV8&amp;lt; at &amp;gt;public.gmane.org&amp;gt;

  Libsial is meant to be a pluggable entity and as such should not 
require other pieces to be there ( crash or gdb).
I want to create project and associated git for the library soon. For 
now you can extract libsial from the crash tar ball and manage any 
modifications using a simple patch mechanism. When the git is available, 
we can merge any fixes or enhancements you created for support of 
makedumpfile.

Makedumpfile and crash would then feed off of specific branches/versions 
of the git repository.
If you have any suggestions or want to help in setting up a public git &lt;/pre&gt;</description>
    <dc:creator>Aravinda Prasad</dc:creator>
    <dc:date>2012-03-28T17:00:59</dc:date>
  </item>
  <item rdf:about="http://comments.gmane.org/gmane.linux.kernel.kexec/5979">
    <title>Hello</title>
    <link>http://comments.gmane.org/gmane.linux.kernel.kexec/5979</link>
    <description>&lt;pre&gt;Hello xxxxx,
 How are you doing over there? My name is Laura, Please let
me know if i got the right address so we can open
communication, here is my email address I am waiting for
your confirmation with care Laura...
&lt;/pre&gt;</description>
    <dc:creator>laurarey111-PkbjNfxxIARBDgjK7y7TUQ&lt; at &gt;public.gmane.org</dc:creator>
    <dc:date>2012-03-27T12:57:03</dc:date>
  </item>
  <textinput rdf:about="http://search.gmane.org/?group=$group=gmane.linux.kernel.kexec">
    <title>Search Engine</title>
    <description>Search the mailing list at Gmane</description>
    <name>query</name>
    <link>http://search.gmane.org/?group=$group=gmane.linux.kernel.kexec</link>
  </textinput>
</rdf:RDF>

