FreeBSD Bugzilla – Attachment 89263 Details for
Bug 126158
[vm] [patch] integer overflow in vm_pageout.c
Home
|
New
|
Browse
|
Search
|
[?]
|
Reports
|
Help
|
New Account
|
Log In
Remember
[x]
|
Forgot Password
Login:
[x]
[patch]
file.diff
file.diff (text/plain), 503 bytes, created by
Dmitrij Tejblum
on 2008-08-01 12:50:02 UTC
(
hide
)
Description:
file.diff
Filename:
MIME Type:
Creator:
Dmitrij Tejblum
Created:
2008-08-01 12:50:02 UTC
Size:
503 bytes
patch
obsolete
>--- sys/vm/vm_pageout.c 2008-07-28 19:15:05.000000000 +0400 >+++ sys/vm/vm_pageout.c 2008-08-01 15:10:40.000000000 +0400 >@@ -1284,7 +1284,7 @@ > pcount = cnt.v_active_count; > fullintervalcount += vm_pageout_stats_interval; > if (fullintervalcount < vm_pageout_full_stats_interval) { >- tpcount = (vm_pageout_stats_max * cnt.v_active_count) / cnt.v_page_count; >+ tpcount = ((int64_t)vm_pageout_stats_max * cnt.v_active_count) / cnt.v_page_count; > if (pcount > tpcount) > pcount = tpcount; > } else {
You cannot view the attachment while viewing its details because your browser does not support IFRAMEs.
View the attachment on a separate page
.
View Attachment As Diff
View Attachment As Raw
Actions:
View
|
Diff
Attachments on
bug 126158
: 89263