* @uid: The user ID.
* @gid: The group ID.
* @fs_info: The filesystem info.
- * @atomic: If TRUE, an atomic allocation is required.
*
* Returns %TRUE if an event was queued and devfsd woken up, else %FALSE.
*/
static void devfsd_notify (struct devfs_entry *de,unsigned short type)
{
devfsd_notify_de(de, type, de->mode, current->euid,
- current->egid, &fs_info, 0);
+ current->egid, &fs_info);
}
dev_t devnum = 0, dev = MKDEV(major, minor);
struct devfs_entry *de;
- if (flags)
- printk(KERN_ERR "%s called with flags != 0, please fix!\n");
+ /* we don't accept any flags anymore. prototype will change soon. */
+ WARN_ON(flags);
if (name == NULL)
{