[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]
[committed hurd 08/13] libdiskfs: fix node initialization
From: |
Justus Winter |
Subject: |
[committed hurd 08/13] libdiskfs: fix node initialization |
Date: |
Fri, 17 Apr 2015 22:34:07 +0200 |
* libdiskfs/node-make.c (init_node): Initialize flag `author_tracks_uid'.
---
libdiskfs/node-make.c | 1 +
1 file changed, 1 insertion(+)
diff --git a/libdiskfs/node-make.c b/libdiskfs/node-make.c
index c7ca3b0..7bc1d85 100644
--- a/libdiskfs/node-make.c
+++ b/libdiskfs/node-make.c
@@ -27,6 +27,7 @@ init_node (struct node *np, struct disknode *dn)
np->dn_set_atime = 0;
np->dn_set_mtime = 0;
np->dn_stat_dirty = 0;
+ np->author_tracks_uid = 0;
pthread_mutex_init (&np->lock, NULL);
refcounts_init (&np->refcounts, 1, 0);
--
2.1.4
- [committed hurd 01/13] ext2fs: use a seperate lock to protect nodehash, Justus Winter, 2015/04/17
- [committed hurd 03/13] isofs: use a seperate lock to protect node_cache, Justus Winter, 2015/04/17
- [committed hurd 04/13] tmpfs: use a seperate lock to protect all_nodes, Justus Winter, 2015/04/17
- [committed hurd 06/13] libdiskfs: make struct node more compact, Justus Winter, 2015/04/17
- [committed hurd 07/13] libdiskfs: drop unused fields from struct node, Justus Winter, 2015/04/17
- [committed hurd 02/13] fatfs: use a seperate lock to protect nodehash, Justus Winter, 2015/04/17
- [committed hurd 08/13] libdiskfs: fix node initialization,
Justus Winter <=
- [committed hurd 09/13] libdiskfs: declare all inline functions as `extern inline', Justus Winter, 2015/04/17
- [committed hurd 05/13] libdiskfs: lock-less reference counting of nodes, Justus Winter, 2015/04/17
- [committed hurd 11/13] libdiskfs: implement a node cache, Justus Winter, 2015/04/17
- [committed hurd 10/13] ext2fs: use fat nodes, Justus Winter, 2015/04/17
- [committed hurd 12/13] isofs: port to libdiskfs' node cache, Justus Winter, 2015/04/17
- [committed hurd 13/13] fatfs: port to libdiskfs' node cache, Justus Winter, 2015/04/17