1fa9e4066Sahrens /* 2fa9e4066Sahrens * CDDL HEADER START 3fa9e4066Sahrens * 4fa9e4066Sahrens * The contents of this file are subject to the terms of the 599653d4eSeschrock * Common Development and Distribution License (the "License"). 699653d4eSeschrock * You may not use this file except in compliance with the License. 7fa9e4066Sahrens * 8fa9e4066Sahrens * You can obtain a copy of the license at usr/src/OPENSOLARIS.LICENSE 9fa9e4066Sahrens * or http://www.opensolaris.org/os/licensing. 10fa9e4066Sahrens * See the License for the specific language governing permissions 11fa9e4066Sahrens * and limitations under the License. 12fa9e4066Sahrens * 13fa9e4066Sahrens * When distributing Covered Code, include this CDDL HEADER in each 14fa9e4066Sahrens * file and include the License file at usr/src/OPENSOLARIS.LICENSE. 15fa9e4066Sahrens * If applicable, add the following below this CDDL HEADER, with the 16fa9e4066Sahrens * fields enclosed by brackets "[]" replaced with your own identifying 17fa9e4066Sahrens * information: Portions Copyright [yyyy] [name of copyright owner] 18fa9e4066Sahrens * 19fa9e4066Sahrens * CDDL HEADER END 20fa9e4066Sahrens */ 21*43d68d68SYuri Pankov 22fa9e4066Sahrens /* 23ae1726b6SChris Gerhard * Copyright 2009 Sun Microsystems, Inc. All rights reserved. 24fa9e4066Sahrens * Use is subject to license terms. 25*43d68d68SYuri Pankov * Copyright 2013 Nexenta Systems, Inc. All rights reserved. 26fa9e4066Sahrens */ 27fa9e4066Sahrens 28fa9e4066Sahrens #ifndef ZFS_ITER_H 29fa9e4066Sahrens #define ZFS_ITER_H 30fa9e4066Sahrens 31fa9e4066Sahrens #ifdef __cplusplus 32fa9e4066Sahrens extern "C" { 33fa9e4066Sahrens #endif 34fa9e4066Sahrens 35b6825278Ssjelinek typedef struct zfs_sort_column { 36b6825278Ssjelinek struct zfs_sort_column *sc_next; 37b6825278Ssjelinek struct zfs_sort_column *sc_last; 38b6825278Ssjelinek zfs_prop_t sc_prop; 39e9dbad6fSeschrock char *sc_user_prop; 40b6825278Ssjelinek boolean_t sc_reverse; 41b6825278Ssjelinek } zfs_sort_column_t; 42b6825278Ssjelinek 43d5b5bb25SRich Morris #define ZFS_ITER_RECURSE (1 << 0) 44d5b5bb25SRich Morris #define ZFS_ITER_ARGS_CAN_BE_PATHS (1 << 1) 45d5b5bb25SRich Morris #define ZFS_ITER_PROP_LISTSNAPS (1 << 2) 46ae1726b6SChris Gerhard #define ZFS_ITER_DEPTH_LIMIT (1 << 3) 4792241e0bSTom Erickson #define ZFS_ITER_RECVD_PROPS (1 << 4) 48*43d68d68SYuri Pankov #define ZFS_ITER_LITERAL_PROPS (1 << 5) 49d5b5bb25SRich Morris 50d5b5bb25SRich Morris int zfs_for_each(int, char **, int options, zfs_type_t, 51ae1726b6SChris Gerhard zfs_sort_column_t *, zprop_list_t **, int, zfs_iter_f, void *); 52e9dbad6fSeschrock int zfs_add_sort_column(zfs_sort_column_t **, const char *, boolean_t); 53b6825278Ssjelinek void zfs_free_sort_columns(zfs_sort_column_t *); 54fa9e4066Sahrens 55fa9e4066Sahrens #ifdef __cplusplus 56fa9e4066Sahrens } 57fa9e4066Sahrens #endif 58fa9e4066Sahrens 59fa9e4066Sahrens #endif /* ZFS_ITER_H */ 60