Skip site navigation (1)Skip section navigation (2)
Date:      Sat, 22 May 2021 09:46:30 GMT
From:      Konstantin Belousov <kib@FreeBSD.org>
To:        src-committers@FreeBSD.org, dev-commits-src-all@FreeBSD.org, dev-commits-src-branches@FreeBSD.org
Subject:   git: 6ecea720f361 - stable/13 - Style enum obj_type
Message-ID:  <202105220946.14M9kUAi012474@gitrepo.freebsd.org>

next in thread | raw e-mail | index | archive | help
The branch stable/13 has been updated by kib:

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

commit 6ecea720f3619b490130d24d0a49f062c8a31236
Author:     Konstantin Belousov <kib@FreeBSD.org>
AuthorDate: 2021-05-01 01:14:24 +0000
Commit:     Konstantin Belousov <kib@FreeBSD.org>
CommitDate: 2021-05-22 09:38:29 +0000

    Style enum obj_type
    
    (cherry picked from commit 838adc533fa11b8c4e7da5603377fdd62c2f1d90)
---
 sys/vm/vm.h | 12 ++++++++++--
 1 file changed, 10 insertions(+), 2 deletions(-)

diff --git a/sys/vm/vm.h b/sys/vm/vm.h
index 296449edc7c1..78d4cbbb1fd3 100644
--- a/sys/vm/vm.h
+++ b/sys/vm/vm.h
@@ -88,8 +88,16 @@ typedef u_char vm_prot_t;	/* protection codes */
 #define VM_PROT_RW		(VM_PROT_READ|VM_PROT_WRITE)
 #define	VM_PROT_DEFAULT		VM_PROT_ALL
 
-enum obj_type { OBJT_DEFAULT, OBJT_SWAP, OBJT_VNODE, OBJT_DEVICE, OBJT_PHYS,
-		OBJT_DEAD, OBJT_SG, OBJT_MGTDEVICE };
+enum obj_type {
+	OBJT_DEFAULT,
+	OBJT_SWAP,
+	OBJT_VNODE,
+	OBJT_DEVICE,
+	OBJT_PHYS,
+	OBJT_DEAD,
+	OBJT_SG,
+	OBJT_MGTDEVICE,
+};
 typedef u_char objtype_t;
 
 union vm_map_object;



Want to link to this message? Use this URL: <https://mail-archive.FreeBSD.org/cgi/mid.cgi?202105220946.14M9kUAi012474>