|
@@ -79,17 +79,17 @@ void iint_free(struct kref *kref)
|
|
iint->version = 0;
|
|
iint->version = 0;
|
|
iint->flags = 0UL;
|
|
iint->flags = 0UL;
|
|
if (iint->readcount != 0) {
|
|
if (iint->readcount != 0) {
|
|
- printk(KERN_INFO "%s: readcount: %ld\n", __FUNCTION__,
|
|
|
|
|
|
+ printk(KERN_INFO "%s: readcount: %ld\n", __func__,
|
|
iint->readcount);
|
|
iint->readcount);
|
|
iint->readcount = 0;
|
|
iint->readcount = 0;
|
|
}
|
|
}
|
|
if (iint->writecount != 0) {
|
|
if (iint->writecount != 0) {
|
|
- printk(KERN_INFO "%s: writecount: %ld\n", __FUNCTION__,
|
|
|
|
|
|
+ printk(KERN_INFO "%s: writecount: %ld\n", __func__,
|
|
iint->writecount);
|
|
iint->writecount);
|
|
iint->writecount = 0;
|
|
iint->writecount = 0;
|
|
}
|
|
}
|
|
if (iint->opencount != 0) {
|
|
if (iint->opencount != 0) {
|
|
- printk(KERN_INFO "%s: opencount: %ld\n", __FUNCTION__,
|
|
|
|
|
|
+ printk(KERN_INFO "%s: opencount: %ld\n", __func__,
|
|
iint->opencount);
|
|
iint->opencount);
|
|
iint->opencount = 0;
|
|
iint->opencount = 0;
|
|
}
|
|
}
|