All of lore.kernel.org
 help / color / mirror / Atom feed
* Linux 4.3 kallsyms_lookup_name not returning per_cpu symbol values
@ 2015-11-18 18:45 Jeffrey Merkey
  2015-11-19  5:32 ` Jeffrey Merkey
  2015-11-24  5:15 ` Jeffrey Merkey
  0 siblings, 2 replies; 4+ messages in thread
From: Jeffrey Merkey @ 2015-11-18 18:45 UTC (permalink / raw)
  To: linux-kernel

kallsyms_lookup_name is not returning per_cpu symbols when called.
The symbols show up when you run something with the kallsyms_iter
struct but not through the regular interface.  I have looked through
the code and I am not able to determine with certainty if its designed
this way or just busted.  Any help with this would be appreciated.

The following code does display the per_cpu symbols, they just don't
seem to show up when called from kallsyms_lookup_name.


struct kallsym_iter mdb_iter;
int mdb_kallsyms(char *str, int (*print)(char *s, ...))
{
    register loff_t pos = 0;
    register struct kallsym_iter *iter = &mdb_iter;

    if (!print)
       return 0;

    // set to beginning of the kallsyms list
    reset_iter(iter, 0);
    while (1)
    {
       // search the kallsyms list
       if (!update_iter(iter, pos++))
          break;

       if (!iter->name[0])
	  continue;

       // if an exclusion search was specified, skip non-matching entries
       if (str && *str && !strstr(iter->name, str))
          continue;

       if (iter->module_name[0])
       {
          if (print("%0*lx %c %s [%s]\n", (int)(2*sizeof(void*)),
	      iter->value, iter->type, iter->name,
	      iter->module_name))
             return 1;
       }
       else
       {
          if (print("%0*lx %c %s\n", (int)(2*sizeof(void*)),
	      iter->value, iter->type, iter->name))
             return 1;
       }
    }
    return 0;
}
EXPORT_SYMBOL_GPL(mdb_kallsyms);

^ permalink raw reply	[flat|nested] 4+ messages in thread

* Re: Linux 4.3 kallsyms_lookup_name not returning per_cpu symbol values
  2015-11-18 18:45 Linux 4.3 kallsyms_lookup_name not returning per_cpu symbol values Jeffrey Merkey
@ 2015-11-19  5:32 ` Jeffrey Merkey
  2015-11-19  5:41   ` Jeffrey Merkey
  2015-11-24  5:15 ` Jeffrey Merkey
  1 sibling, 1 reply; 4+ messages in thread
From: Jeffrey Merkey @ 2015-11-19  5:32 UTC (permalink / raw)
  To: linux-kernel

I tracked this down and it turns out to be a page mapping problem with
one of the sound drivers on the system trashing memory.   It's a bug,
but a bug in a vendor supplied driver.

Jeff

On 11/18/15, Jeffrey Merkey <jeffmerkey@gmail.com> wrote:
> kallsyms_lookup_name is not returning per_cpu symbols when called.
> The symbols show up when you run something with the kallsyms_iter
> struct but not through the regular interface.  I have looked through
> the code and I am not able to determine with certainty if its designed
> this way or just busted.  Any help with this would be appreciated.
>
> The following code does display the per_cpu symbols, they just don't
> seem to show up when called from kallsyms_lookup_name.
>
>
> struct kallsym_iter mdb_iter;
> int mdb_kallsyms(char *str, int (*print)(char *s, ...))
> {
>     register loff_t pos = 0;
>     register struct kallsym_iter *iter = &mdb_iter;
>
>     if (!print)
>        return 0;
>
>     // set to beginning of the kallsyms list
>     reset_iter(iter, 0);
>     while (1)
>     {
>        // search the kallsyms list
>        if (!update_iter(iter, pos++))
>           break;
>
>        if (!iter->name[0])
> 	  continue;
>
>        // if an exclusion search was specified, skip non-matching entries
>        if (str && *str && !strstr(iter->name, str))
>           continue;
>
>        if (iter->module_name[0])
>        {
>           if (print("%0*lx %c %s [%s]\n", (int)(2*sizeof(void*)),
> 	      iter->value, iter->type, iter->name,
> 	      iter->module_name))
>              return 1;
>        }
>        else
>        {
>           if (print("%0*lx %c %s\n", (int)(2*sizeof(void*)),
> 	      iter->value, iter->type, iter->name))
>              return 1;
>        }
>     }
>     return 0;
> }
> EXPORT_SYMBOL_GPL(mdb_kallsyms);
>

^ permalink raw reply	[flat|nested] 4+ messages in thread

* Re: Linux 4.3 kallsyms_lookup_name not returning per_cpu symbol values
  2015-11-19  5:32 ` Jeffrey Merkey
