lists.openwall.net   lists  /  announce  owl-users  owl-dev  john-users  john-dev  passwdqc-users  yescrypt  popa3d-users  /  oss-security  kernel-hardening  musl  sabotage  tlsify  passwords  /  crypt-dev  xvendor  /  Bugtraq  Full-Disclosure  linux-kernel  linux-netdev  linux-ext4  linux-hardening  linux-cve-announce  PHC 
Open Source and information security mailing list archives
 
Hash Suite: Windows password security audit tool. GUI, reports in PDF.
[<prev] [next>] [thread-next>] [day] [month] [year] [list]
Date:	Fri, 30 Nov 2012 11:37:25 +0800
From:	Roger Yang <netyrj@...il.com>
To:	linux-kernel@...r.kernel.org
Subject: Function show_uevent@...vers/base/core.c

drivers/base/core.c

static ssize_t show_uevent(struct device *dev, struct device_attribute *attr,
                            char *buf)
 {
         ....

        kset = top_kobj->kset;
         if (!kset->uevent_ops || !kset->uevent_ops->uevent)
                 goto out;

        /* respect filter */
 -       if (kset->uevent_ops && kset->uevent_ops->filter)
 +       if (kset->uevent_ops->filter)
                 if (!kset->uevent_ops->filter(kset, &dev->kobj))
                         goto out;

        env = kzalloc(sizeof(struct kobj_uevent_env), GFP_KERNEL);
         if (!env)
                 return -ENOMEM;

        ...
 }
--
To unsubscribe from this list: send the line "unsubscribe linux-kernel" in
the body of a message to majordomo@...r.kernel.org
More majordomo info at  http://vger.kernel.org/majordomo-info.html
Please read the FAQ at  http://www.tux.org/lkml/

Powered by blists - more mailing lists

Powered by Openwall GNU/*/Linux Powered by OpenVZ