<div dir="ltr">This program is compiling fine on the same compiler.<div><br></div><div>Output:</div><div>in main..</div><div>Hi<br><br></div><div>I think than Mandeep&#39;s code should also compile<br>#define push_root()\{<br>
recursive_mutex_lock(&amp;context-&gt;id_lock);\<br>context-&gt;uid = current_fsuid();\<br>context-&gt;gid = current_fsgid();\                <br>do{\<br>     struct cred *new2 = prepare_creds();\<br>     commit_creds(new2);\<br>
 }while(0)      <br></div><div><br></div><div>Regards,</div><div>Saket Sinha</div></div><div class="gmail_extra"><br><br><div class="gmail_quote">On Mon, Jul 15, 2013 at 5:45 PM, Murali Annamneni <span dir="ltr">&lt;<a href="mailto:a.murali@hcl.com" target="_blank">a.murali@hcl.com</a>&gt;</span> wrote:<br>
<blockquote class="gmail_quote" style="margin:0 0 0 .8ex;border-left:1px #ccc solid;padding-left:1ex">Hi Saket Sinha<br>
<br>
Just try as below example -<br>
<br>
#include &lt;stdio.h&gt;<br>
<br>
#define pushme          \<br>
do                                      \<br>
{                                          \<br>
   printf(&quot;Hi...\n&quot;);        \<br>
} while(0);<br>
<br>
int main()<br>
{<br>
   printf(&quot;in main\n&quot;);<br>
   pushme<br>
  return 0;<br>
}<br>
<br>
<br>
<br>
Thanks &amp; Regards<br>
Murali Annamneni<br>
<br>
<br>
-----Original Message-----<br>
From: <a href="mailto:kernelnewbies-bounces@kernelnewbies.org">kernelnewbies-bounces@kernelnewbies.org</a> [mailto:<a href="mailto:kernelnewbies-bounces@kernelnewbies.org">kernelnewbies-bounces@kernelnewbies.org</a>] On Behalf Of <a href="mailto:kernelnewbies-request@kernelnewbies.org">kernelnewbies-request@kernelnewbies.org</a><br>

Sent: Monday, July 15, 2013 5:03 PM<br>
To: <a href="mailto:kernelnewbies@kernelnewbies.org">kernelnewbies@kernelnewbies.org</a><br>
Subject: Kernelnewbies Digest, Vol 32, Issue 20<br>
<br>
Send Kernelnewbies mailing list submissions to<br>
        <a href="mailto:kernelnewbies@kernelnewbies.org">kernelnewbies@kernelnewbies.org</a><br>
<br>
To subscribe or unsubscribe via the World Wide Web, visit<br>
        <a href="http://lists.kernelnewbies.org/mailman/listinfo/kernelnewbies" target="_blank">http://lists.kernelnewbies.org/mailman/listinfo/kernelnewbies</a><br>
or, via email, send a message with subject or body &#39;help&#39; to<br>
        <a href="mailto:kernelnewbies-request@kernelnewbies.org">kernelnewbies-request@kernelnewbies.org</a><br>
<br>
You can reach the person managing the list at<br>
        <a href="mailto:kernelnewbies-owner@kernelnewbies.org">kernelnewbies-owner@kernelnewbies.org</a><br>
<br>
When replying, please edit your Subject line so it is more specific than &quot;Re: Contents of Kernelnewbies digest...&quot;<br>
<br>
<br>
Today&#39;s Topics:<br>
<br>
   1. Re: Inline Macro issue (Saket Sinha)<br>
   2. Re: Inline Macro issue (Mandeep Sandhu)<br>
   3. Re: Inline Macro issue (anish singh)<br>
   4. Re: Inline Macro issue (Saket Sinha)<br>
   5. Re: Inline Macro issue (Saket Sinha)<br>
