From: Christophe Lucas Subject: [KJ] [patch 2.6.13-rc1 01/23][RESEND] net/sctp/objcnt: Audit return code of create_proc_* Audit return of create_proc_* functions. Signed-off-by: Christophe Lucas --- objcnt.c | 6 +++++- 1 files changed, 5 insertions(+), 1 deletion(-) Index: quilt/net/sctp/objcnt.c =================================================================== --- quilt.orig/net/sctp/objcnt.c +++ quilt/net/sctp/objcnt.c @@ -127,8 +127,12 @@ done: /* Initialize the objcount in the proc filesystem. */ void sctp_dbg_objcnt_init(void) { - create_proc_read_entry("sctp_dbg_objcnt", 0, proc_net_sctp, + struct proc_dir_entry *ent; + ent = create_proc_read_entry("sctp_dbg_objcnt", 0, proc_net_sctp, sctp_dbg_objcnt_read, NULL); + if (!ent) + printk(KERN_WARNING + "sctp_dbg_objcnt: Unable to create /proc entry.\n"); } /* Cleanup the objcount entry in the proc filesystem. */