kmalloc의 GFP_USER와 GFP_KERNEL

sjjung의 이미지

리눅스 커널 소스에서 파일 시스템 mount하는 과정에서 호출되는 부분인데, fs/super.c (http://lxr.linux.no/source/fs/super.c?v=2.4.28#L267)에 보면, filesystem의 superblock을 위한 memory 할당을 위해 GFP_USER option으로 kmalloc을 호출하고 있습니다! :shock:

여기서 GFP_KERNEL을 쓰지 않고, GFP_USER를 쓴 이유가 무엇일까요? 결국은, kmalloc에서의 GFP_USER와 GFP_KERNEL의 차이점을 제가 정확히 모르고 있다는 것이겠죠. :(

아래와 같이 설명되어 있지만, 그래도 여전히 모호합니다. :?

Quote:
GFP_KERNEL
Normal allocation of kernel memory. May sleep.

GFP_USER
Used to allocate memory on behalf of the user. It may sleep, and is a low-priority request.


Any comments may help~
sjjung의 이미지

sjjung wrote:
리눅스 커널 소스에서 파일 시스템 mount하는 과정에서 호출되는 부분인데, fs/super.c (http://lxr.linux.no/source/fs/super.c?v=2.4.28#L267)에 보면, filesystem의 superblock을 위한 memory 할당을 위해 GFP_USER option으로 kmalloc을 호출하고 있습니다! :shock:

여기서 GFP_KERNEL을 쓰지 않고, GFP_USER를 쓴 이유가 무엇일까요? 결국은, kmalloc에서의 GFP_USER와 GFP_KERNEL의 차이점을 제가 정확히 모르고 있다는 것이겠죠. :(

아래와 같이 설명되어 있지만, 그래도 여전히 모호합니다. :?

Quote:
GFP_KERNEL
Normal allocation of kernel memory. May sleep.

GFP_USER
Used to allocate memory on behalf of the user. It may sleep, and is a low-priority request.


Any comments may help~

뉴스그룹에서 찾아봤더니, 다음과 같이 언급되어 있네요.

Quote:
> What i want to know if i write a Device driver that
> has kmalloc statements require allocate some string
> variable then which flag i should use?

If you are not running in interrupt context, either GFP_KERNEL or
GFP_USER should be ok. IIRC the difference between them is that GFP_USER
has lower priority and cannot access highmem.

인터럽트 문맥에서 사용하는거 아니라면, 둘중에 뭘써도 괜찮고, priority가 높지 않다면 GFP_USER를 써라 뭐 이정도인거 같네요.

그래도 고수님의 답변 기대~

Seung-Jin Jung

sjjung의 이미지

뉴스 그룹의 이 글도 참고할 만한 듯.

결국, GFP_KERNELGFP_USER보다 priority가 높다는 것은,

GFP_KERNEL option으로 호출하면, kmalloc이 당장은 메모리가 모잘라도 메모리가 생길 때까지 계속 try하는 반면에...

GFP_USER option으로 호출하면, 메모리 부족하면 대충 fail로 끝나버리는 차이를 말하는 듯합니다.

mount시에 super_block을 할당받지 못하면 그냥 mount fail로 끝나도 상관없으니, GFP_KERNEL option으로 kmalloc을 호출할 필요없이 그냥 GFP_USER를 사용해도 충분하다 정도로 이해하려 합니다. ㅡ.ㅡ;;

Seung-Jin Jung

댓글 달기

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
이것은 자동으로 스팸을 올리는 것을 막기 위해서 제공됩니다.