diff options
Diffstat (limited to 'usr/src/uts/common/vm')
-rw-r--r-- | usr/src/uts/common/vm/seg_spt.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/usr/src/uts/common/vm/seg_spt.c b/usr/src/uts/common/vm/seg_spt.c index 1a9ef5223f..1308935159 100644 --- a/usr/src/uts/common/vm/seg_spt.c +++ b/usr/src/uts/common/vm/seg_spt.c @@ -63,7 +63,7 @@ size_t spt_used; * See spt_setminfree(). */ pgcnt_t segspt_minfree = 0; -size_t segspt_minfree_clamp = (1UL << 30); /* 1Gb in bytes */ +size_t segspt_minfree_clamp = (1UL << 30); /* 1GB in bytes */ static int segspt_create(struct seg **segpp, void *argsp); static int segspt_unmap(struct seg *seg, caddr_t raddr, size_t ssize); @@ -317,7 +317,7 @@ static int spt_anon_getpages(struct seg *seg, caddr_t addr, size_t len, * * The traditional default value of 5% of total memory is used, except on * systems where that quickly gets ridiculous: in that case we clamp at a rather - * arbitrary value of 1Gb. + * arbitrary value of 1GB. * * Note that since this is called lazily on the first sptcreate(), in theory, * this could represent a very small value if the system is heavily loaded |