public inbox for llvm@lists.linux.dev
 help / color / mirror / Atom feed
* [PATCH] platform/chrome: cros_ec_proto: remove big stub objects from stack
@ 2023-01-17  8:02 Tzung-Bi Shih
  2023-01-17 16:24 ` Guenter Roeck
                   ` (2 more replies)
  0 siblings, 3 replies; 4+ messages in thread
From: Tzung-Bi Shih @ 2023-01-17  8:02 UTC (permalink / raw)
  To: bleung, groeck
  Cc: tzungbi, chrome-platform, llvm, oe-kbuild-all, kernel test robot

sizeof(struct device) = 680
sizeof(struct cros_ec_dev) = 720

They tend to exceed the stack frame size limit in some specific
environment which results in the following compilation error:

>> drivers/platform/chrome/cros_ec_proto_test.c:2530:13: error: stack
frame size (2128) exceeds limit (2048) in
'cros_ec_proto_test_get_sensor_count_legacy'

Remove the big stub objects from stack.

This is:
$ sed -i 's/struct cros_ec_dev /static struct cros_ec_dev /' \
    drivers/platform/chrome/cros_ec_proto_test.c

Reported-by: kernel test robot <lkp@intel.com>
Signed-off-by: Tzung-Bi Shih <tzungbi@kernel.org>
---
 drivers/platform/chrome/cros_ec_proto_test.c | 10 +++++-----
 1 file changed, 5 insertions(+), 5 deletions(-)