<br>
<br>
----------------------------------------------------------------------<br>
<br>
Message: 1<br>
Date: Mon, 15 Jul 2013 15:54:55 +0530<br>
From: Saket Sinha &lt;<a href="mailto:saket.sinha89@gmail.com">saket.sinha89@gmail.com</a>&gt;<br>
Subject: Re: Inline Macro issue<br>
To: Srinivas Ganji &lt;<a href="mailto:srinivasganji.kernel@gmail.com">srinivasganji.kernel@gmail.com</a>&gt;<br>
Cc: <a href="mailto:kernelnewbies@kernelnewbies.org">kernelnewbies@kernelnewbies.org</a><br>
Message-ID:<br>
        &lt;<a href="mailto:CAK25hWO3zbFu8MgXtPSpGq_0uj%2Bqv07hGJjp018heGTDABN7nA@mail.gmail.com">CAK25hWO3zbFu8MgXtPSpGq_0uj+qv07hGJjp018heGTDABN7nA@mail.gmail.com</a>&gt;<br>
Content-Type: text/plain; charset=&quot;iso-8859-1&quot;<br>
<br>
Dear Srinivas,<br>
<br>
If  you are suggesting something like<br>
<br>
 #define push_root               \ *{*<br>
new1 =prepare_creds();      \<br>
new1-&gt;uid = 0;                   \<br>
new1-&gt;gid = 0;                   \<br>
commit_creds(new1)<br>
*}*<br>
*<br>
*<br>
Sorry I am still getting a compiler error.<br>
<br>
Regards,<br>
Saket Sinha<br>
*<br>
*<br>
<br>
<br>
On Mon, Jul 15, 2013 at 2:25 PM, Srinivas Ganji &lt; <a href="mailto:srinivasganji.kernel@gmail.com">srinivasganji.kernel@gmail.com</a>&gt; wrote:<br>
<br>
&gt; A small suggestion, use begin { and end } braces for declaring your macro.<br>
&gt; May be I am wrong, but you can try this. Then, the declaration become<br>
&gt; local to that block.<br>
&gt;<br>
&gt; Regards,<br>
&gt; Srinivas<br>
&gt;<br>
&gt;<br>
&gt; On Mon, Jul 15, 2013 at 1:03 AM, Saket Sinha &lt;<a href="mailto:saket.sinha89@gmail.com">saket.sinha89@gmail.com</a>&gt;wrote:<br>
&gt;<br>
&gt;&gt; &quot;current&quot; in kernel is a global macro, that always point to the<br>
&gt;&gt; &quot;struct task_struct * &quot; of the currently executing task (for details<br>
&gt;&gt; on task_struct, ref Robert Love, pg 24-27).<br>
&gt;&gt;<br>
&gt;&gt;  Now I have a macro called push root which has the following purpose-<br>
&gt;&gt; &quot;to push  root user and group to current context so to set current<br>
&gt;&gt; uid and gid to 0.&quot;<br>
&gt;&gt;<br>
&gt;&gt;  Now in kernel 3.8.3, I would do something like<br>
&gt;&gt;<br>
&gt;&gt; struct cred *new1;<br>
&gt;&gt; new1 =prepare_creds();<br>
&gt;&gt; new1-&gt;uid = 0;<br>
&gt;&gt; new1-&gt;gid = 0;<br>
&gt;&gt; commit_creds(new1);<br>
&gt;&gt;<br>
&gt;&gt; So macro definition of push root, according to what I have proposed<br>
&gt;&gt; above, should be<br>
&gt;&gt; #define push_root               \<br>
&gt;&gt; new1 =prepare_creds();      \<br>
&gt;&gt; new1-&gt;uid = 0;                   \<br>
&gt;&gt; new1-&gt;gid = 0;                   \<br>
&gt;&gt; commit_creds(new1)<br>
&gt;&gt;<br>
&gt;&gt; But I am getting errors like multiple declaration of new1 etc.<br>
&gt;&gt;<br>
&gt;&gt; Even if I declare prepare_creds outside macro definition like<br>
&gt;&gt;<br>
&gt;&gt; new1 =prepare_creds();<br>
&gt;&gt; #define push_root               \<br>
&gt;&gt; new1-&gt;uid = 0;                   \<br>
&gt;&gt; new1-&gt;gid = 0;                   \<br>
&gt;&gt; commit_creds(new1)<br>
&gt;&gt;<br>
&gt;&gt; I think I am  facing the issue that the macros are inlined during<br>
&gt;&gt; compilation, so when the compiler wants to replace them, it raises issues.<br>
&gt;&gt;<br>
&gt;&gt; I could think of two ways to solve this issue-<br>
&gt;&gt;<br>
&gt;&gt; 1. define a new macro like #define prep_root() which defines the var<br>
&gt;&gt; once for all, and that I have to put it at the begin of each function<br>
&gt;&gt; needing push_root. This is not a very good method.<br>
&gt;&gt;<br>
&gt;&gt; 2. I should still try to go with inlined functions but how ?<br>
&gt;&gt;<br>
&gt;&gt; Can someone suggest anything<br>
&gt;&gt;<br>
&gt;&gt; Regards,<br>
&gt;&gt; Saket Sinha<br>
&gt;&gt;<br>
&gt;&gt; _______________________________________________<br>
&gt;&gt; Kernelnewbies mailing list<br>
&gt;&gt; <a href="mailto:Kernelnewbies@kernelnewbies.org">Kernelnewbies@kernelnewbies.org</a><br>
&gt;&gt; <a href="http://lists.kernelnewbies.org/mailman/listinfo/kernelnewbies" target="_blank">http://lists.kernelnewbies.org/mailman/listinfo/kernelnewbies</a><br>
&gt;&gt;<br>
&gt;&gt;<br>
&gt;<br>
-------------- next part --------------<br>
An HTML attachment was scrubbed...<br>
URL: <a href="http://lists.kernelnewbies.org/pipermail/kernelnewbies/attachments/20130715/d360136c/attachment-0001.html" target="_blank">http://lists.kernelnewbies.org/pipermail/kernelnewbies/attachments/20130715/d360136c/attachment-0001.html</a><br>

