Home
last modified time | relevance | path

Searched refs:kobject_rename (Results 1 – 8 of 8) sorted by relevance

/linux-6.12.1/Documentation/translations/zh_CN/core-api/
Dkobject.rst126 如果你必须改变kobject的名字,请调用kobject_rename()::
128 int kobject_rename(struct kobject *kobj, const char *new_name);
130 kobject_rename()函数不会执行任何锁定操作,也不会对name进行可靠性检查,所以调用
/linux-6.12.1/fs/nfs/
Dsysfs.c336 ret = kobject_rename(&server->kobj, s->s_id); in nfs_sysfs_move_server_to_sb()
349 ret = kobject_rename(&server->kobj, s); in nfs_sysfs_move_sb_to_server()
/linux-6.12.1/include/linux/
Dkobject.h105 int __must_check kobject_rename(struct kobject *, const char *new_name);
/linux-6.12.1/drivers/pci/
Dslot.c157 result = kobject_rename(&slot->kobj, slot_name); in rename_slot()
/linux-6.12.1/lib/
Dkobject.c474 int kobject_rename(struct kobject *kobj, const char *new_name) in kobject_rename() function
531 EXPORT_SYMBOL_GPL(kobject_rename);
/linux-6.12.1/Documentation/core-api/
Dkobject.rst139 the name of the kobject, call kobject_rename()::
141 int kobject_rename(struct kobject *kobj, const char *new_name);
143 kobject_rename() does not perform any locking or have a solid notion of
/linux-6.12.1/fs/btrfs/
Dsysfs.c2100 if (kobject_rename(&fs_devices->fsid_kobj, fsid_buf)) in btrfs_sysfs_update_sprout_fsid()
2111 if (kobject_rename(&device->devid_kobj, tmp)) in btrfs_sysfs_update_devid()
/linux-6.12.1/drivers/base/
Dcore.c4577 error = kobject_rename(kobj, new_name); in device_rename()