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-prev] [day] [month] [year] [list]
Date:   Wed, 7 Sep 2016 17:25:24 -0600
From:   Shuah Khan <shuahkh@....samsung.com>
To:     Steven Rostedt <rostedt@...dmis.org>
Cc:     mingo@...hat.com, gregkh@...uxfoundation.org,
        linux-kernel@...r.kernel.org, Shuah Khan <shuahkh@....samsung.com>
Subject: Re: [PATCH 1/3] kobject: add kobject trace points

On 09/06/2016 12:05 PM, Steven Rostedt wrote:
> On Tue,  6 Sep 2016 11:49:23 -0600
> Shuah Khan <shuahkh@....samsung.com> wrote:
> 
>> +#if !defined(_TRACE_KOBJECT_H) || defined(TRACE_HEADER_MULTI_READ)
>> +#define _TRACE_KOBJECT_H
>> +
>> +#include <linux/tracepoint.h>
>> +#include <linux/kobject.h>
>> +
>> +/* kobject_init_class */
>> +DECLARE_EVENT_CLASS(kobject_init_class,
>> +
>> +	TP_PROTO(struct kobject *kobj),
>> +
>> +	TP_ARGS(kobj),
>> +
>> +	TP_STRUCT__entry(
>> +		__field(void *, kobj)
>> +		__field(int, state_initialized)
>> +	),
>> +
>> +	TP_fast_assign(
>> +		__entry->kobj = kobj;
>> +		__entry->state_initialized = kobj->state_initialized;
>> +	),
>> +
>> +	TP_printk("KOBJECT: %p state=%d",
>> +		  __entry->kobj,
>> +		  __entry->state_initialized
>> +	));
>> +
>> +/**
>> + * kobject_init	- called from kobject_init() when kobject is initialized
>> + * @kobj:	- pointer to struct kobject
>> + */
>> +DEFINE_EVENT(kobject_init_class, kobject_init,
>> +
>> +	TP_PROTO(struct kobject *kobj),
>> +	TP_ARGS(kobj));
>> +
>> +/* kobject_class */
>> +DECLARE_EVENT_CLASS(kobject_class,
>> +
>> +	TP_PROTO(struct kobject *kobj),
>> +	TP_ARGS(kobj),
>> +
>> +	TP_STRUCT__entry(
>> +		__field(void *, kobj)
>> +		__string(name, kobject_name(kobj))
>> +		__field(int, state_initialized)
>> +		__field(void *, parent)
>> +		__string(pname, kobj->parent ? kobject_name(kobj->parent) : "")
>> +		__field(int, count)
>> +	),
> 
> state_initialized looks to be a single bit. As you have two dynamic
> strings, it may be best to move this around and possibly save 3 bytes.
> Also, dynamic strings take 4 bytes, and pointers are 8 bytes on 64 bit
> machines, we want to move those too.
> 
> 	__field(void *, kobj)
> 	__field(void *, parent)
> 	__field(int, count)
> 	__string(name, ...)
> 	__string(pname, ...)
> 	__field(char, state_initialized)
> 
> This will compact the event a bit better.
> 
> -- Steve
> 

Nice. I should start thinking about efficient data structure packing
again. Used to do that a lot in the past when I worked on small embedded
systems.

I made the change and patch is ready, but holding off on sending the v2
of this patch until we conclude our tracepoint discussion at the kernel
summit and make some decisions.

thanks,
-- Shuah




Download attachment "signature.asc" of type "application/pgp-signature" (820 bytes)

Powered by blists - more mailing lists

Powered by Openwall GNU/*/Linux Powered by OpenVZ