Deleted Added
full compact
dsl_pool.h (321523) dsl_pool.h (321553)
1/*
2 * CDDL HEADER START
3 *
4 * The contents of this file are subject to the terms of the
5 * Common Development and Distribution License (the "License").
6 * You may not use this file except in compliance with the License.
7 *
8 * You can obtain a copy of the license at usr/src/OPENSOLARIS.LICENSE

--- 6 unchanged lines hidden (view full) ---

15 * If applicable, add the following below this CDDL HEADER, with the
16 * fields enclosed by brackets "[]" replaced with your own identifying
17 * information: Portions Copyright [yyyy] [name of copyright owner]
18 *
19 * CDDL HEADER END
20 */
21/*
22 * Copyright (c) 2005, 2010, Oracle and/or its affiliates. All rights reserved.
1/*
2 * CDDL HEADER START
3 *
4 * The contents of this file are subject to the terms of the
5 * Common Development and Distribution License (the "License").
6 * You may not use this file except in compliance with the License.
7 *
8 * You can obtain a copy of the license at usr/src/OPENSOLARIS.LICENSE

--- 6 unchanged lines hidden (view full) ---

15 * If applicable, add the following below this CDDL HEADER, with the
16 * fields enclosed by brackets "[]" replaced with your own identifying
17 * information: Portions Copyright [yyyy] [name of copyright owner]
18 *
19 * CDDL HEADER END
20 */
21/*
22 * Copyright (c) 2005, 2010, Oracle and/or its affiliates. All rights reserved.
23 * Copyright (c) 2013 by Delphix. All rights reserved.
23 * Copyright (c) 2013, 2017 by Delphix. All rights reserved.
24 * Copyright 2016 Nexenta Systems, Inc. All rights reserved.
25 */
26
27#ifndef _SYS_DSL_POOL_H
28#define _SYS_DSL_POOL_H
29
30#include <sys/spa.h>
31#include <sys/txg.h>

--- 84 unchanged lines hidden (view full) ---

116 hrtime_t dp_last_wakeup;
117
118 /* Has its own locking */
119 tx_state_t dp_tx;
120 txg_list_t dp_dirty_datasets;
121 txg_list_t dp_dirty_zilogs;
122 txg_list_t dp_dirty_dirs;
123 txg_list_t dp_sync_tasks;
24 * Copyright 2016 Nexenta Systems, Inc. All rights reserved.
25 */
26
27#ifndef _SYS_DSL_POOL_H
28#define _SYS_DSL_POOL_H
29
30#include <sys/spa.h>
31#include <sys/txg.h>

--- 84 unchanged lines hidden (view full) ---

116 hrtime_t dp_last_wakeup;
117
118 /* Has its own locking */
119 tx_state_t dp_tx;
120 txg_list_t dp_dirty_datasets;
121 txg_list_t dp_dirty_zilogs;
122 txg_list_t dp_dirty_dirs;
123 txg_list_t dp_sync_tasks;
124 taskq_t *dp_sync_taskq;
124
125 /*
126 * Protects administrative changes (properties, namespace)
127 *
128 * It is only held for write in syncing context. Therefore
129 * syncing context does not need to ever have it for read, since
130 * nobody else could possibly have it for write.
131 */

--- 47 unchanged lines hidden ---
125
126 /*
127 * Protects administrative changes (properties, namespace)
128 *
129 * It is only held for write in syncing context. Therefore
130 * syncing context does not need to ever have it for read, since
131 * nobody else could possibly have it for write.
132 */

--- 47 unchanged lines hidden ---