Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
データの配列を Linux カーネル モジュールに渡したいと思います。
カーネル内:
int a[5]; int count; module_param_array(a, int, &count, 0);
しかし、コマンドラインから値を渡す方法がわかりません。それが単なる変数である場合、私は使用します:
insmod k1.ko a=10
配列を渡すことができます
insmod k1.ko a=10,20,30,40
詳細と例については、「 Linux カーネル モジュール プログラミング」を参照してください。