From: Fabian Frederick Date: Fri, 6 Jun 2014 21:36:40 +0000 (-0700) Subject: Documentation/filesystems/seq_file.txt: create_proc_entry deprecated X-Git-Tag: v3.16-rc1~82^2~4^2~105 X-Git-Url: http://review.tizen.org/git/?a=commitdiff_plain;h=0b07cb8271507ca99cca79222a1dc92ba415f06b;p=platform%2Fkernel%2Flinux-exynos.git Documentation/filesystems/seq_file.txt: create_proc_entry deprecated Linked article in seq_file.txt still uses create_proc_entry which was removed in commit 80e928f7ebb9 ("proc: Kill create_proc_entry()"). This patch adds information for kernel 3.10 and above Signed-off-by: Fabian Frederick Cc: Jonathan Corbet Cc: Randy Dunlap Signed-off-by: Andrew Morton Signed-off-by: Linus Torvalds --- diff --git a/Documentation/filesystems/seq_file.txt b/Documentation/filesystems/seq_file.txt index a1e2e0d..1fe0ccb 100644 --- a/Documentation/filesystems/seq_file.txt +++ b/Documentation/filesystems/seq_file.txt @@ -54,6 +54,15 @@ how the mechanism works without getting lost in other details. (Those wanting to see the full source for this module can find it at http://lwn.net/Articles/22359/). +Deprecated create_proc_entry + +Note that the above article uses create_proc_entry which was removed in +kernel 3.10. Current versions require the following update + +- entry = create_proc_entry("sequence", 0, NULL); +- if (entry) +- entry->proc_fops = &ct_file_ops; ++ entry = proc_create("sequence", 0, NULL, &ct_file_ops); The iterator interface