<br>
------------------------------<br>
<br>
Message: 2<br>
Date: Mon, 15 Jul 2013 16:24:18 +0530<br>
From: Mandeep Sandhu &lt;<a href="mailto:mandeepsandhu.chd@gmail.com">mandeepsandhu.chd@gmail.com</a>&gt;<br>
Subject: Re: Inline Macro issue<br>
To: Saket Sinha &lt;<a href="mailto:saket.sinha89@gmail.com">saket.sinha89@gmail.com</a>&gt;<br>
Cc: Srinivas Ganji &lt;<a href="mailto:srinivasganji.kernel@gmail.com">srinivasganji.kernel@gmail.com</a>&gt;,    kernelnewbies<br>
        &lt;<a href="mailto:kernelnewbies@kernelnewbies.org">kernelnewbies@kernelnewbies.org</a>&gt;<br>
Message-ID:<br>
        &lt;CAC+QLdQbBuNEW7EKZk4vUTNuu2LGSZ6gJhf4bde3gC+=<a href="mailto:D9FP8w@mail.gmail.com">D9FP8w@mail.gmail.com</a>&gt;<br>
Content-Type: text/plain; charset=&quot;iso-8859-1&quot;<br>
<br>
On Mon, Jul 15, 2013 at 3:54 PM, Saket Sinha &lt;<a href="mailto:saket.sinha89@gmail.com">saket.sinha89@gmail.com</a>&gt;wrote:<br>
<br>
&gt; Dear Srinivas,<br>
&gt;<br>
&gt; If  you are suggesting something like<br>
&gt;<br>
&gt;  #define push_root               \ *{*<br>
&gt; new1 =prepare_creds();      \<br>
&gt; new1-&gt;uid = 0;                   \<br>
&gt; new1-&gt;gid = 0;                   \<br>
&gt; commit_creds(new1)<br>
&gt; *}*<br>
&gt; *<br>
&gt; *<br>
&gt; Sorry I am still getting a compiler error.<br>
&gt;<br>
<br>
What errors is the compiler giving?<br>
<br>
Last time you mentioned that it&#39;s saying new1 has multiple def&#39;s.<br>
<br>
Is it possible your macro has a declaration of new1 in it. So if you use the macro in the same scope, you&#39;ll get re-def errors.<br>
<br>
You can also try and look at the intermediate file for your source code, i.e after the pre-processing is done (*.i files).<br>
<br>
I don&#39;t remember the exact gcc option. Try --save-temps and look at the &lt;source file name&gt;.i file.<br>
<br>
HTH,<br>
-mandeep<br>
<br>
<br>
<br>
&gt;<br>
&gt; Regards,<br>
&gt; Saket Sinha<br>
&gt; *<br>
&gt; *<br>
&gt;<br>
&gt;<br>
&gt; On Mon, Jul 15, 2013 at 2:25 PM, Srinivas Ganji &lt;<br>
&gt; <a href="mailto:srinivasganji.kernel@gmail.com">srinivasganji.kernel@gmail.com</a>&gt; wrote:<br>
&gt;<br>
&gt;&gt; A small suggestion, use begin { and end } braces for declaring your<br>
&gt;&gt; macro. May be I am wrong, but you can try this. Then, the declaration<br>
&gt;&gt; become local to that block.<br>
&gt;&gt;<br>
&gt;&gt; Regards,<br>
&gt;&gt; Srinivas<br>
&gt;&gt;<br>
&gt;&gt;<br>
&gt;&gt; On Mon, Jul 15, 2013 at 1:03 AM, Saket Sinha &lt;<a href="mailto:saket.sinha89@gmail.com">saket.sinha89@gmail.com</a>&gt;wrote:<br>
&gt;&gt;<br>
&gt;&gt;&gt; &quot;current&quot; in kernel is a global macro, that always point to the<br>
&gt;&gt;&gt; &quot;struct task_struct * &quot; of the currently executing task (for details<br>
&gt;&gt;&gt; on task_struct, ref Robert Love, pg 24-27).<br>
&gt;&gt;&gt;<br>
&gt;&gt;&gt;  Now I have a macro called push root which has the following<br>
&gt;&gt;&gt; purpose- &quot;to push  root user and group to current context so to set<br>
&gt;&gt;&gt; current uid and gid to 0.&quot;<br>
&gt;&gt;&gt;<br>
&gt;&gt;&gt;  Now in kernel 3.8.3, I would do something like<br>
&gt;&gt;&gt;<br>
&gt;&gt;&gt; struct cred *new1;<br>
&gt;&gt;&gt; new1 =prepare_creds();<br>
&gt;&gt;&gt; new1-&gt;uid = 0;<br>
&gt;&gt;&gt; new1-&gt;gid = 0;<br>
&gt;&gt;&gt; commit_creds(new1);<br>
&gt;&gt;&gt;<br>
&gt;&gt;&gt; So macro definition of push root, according to what I have proposed<br>
&gt;&gt;&gt; above, should be<br>
&gt;&gt;&gt; #define push_root               \<br>
&gt;&gt;&gt; new1 =prepare_creds();      \<br>
&gt;&gt;&gt; new1-&gt;uid = 0;                   \<br>
&gt;&gt;&gt; new1-&gt;gid = 0;                   \<br>
&gt;&gt;&gt; commit_creds(new1)<br>
&gt;&gt;&gt;<br>
&gt;&gt;&gt; But I am getting errors like multiple declaration of new1 etc.<br>
&gt;&gt;&gt;<br>
&gt;&gt;&gt; Even if I declare prepare_creds outside macro definition like<br>
&gt;&gt;&gt;<br>
&gt;&gt;&gt; new1 =prepare_creds();<br>
&gt;&gt;&gt; #define push_root               \<br>
&gt;&gt;&gt; new1-&gt;uid = 0;                   \<br>
&gt;&gt;&gt; new1-&gt;gid = 0;                   \<br>
&gt;&gt;&gt; commit_creds(new1)<br>
&gt;&gt;&gt;<br>
&gt;&gt;&gt; I think I am  facing the issue that the macros are inlined during<br>
&gt;&gt;&gt; compilation, so when the compiler wants to replace them, it raises issues.<br>
&gt;&gt;&gt;<br>
&gt;&gt;&gt; I could think of two ways to solve this issue-<br>
&gt;&gt;&gt;<br>
&gt;&gt;&gt; 1. define a new macro like #define prep_root() which defines the var<br>
&gt;&gt;&gt; once for all, and that I have to put it at the begin of each<br>
&gt;&gt;&gt; function needing push_root. This is not a very good method.<br>
&gt;&gt;&gt;<br>
&gt;&gt;&gt; 2. I should still try to go with inlined functions but how ?<br>
&gt;&gt;&gt;<br>
&gt;&gt;&gt; Can someone suggest anything<br>
&gt;&gt;&gt;<br>
&gt;&gt;&gt; Regards,<br>
&gt;&gt;&gt; Saket Sinha<br>
&gt;&gt;&gt;<br>
&gt;&gt;&gt; _______________________________________________<br>
&gt;&gt;&gt; Kernelnewbies mailing list<br>
&gt;&gt;&gt; <a href="mailto:Kernelnewbies@kernelnewbies.org">Kernelnewbies@kernelnewbies.org</a><br>
&gt;&gt;&gt; <a href="http://lists.kernelnewbies.org/mailman/listinfo/kernelnewbies" target="_blank">http://lists.kernelnewbies.org/mailman/listinfo/kernelnewbies</a><br>
&gt;&gt;&gt;<br>
&gt;&gt;&gt;<br>
&gt;&gt;<br>
&gt;<br>
&gt; _______________________________________________<br>
&gt; Kernelnewbies mailing list<br>
&gt; <a href="mailto:Kernelnewbies@kernelnewbies.org">Kernelnewbies@kernelnewbies.org</a><br>
&gt; <a href="http://lists.kernelnewbies.org/mailman/listinfo/kernelnewbies" target="_blank">http://lists.kernelnewbies.org/mailman/listinfo/kernelnewbies</a><br>
&gt;<br>
&gt;<br>
-------------- next part --------------<br>
An HTML attachment was scrubbed...<br>
URL: <a href="http://lists.kernelnewbies.org/pipermail/kernelnewbies/attachments/20130715/66b262f1/attachment-0001.html" target="_blank">http://lists.kernelnewbies.org/pipermail/kernelnewbies/attachments/20130715/66b262f1/attachment-0001.html</a><br>

