From: jidong xiao on
Hi,

Does anybody know what happend to fs/proc/proc_misc.c? The file is
missing in 2.6.29. Seems like there was an cleanup, but i can't find
the new location of the methods. Any help appreciated.

Regards
Jason
--
To unsubscribe from this list: send the line "unsubscribe linux-kernel" in
the body of a message to majordomo(a)vger.kernel.org
More majordomo info at http://vger.kernel.org/majordomo-info.html
Please read the FAQ at http://www.tux.org/lkml/
From: Li Zefan on
jidong xiao wrote:
> Hi,
>
> Does anybody know what happend to fs/proc/proc_misc.c? The file is
> missing in 2.6.29. Seems like there was an cleanup, but i can't find
> the new location of the methods. Any help appreciated.
>

$ git log -- fs/proc/proc_misc.c
commit 59c7572e82d69483a66eaa67b46548baeb69ecf4
Author: Alexey Dobriyan <adobriyan(a)gmail.com>
Date: Mon Oct 6 14:49:39 2008 +0400

proc: remove fs/proc/proc_misc.c

Now that everything was moved to their more or less expected places,
apply rm(1).

Signed-off-by: Alexey Dobriyan <adobriyan(a)gmail.com>

--
To unsubscribe from this list: send the line "unsubscribe linux-kernel" in
the body of a message to majordomo(a)vger.kernel.org
More majordomo info at http://vger.kernel.org/majordomo-info.html
Please read the FAQ at http://www.tux.org/lkml/
From: jidong xiao on
On Tue, Jan 19, 2010 at 2:56 PM, Li Zefan <lizf(a)cn.fujitsu.com> wrote:
> jidong xiao wrote:
>> Hi,
>>
>> Does anybody know what happend to fs/proc/proc_misc.c? The file is
>> missing in 2.6.29. Seems like there was an cleanup, but i can't find
>> the new location of the methods. Any help appreciated.
>>
>
> $ git log -- fs/proc/proc_misc.c
> commit 59c7572e82d69483a66eaa67b46548baeb69ecf4
> Author: Alexey Dobriyan <adobriyan(a)gmail.com>
> Date: � Mon Oct 6 14:49:39 2008 +0400
>
> � �proc: remove fs/proc/proc_misc.c
>
> � �Now that everything was moved to their more or less expected places,
> � �apply rm(1).
>
> � �Signed-off-by: Alexey Dobriyan <adobriyan(a)gmail.com>
>
>

Oh, I see. It looks like proc_misc.c has been splited into several
files, such as cmdline.c,version.c,uptime.c,meminfo.c.Thank you.

Regards
Jason
--
To unsubscribe from this list: send the line "unsubscribe linux-kernel" in
the body of a message to majordomo(a)vger.kernel.org
More majordomo info at http://vger.kernel.org/majordomo-info.html
Please read the FAQ at http://www.tux.org/lkml/
From: Américo Wang on
On Tue, Jan 19, 2010 at 03:34:31PM +0800, jidong xiao wrote:
>On Tue, Jan 19, 2010 at 2:56 PM, Li Zefan <lizf(a)cn.fujitsu.com> wrote:
>> jidong xiao wrote:
>>> Hi,
>>>
>>> Does anybody know what happend to fs/proc/proc_misc.c? The file is
>>> missing in 2.6.29. Seems like there was an cleanup, but i can't find
>>> the new location of the methods. Any help appreciated.
>>>
>>
>> $ git log -- fs/proc/proc_misc.c
>> commit 59c7572e82d69483a66eaa67b46548baeb69ecf4
>> Author: Alexey Dobriyan <adobriyan(a)gmail.com>
>> Date:   Mon Oct 6 14:49:39 2008 +0400
>>
>>    proc: remove fs/proc/proc_misc.c
>>
>>    Now that everything was moved to their more or less expected places,
>>    apply rm(1).
>>
>>    Signed-off-by: Alexey Dobriyan <adobriyan(a)gmail.com>
>>
>>
>
>Oh, I see. It looks like proc_misc.c has been splited into several
>files, such as cmdline.c,version.c,uptime.c,meminfo.c.Thank you.

Or you can use:

git log --diff-filter=D fs/proc

--
Live like a child, think like the god.

--
To unsubscribe from this list: send the line "unsubscribe linux-kernel" in
the body of a message to majordomo(a)vger.kernel.org
More majordomo info at http://vger.kernel.org/majordomo-info.html
Please read the FAQ at http://www.tux.org/lkml/