커 널 데이터 구조의 링크
데이터 구조 정의:
#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;
};
이 내용에 흥미가 있습니까?
현재 기사가 여러분의 문제를 해결하지 못하는 경우 AI 엔진은 머신러닝 분석(스마트 모델이 방금 만들어져 부정확한 경우가 있을 수 있음)을 통해 가장 유사한 기사를 추천합니다:
Exception in thread main java.lang. NoClassDefFoundError 오류 해결 방법즉,/home/hadoop/jarfile) 시스템은 Hello World 패키지 아래의class라는 클래스 파일을 실행하고 있다고 오인하여 시스템의 CLASSPATH 아래 (일반적으로 현재 디렉터리를 포함) Hell...
텍스트를 자유롭게 공유하거나 복사할 수 있습니다.하지만 이 문서의 URL은 참조 URL로 남겨 두십시오.
CC BY-SA 2.5, CC BY-SA 3.0 및 CC BY-SA 4.0에 따라 라이센스가 부여됩니다.