<br>
------------------------------<br>
<br>
Message: 3<br>
Date: Mon, 15 Jul 2013 16:54:33 +0530<br>
From: anish singh &lt;<a href="mailto:anish198519851985@gmail.com">anish198519851985@gmail.com</a>&gt;<br>
Subject: Re: Inline Macro issue<br>
To: Saket Sinha &lt;<a href="mailto:saket.sinha89@gmail.com">saket.sinha89@gmail.com</a>&gt;<br>
Cc: Srinivas Ganji &lt;<a href="mailto:srinivasganji.kernel@gmail.com">srinivasganji.kernel@gmail.com</a>&gt;,    Mandeep Sandhu<br>
        &lt;<a href="mailto:mandeepsandhu.chd@gmail.com">mandeepsandhu.chd@gmail.com</a>&gt;,  kernelnewbies<br>
        &lt;<a href="mailto:kernelnewbies@kernelnewbies.org">kernelnewbies@kernelnewbies.org</a>&gt;<br>
Message-ID:<br>
        &lt;<a href="mailto:CAK7N6vp2BCz_B5K2PNvdRJpt-xoqhfNSW9MmavohG1__p9CFiA@mail.gmail.com">CAK7N6vp2BCz_B5K2PNvdRJpt-xoqhfNSW9MmavohG1__p9CFiA@mail.gmail.com</a>&gt;<br>
