Groups | Search | Server Info | Keyboard shortcuts | Login | Register [http] [https] [nntp] [nntps]


Groups > linux.kernel > #1575503 > unrolled thread

[PATCH] arm-proc-root-undeclared-error

Started bySreedhar <sreedhar.donelli@tcs.com>
First post2017-02-07 10:30 +0100
Last post2017-02-07 10:30 +0100
Articles 3 — 1 participant

Back to article view | Back to linux.kernel


Contents

  [PATCH] arm-proc-root-undeclared-error Sreedhar <sreedhar.donelli@tcs.com> - 2017-02-07 10:30 +0100
    [PATCH] arm-proc-root-undeclared-error Sreedhar <sreedhar.donelli@tcs.com> - 2017-02-07 10:30 +0100
    [PATCH] Fixed it by putting the proc cleanup code inside a #ifdef CONFIG_PROC_FS block. Sreedhar <sreedhar.donelli@tcs.com> - 2017-02-07 10:30 +0100

#1575503 — [PATCH] arm-proc-root-undeclared-error

FromSreedhar <sreedhar.donelli@tcs.com>
Date2017-02-07 10:30 +0100
Subject[PATCH] arm-proc-root-undeclared-error
Message-ID<t8ag2-Zm-7@gated-at.bofh.it>
From: sreedhar donelli <sreedhar.donelli@tcs.com>

*** BLURB HERE ***

sreedhar donelli (1):
  arm-proc-root-undeclared-error

 net/atm/clip.c | 3 ++-
 1 file changed, 2 insertions(+), 1 deletion(-)

-- 
1.9.1

=====-----=====-----=====
Notice: The information contained in this e-mail
message and/or attachments to it may contain 
confidential or privileged information. If you are 
not the intended recipient, any dissemination, use, 
review, distribution, printing or copying of the 
information contained in this e-mail message 
and/or attachments to it are strictly prohibited. If 
you have received this communication in error, 
please notify us by reply e-mail or telephone and 
immediately and permanently delete the message 
and any attachments. Thank you

[toc] | [next] | [standalone]


#1575507

FromSreedhar <sreedhar.donelli@tcs.com>
Date2017-02-07 10:30 +0100
Message-ID<t8ag2-Zm-25@gated-at.bofh.it>
In reply to#1575503
From: sreedhar donelli <sreedhar.donelli@tcs.com>

---
 net/atm/clip.c | 3 ++-
 1 file changed, 2 insertions(+), 1 deletion(-)

diff --git a/net/atm/clip.c b/net/atm/clip.c
index 53b4ac0..7a7cb4a 100644
--- a/net/atm/clip.c
+++ b/net/atm/clip.c
@@ -930,8 +930,9 @@ static void atm_clip_exit_noproc(void)
 
 static void __exit atm_clip_exit(void)
 {
+#ifdef CONFIG_PROC_FS
 	remove_proc_entry("arp", atm_proc_root);
-
+#endif
 	atm_clip_exit_noproc();
 }
 
-- 
1.9.1

=====-----=====-----=====
Notice: The information contained in this e-mail
message and/or attachments to it may contain 
confidential or privileged information. If you are 
not the intended recipient, any dissemination, use, 
review, distribution, printing or copying of the 
information contained in this e-mail message 
and/or attachments to it are strictly prohibited. If 
you have received this communication in error, 
please notify us by reply e-mail or telephone and 
immediately and permanently delete the message 
and any attachments. Thank you

[toc] | [prev] | [next] | [standalone]


#1575509 — [PATCH] Fixed it by putting the proc cleanup code inside a #ifdef CONFIG_PROC_FS block.

FromSreedhar <sreedhar.donelli@tcs.com>
Date2017-02-07 10:30 +0100
Subject[PATCH] Fixed it by putting the proc cleanup code inside a #ifdef CONFIG_PROC_FS block.
Message-ID<t8ag3-Zm-35@gated-at.bofh.it>
In reply to#1575503
From: sreedhar donelli <sreedhar.donelli@tcs.com>

*** BLURB HERE ***

sreedhar donelli (1):
  arm-proc-root-undeclared-error

 net/atm/clip.c | 3 ++-
 1 file changed, 2 insertions(+), 1 deletion(-)

-- 
1.9.1

=====-----=====-----=====
Notice: The information contained in this e-mail
message and/or attachments to it may contain 
confidential or privileged information. If you are 
not the intended recipient, any dissemination, use, 
review, distribution, printing or copying of the 
information contained in this e-mail message 
and/or attachments to it are strictly prohibited. If 
you have received this communication in error, 
please notify us by reply e-mail or telephone and 
immediately and permanently delete the message 
and any attachments. Thank you

[toc] | [prev] | [standalone]


Back to top | Article view | linux.kernel


csiph-web