Dentry Cache clear 하기

ylemyun의 이미지

version 2.4.26 으로 embedded linux 을 하나 돌리는데
화일을 서로 다른 이름으로 끊임없이 create , delete 을 반복하면서
dentry cache 사이즈가 memory full 되지 직전 까지 갑니다.
물론 memory 가 0kbyte ( 주로 500 ~ 600 K 사이 ) 되기 전에
clear 됩니다만 다른 app 를 실행하기 위해서는 항상 5Mbyte 정도의 여유 용량이 있어야 하는데 이것을 확보하기 위해서는 중간
중간에 5Mbyte 이하로 떨어지기 전에 clear 되어야 합니다.
따라서 커널 어느 부분에서인가 메모리 채크해서 bdflush 를 하는듯 한데 fs/buffer.c 에서
/*
* Ok, this is getblk, and it isn't very clear, again to hinder
* race-conditions. Most of the code is seldom used, (ie repeating),
* so it should be much more efficient than it looks.
*
* The algorithm is changed: hopefully better, and an elusive bug removed.
*
* 14.02.92: changed it to sync dirty buffers a bit: better performance
* when the filesystem starts to get full of dirty blocks (I hope).
*/
struct buffer_head * getblk(kdev_t dev, int block, int size)
{
for (;;) {
struct buffer_head * bh;

bh = get_hash_table(dev, block, size);
if (bh) {
touch_buffer(bh);
return bh;
}

if (!grow_buffers(dev, block, size))
free_more_memory();
}
}

위와 같이 하는듯 한데 위 부분은 아무래도 더이상 할당을 못할 경우 free more memory 을 하는 듯합니다.
제가 하고픈것은 일정 메모리 이하 일경우 free_more_momory 펑션을 실행 시키고 싶습니다.
어떤 방법이 있을까여?
filesystem 은 ram file system 을 모토롤라 MPC850 에서 사용중입니다.
커널에 미숙하므로 상세한 답변 부탁드립니다.

pastime의 이미지

파일을 생성/삭제를 반복하는데 dentry cache 가 폭주한다니 이상하군요..
(이상한게 아닌가요? :shock: )

어쨌든 원하는 기능을 넣으려면 다음과 같이 수정해 보시기 바랍니다.
실제로는 커널 내부적으로 사용하려고 예약해 둔 메모리 영역을 고려해야 하기 때문에
좀 더 많은 여유 용량이 필요할 듯 합니다.
(물론 실험해 보지는 않았습니다.. 8) )

struct buffer_head * getblk(kdev_t dev, int block, int size)
{
        for ( ; ; ) {
                struct buffer_head * bh;

                bh = get_hash_table(dev, block, size);
                if (bh) {
                        touch_buffer(bh);
                        return bh;
                }

                /* RAM 의 여유 용량이 5M 이하이면 free_more_memory() 실행 */
                if (nr_free_pages() * PAGE_SIZE < 5 * 1024 * 1024)
                        free_more_memory();

                grow_buffers(dev, block, size);
        }
} 

댓글 달기

Filtered HTML

  • 텍스트에 BBCode 태그를 사용할 수 있습니다. URL은 자동으로 링크 됩니다.
  • 사용할 수 있는 HTML 태그: <p><div><span><br><a><em><strong><del><ins><b><i><u><s><pre><code><cite><blockquote><ul><ol><li><dl><dt><dd><table><tr><td><th><thead><tbody><h1><h2><h3><h4><h5><h6><img><embed><object><param><hr>
  • 다음 태그를 이용하여 소스 코드 구문 강조를 할 수 있습니다: <code>, <blockcode>, <apache>, <applescript>, <autoconf>, <awk>, <bash>, <c>, <cpp>, <css>, <diff>, <drupal5>, <drupal6>, <gdb>, <html>, <html5>, <java>, <javascript>, <ldif>, <lua>, <make>, <mysql>, <perl>, <perl6>, <php>, <pgsql>, <proftpd>, <python>, <reg>, <spec>, <ruby>. 지원하는 태그 형식: <foo>, [foo].
  • web 주소와/이메일 주소를 클릭할 수 있는 링크로 자동으로 바꿉니다.

