It usually doesn't. You may think of one of the followings:
1. When processing a higher priority interrupt, more interrupts with lower priority are not allowed.
2. During the context-switch (user-mode<->kernel-mode, entering/exiting interrupt/exception handler), interrupts may be disabled.
3. When in a critical operation (eg. manipulating shared data), interrupts may have to be disabled (for a very short time-interval).
no, it wont operatesin kernel mode, it operates on usermode.
Code running in kernel mode has unlimited access to hardware and CPU. Code in user mode can't address memory that kernel mode does not allow it to.
Machine Mode
The distinction between kernel mode and user mode provides a rudimentary form of protection in the following manner: Certain instructions could be executed only when the CPU is in kernel mode. Similarly, hardware devices could be accessed only when the program is executing in kernel mode. Control over when interrupts could be enabled or disabled is also possible only when the CPU is in kernel mode. Consequently, the CPU has very limited capability when executing in user mode, thereby enforcing protection of critical resources.
Kernel mode is often referred to as "supervisor mode" or "privileged mode." These terms highlight the level of access and control the operating system has over hardware and system resources when executing code in this mode. Additionally, "system mode" is another term used to describe the same operational context where the kernel can execute critical tasks and manage resources securely.
no commentment
The Executive Services, the Hardware Abstraction Layer (HAL), the microkernal, and kernel mode drivers
User mode and Kernel mode
Kernel ModeIn Kernel mode, the executing code has complete and unrestricted access to the underlying hardware. It can execute any CPU instruction and reference any memory address. Kernel mode is generally reserved for the lowest-level, most trusted functions of the operating system. Crashes in kernel mode are catastrophic; they will halt the entire PC.User ModeIn User mode, the executing code has no ability to directly access hardware or reference memory. Code running in user mode must delegate to system APIs to access hardware or memory. Due to the protection afforded by this sort of isolation, crashes in user mode are always recoverable. Most of the code running on your computer will execute in user mode.
hardware mode
user mode and kernel mode
kernel mode