All of lore.kernel.org
 help / color / mirror / Atom feed
* [LTP] Char Limit issue on 2.6.29 kernels
@ 2009-07-24 15:31 ` naresh kamboju
  0 siblings, 0 replies; 10+ messages in thread
From: naresh kamboju @ 2009-07-24 15:31 UTC (permalink / raw)
  To: linux-kernel
  Cc: ltp-list, maxin john, brinda_mn, Oleg Nesterov, tim.bird,
	rohit.170309

Hi,

I have come across with char Limit issue on 2.6.29 kernels.


SIGFAULT:

#define SIZE            8053759
char buf1[SIZE] ;

NO SIGFAULT:

#define SIZE            8053758
char buf1[SIZE] ;

This SIGFAULT not observed on 2.6.23 kernels.

What could be the changes that effecting from 2.6.23 to 2.6.29 kernels.
Please share me the information.


Best regards,
Naresh Kamboju

------------------------------------------------------------------------------
_______________________________________________
Ltp-list mailing list
Ltp-list@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/ltp-list

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

* Char Limit issue on 2.6.29 kernels
@ 2009-07-24 15:31 ` naresh kamboju
  0 siblings, 0 replies; 10+ messages in thread
From: naresh kamboju @ 2009-07-24 15:31 UTC (permalink / raw)
  To: linux-kernel
  Cc: tim.bird, ltp-list, brinda_mn, rohit.170309, Garrett Cooper,
	Oleg Nesterov, maxin john, Masatake YAMATO, michal.simek

Hi,

I have come across with char Limit issue on 2.6.29 kernels.


SIGFAULT:

#define SIZE            8053759
char buf1[SIZE] ;

NO SIGFAULT:

#define SIZE            8053758
char buf1[SIZE] ;

This SIGFAULT not observed on 2.6.23 kernels.

What could be the changes that effecting from 2.6.23 to 2.6.29 kernels.
Please share me the information.


Best regards,
Naresh Kamboju

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

* Re: [LTP] Char Limit issue on 2.6.29 kernels
  2009-07-24 15:31 ` naresh kamboju
@ 2009-07-24 17:49   ` Mike Frysinger
  -1 siblings, 0 replies; 10+ messages in thread
From: Mike Frysinger @ 2009-07-24 17:49 UTC (permalink / raw)
  To: ltp-list
  Cc: maxin john, brinda_mn, linux-kernel, Oleg Nesterov, tim.bird,
	rohit.170309, naresh kamboju


