Skip site navigation (1)Skip section navigation (2)
Date:      Sun, 11 Aug 2019 22:36:31 +0000 (UTC)
From:      Jan Beich <jbeich@FreeBSD.org>
To:        ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org
Subject:   svn commit: r508692 - in head/games: openbor/files openbor3979/files openbor4432/files
Message-ID:  <201908112236.x7BMaV37033457@repo.freebsd.org>

next in thread | raw e-mail | index | archive | help
Author: jbeich
Date: Sun Aug 11 22:36:31 2019
New Revision: 508692
URL: https://svnweb.freebsd.org/changeset/ports/508692

Log:
  games/openbor: untabify after r508689

Modified:
  head/games/openbor/files/patch-source_ramlib_ram.c   (contents, props changed)
  head/games/openbor3979/files/patch-source_ramlib_ram.c   (contents, props changed)
  head/games/openbor4432/files/patch-source_ramlib_ram.c   (contents, props changed)

Modified: head/games/openbor/files/patch-source_ramlib_ram.c
==============================================================================
--- head/games/openbor/files/patch-source_ramlib_ram.c	Sun Aug 11 22:31:04 2019	(r508691)
+++ head/games/openbor/files/patch-source_ramlib_ram.c	Sun Aug 11 22:36:31 2019	(r508692)
@@ -60,7 +60,7 @@ Implement Linux-like memory stats for BSDs
 +        return 0;
 +    }
 +    return (u64)(vms.v_free_count + vms.v_inactive_count
-+		 + vms.v_cache_count) * getpagesize() / byte_size;
++                 + vms.v_cache_count) * getpagesize() / byte_size;
 +#elif defined(__FreeBSD__) || defined(__FreeBSD_kernel__)
 +    u_int v_free_count = 0, v_inactive_count = 0, v_cache_count = 0;
 +    size_t sz = sizeof(u_int);
@@ -71,7 +71,7 @@ Implement Linux-like memory stats for BSDs
 +    sysctlbyname("vm.stats.vm.v_cache_count",
 +                 &v_cache_count, &sz, NULL, 0);
 +    return (u64)(v_free_count + v_inactive_count
-+		 + v_cache_count) * getpagesize() / byte_size;
++                 + v_cache_count) * getpagesize() / byte_size;
 +#elif defined(__NetBSD__) || defined(__OpenBSD__)
 +# if defined(__NetBSD__)
 +#undef VM_UVMEXP
@@ -93,7 +93,7 @@ Implement Linux-like memory stats for BSDs
 +        return 0;
 +    }
 +    return (u64)(uvmexp.free + uvmexp.inactive + uvmexp.filepages
-+		 + uvmexp.execpages) * uvmexp.pagesize / byte_size;
++                 + uvmexp.execpages) * uvmexp.pagesize / byte_size;
  #elif LINUX
      struct sysinfo info;
      sysinfo(&info);

Modified: head/games/openbor3979/files/patch-source_ramlib_ram.c
==============================================================================
--- head/games/openbor3979/files/patch-source_ramlib_ram.c	Sun Aug 11 22:31:04 2019	(r508691)
+++ head/games/openbor3979/files/patch-source_ramlib_ram.c	Sun Aug 11 22:36:31 2019	(r508692)
@@ -83,7 +83,7 @@ Implement Linux-like memory stats for BSDs
 +        return 0;
 +    }
 +    return (u64)(vms.v_free_count + vms.v_inactive_count
-+		 + vms.v_cache_count) * getpagesize() / byte_size;
++                 + vms.v_cache_count) * getpagesize() / byte_size;
 +#elif defined(__FreeBSD__) || defined(__FreeBSD_kernel__)
 +    u_int v_free_count = 0, v_inactive_count = 0, v_cache_count = 0;
 +    size_t sz = sizeof(u_int);
@@ -94,7 +94,7 @@ Implement Linux-like memory stats for BSDs
 +    sysctlbyname("vm.stats.vm.v_cache_count",
 +                 &v_cache_count, &sz, NULL, 0);
 +    return (u64)(v_free_count + v_inactive_count
-+		 + v_cache_count) * getpagesize() / byte_size;
++                 + v_cache_count) * getpagesize() / byte_size;
 +#elif defined(__NetBSD__) || defined(__OpenBSD__)
 +# if defined(__NetBSD__)
 +#undef VM_UVMEXP
@@ -116,7 +116,7 @@ Implement Linux-like memory stats for BSDs
 +        return 0;
 +    }
 +    return (u64)(uvmexp.free + uvmexp.inactive + uvmexp.filepages
-+		 + uvmexp.execpages) * uvmexp.pagesize / byte_size;
++                 + uvmexp.execpages) * uvmexp.pagesize / byte_size;
  #elif LINUX
      struct sysinfo info;
      sysinfo(&info);

Modified: head/games/openbor4432/files/patch-source_ramlib_ram.c
==============================================================================
--- head/games/openbor4432/files/patch-source_ramlib_ram.c	Sun Aug 11 22:31:04 2019	(r508691)
+++ head/games/openbor4432/files/patch-source_ramlib_ram.c	Sun Aug 11 22:36:31 2019	(r508692)
@@ -60,7 +60,7 @@ Implement Linux-like memory stats for BSDs
 +        return 0;
 +    }
 +    return (u64)(vms.v_free_count + vms.v_inactive_count
-+		 + vms.v_cache_count) * getpagesize() / byte_size;
++                 + vms.v_cache_count) * getpagesize() / byte_size;
 +#elif defined(__FreeBSD__) || defined(__FreeBSD_kernel__)
 +    u_int v_free_count = 0, v_inactive_count = 0, v_cache_count = 0;
 +    size_t sz = sizeof(u_int);
@@ -71,7 +71,7 @@ Implement Linux-like memory stats for BSDs
 +    sysctlbyname("vm.stats.vm.v_cache_count",
 +                 &v_cache_count, &sz, NULL, 0);
 +    return (u64)(v_free_count + v_inactive_count
-+		 + v_cache_count) * getpagesize() / byte_size;
++                 + v_cache_count) * getpagesize() / byte_size;
 +#elif defined(__NetBSD__) || defined(__OpenBSD__)
 +# if defined(__NetBSD__)
 +#undef VM_UVMEXP
@@ -93,7 +93,7 @@ Implement Linux-like memory stats for BSDs
 +        return 0;
 +    }
 +    return (u64)(uvmexp.free + uvmexp.inactive + uvmexp.filepages
-+		 + uvmexp.execpages) * uvmexp.pagesize / byte_size;
++                 + uvmexp.execpages) * uvmexp.pagesize / byte_size;
  #elif LINUX
      struct sysinfo info;
      sysinfo(&info);



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