Displaying 6 results from an estimated 6 matches for "kobject_nam".
Did you mean:
kobject_name
2011 Apr 10
1
AsteriskNow updated to Centos 5.6 and DAHDI doesn't work
...directory `/usr/src/kernels/2.6.18-238.5.1.el5-x86_64'
make[1]: *** [modules] Error 2
make[1]: Leaving directory
`/root/Desktop/dahdi-linux-complete-2.4.1.1+2.4.1/linux'
make: *** [all] Error 2
The code in question is:
static inline const char *dev_name(const struct device *dev)
{
return kobject_name(&dev->kobj);
}
Anybody else seen this problem? Any resolutions?
Thanks
2013 Oct 09
1
[PATCH] kobject: show debug info on delayed kobject release
...t kref *kref)
{
struct kobject *kobj = container_of(kref, struct kobject, kref);
#ifdef CONFIG_DEBUG_KOBJECT_RELEASE
- pr_debug("kobject: ''%s'' (%p): %s, parent %p (delayed)\n",
+ pr_info("kobject: ''%s'' (%p): %s, parent %p (delayed)\n",
kobject_name(kobj), kobj, __func__, kobj->parent);
INIT_DELAYED_WORK(&kobj->release, kobject_delayed_cleanup);
schedule_delayed_work(&kobj->release, HZ);
--
1.7.10.4
2011 Apr 11
3
changing port 5060 to 5061
....el5-x86_64'
> make[1]: *** [modules] Error 2
> make[1]: Leaving directory
> `/root/Desktop/dahdi-linux-complete-2.4.1.1+2.4.1/linux'
> make: *** [all] Error 2
>
> The code in question is:
> static inline const char *dev_name(const struct device *dev)
> {
> return kobject_name(&dev->kobj);
> }
>
> Anybody else seen this problem? Any resolutions?
>
> Thanks
>
>
>
>
> ------------------------------
>
> Message: 13
> Date: Sun, 10 Apr 2011 09:35:09 -0400
> From: Silver Thorne <zoraxus at gmail.com>
> Subject: Re: [a...
2016 Aug 17
20
[PATCH 00/15] Fix issue with KOBJ_ADD uevent versus disk attributes
This is an attempt to fix the issue that some disks' sysfs attributes are not
ready at the time its KOBJ_ADD event is sent.
The symptom is during device hotplug, udev may fail to find certain attributes,
such as serial or wwn, of the disk. As a result the /dev/disk/by-id entries are
not created.
The cause is device_add_disk emits the uevent before returning, and the callers
have to create
2016 Aug 17
20
[PATCH 00/15] Fix issue with KOBJ_ADD uevent versus disk attributes
This is an attempt to fix the issue that some disks' sysfs attributes are not
ready at the time its KOBJ_ADD event is sent.
The symptom is during device hotplug, udev may fail to find certain attributes,
such as serial or wwn, of the disk. As a result the /dev/disk/by-id entries are
not created.
The cause is device_add_disk emits the uevent before returning, and the callers
have to create
2013 Oct 06
40
[xen] double fault: 0000 [#1] PREEMPT SMP DEBUG_PAGEALLOC
Greetings,
I got the below dmesg and the first bad commit is
commit cf39c8e5352b4fb9efedfe7e9acb566a85ed847c
Merge: 3398d25 23b7eaf
Author: Linus Torvalds <torvalds@linux-foundation.org>
Date: Wed Sep 4 17:45:39 2013 -0700
Merge tag ''stable/for-linus-3.12-rc0-tag'' of git://git.kernel.org/pub/scm/linux/kernel/git/xen/tip
Pull Xen updates from Konrad