Messages in this thread |  | | Date | Thu, 07 Dec 2000 15:34:28 -0500 | From | Michael Rothwell <> | Subject | 2.2.18 vs 2.4.0 proc_fs.c |
| |
Why is 2.2.18 proc_fs.c different than both 2.2.17 and 2.4.0? Cox, would you accept a patch that makes 2.2.18 define create_proc_info_entry and related functions the same way that 2.4.0 does?
2.2.17: does not define this
2.2.18: #define create_proc_info_entry(n, m, b, g) \ { \ struct proc_dir_entry *r = create_proc_entry(n, m, b); \ if (r) r->get_info = g; \ }
2.4.0: extern inline struct proc_dir_entry *create_proc_info_entry(const char *name, mode_t mode, struct proc_dir_entry *base, get_info_t *get_info) { struct proc_dir_entry *res=create_proc_entry(name,mode,base); if (res) res->get_info=get_info; return res; } - To unsubscribe from this list: send the line "unsubscribe linux-kernel" in the body of a message to majordomo@vger.kernel.org Please read the FAQ at http://www.tux.org/lkml/
|  |