<br><br><div class="gmail_quote">On Sun, Jun 21, 2009 at 10:47 PM, Neil Horman <span dir="ltr">&lt;<a href="mailto:nhorman@redhat.com">nhorman@redhat.com</a>&gt;</span> wrote:<br><blockquote class="gmail_quote" style="border-left: 1px solid rgb(204, 204, 204); margin: 0pt 0pt 0pt 0.8ex; padding-left: 1ex;">
<div><div></div><div class="h5">On Fri, Jun 19, 2009 at 12:00:44PM +0530, Indraneel Mukherjee wrote:<br>
&gt; Hi,<br>
&gt;<br>
&gt; The file kernel/kexec.c (~ line 1001 in linux-2.6.30) has this code<br>
&gt;<br>
&gt; ------snip----<br>
&gt;<br>
&gt;  if (flags &amp; KEXEC_PRESERVE_CONTEXT)<br>
&gt;             image-&gt;preserve_context = 1;<br>
&gt;<br>
&gt; ------snip----<br>
&gt;<br>
&gt; Will this ever be true? The flag KEXEC_PRESERVE_CONTEXT is not even defined<br>
&gt; in kexec-tools-2.0.0.<br>
&gt;<br>
&gt; Consequently, all the code inside the condition  if(image-&gt;preserve_context)<br>
&gt;   is also useless?<br>
&gt;<br>
&gt; Am i missing something here?<br>
&gt;<br>
</div></div>Yes, the code you&#39;re looking at in the first definition is part of the kernel,<br>
while you&#39;re looking for the definition of KEXEC_PRESERVE_CONTEXT in the<br>
kexec-tools userspace code.  You need to look for the definition of<br>
KEXEC_PRESERVE_CONTEXT in the kernel code (you&#39;ll find it in<br>
include/linux/kexec.h).</blockquote><div><br>I&#39;ve seen that bit.  I was only trying to understand that code &amp; figure out when does it ever gets executed. My guess is that kexec-tools is the only user of all the  code in kernel/kexec.c. So, i started wondering if kexec-tools never sets the flag KEXEC_PRESERVE_CONTEXT, then why was that code even written?<br>
Ans that means we&#39;ve got some untested code in the kernel :) ?<br><br>Regards,<br>Indro<br><br><br><br></div><blockquote class="gmail_quote" style="border-left: 1px solid rgb(204, 204, 204); margin: 0pt 0pt 0pt 0.8ex; padding-left: 1ex;">
  kexec-tools might use it one day, but not using it<br>
doesn&#39;t mean we should remove it from the kernel. <br></blockquote><blockquote class="gmail_quote" style="border-left: 1px solid rgb(204, 204, 204); margin: 0pt 0pt 0pt 0.8ex; padding-left: 1ex;"><br>
<br>
Neil<br>
<br>
&gt; Regards,<br>
&gt; Indro<br>
<br>
&gt; _______________________________________________<br>
&gt; kexec mailing list<br>
&gt; <a href="mailto:kexec@lists.infradead.org">kexec@lists.infradead.org</a><br>
&gt; <a href="http://lists.infradead.org/mailman/listinfo/kexec" target="_blank">http://lists.infradead.org/mailman/listinfo/kexec</a><br>
<br>
</blockquote></div><br>