Content-Type: text/plain; charset=UTF-8<br>
<br>
Do one simple thing.Write a test code<br>
which uses that macro and paste it<br>
here in <a href="http://ideone.com" target="_blank">ideone.com</a><br>
<br>
On Mon, Jul 15, 2013 at 4:50 PM, Saket Sinha &lt;<a href="mailto:saket.sinha89@gmail.com">saket.sinha89@gmail.com</a>&gt; wrote:<br>
&gt; Mandip:<br>
&gt; Error is expected error or declaration at the end of input<br>
&gt; Anish:<br>
&gt; that &#39;\&#39; should not be there first of all and even if I put it same<br>
&gt; error<br>
&gt;<br>
<br>
<br>
<br>
------------------------------<br>
<br>
Message: 4<br>
Date: Mon, 15 Jul 2013 16:50:34 +0530<br>
From: Saket Sinha &lt;<a href="mailto:saket.sinha89@gmail.com">saket.sinha89@gmail.com</a>&gt;<br>
Subject: Re: Inline Macro issue<br>
To: Mandeep Sandhu &lt;<a href="mailto:mandeepsandhu.chd@gmail.com">mandeepsandhu.chd@gmail.com</a>&gt;,<br>
        <a href="mailto:anish198519851985@gmail.com">anish198519851985@gmail.com</a><br>
