You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
You now know the basics of creating, compiling, installing and removing modules.
@@ -1088,7 +1088,7 @@ \subsection{Unregistering A Device}
1088
1088
Normally, when you do not want to allow something, you return an error code (a negative number) from the function which is supposed to do it.
1089
1089
With \cpp|cleanup_module| that's impossible because it is a void function.
1090
1090
However, there is a counter which keeps track of how many processes are using your module.
1091
-
You can see what its value is by looking at the 3rd field with the command \sh|cat /proc/modules| or \sh|sudo lsmod|.
1091
+
You can see what its value is by looking at the 3rd field with the command \sh|cat /proc/modules| or \sh|lsmod|.
1092
1092
If this number isn't zero, \sh|rmmod| will fail.
1093
1093
Note that you do not have to check the counter within \cpp|cleanup_module| because the check will be performed for you by the system call \cpp|sys_delete_module|, defined in \src{include/linux/syscalls.h}.
1094
1094
You should not use this counter directly, but there are functions defined in \src{include/linux/module.h} which let you increase, decrease and display this counter:
@@ -1340,20 +1340,20 @@ \section{sysfs: Interacting with your module}
1340
1340
Check that it exists:
1341
1341
1342
1342
\begin{codebash}
1343
-
sudo lsmod | grep hello_sysfs
1343
+
lsmod | grep hello_sysfs
1344
1344
\end{codebash}
1345
1345
1346
1346
What is the current value of \cpp|myvariable| ?
1347
1347
1348
1348
\begin{codebash}
1349
-
sudo cat /sys/kernel/mymodule/myvariable
1349
+
cat /sys/kernel/mymodule/myvariable
1350
1350
\end{codebash}
1351
1351
1352
1352
Set the value of \cpp|myvariable| and check that it changed.
1353
1353
1354
1354
\begin{codebash}
1355
1355
echo "32" | sudo tee /sys/kernel/mymodule/myvariable
0 commit comments