[-- Attachment #1.1: Type: text/plain, Size: 647 bytes --]

On Friday 24 July 2009 11:31:59 naresh kamboju wrote:
> I have come across with char Limit issue on 2.6.29 kernels.
>
>
> SIGFAULT:
>
> #define SIZE            8053759
> char buf1[SIZE] ;
>
> NO SIGFAULT:
>
> #define SIZE            8053758
> char buf1[SIZE] ;
>
> This SIGFAULT not observed on 2.6.23 kernels.

-ENOINFO

post some actual code rather than saying "i declared a large buffer and things 
crashed".  is there a reason you cc-ed LTP ?  is this a crash i a LTP test ?

> What could be the changes that effecting from 2.6.23 to 2.6.29 kernels.
> Please share me the information.

git log v2.6.23..v2.6.29
-mike

[-- Attachment #1.2: This is a digitally signed message part. --]
[-- Type: application/pgp-signature, Size: 836 bytes --]

[-- Attachment #2: Type: text/plain, Size: 79 bytes --]

------------------------------------------------------------------------------

[-- Attachment #3: Type: text/plain, Size: 155 bytes --]

_______________________________________________
Ltp-list mailing list
Ltp-list@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/ltp-list

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

* Re: [LTP] Char Limit issue on 2.6.29 kernels
@ 2009-07-24 17:49   ` Mike Frysinger
  0 siblings, 0 replies; 10+ messages in thread
From: Mike Frysinger @ 2009-07-24 17:49 UTC (permalink / raw)
  To: ltp-list
  Cc: naresh kamboju, linux-kernel, maxin john, brinda_mn,
	Oleg Nesterov, tim.bird, rohit.170309

[-- Attachment #1: Type: text/plain, Size: 647 bytes --]

On Friday 24 July 2009 11:31:59 naresh kamboju wrote:
> I have come across with char Limit issue on 2.6.29 kernels.
>
>
> SIGFAULT:
>
> #define SIZE            8053759
> char buf1[SIZE] ;
>
> NO SIGFAULT:
>
> #define SIZE            8053758
> char buf1[SIZE] ;
>
> This SIGFAULT not observed on 2.6.23 kernels.

-ENOINFO

post some actual code rather than saying "i declared a large buffer and things 
crashed".  is there a reason you cc-ed LTP ?  is this a crash i a LTP test ?

> What could be the changes that effecting from 2.6.23 to 2.6.29 kernels.
> Please share me the information.

git log v2.6.23..v2.6.29
-mike

[-- Attachment #2: This is a digitally signed message part. --]
[-- Type: application/pgp-signature, Size: 836 bytes --]

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

* Re: [LTP] Char Limit issue on 2.6.29 kernels
  2009-07-24 17:49   ` Mike Frysinger
@ 2009-07-24 18:04     ` naresh kamboju
  -1 siblings, 0 replies; 10+ messages in thread
From: naresh kamboju @ 2009-07-24 18:04 UTC (permalink / raw)
  To: Mike Frysinger
  Cc: ltp-list, maxin john, brinda_mn, linux-kernel, Oleg Nesterov,
	tim.bird, rohit.170309

Hi Mike,

On Fri, Jul 24, 2009 at 11:19 PM, Mike Frysinger<vapier@gentoo.org> wrote:
> On Friday 24 July 2009 11:31:59 naresh kamboju wrote:
>> I have come across with char Limit issue on 2.6.29 kernels.
>>
>>
>> SIGFAULT:
>>
>> #define SIZE            8053759
>> char buf1[SIZE] ;
>>
>> NO SIGFAULT:
>>
>> #define SIZE            8053758
>> char buf1[SIZE] ;
>>
>> This SIGFAULT not observed on 2.6.23 kernels.
>
> -ENOINFO
>
> post some actual code rather than saying "i declared a large buffer and things
> crashed".

currently i am debugging this issue.
i'll come up with more details.

>is there a reason you cc-ed LTP ?  is this a crash i >a LTP test ?
No.
it is not a test cases of LTP.
i am a member of LTP. want to share this information to LTP community.

-naresh

>
>> What could be the changes that effecting from 2.6.23 to 2.6.29 kernels.
>> Please share me the information.
>
> git log v2.6.23..v2.6.29
> -mike
>

------------------------------------------------------------------------------
_______________________________________________
Ltp-list mailing list
Ltp-list@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/ltp-list

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

* Re: [LTP] Char Limit issue on 2.6.29 kernels
@ 2009-07-24 18:04     ` naresh kamboju
  0 siblings, 0 replies; 10+ messages in thread
From: naresh kamboju @ 2009-07-24 18:04 UTC (permalink / raw)
  To: Mike Frysinger
  Cc: ltp-list, linux-kernel, maxin john, brinda_mn, Oleg Nesterov,
	tim.bird, rohit.170309

Hi Mike,

On Fri, Jul 24, 2009 at 11:19 PM, Mike Frysinger<vapier@gentoo.org> wrote:
> On Friday 24 July 2009 11:31:59 naresh kamboju wrote:
>> I have come across with char Limit issue on 2.6.29 kernels.
>>
>>
>> SIGFAULT:
>>
>> #define SIZE            8053759
>> char buf1[SIZE] ;
>>
>> NO SIGFAULT:
>>
>> #define SIZE            8053758
>> char buf1[SIZE] ;
>>
>> This SIGFAULT not observed on 2.6.23 kernels.
>
> -ENOINFO
>
> post some actual code rather than saying "i declared a large buffer and things
> crashed".

currently i am debugging this issue.
i'll come up with more details.

>is there a reason you cc-ed LTP ?  is this a crash i >a LTP test ?
No.
it is not a test cases of LTP.
i am a member of LTP. want to share this information to LTP community.

-naresh

>
>> What could be the changes that effecting from 2.6.23 to 2.6.29 kernels.
>> Please share me the information.
>
> git log v2.6.23..v2.6.29
> -mike
>

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

* Re: [LTP] Char Limit issue on 2.6.29 kernels
  2009-07-24 18:04     ` naresh kamboju
@ 2009-07-24 18:26       ` Tim Bird
  -1 siblings, 0 replies; 10+ messages in thread
From: Tim Bird @ 2009-07-24 18:26 UTC (permalink / raw)
  To: naresh kamboju
  Cc: ltp-list, Mike Frysinger, maxin john, brinda_mn, linux-kernel,
	Oleg Nesterov, rohit.170309

naresh kamboju wrote:
> Hi Mike,
> 
> On Fri, Jul 24, 2009 at 11:19 PM, Mike Frysinger<vapier@gentoo.org> wrote:
>> On Friday 24 July 2009 11:31:59 naresh kamboju wrote:
>>> I have come across with char Limit issue on 2.6.29 kernels.
>>>
>>>
>>> SIGFAULT:
>>>
>>> #define SIZE � � � � � �8053759
>>> char buf1[SIZE] ;
>>>
>>> NO SIGFAULT:
>>>
>>> #define SIZE � � � � � �8053758
>>> char buf1[SIZE] ;
>>>
>>> This SIGFAULT not observed on 2.6.23 kernels.
>> -ENOINFO
>>
>> post some actual code rather than saying "i declared a large buffer and things
>> crashed".
> 
> currently i am debugging this issue.
> i'll come up with more details.

Some more feedback...

It's SEGFAULT - short for "Segmentation Fault", not SIGFAULT.

Please include in your details at least the following:
 * what software this is in (is this declaration in the kernel?, a library, a
 user space program, etc.)
 * what operation is being performed when the SEGFAULT occurs.
 * what compiler you are using.
 * the code surrounding the operation when the fault occurs

If you can, make the smallest possible program that reproduces this error,
and send the complete source for that.
 -- Tim

=============================
Tim Bird
Architecture Group Chair, CE Linux Forum
Senior Staff Engineer, Sony Corporation of America
=============================


------------------------------------------------------------------------------
_______________________________________________
Ltp-list mailing list
Ltp-list@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/ltp-list

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

* Re: [LTP] Char Limit issue on 2.6.29 kernels
@ 2009-07-24 18:26       ` Tim Bird
  0 siblings, 0 replies; 10+ messages in thread
From: Tim Bird @ 2009-07-24 18:26 UTC (permalink / raw)
  To: naresh kamboju
  Cc: Mike Frysinger, ltp-list, linux-kernel, maxin john, brinda_mn,
	Oleg Nesterov, rohit.170309

naresh kamboju wrote:
> Hi Mike,
> 
> On Fri, Jul 24, 2009 at 11:19 PM, Mike Frysinger<vapier@gentoo.org> wrote:
>> On Friday 24 July 2009 11:31:59 naresh kamboju wrote:
>>> I have come across with char Limit issue on 2.6.29 kernels.
>>>
>>>
>>> SIGFAULT:
>>>
>>> #define SIZE � � � � � �8053759
>>> char buf1[SIZE] ;
>>>
>>> NO SIGFAULT:
>>>
>>> #define SIZE � � � � � �8053758
>>> char buf1[SIZE] ;
>>>
>>> This SIGFAULT not observed on 2.6.23 kernels.
>> -ENOINFO
>>
>> post some actual code rather than saying "i declared a large buffer and things
>> crashed".
> 
> currently i am debugging this issue.
> i'll come up with more details.

Some more feedback...

It's SEGFAULT - short for "Segmentation Fault", not SIGFAULT.

Please include in your details at least the following:
 * what software this is in (is this declaration in the kernel?, a library, a
 user space program, etc.)
 * what operation is being performed when the SEGFAULT occurs.
 * what compiler you are using.
 * the code surrounding the operation when the fault occurs

If you can, make the smallest possible program that reproduces this error,
and send the complete source for that.
 -- Tim

=============================
Tim Bird
Architecture Group Chair, CE Linux Forum
Senior Staff Engineer, Sony Corporation of America
=============================


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

* Re: [LTP] Char Limit issue on 2.6.29 kernels
  2009-07-24 15:31 ` naresh kamboju
@ 2009-07-24 19:16   ` Ray Lee
  -1 siblings, 0 replies; 10+ messages in thread
From: Ray Lee @ 2009-07-24 19:16 UTC (permalink / raw)
  To: naresh kamboju
  Cc: ltp-list, maxin john, brinda_mn, linux-kernel, Oleg Nesterov,
	tim.bird, rohit.170309

On Fri, Jul 24, 2009 at 8:31 AM, naresh kamboju <naresh.kernel@gmail.com> wrote:
>
> Hi,
>
> I have come across with char Limit issue on 2.6.29 kernels.
>
>
> SIGFAULT:
>
> #define SIZE            8053759
> char buf1[SIZE] ;
>
> NO SIGFAULT:
>
> #define SIZE            8053758
> char buf1[SIZE] ;
>
> This SIGFAULT not observed on 2.6.23 kernels.
>
> What could be the changes that effecting from 2.6.23 to 2.6.29 kernels.
> Please share me the information.

is "ulimit -a" the same on both kernels?

Can you provide a small program that shows the issue?

------------------------------------------------------------------------------
_______________________________________________
Ltp-list mailing list
Ltp-list@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/ltp-list

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

* Re: Char Limit issue on 2.6.29 kernels
@ 2009-07-24 19:16   ` Ray Lee
  0 siblings, 0 replies; 10+ messages in thread
From: Ray Lee @ 2009-07-24 19:16 UTC (permalink / raw)
  To: naresh kamboju
  Cc: linux-kernel, tim.bird, ltp-list, brinda_mn, rohit.170309,
	Garrett Cooper, Oleg Nesterov, maxin john, Masatake YAMATO,
	michal.simek

On Fri, Jul 24, 2009 at 8:31 AM, naresh kamboju <naresh.kernel@gmail.com> wrote:
>
> Hi,
>
> I have come across with char Limit issue on 2.6.29 kernels.
>
>
> SIGFAULT:
>
> #define SIZE            8053759
> char buf1[SIZE] ;
>
> NO SIGFAULT:
>
> #define SIZE            8053758
> char buf1[SIZE] ;
>
> This SIGFAULT not observed on 2.6.23 kernels.
>
> What could be the changes that effecting from 2.6.23 to 2.6.29 kernels.
> Please share me the information.

is "ulimit -a" the same on both kernels?

Can you provide a small program that shows the issue?

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

end of thread, other threads:[~2009-07-24 19:22 UTC | newest]

Thread overview: 10+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2009-07-24 15:31 [LTP] Char Limit issue on 2.6.29 kernels naresh kamboju
2009-07-24 15:31 ` naresh kamboju
2009-07-24 17:49 ` [LTP] " Mike Frysinger
2009-07-24 17:49   ` Mike Frysinger
2009-07-24 18:04   ` naresh kamboju
2009-07-24 18:04     ` naresh kamboju
2009-07-24 18:26     ` Tim Bird
2009-07-24 18:26       ` Tim Bird
2009-07-24 19:16 ` Ray Lee
2009-07-24 19:16   ` Ray Lee

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.