diff --git a/Documentation/zio/buffer.txt b/Documentation/zio/buffer.txt index 08b90fae8ee37009218801a70abba4106b4e87bd..aee30d8bb7a84356ccd1efa7d0c8da72d84c343e 100644 --- a/Documentation/zio/buffer.txt +++ b/Documentation/zio/buffer.txt @@ -42,8 +42,7 @@ of them are implemented in zio-buf-kmalloc.c, which may be used as reference to better understand the role of each method: struct zio_bi *(*create)(struct zio_buffer_type *zbuf, - struct zio_channel *ch, - fmode_t f_flags); + struct zio_channel *ch); void (*destroy)(struct zio_bi *bi); The create() operation allocates and initializes an instance of the @@ -52,7 +51,9 @@ first time. The operation returns a zio buffer instance (zio_bi), which is the generic descriptor of a buffer instance. ZIO handles only zio_bi, so complex buffer structures must contain the zio_bi structure and use container_of() to access the private enclosing -structure. +structure. create() can use default attributes of its buffer type at +creation time; a copy for this specific instance is created by +zio-core after the function returns. destroy() deallocates a buffer instance. ZIO calls destroy() when the channel is unregistered from ZIO or when the user assigns a different diff --git a/buffers/zio-buf-kmalloc.c b/buffers/zio-buf-kmalloc.c index 8b7009ab600554dc9de54db53ebd0d8496ea9c5f..0155e2923c92aa83ab705e1272ab8c352d7bbd9b 100644 --- a/buffers/zio-buf-kmalloc.c +++ b/buffers/zio-buf-kmalloc.c @@ -16,7 +16,6 @@ #include <linux/fs.h> #include <linux/spinlock.h> #include <linux/types.h> -#include <linux/uaccess.h> #include <linux/zio.h> #include <linux/zio-buffer.h> @@ -202,7 +201,7 @@ out_unlock: /* Create is called by zio for each channel electing to use this buffer type */ static struct zio_bi *zbk_create(struct zio_buffer_type *zbuf, - struct zio_channel *chan, fmode_t f_flags) + struct zio_channel *chan) { struct zbk_instance *zbki; diff --git a/include/linux/zio-buffer.h b/include/linux/zio-buffer.h index 98b24e482155451edbb2de11384e9c066e9bdf82..df987d13f0d16c5b205add7a80a5d5819c620a30 100644 --- a/include/linux/zio-buffer.h +++ b/include/linux/zio-buffer.h @@ -124,8 +124,7 @@ struct zio_buffer_operations { struct zio_block * (*retr_block) (struct zio_bi *bi); struct zio_bi * (*create)(struct zio_buffer_type *zbuf, - struct zio_channel *chan, - fmode_t f_flags); + struct zio_channel *chan); void (*destroy)(struct zio_bi *bi); }; diff --git a/zio-cdev.c b/zio-cdev.c index b6295ef40ef80749d16c0165ebc1584ca2d50c21..ab970d1040430a53b3121c513504c0e342af1e56 100644 --- a/zio-cdev.c +++ b/zio-cdev.c @@ -124,7 +124,7 @@ static int zio_f_open(struct inode *ino, struct file *f) /* if there is no instance, then create a new one */ if (!chan->bi) - chan->bi = zbuf->b_op->create(zbuf, chan, FMODE_READ); + chan->bi = zbuf->b_op->create(zbuf, chan); priv->chan = chan; /* even number is control, odd number is data */ diff --git a/zio-sys.c b/zio-sys.c index bd0d9ea14dce58862d91e2006bf642603e2592d9..398f06395a90fd6b3d55e4e0f6fafac4ce38039a 100644 --- a/zio-sys.c +++ b/zio-sys.c @@ -1005,7 +1005,7 @@ static struct zio_bi *__bi_create_and_init(struct zio_buffer_type *zbuf, pr_debug("%s\n", __func__); /* Create buffer */ - bi = zbuf->b_op->create(zbuf, chan, FMODE_READ); + bi = zbuf->b_op->create(zbuf, chan); if (IS_ERR(bi)) { pr_err("ZIO %s: can't create buffer, error %ld\n", __func__, PTR_ERR(bi));