tree-wide: use unsigned for refcount
authorYu Watanabe <watanabe.yu+github@gmail.com>
Mon, 27 Aug 2018 04:48:04 +0000 (13:48 +0900)
committerYu Watanabe <watanabe.yu+github@gmail.com>
Mon, 27 Aug 2018 04:48:04 +0000 (13:48 +0900)
src/core/dynamic-user.h
src/core/execute.h
src/journal-remote/journal-remote-write.h
src/journal/mmap-cache.c
src/libsystemd/sd-device/device-internal.h
src/network/netdev/netdev.h
src/network/networkd-link.h
src/resolve/resolved-dns-packet.h
src/resolve/resolved-dns-stream.h

index 791a8ba..112f91e 100644 (file)
@@ -15,7 +15,7 @@ typedef struct DynamicCreds {
  * used. This means, if you want to allocate a group and user pair, and they might have two different names, then you
  * need to allocated two of these objects. DynamicCreds below makes that easy. */
 struct DynamicUser {
-        int n_ref;
+        unsigned n_ref;
         Manager *manager;
 
         /* An AF_UNIX socket pair that contains a datagram containing both the numeric ID assigned, as well as a lock
index 2e8b01f..03a36e6 100644 (file)
@@ -107,7 +107,7 @@ struct ExecCommand {
  * between invocations of commands. This is a reference counted object, with one reference taken by each currently
  * active command invocation that wants to share this runtime. */
 struct ExecRuntime {
-        int n_ref;
+        unsigned n_ref;
 
         Manager *manager;
 
index 7ed32aa..9f3df42 100644 (file)
@@ -16,7 +16,7 @@ typedef struct Writer {
 
         uint64_t seqnum;
 
-        int n_ref;
+        unsigned n_ref;
 } Writer;
 
 Writer* writer_new(RemoteServer* server);
index 2366055..442c994 100644 (file)
@@ -53,7 +53,7 @@ struct MMapFileDescriptor {
 };
 
 struct MMapCache {
-        int n_ref;
+        unsigned n_ref;
         unsigned n_windows;
 
         unsigned n_hit, n_missed;
index 996008b..39e984c 100644 (file)
@@ -7,7 +7,7 @@
 #include "set.h"
 
 struct sd_device {
-        uint64_t n_ref;
+        unsigned n_ref;
 
         sd_device *parent;
         bool parent_set; /* no need to try to reload parent */
index d073216..2746de0 100644 (file)
@@ -72,7 +72,7 @@ typedef struct Condition Condition;
 typedef struct NetDev {
         Manager *manager;
 
-        int n_ref;
+        unsigned n_ref;
 
         char *filename;
 
index 912952e..dcf722a 100644 (file)
@@ -49,7 +49,7 @@ typedef struct DUID DUID;
 typedef struct Link {
         Manager *manager;
 
-        int n_ref;
+        unsigned n_ref;
 
         int ifindex;
         char *ifname;
index d616c32..5ebaff3 100644 (file)
@@ -53,7 +53,7 @@ struct DnsPacketHeader {
 #define DNS_PACKET_UNICAST_SIZE_LARGE_MAX 4096u
 
 struct DnsPacket {
-        int n_ref;
+        unsigned n_ref;
         DnsProtocol protocol;
         size_t size, allocated, rindex, max_size;
         void *_data; /* don't access directly, use DNS_PACKET_DATA()! */
index 72db2a1..46d2704 100644 (file)
@@ -23,7 +23,7 @@ typedef struct DnsStream DnsStream;
 
 struct DnsStream {
         Manager *manager;
-        int n_ref;
+        unsigned n_ref;
 
         DnsProtocol protocol;