-
Notifications
You must be signed in to change notification settings - Fork 1.8k
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
arc_evict() stack size #3377
Comments
chrisrd
added a commit
to chrisrd/zfs
that referenced
this issue
May 6, 2015
With debugging enabled and depending on your kernel config, the size of arc_buf_hdr_t can blow out the stack of arc_evict() to greater than 1024 bytes. Let's avoid this. Signed-off-by: Chris Dunlop <chris@onthe.net.au> Closes openzfs#3377
chrisrd
added a commit
to chrisrd/zfs
that referenced
this issue
May 6, 2015
With debugging enabled and depending on your kernel config, the size of arc_buf_hdr_t can blow out the stack of arc_evict() and arc_evict_ghost() to greater than 1024 bytes. Let's avoid this. Signed-off-by: Chris Dunlop <chris@onthe.net.au> Closes openzfs#3377
kernelOfTruth
pushed a commit
to kernelOfTruth/zfs
that referenced
this issue
May 10, 2015
With debugging enabled and depending on your kernel config, the size of arc_buf_hdr_t can blow out the stack of arc_evict() and arc_evict_ghost() to greater than 1024 bytes. Let's avoid this. Signed-off-by: Chris Dunlop <chris@onthe.net.au> Signed-off-by: Brian Behlendorf <behlendorf1@llnl.gov> Closes openzfs#3377 ------------------------------------------------------- adapt to changes from 2129, ABD
dasjoe
pushed a commit
to dasjoe/zfs
that referenced
this issue
May 24, 2015
With debugging enabled and depending on your kernel config, the size of arc_buf_hdr_t can blow out the stack of arc_evict() and arc_evict_ghost() to greater than 1024 bytes. Let's avoid this. Signed-off-by: Chris Dunlop <chris@onthe.net.au> Signed-off-by: Brian Behlendorf <behlendorf1@llnl.gov> Closes openzfs#3377
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
With debugging enabled and depending on your kernel config, the size of
arc_buf_hdr_t
can blow out the stack ofarc_evict()
to greater than 1024 bytes:The text was updated successfully, but these errors were encountered: