freebsd-dev/module/zfs/unique.c
Richard Yao b8d06fca08 Switch KM_SLEEP to KM_PUSHPAGE
Differences between how paging is done on Solaris and Linux can cause
deadlocks if KM_SLEEP is used in any the following contexts.

  * The txg_sync thread
  * The zvol write/discard threads
  * The zpl_putpage() VFS callback

This is because KM_SLEEP will allow for direct reclaim which may result
in the VM calling back in to the filesystem or block layer to write out
pages.  If a lock is held over this operation the potential exists to
deadlock the system.  To ensure forward progress all memory allocations
in these contexts must us KM_PUSHPAGE which disables performing any I/O
to accomplish the memory allocation.

Previously, this behavior was acheived by setting PF_MEMALLOC on the
thread.  However, that resulted in unexpected side effects such as the
exhaustion of pages in ZONE_DMA.  This approach touchs more of the zfs
code, but it is more consistent with the right way to handle these cases
under Linux.

This is patch lays the ground work for being able to safely revert the
following commits which used PF_MEMALLOC:

  21ade34 Disable direct reclaim for z_wr_* threads
  cfc9a5c Fix zpl_writepage() deadlock
  eec8164 Fix ASSERTION(!dsl_pool_sync_context(tx->tx_pool))

Signed-off-by: Richard Yao <ryao@cs.stonybrook.edu>
Signed-off-by: Brian Behlendorf <behlendorf1@llnl.gov>
Issue #726
2012-08-27 12:01:37 -07:00

117 lines
2.6 KiB
C

/*
* CDDL HEADER START
*
* The contents of this file are subject to the terms of the
* Common Development and Distribution License (the "License").
* You may not use this file except in compliance with the License.
*
* You can obtain a copy of the license at usr/src/OPENSOLARIS.LICENSE
* or http://www.opensolaris.org/os/licensing.
* See the License for the specific language governing permissions
* and limitations under the License.
*
* When distributing Covered Code, include this CDDL HEADER in each
* file and include the License file at usr/src/OPENSOLARIS.LICENSE.
* If applicable, add the following below this CDDL HEADER, with the
* fields enclosed by brackets "[]" replaced with your own identifying
* information: Portions Copyright [yyyy] [name of copyright owner]
*
* CDDL HEADER END
*/
/*
* Copyright 2007 Sun Microsystems, Inc. All rights reserved.
* Use is subject to license terms.
*/
#include <sys/zfs_context.h>
#include <sys/avl.h>
#include <sys/unique.h>
static avl_tree_t unique_avl;
static kmutex_t unique_mtx;
typedef struct unique {
avl_node_t un_link;
uint64_t un_value;
} unique_t;
#define UNIQUE_MASK ((1ULL << UNIQUE_BITS) - 1)
static int
unique_compare(const void *a, const void *b)
{
const unique_t *una = a;
const unique_t *unb = b;
if (una->un_value < unb->un_value)
return (-1);
if (una->un_value > unb->un_value)
return (+1);
return (0);
}
void
unique_init(void)
{
avl_create(&unique_avl, unique_compare,
sizeof (unique_t), offsetof(unique_t, un_link));
mutex_init(&unique_mtx, NULL, MUTEX_DEFAULT, NULL);
}
void
unique_fini(void)
{
avl_destroy(&unique_avl);
mutex_destroy(&unique_mtx);
}
uint64_t
unique_create(void)
{
uint64_t value = unique_insert(0);
unique_remove(value);
return (value);
}
uint64_t
unique_insert(uint64_t value)
{
avl_index_t idx;
unique_t *un = kmem_alloc(sizeof (unique_t), KM_PUSHPAGE);
un->un_value = value;
mutex_enter(&unique_mtx);
while (un->un_value == 0 || un->un_value & ~UNIQUE_MASK ||
avl_find(&unique_avl, un, &idx)) {
mutex_exit(&unique_mtx);
(void) random_get_pseudo_bytes((void*)&un->un_value,
sizeof (un->un_value));
un->un_value &= UNIQUE_MASK;
mutex_enter(&unique_mtx);
}
avl_insert(&unique_avl, un, idx);
mutex_exit(&unique_mtx);
return (un->un_value);
}
void
unique_remove(uint64_t value)
{
unique_t un_tofind;
unique_t *un;
un_tofind.un_value = value;
mutex_enter(&unique_mtx);
un = avl_find(&unique_avl, &un_tofind, NULL);
if (un != NULL) {
avl_remove(&unique_avl, un);
kmem_free(un, sizeof (unique_t));
}
mutex_exit(&unique_mtx);
}