Cc: Srinivas Ganji &lt;<a href="mailto:srinivasganji.kernel@gmail.com">srinivasganji.kernel@gmail.com</a>&gt;,    kernelnewbies<br>
        &lt;<a href="mailto:kernelnewbies@kernelnewbies.org">kernelnewbies@kernelnewbies.org</a>&gt;<br>
Message-ID:<br>
        &lt;<a href="mailto:CAK25hWMLndvytwZ0YVFMXhrd44Jb479HmiYLZ48Umozz1pz7vQ@mail.gmail.com">CAK25hWMLndvytwZ0YVFMXhrd44Jb479HmiYLZ48Umozz1pz7vQ@mail.gmail.com</a>&gt;<br>
Content-Type: text/plain; charset=&quot;iso-8859-1&quot;<br>
<br>
Mandip:<br>
Error is expected error or declaration at the end of input<br>
Anish:<br>
that &#39;\&#39; should not be there first of all and even if I put it same error<br>
-------------- next part --------------<br>
An HTML attachment was scrubbed...<br>
URL: <a href="http://lists.kernelnewbies.org/pipermail/kernelnewbies/attachments/20130715/41316b0d/attachment-0001.html" target="_blank">http://lists.kernelnewbies.org/pipermail/kernelnewbies/attachments/20130715/41316b0d/attachment-0001.html</a><br>

<br>
------------------------------<br>
<br>
Message: 5<br>
Date: Mon, 15 Jul 2013 17:02:49 +0530<br>
From: Saket Sinha &lt;<a href="mailto:saket.sinha89@gmail.com">saket.sinha89@gmail.com</a>&gt;<br>
Subject: Re: Inline Macro issue<br>
To: anish singh &lt;<a href="mailto:anish198519851985@gmail.com">anish198519851985@gmail.com</a>&gt;<br>
Cc: Srinivas Ganji &lt;<a href="mailto:srinivasganji.kernel@gmail.com">srinivasganji.kernel@gmail.com</a>&gt;,    Mandeep Sandhu<br>
        &lt;<a href="mailto:mandeepsandhu.chd@gmail.com">mandeepsandhu.chd@gmail.com</a>&gt;,  kernelnewbies<br>
        &lt;<a href="mailto:kernelnewbies@kernelnewbies.org">kernelnewbies@kernelnewbies.org</a>&gt;<br>
