커 널 데이터 구조의 링크

커 널 의 많은 데이터 구 조 는 링크 를 통 해 유지 되 고 리 눅 스 커 널 은 링크 의 유 니 버 설 처리 작업 을 제공 하여 커 널 의 다른 데이터 구 조 를 사용 하도록 한다.링크 구 조 를 목표 데이터 구조 에 삽입 하면 통용 되 는 링크 를 이용 하여 목표 데이터 구 조 를 조작 할 수 있다.
데이터 구조 정의:
#include <linux/list.h>
/*              */
struct list_head
{
	struct list_head *next, *prev;
};
/*                    */
struct mydatastructure
{
	struct list_head mylist;   /* Embed */
	/*  …   */           /* Actual Fields */
};

커 널 에 있 는 링크 의 일반적인 동작:
INIT_LIST_HEAD () 체인 헤더 초기 화
list_add () 요 소 를 링크 헤드 에 추가 한 후
list_add_tail () 요 소 를 링크 끝 에 추가 합 니 다.
list_del () 링크 에서 요 소 를 삭제 합 니 다.
list_replace () 는 링크 의 요 소 를 다른 것 으로 바 꿉 니 다.
list_entry () 링크 의 모든 요 소 를 옮 겨 다 닙 니 다.
list_for_each_entry () 체인 테이블 교체 인터페이스 간소화
list_for_each_entry_safe ()//교체 과정 에서 결점 을 삭제 해 야 한다 면 이 걸 로
list_empty () 링크 가 비어 있 는 지 확인 합 니 다.
list_splice () 두 개의 링크 를 합 칩 니 다.
하나의 예:
/*    ,               */
static struct _mydrv_wq {
  struct list_head mydrv_worklist; /* Work List   */
  spinlock_t lock;                 /* Protect the list */
  wait_queue_head_t todo;          /* Synchronize submitter
                                      and worker */
} mydrv_wq;

/*         */
struct _mydrv_work {
  struct list_head mydrv_workitem; /* The work chain */
  void (*worker_func)(void *);     /* Work to perform */
  void *worker_data;               /* Argument to worker_func */
  /* ... */                        /* Other fields */
} mydrv_work;
static int __init
mydrv_init(void)
{
  /* Initialize the lock to protect against
     concurrent list access */
  spin_lock_init(&mydrv_wq.lock);

  /* Initialize the wait queue for communication
     between the submitter and the worker */
  init_waitqueue_head(&mydrv_wq.todo);

  /* Initialize the list head */
  INIT_LIST_HEAD(&mydrv_wq.mydrv_worklist);

  /* Start the worker thread. See Listing 3.4 */
  kernel_thread(mydrv_worker, NULL,
                  CLONE_FS | CLONE_FILES | CLONE_SIGHAND | SIGCHLD);
  return 0;
}

해시 링크
struct hlist_head
{
	struct hlist_node *first;
};

struct hlist_node
{
	struct hlist_node *next, **pprev;
};

좋은 웹페이지 즐겨찾기