Deleted Added
full compact
zpool_prop.c (228103) zpool_prop.c (236155)
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

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

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) 2007, 2010, Oracle and/or its affiliates. All rights reserved.
23 * Copyright 2011 Nexenta Systems, Inc. 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

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

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) 2007, 2010, Oracle and/or its affiliates. All rights reserved.
23 * Copyright 2011 Nexenta Systems, Inc. All rights reserved.
24 * Copyright (c) 2011 by Delphix. All rights reserved.
24 * Copyright (c) 2012 by Delphix. All rights reserved.
25 */
26
27#include <sys/zio.h>
28#include <sys/spa.h>
29#include <sys/zfs_acl.h>
30#include <sys/zfs_ioctl.h>
31#include <sys/fs/zfs.h>
32

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

76
77 /* readonly number properties */
78 zprop_register_number(ZPOOL_PROP_SIZE, "size", 0, PROP_READONLY,
79 ZFS_TYPE_POOL, "<size>", "SIZE");
80 zprop_register_number(ZPOOL_PROP_FREE, "free", 0, PROP_READONLY,
81 ZFS_TYPE_POOL, "<size>", "FREE");
82 zprop_register_number(ZPOOL_PROP_ALLOCATED, "allocated", 0,
83 PROP_READONLY, ZFS_TYPE_POOL, "<size>", "ALLOC");
25 */
26
27#include <sys/zio.h>
28#include <sys/spa.h>
29#include <sys/zfs_acl.h>
30#include <sys/zfs_ioctl.h>
31#include <sys/fs/zfs.h>
32

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

76
77 /* readonly number properties */
78 zprop_register_number(ZPOOL_PROP_SIZE, "size", 0, PROP_READONLY,
79 ZFS_TYPE_POOL, "<size>", "SIZE");
80 zprop_register_number(ZPOOL_PROP_FREE, "free", 0, PROP_READONLY,
81 ZFS_TYPE_POOL, "<size>", "FREE");
82 zprop_register_number(ZPOOL_PROP_ALLOCATED, "allocated", 0,
83 PROP_READONLY, ZFS_TYPE_POOL, "<size>", "ALLOC");
84 zprop_register_number(ZPOOL_PROP_EXPANDSZ, "expandsize", 0,
85 PROP_READONLY, ZFS_TYPE_POOL, "<size>", "EXPANDSZ");
84 zprop_register_number(ZPOOL_PROP_CAPACITY, "capacity", 0, PROP_READONLY,
85 ZFS_TYPE_POOL, "<size>", "CAP");
86 zprop_register_number(ZPOOL_PROP_GUID, "guid", 0, PROP_READONLY,
87 ZFS_TYPE_POOL, "<guid>", "GUID");
88 zprop_register_number(ZPOOL_PROP_HEALTH, "health", 0, PROP_READONLY,
89 ZFS_TYPE_POOL, "<state>", "HEALTH");
90 zprop_register_number(ZPOOL_PROP_DEDUPRATIO, "dedupratio", 0,
91 PROP_READONLY, ZFS_TYPE_POOL, "<1.00x or higher if deduped>",

--- 115 unchanged lines hidden ---
86 zprop_register_number(ZPOOL_PROP_CAPACITY, "capacity", 0, PROP_READONLY,
87 ZFS_TYPE_POOL, "<size>", "CAP");
88 zprop_register_number(ZPOOL_PROP_GUID, "guid", 0, PROP_READONLY,
89 ZFS_TYPE_POOL, "<guid>", "GUID");
90 zprop_register_number(ZPOOL_PROP_HEALTH, "health", 0, PROP_READONLY,
91 ZFS_TYPE_POOL, "<state>", "HEALTH");
92 zprop_register_number(ZPOOL_PROP_DEDUPRATIO, "dedupratio", 0,
93 PROP_READONLY, ZFS_TYPE_POOL, "<1.00x or higher if deduped>",

--- 115 unchanged lines hidden ---