@ 2015-11-19  5:41   ` Jeffrey Merkey
  0 siblings, 0 replies; 4+ messages in thread
From: Jeffrey Merkey @ 2015-11-19  5:41 UTC (permalink / raw)
  To: linux-kernel

Take that back, I just reproduced it again.  Seems to affect random
symbols not just per cpu.  I'll research some more.



On 11/18/15, Jeffrey Merkey <jeffmerkey@gmail.com> wrote:
> I tracked this down and it turns out to be a page mapping problem with
> one of the sound drivers on the system trashing memory.   It's a bug,
> but a bug in a vendor supplied driver.
>
> Jeff
>
> On 11/18/15, Jeffrey Merkey <jeffmerkey@gmail.com> wrote:
>> kallsyms_lookup_name is not returning per_cpu symbols when called.
>> The symbols show up when you run something with the kallsyms_iter
>> struct but not through the regular interface.  I have looked through
>> the code and I am not able to determine with certainty if its designed
>> this way or just busted.  Any help with this would be appreciated.
>>
>> The following code does display the per_cpu symbols, they just don't
>> seem to show up when called from kallsyms_lookup_name.
>>
>>
>> struct kallsym_iter mdb_iter;
>> int mdb_kallsyms(char *str, int (*print)(char *s, ...))
>> {
>>     register loff_t pos = 0;
>>     register struct kallsym_iter *iter = &mdb_iter;
>>
>>     if (!print)
>>        return 0;
>>
>>     // set to beginning of the kallsyms list
>>     reset_iter(iter, 0);
>>     while (1)
>>     {
>>        // search the kallsyms list
>>        if (!update_iter(iter, pos++))
>>           break;
>>
>>        if (!iter->name[0])
>> 	  continue;
>>
>>        // if an exclusion search was specified, skip non-matching entries
>>        if (str && *str && !strstr(iter->name, str))
>>           continue;
>>
>>        if (iter->module_name[0])
>>        {
>>           if (print("%0*lx %c %s [%s]\n", (int)(2*sizeof(void*)),
>> 	      iter->value, iter->type, iter->name,
>> 	      iter->module_name))
>>              return 1;
>>        }
>>        else
>>        {
>>           if (print("%0*lx %c %s\n", (int)(2*sizeof(void*)),
>> 	      iter->value, iter->type, iter->name))
>>              return 1;
>>        }
>>     }
>>     return 0;
>> }
>> EXPORT_SYMBOL_GPL(mdb_kallsyms);
>>
>

^ permalink raw reply	[flat|nested] 4+ messages in thread

* Re: Linux 4.3 kallsyms_lookup_name not returning per_cpu symbol values
  2015-11-18 18:45 Linux 4.3 kallsyms_lookup_name not returning per_cpu symbol values Jeffrey Merkey
  2015-11-19  5:32 ` Jeffrey Merkey
@ 2015-11-24  5:15 ` Jeffrey Merkey
  1 sibling, 0 replies; 4+ messages in thread
From: Jeffrey Merkey @ 2015-11-24  5:15 UTC (permalink / raw)
  To: linux-kernel

Got to the bottom of this one.  bug closed.

Jeff

On 11/18/15, Jeffrey Merkey <jeffmerkey@gmail.com> wrote:
> kallsyms_lookup_name is not returning per_cpu symbols when called.
> The symbols show up when you run something with the kallsyms_iter
> struct but not through the regular interface.  I have looked through
> the code and I am not able to determine with certainty if its designed
> this way or just busted.  Any help with this would be appreciated.
>
> The following code does display the per_cpu symbols, they just don't
> seem to show up when called from kallsyms_lookup_name.
>
>
> struct kallsym_iter mdb_iter;
> int mdb_kallsyms(char *str, int (*print)(char *s, ...))
> {
>     register loff_t pos = 0;
>     register struct kallsym_iter *iter = &mdb_iter;
>
>     if (!print)
>        return 0;
>
>     // set to beginning of the kallsyms list
>     reset_iter(iter, 0);
>     while (1)
>     {
>        // search the kallsyms list
>        if (!update_iter(iter, pos++))
>           break;
>
>        if (!iter->name[0])
> 	  continue;
>
>        // if an exclusion search was specified, skip non-matching entries
>        if (str && *str && !strstr(iter->name, str))
>           continue;
>
>        if (iter->module_name[0])
>        {
>           if (print("%0*lx %c %s [%s]\n", (int)(2*sizeof(void*)),
> 	      iter->value, iter->type, iter->name,
> 	      iter->module_name))
>              return 1;
>        }
>        else
>        {
>           if (print("%0*lx %c %s\n", (int)(2*sizeof(void*)),
> 	      iter->value, iter->type, iter->name))
>              return 1;
>        }
>     }
>     return 0;
> }
> EXPORT_SYMBOL_GPL(mdb_kallsyms);
>

^ permalink raw reply	[flat|nested] 4+ messages in thread

end of thread, other threads:[~2015-11-24  5:15 UTC | newest]

Thread overview: 4+ messages (download: mbox.gz / follow: Atom feed)
-- links below jump to the message on this page --
2015-11-18 18:45 Linux 4.3 kallsyms_lookup_name not returning per_cpu symbol values Jeffrey Merkey
2015-11-19  5:32 ` Jeffrey Merkey
2015-11-19  5:41   ` Jeffrey Merkey
2015-11-24  5:15 ` Jeffrey Merkey

This is an external index of several public inboxes,
see mirroring instructions on how to clone and mirror
all data and code used by this external index.