[왼료]container_of 랑 list_head를 이용해서 간단한 테스트 도중에...

yunC의 이미지

#include <stdio.h>
 
struct list_head {
    struct list_head * prev, * next;
};
 
struct foo {
    struct list_head pos;
    int data;
};
 
int main()
{
    struct foo f1, f2, * pf;
    struct list_head * ppos;
 
    f1.data = 1;
    f2.data = 2;
 
    f1.pos.prev = f1.pos.next = &f2.pos;
    f2.pos.prev = f2.pos.next = &f1.pos;
 
    ppos = &f1.pos;
    ppos = ppos->next;
 
    pf = container_of(ppos, struct foo, pos); //여기서 에러 발생...
 
    printf(" %d %d \n", f1.data, pf->data);
 
    return 0;
}

container_of 매크로랑 list_head 구조체를 이용해서

위와 같은 프로그램 하나 짜봤는데요 에러를 못 찾겠네요 ;ㅁ;

에러는

[root@localhost ~]# gcc cf.c 
cf.c: In function 'main':
cf.c:27: error: expected expression before 'struct'
cf.c:27: warning: assignment makes pointer from integer without a cast
[root@localhost ~]#

이와 같이 ... 왜 이런거쥬...;; 알려주세요 Q&A

kknd8080의 이미지

pf = container_of(ppos, struct foo, pos); //여기서 에러 발생...
struct foo 구조체명은 변수명이 아닙니다.
pos 둘다 이상한 변수입니다 pos 는 foo의 맴버 변수 입니다.

dorado2의 이미지

container_of의 정의가 없어서 그렇습니다. container_of 매크로에서 사용되는
offsetof 정의 역시 마찬가지로 필요할 거에요.

include/linux/kernel.h 에 정의된 매크로 정의를 copy하시고, stddef.h를 include해주시면 될 것 같네요.

bushi의 이미지

그리고, <linux/list.h> 의 통상적인 사용법은

struct foo {
    struct list_head pos;
    int data;
};
 
int main()
{
    struct foo f1, f2, * pf;
    LIST_HEAD(head);
 
    f1.data = 1;
    f2.data = 2;
 
    list_add(&f1.pos, &head);
    list_add(&f2.pos, &head);
 
    list_for_each_entry(pf, &head, pos) {
         printf("%d\n", pf->data);
    }
 
    return 0;
}

다음 두 코드는 결과가 같습니다.
   /* case #1 */
   list_add(&f1.pos, &head);
   list_add_tail(&f2.pos, &head);
 
   /* case #2 */
   list_add(&f1.pos, &head);
   list_add(&f2.pos, &f1.pos);

OTL

yunC의 이미지

참고로 ;;

모듈로 만들어서 커널에 올리니 되네요 ;;

커널에서만 사용가능 한 듯 싶습니다 ;;

=ㅁ=;;

파일은 제가 해 본 소스입니다. 심심하신 분들을 위해서 첨부 했습니다.

쿨럭...

실행방법은
#make
#insmod list_dev.ko
#rmmod list_dev
#dmesg

NET: Registered protocol family 10
lo: Disabled Privacy Extensions
IPv6 over IPv4 tunneling driver
eth0: no IPv6 routers present
 3
 2
 1
free...
free...
free...
[root@localhost project]#
댓글 첨부 파일: 
첨부파일 크기
Binary Data list_dev.tar.gz965바이트
bushi의 이미지

필요한 매크로 몇개만 복사해주면 유저모드에서도 잘 돌아가야 마땅하고 실제로도 잘 돌아갑니다.

OTL

댓글 달기

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