diff --git a/drivers/platform/chrome/cros_ec_proto_test.c b/drivers/platform/chrome/cros_ec_proto_test.c
index 08c58d031593..5b9748e0463b 100644
--- a/drivers/platform/chrome/cros_ec_proto_test.c
+++ b/drivers/platform/chrome/cros_ec_proto_test.c
@@ -2371,7 +2371,7 @@ static void cros_ec_proto_test_get_host_event_normal(struct kunit *test)
 static void cros_ec_proto_test_check_features_cached(struct kunit *test)
 {
 	int ret, i;
-	struct cros_ec_dev ec;
+	static struct cros_ec_dev ec;
 
 	ec.features.flags[0] = EC_FEATURE_MASK_0(EC_FEATURE_FINGERPRINT);
 	ec.features.flags[1] = EC_FEATURE_MASK_0(EC_FEATURE_SCP);
@@ -2396,7 +2396,7 @@ static void cros_ec_proto_test_check_features_not_cached(struct kunit *test)
 	struct cros_ec_device *ec_dev = &priv->ec_dev;
 	struct ec_xfer_mock *mock;
 	int ret, i;
-	struct cros_ec_dev ec;
+	static struct cros_ec_dev ec;
 
 	ec_dev->max_request = 0xff;
 	ec_dev->max_response = 0xee;
@@ -2449,7 +2449,7 @@ static void cros_ec_proto_test_get_sensor_count_normal(struct kunit *test)
 	struct cros_ec_device *ec_dev = &priv->ec_dev;
 	struct ec_xfer_mock *mock;
 	int ret;
-	struct cros_ec_dev ec;
+	static struct cros_ec_dev ec;
 
 	ec_dev->max_request = 0xff;
 	ec_dev->max_response = 0xee;
@@ -2494,7 +2494,7 @@ static void cros_ec_proto_test_get_sensor_count_xfer_error(struct kunit *test)
 	struct cros_ec_device *ec_dev = &priv->ec_dev;
 	struct ec_xfer_mock *mock;
 	int ret;
-	struct cros_ec_dev ec;
+	static struct cros_ec_dev ec;
 
 	ec_dev->max_request = 0xff;
 	ec_dev->max_response = 0xee;
@@ -2534,7 +2534,7 @@ static void cros_ec_proto_test_get_sensor_count_legacy(struct kunit *test)
 	struct cros_ec_device *ec_dev = &priv->ec_dev;
 	struct ec_xfer_mock *mock;
 	int ret, i;
-	struct cros_ec_dev ec;
+	static struct cros_ec_dev ec;
 	struct {
 		u8 readmem_data;
 		int expected_result;
-- 
2.39.0.246.g2a6d74b583-goog


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

* Re: [PATCH] platform/chrome: cros_ec_proto: remove big stub objects from stack
  2023-01-17  8:02 [PATCH] platform/chrome: cros_ec_proto: remove big stub objects from stack Tzung-Bi Shih
@ 2023-01-17 16:24 ` Guenter Roeck
  2023-01-18  3:00 ` patchwork-bot+chrome-platform
  2023-01-18  6:20 ` patchwork-bot+chrome-platform
  2 siblings, 0 replies; 4+ messages in thread
From: Guenter Roeck @ 2023-01-17 16:24 UTC (permalink / raw)
  To: Tzung-Bi Shih
  Cc: bleung, groeck, chrome-platform, llvm, oe-kbuild-all,
	kernel test robot

On Tue, Jan 17, 2023 at 04:02:54PM +0800, Tzung-Bi Shih wrote:
> sizeof(struct device) = 680
> sizeof(struct cros_ec_dev) = 720
> 
> They tend to exceed the stack frame size limit in some specific
> environment which results in the following compilation error:
> 
> >> drivers/platform/chrome/cros_ec_proto_test.c:2530:13: error: stack
> frame size (2128) exceeds limit (2048) in
> 'cros_ec_proto_test_get_sensor_count_legacy'
> 
> Remove the big stub objects from stack.
> 
> This is:
> $ sed -i 's/struct cros_ec_dev /static struct cros_ec_dev /' \
>     drivers/platform/chrome/cros_ec_proto_test.c
> 
> Reported-by: kernel test robot <lkp@intel.com>
> Signed-off-by: Tzung-Bi Shih <tzungbi@kernel.org>

Reviewed-by: Guenter Roeck <linux@roeck-us.net>

> ---
>  drivers/platform/chrome/cros_ec_proto_test.c | 10 +++++-----
>  1 file changed, 5 insertions(+), 5 deletions(-)
> 
> diff --git a/drivers/platform/chrome/cros_ec_proto_test.c b/drivers/platform/chrome/cros_ec_proto_test.c
> index 08c58d031593..5b9748e0463b 100644
> --- a/drivers/platform/chrome/cros_ec_proto_test.c
> +++ b/drivers/platform/chrome/cros_ec_proto_test.c
> @@ -2371,7 +2371,7 @@ static void cros_ec_proto_test_get_host_event_normal(struct kunit *test)
>  static void cros_ec_proto_test_check_features_cached(struct kunit *test)
>  {
>  	int ret, i;
> -	struct cros_ec_dev ec;
> +	static struct cros_ec_dev ec;
>  
>  	ec.features.flags[0] = EC_FEATURE_MASK_0(EC_FEATURE_FINGERPRINT);
>  	ec.features.flags[1] = EC_FEATURE_MASK_0(EC_FEATURE_SCP);
> @@ -2396,7 +2396,7 @@ static void cros_ec_proto_test_check_features_not_cached(struct kunit *test)
>  	struct cros_ec_device *ec_dev = &priv->ec_dev;
>  	struct ec_xfer_mock *mock;
>  	int ret, i;
> -	struct cros_ec_dev ec;
> +	static struct cros_ec_dev ec;
>  
>  	ec_dev->max_request = 0xff;
>  	ec_dev->max_response = 0xee;
> @@ -2449,7 +2449,7 @@ static void cros_ec_proto_test_get_sensor_count_normal(struct kunit *test)
>  	struct cros_ec_device *ec_dev = &priv->ec_dev;
>  	struct ec_xfer_mock *mock;
>  	int ret;
> -	struct cros_ec_dev ec;
> +	static struct cros_ec_dev ec;
>  
>  	ec_dev->max_request = 0xff;
>  	ec_dev->max_response = 0xee;
> @@ -2494,7 +2494,7 @@ static void cros_ec_proto_test_get_sensor_count_xfer_error(struct kunit *test)
>  	struct cros_ec_device *ec_dev = &priv->ec_dev;
>  	struct ec_xfer_mock *mock;
>  	int ret;
> -	struct cros_ec_dev ec;
> +	static struct cros_ec_dev ec;
>  
>  	ec_dev->max_request = 0xff;
>  	ec_dev->max_response = 0xee;
> @@ -2534,7 +2534,7 @@ static void cros_ec_proto_test_get_sensor_count_legacy(struct kunit *test)
>  	struct cros_ec_device *ec_dev = &priv->ec_dev;
>  	struct ec_xfer_mock *mock;
>  	int ret, i;
> -	struct cros_ec_dev ec;
> +	static struct cros_ec_dev ec;
>  	struct {
>  		u8 readmem_data;
>  		int expected_result;

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

* Re: [PATCH] platform/chrome: cros_ec_proto: remove big stub objects from stack
  2023-01-17  8:02 [PATCH] platform/chrome: cros_ec_proto: remove big stub objects from stack Tzung-Bi Shih
  2023-01-17 16:24 ` Guenter Roeck
@ 2023-01-18  3:00 ` patchwork-bot+chrome-platform
  2023-01-18  6:20 ` patchwork-bot+chrome-platform
  2 siblings, 0 replies; 4+ messages in thread
From: patchwork-bot+chrome-platform @ 2023-01-18  3:00 UTC (permalink / raw)
  To: Tzung-Bi Shih; +Cc: bleung, groeck, chrome-platform, llvm, oe-kbuild-all, lkp

Hello:

This patch was applied to chrome-platform/linux.git (for-kernelci)
by Tzung-Bi Shih <tzungbi@kernel.org>:

On Tue, 17 Jan 2023 16:02:54 +0800 you wrote:
> sizeof(struct device) = 680
> sizeof(struct cros_ec_dev) = 720
> 
> They tend to exceed the stack frame size limit in some specific
> environment which results in the following compilation error:
> 
> >> drivers/platform/chrome/cros_ec_proto_test.c:2530:13: error: stack
> frame size (2128) exceeds limit (2048) in
> 'cros_ec_proto_test_get_sensor_count_legacy'
> 
> [...]

Here is the summary with links:
  - platform/chrome: cros_ec_proto: remove big stub objects from stack
    https://git.kernel.org/chrome-platform/c/6514bac4a321

You are awesome, thank you!
-- 
Deet-doot-dot, I am a bot.
https://korg.docs.kernel.org/patchwork/pwbot.html



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

* Re: [PATCH] platform/chrome: cros_ec_proto: remove big stub objects from stack
  2023-01-17  8:02 [PATCH] platform/chrome: cros_ec_proto: remove big stub objects from stack Tzung-Bi Shih
  2023-01-17 16:24 ` Guenter Roeck
  2023-01-18  3:00 ` patchwork-bot+chrome-platform
@ 2023-01-18  6:20 ` patchwork-bot+chrome-platform
  2 siblings, 0 replies; 4+ messages in thread
From: patchwork-bot+chrome-platform @ 2023-01-18  6:20 UTC (permalink / raw)
  To: Tzung-Bi Shih; +Cc: bleung, groeck, chrome-platform, llvm, oe-kbuild-all, lkp

Hello:

This patch was applied to chrome-platform/linux.git (for-next)
by Tzung-Bi Shih <tzungbi@kernel.org>:

On Tue, 17 Jan 2023 16:02:54 +0800 you wrote:
> sizeof(struct device) = 680
> sizeof(struct cros_ec_dev) = 720
> 
> They tend to exceed the stack frame size limit in some specific
> environment which results in the following compilation error:
> 
> >> drivers/platform/chrome/cros_ec_proto_test.c:2530:13: error: stack
> frame size (2128) exceeds limit (2048) in
> 'cros_ec_proto_test_get_sensor_count_legacy'
> 
> [...]

Here is the summary with links:
  - platform/chrome: cros_ec_proto: remove big stub objects from stack
    https://git.kernel.org/chrome-platform/c/6514bac4a321

You are awesome, thank you!
-- 
Deet-doot-dot, I am a bot.
https://korg.docs.kernel.org/patchwork/pwbot.html



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

end of thread, other threads:[~2023-01-18  6:20 UTC | newest]

Thread overview: 4+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2023-01-17  8:02 [PATCH] platform/chrome: cros_ec_proto: remove big stub objects from stack Tzung-Bi Shih
2023-01-17 16:24 ` Guenter Roeck
2023-01-18  3:00 ` patchwork-bot+chrome-platform
2023-01-18  6:20 ` patchwork-bot+chrome-platform

This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox