Home
last modified time | relevance | path

Searched refs:EBUSY (Results 1 – 17 of 17) sorted by relevance

/DragonOS/kernel/src/driver/base/char/
H A Dmod.rs84 return Err(SystemError::EBUSY); in find_dynamic_major()
164 return Err(SystemError::EBUSY); // 存在重合的次设备号 in __register_chardev_region()
195 return Err(SystemError::EBUSY); in __unregister_chardev_region()
/DragonOS/kernel/src/exception/
H A Dresend.rs40 return Err(SystemError::EBUSY); in irq_check_and_resend()
H A Dmanage.rs222 SystemError::EBUSY, in inner_setup_irq()
/DragonOS/kernel/src/common/
H A Derrno.h28 #define EBUSY 16 /* 设备或资源忙 Device or resource busy. */ macro
/DragonOS/kernel/src/driver/rtc/
H A Drtc_cmos.rs83 return Err(SystemError::EBUSY); in probe()
90 return Err(SystemError::EBUSY); in probe()
/DragonOS/kernel/crates/system_error/src/
H A Dlib.rs44 EBUSY = 16, enumerator
/DragonOS/kernel/src/filesystem/vfs/
H A Dmount.rs332 return Err(SystemError::EBUSY); in unlink()
344 return Err(SystemError::EBUSY); in rmdir()
414 return Err(SystemError::EBUSY); in mount()
441 return Err(SystemError::EBUSY); in mount_from()
H A Dcore.rs268 return Err(SystemError::EBUSY); in do_mount()
300 return Err(SystemError::EBUSY); in do_mount_mkdir()
/DragonOS/kernel/src/libs/
H A Dmutex.rs97 return Err(SystemError::EBUSY); in try_lock()
H A Dnotifier.rs53 return Err(SystemError::EBUSY); in register()
/DragonOS/kernel/src/driver/base/block/
H A Dblock_device.rs540 return Err(SystemError::EBUSY); in find_dynamic_major()
620 return Err(SystemError::EBUSY); // 存在重合的次设备号 in __register_blockdev_region()
651 return Err(SystemError::EBUSY); in __unregister_blockdev_region()
/DragonOS/kernel/src/driver/base/device/
H A Ddriver.rs211 return Err(SystemError::EBUSY); in register()
H A Ddd.rs365 return Err(SystemError::EBUSY); in do_probe_device()
/DragonOS/kernel/src/driver/open_firmware/
H A Dfdt.rs374 return Err(SystemError::EBUSY); in early_init_dt_reserve_memory()
/DragonOS/kernel/src/driver/tty/
H A Dtty_driver.rs290 return Err(SystemError::EBUSY); in open_tty()
/DragonOS/kernel/src/mm/
H A Dsyscall.rs607 err = Err(SystemError::EBUSY); in msync()
/DragonOS/kernel/src/driver/disk/ahci/
H A Dahcidisk.rs383 let devname = scsi_manager().alloc_id().ok_or(SystemError::EBUSY)?; in new()