diff options
author | Brian Behlendorf <[email protected]> | 2011-02-08 10:39:06 -0800 |
---|---|---|
committer | Brian Behlendorf <[email protected]> | 2011-02-10 09:27:21 -0800 |
commit | 6149f4c45fc905761a6f636ea9e14ff76ce6c842 (patch) | |
tree | 3a29784153ef7e69e02b885ba85befb2b1930a59 /include/sys/dmu.h | |
parent | eb28321e2d8952290db7dceb66d7761d528788e3 (diff) |
Remove dmu_write_pages() support
For the moment we do not use dmu_write_pages() to write pages
directly in to a dmu object. It may be required at some point
in the future, but for now is simplest and cleanest to drop it.
It can be easily readded if/when needed.
Diffstat (limited to 'include/sys/dmu.h')
-rw-r--r-- | include/sys/dmu.h | 4 |
1 files changed, 0 insertions, 4 deletions
diff --git a/include/sys/dmu.h b/include/sys/dmu.h index a8edfdbf8..7040b6740 100644 --- a/include/sys/dmu.h +++ b/include/sys/dmu.h @@ -522,10 +522,6 @@ int dmu_write_uio(objset_t *os, uint64_t object, struct uio *uio, uint64_t size, dmu_tx_t *tx); int dmu_write_uio_dbuf(dmu_buf_t *zdb, struct uio *uio, uint64_t size, dmu_tx_t *tx); -#ifdef HAVE_ZPL -int dmu_write_pages(objset_t *os, uint64_t object, uint64_t offset, - uint64_t size, struct page *pp, dmu_tx_t *tx); -#endif #endif struct arc_buf *dmu_request_arcbuf(dmu_buf_t *handle, int size); void dmu_return_arcbuf(struct arc_buf *buf); |