Loading practice questions
The Linux kernel identifies the driver with its:
Correct Answer: B — Major number
Explanation:
The Linux kernel uses the major number to identify and dispatch requests to the correct device driver. When a process accesses a device file, the kernel looks up the major number in its driver table (cdev_map for character devices) to find the registered driver and invoke the appropriate file operations.