Message-ID:<br>
        &lt;<a href="mailto:CAK25hWMvjdABa-KS1Ru1bBWaETd7JHKOGXdqhyY8ROLksSKi3w@mail.gmail.com">CAK25hWMvjdABa-KS1Ru1bBWaETd7JHKOGXdqhyY8ROLksSKi3w@mail.gmail.com</a>&gt;<br>
Content-Type: text/plain; charset=&quot;iso-8859-1&quot;<br>
<br>
Dear Anish,<br>
<br>
Actually its kernel module, so then I will have to write all the dummy equivalent of the structures and functions involved.<br>
<br>
I can do this....give my system on remote.<br>
<br>
Regards,<br>
Saket Sinha<br>
<br>
<br>
<br>
On Mon, Jul 15, 2013 at 4:54 PM, anish singh &lt;<a href="mailto:anish198519851985@gmail.com">anish198519851985@gmail.com</a>&gt;wrote:<br>
<br>
&gt; Do one simple thing.Write a test code<br>
&gt; which uses that macro and paste it<br>
&gt; here in <a href="http://ideone.com" target="_blank">ideone.com</a><br>
&gt;<br>
&gt; On Mon, Jul 15, 2013 at 4:50 PM, Saket Sinha &lt;<a href="mailto:saket.sinha89@gmail.com">saket.sinha89@gmail.com</a>&gt;<br>
&gt; wrote:<br>
&gt; &gt; Mandip:<br>
&gt; &gt; Error is expected error or declaration at the end of input<br>
&gt; &gt; Anish:<br>
&gt; &gt; that &#39;\&#39; should not be there first of all and even if I put it same<br>
&gt; &gt; error<br>
&gt; &gt;<br>
&gt;<br>
-------------- next part --------------<br>
An HTML attachment was scrubbed...<br>
URL: <a href="http://lists.kernelnewbies.org/pipermail/kernelnewbies/attachments/20130715/1281ba32/attachment.html" target="_blank">http://lists.kernelnewbies.org/pipermail/kernelnewbies/attachments/20130715/1281ba32/attachment.html</a><br>

<br>
------------------------------<br>
<br>
_______________________________________________<br>
Kernelnewbies mailing list<br>
<a href="mailto:Kernelnewbies@kernelnewbies.org">Kernelnewbies@kernelnewbies.org</a><br>
<a href="http://lists.kernelnewbies.org/mailman/listinfo/kernelnewbies" target="_blank">http://lists.kernelnewbies.org/mailman/listinfo/kernelnewbies</a><br>
<br>
<br>
End of Kernelnewbies Digest, Vol 32, Issue 20<br>
*********************************************<br>
<br>
<br>
::DISCLAIMER::<br>
----------------------------------------------------------------------------------------------------------------------------------------------------<br>
<br>
The contents of this e-mail and any attachment(s) are confidential and intended for the named recipient(s) only.<br>
E-mail transmission is not guaranteed to be secure or error-free as information could be intercepted, corrupted,<br>
lost, destroyed, arrive late or incomplete, or may contain viruses in transmission. The e mail and its contents<br>
(with or without referred errors) shall therefore not attach any liability on the originator or HCL or its affiliates.<br>
Views or opinions, if any, presented in this email are solely those of the author and may not necessarily reflect the<br>
views or opinions of HCL or its affiliates. Any form of reproduction, dissemination, copying, disclosure, modification,<br>
distribution and / or publication of this message without the prior written consent of authorized representative of<br>
HCL is strictly prohibited. If you have received this email in error please delete it and notify the sender immediately.<br>
Before opening any email and/or attachments, please check them for viruses and other defects.<br>
<br>
----------------------------------------------------------------------------------------------------------------------------------------------------<br>
<br>
</blockquote></div><br></div>