diff options
author | Susan LeGendre-McGhee <slegendr@redhat.com> | 2024-02-15 11:35:15 -0500 |
---|---|---|
committer | Mike Snitzer <snitzer@kernel.org> | 2024-03-04 15:07:55 -0500 |
commit | dcd1332bb5ff996bc92a63948ba32bceae40507c (patch) | |
tree | c18f88b315dea3ce993daf3aed62998d91b903e5 /drivers/md/dm-vdo/memory-alloc.c | |
parent | 6a87a8a258ed5a6ba8939e88cdca1ed42d4eeebc (diff) | |
download | linux-stable-dcd1332bb5ff996bc92a63948ba32bceae40507c.tar.gz linux-stable-dcd1332bb5ff996bc92a63948ba32bceae40507c.tar.bz2 linux-stable-dcd1332bb5ff996bc92a63948ba32bceae40507c.zip |
dm vdo: remove internal ticket references
Signed-off-by: Susan LeGendre-McGhee <slegendr@redhat.com>
Signed-off-by: Matthew Sakai <msakai@redhat.com>
Signed-off-by: Mike Snitzer <snitzer@kernel.org>
Diffstat (limited to 'drivers/md/dm-vdo/memory-alloc.c')
-rw-r--r-- | drivers/md/dm-vdo/memory-alloc.c | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/drivers/md/dm-vdo/memory-alloc.c b/drivers/md/dm-vdo/memory-alloc.c index 3b2bda9248cb..5cd387f9294e 100644 --- a/drivers/md/dm-vdo/memory-alloc.c +++ b/drivers/md/dm-vdo/memory-alloc.c @@ -235,8 +235,8 @@ int uds_allocate_memory(size_t size, size_t align, const char *what, void *ptr) if (p == NULL) { /* * It is possible for kmalloc to fail to allocate memory because there is - * no page available (see VDO-3688). A short sleep may allow the page - * reclaimer to free a page. + * no page available. A short sleep may allow the page reclaimer to + * free a page. */ fsleep(1000); p = kmalloc(size, gfp_flags); @@ -251,8 +251,8 @@ int uds_allocate_memory(size_t size, size_t align, const char *what, void *ptr) UDS_SUCCESS) { /* * It is possible for __vmalloc to fail to allocate memory because there - * are no pages available (see VDO-3661). A short sleep may allow the page - * reclaimer to free enough pages for a small allocation. + * are no pages available. A short sleep may allow the page reclaimer + * to free enough pages for a small allocation. * * For larger allocations, the page_alloc code is racing against the page * reclaimer. If the page reclaimer can stay ahead of page_alloc, the |