projects
/
openwrt.git
/ blobdiff
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
shortlog
|
log
|
commit
|
commitdiff
|
tree
raw
|
inline
| side by side
mark uclibc nptl and snapshot as broken
[openwrt.git]
/
package
/
wprobe
/
src
/
kernel
/
wprobe-core.c
diff --git
a/package/wprobe/src/kernel/wprobe-core.c
b/package/wprobe/src/kernel/wprobe-core.c
index
03e9049
..
798cd7d
100644
(file)
--- a/
package/wprobe/src/kernel/wprobe-core.c
+++ b/
package/wprobe/src/kernel/wprobe-core.c
@@
-448,10
+448,10
@@
wprobe_scale_stats(const struct wprobe_item *item, struct wprobe_value *val, int
else if (wprobe_fam.attrbuf[WPROBE_ATTR_SCALE])
scale = nla_get_u32(wprobe_fam.attrbuf[WPROBE_ATTR_SCALE]);
else if (wprobe_fam.attrbuf[WPROBE_ATTR_SCALE])
scale = nla_get_u32(wprobe_fam.attrbuf[WPROBE_ATTR_SCALE]);
- if ((scale > 0) && (val[i].n >
=
scale)) {
+ if ((scale > 0) && (val[i].n > scale)) {
val[i].s = div_s64(val[i].s, scale);
val[i].ss = div_s64(val[i].ss, scale);
val[i].s = div_s64(val[i].s, scale);
val[i].ss = div_s64(val[i].ss, scale);
- val[i].n
/= scale
;
+ val[i].n
= val[i].n / scale + 1
;
}
}
}
}
}
}
This page took
0.02078 seconds
and
4
git commands to generate.