The branch main has been updated by kib:

URL: 
https://cgit.FreeBSD.org/src/commit/?id=a0850dd0570fcfbb5cf72cb0962a201d39db040e

commit a0850dd0570fcfbb5cf72cb0962a201d39db040e
Author:     Konstantin Belousov <[email protected]>
AuthorDate: 2021-04-30 23:54:17 +0000
Commit:     Konstantin Belousov <[email protected]>
CommitDate: 2021-05-07 14:08:02 +0000

    swappagerops: slightly more style-compliant formatting
    
    Remove excess spaces from comments.
    
    Reviewed by:    markj
    Tested by:      pho
    Sponsored by:   The FreeBSD Foundation
    MFC after:      1 week
    Differential revision:  https://reviews.freebsd.org/D30070
---
 sys/vm/swap_pager.c | 14 +++++++-------
 1 file changed, 7 insertions(+), 7 deletions(-)

diff --git a/sys/vm/swap_pager.c b/sys/vm/swap_pager.c
index 888df04741b4..c6ebfa0167f2 100644
--- a/sys/vm/swap_pager.c
+++ b/sys/vm/swap_pager.c
@@ -436,13 +436,13 @@ static void       
swap_pager_release_writecount(vm_object_t object,
 
 struct pagerops swappagerops = {
        .pgo_init =     swap_pager_init,        /* early system initialization 
of pager */
-       .pgo_alloc =    swap_pager_alloc,       /* allocate an OBJT_SWAP object 
        */
-       .pgo_dealloc =  swap_pager_dealloc,     /* deallocate an OBJT_SWAP 
object       */
-       .pgo_getpages = swap_pager_getpages,    /* pagein                       
        */
-       .pgo_getpages_async = swap_pager_getpages_async, /* pagein (async)      
        */
-       .pgo_putpages = swap_pager_putpages,    /* pageout                      
        */
-       .pgo_haspage =  swap_pager_haspage,     /* get backing store status for 
page    */
-       .pgo_pageunswapped = swap_pager_unswapped,      /* remove swap related 
to page          */
+       .pgo_alloc =    swap_pager_alloc,       /* allocate an OBJT_SWAP object 
*/
+       .pgo_dealloc =  swap_pager_dealloc,     /* deallocate an OBJT_SWAP 
object */
+       .pgo_getpages = swap_pager_getpages,    /* pagein */
+       .pgo_getpages_async = swap_pager_getpages_async, /* pagein (async) */
+       .pgo_putpages = swap_pager_putpages,    /* pageout */
+       .pgo_haspage =  swap_pager_haspage,     /* get backing store status for 
page */
+       .pgo_pageunswapped = swap_pager_unswapped, /* remove swap related to 
page */
        .pgo_update_writecount = swap_pager_update_writecount,
        .pgo_release_writecount = swap_pager_release_writecount,
 };
_______________________________________________
[email protected] mailing list
https://lists.freebsd.org/mailman/listinfo/dev-commits-src-all
To unsubscribe, send any mail to "[email protected]"

Reply via email to