X-Git-Url: https://err.no/cgi-bin/gitweb.cgi?a=blobdiff_plain;f=kernel%2Fprofile.c;h=ae7ead82cbc9f7bd25a15ec373c14a1f2ea79bf5;hb=7ea56616ba6b3d67a4892728182e38ae162ea3e7;hp=3b7a1b055122a698c0f97a05eae8cbe6a229bb6f;hpb=0cf975e16927fd70f34cee20d3856246c13bb4c8;p=linux-2.6 diff --git a/kernel/profile.c b/kernel/profile.c index 3b7a1b0551..ae7ead82cb 100644 --- a/kernel/profile.c +++ b/kernel/profile.c @@ -23,7 +23,6 @@ #include #include #include -#include #include #include @@ -588,10 +587,10 @@ static int __init create_proc_profile(void) return 0; if (create_hash_tables()) return -1; - entry = create_proc_entry("profile", S_IWUSR | S_IRUGO, NULL); + entry = proc_create("profile", S_IWUSR | S_IRUGO, + NULL, &proc_profile_operations); if (!entry) return 0; - entry->proc_fops = &proc_profile_operations; entry->size = (1+prof_len) * sizeof(atomic_t); hotcpu_notifier(profile_cpu_callback, 0); return 0;