BBCode

  • 텍스트에 BBCode 태그를 사용할 수 있습니다. URL은 자동으로 링크 됩니다.
  • 다음 태그를 이용하여 소스 코드 구문 강조를 할 수 있습니다: <code>, <blockcode>, <apache>, <applescript>, <autoconf>, <awk>, <bash>, <c>, <cpp>, <css>, <diff>, <drupal5>, <drupal6>, <gdb>, <html>, <html5>, <java>, <javascript>, <ldif>, <lua>, <make>, <mysql>, <perl>, <perl6>, <php>, <pgsql>, <proftpd>, <python>, <reg>, <spec>, <ruby>. 지원하는 태그 형식: <foo>, [foo].
  • 사용할 수 있는 HTML 태그: <p><div><span><br><a><em><strong><del><ins><b><i><u><s><pre><code><cite><blockquote><ul><ol><li><dl><dt><dd><table><tr><td><th><thead><tbody><h1><h2><h3><h4><h5><h6><img><embed><object><param>
  • web 주소와/이메일 주소를 클릭할 수 있는 링크로 자동으로 바꿉니다.

Textile

  • 다음 태그를 이용하여 소스 코드 구문 강조를 할 수 있습니다: <code>, <blockcode>, <apache>, <applescript>, <autoconf>, <awk>, <bash>, <c>, <cpp>, <css>, <diff>, <drupal5>, <drupal6>, <gdb>, <html>, <html5>, <java>, <javascript>, <ldif>, <lua>, <make>, <mysql>, <perl>, <perl6>, <php>, <pgsql>, <proftpd>, <python>, <reg>, <spec>, <ruby>. 지원하는 태그 형식: <foo>, [foo].
  • You can use Textile markup to format text.
  • 사용할 수 있는 HTML 태그: <p><div><span><br><a><em><strong><del><ins><b><i><u><s><pre><code><cite><blockquote><ul><ol><li><dl><dt><dd><table><tr><td><th><thead><tbody><h1><h2><h3><h4><h5><h6><img><embed><object><param><hr>

Markdown

  • 다음 태그를 이용하여 소스 코드 구문 강조를 할 수 있습니다: <code>, <blockcode>, <apache>, <applescript>, <autoconf>, <awk>, <bash>, <c>, <cpp>, <css>, <diff>, <drupal5>, <drupal6>, <gdb>, <html>, <html5>, <java>, <javascript>, <ldif>, <lua>, <make>, <mysql>, <perl>, <perl6>, <php>, <pgsql>, <proftpd>, <python>, <reg>, <spec>, <ruby>. 지원하는 태그 형식: <foo>, [foo].
  • Quick Tips:
    • Two or more spaces at a line's end = Line break
    • Double returns = Paragraph
    • *Single asterisks* or _single underscores_ = Emphasis
    • **Double** or __double__ = Strong
    • This is [a link](http://the.link.example.com "The optional title text")
    For complete details on the Markdown syntax, see the Markdown documentation and Markdown Extra documentation for tables, footnotes, and more.
  • web 주소와/이메일 주소를 클릭할 수 있는 링크로 자동으로 바꿉니다.
  • 사용할 수 있는 HTML 태그: <p><div><span><br><a><em><strong><del><ins><b><i><u><s><pre><code><cite><blockquote><ul><ol><li><dl><dt><dd><table><tr><td><th><thead><tbody><h1><h2><h3><h4><h5><h6><img><embed><object><param><hr>

Plain text

  • HTML 태그를 사용할 수 없습니다.
  • web 주소와/이메일 주소를 클릭할 수 있는 링크로 자동으로 바꿉니다.
  • 줄과 단락은 자동으로 분리됩니다.
댓글 첨부 파일
이 댓글에 이미지나 파일을 업로드 합니다.
파일 크기는 8 MB보다 작아야 합니다.
허용할 파일 형식: txt pdf doc xls gif jpg jpeg mp3 png rar zip.
CAPTCHA
이것은 자동으로 스팸을 올리는 것을 막기 위해서 제공됩니다.