* [PATCH] block: add documentation for register_blkdev()
@ 2009-02-20 6:04 Németh Márton
2009-02-20 7:12 ` Jens Axboe
0 siblings, 1 reply; 2+ messages in thread
From: Németh Márton @ 2009-02-20 6:04 UTC (permalink / raw)
To: Jens Axboe, Greg Kroah-Hartman, LKML; +Cc: Al Viro, ltp-list
From: Márton Németh <nm127@freemail.hu>
Add documentation for register_blkdev() function and for the parameters.
Signed-off-by: Márton Németh <nm127@freemail.hu>
Cc: Greg Kroah-Hartman <gregkh@suse.de>
---
--- linux-2.6.29-rc5/block/genhd.c.orig 2009-02-14 18:36:39.000000000 +0100
+++ linux-2.6.29-rc5/block/genhd.c 2009-02-20 06:53:56.000000000 +0100
@@ -256,6 +256,22 @@ void blkdev_show(struct seq_file *seqf,
}
#endif /* CONFIG_PROC_FS */
+/**
+ * register_blkdev - register a new block device
+ *
+ * @major: the requested major device number [1..255]. If @major=0, try to
+ * allocate any unused major number.
+ * @name: the name of the new block device as a zero terminated string
+ *
+ * The @name must be unique within the system.
+ *
+ * The return value depends on the @major input parameter.
+ * - if a major device number was requested in range [1..255] then the
+ * function returns zero on success, or a negative error code
+ * - if any unused major number was requested with @major=0 parameter
+ * then the return value is the allocated major number in range
+ * [1..255] or a negative error code otherwise
+ */
int register_blkdev(unsigned int major, const char *name)
{
struct blk_major_name **n, *p;
^ permalink raw reply [flat|nested] 2+ messages in thread
* Re: [PATCH] block: add documentation for register_blkdev()
2009-02-20 6:04 [PATCH] block: add documentation for register_blkdev() Németh Márton
@ 2009-02-20 7:12 ` Jens Axboe
0 siblings, 0 replies; 2+ messages in thread
From: Jens Axboe @ 2009-02-20 7:12 UTC (permalink / raw)
To: Németh Márton; +Cc: Greg Kroah-Hartman, LKML, Al Viro, ltp-list
On Fri, Feb 20 2009, Németh Márton wrote:
> From: Márton Németh <nm127@freemail.hu>
>
> Add documentation for register_blkdev() function and for the parameters.
>
> Signed-off-by: Márton Németh <nm127@freemail.hu>
> Cc: Greg Kroah-Hartman <gregkh@suse.de>
Thanks Márton, applied.
>
> ---
> --- linux-2.6.29-rc5/block/genhd.c.orig 2009-02-14 18:36:39.000000000 +0100
> +++ linux-2.6.29-rc5/block/genhd.c 2009-02-20 06:53:56.000000000 +0100
> @@ -256,6 +256,22 @@ void blkdev_show(struct seq_file *seqf,
> }
> #endif /* CONFIG_PROC_FS */
>
> +/**
> + * register_blkdev - register a new block device
> + *
> + * @major: the requested major device number [1..255]. If @major=0, try to
> + * allocate any unused major number.
> + * @name: the name of the new block device as a zero terminated string
> + *
> + * The @name must be unique within the system.
> + *
> + * The return value depends on the @major input parameter.
> + * - if a major device number was requested in range [1..255] then the
> + * function returns zero on success, or a negative error code
> + * - if any unused major number was requested with @major=0 parameter
> + * then the return value is the allocated major number in range
> + * [1..255] or a negative error code otherwise
> + */
> int register_blkdev(unsigned int major, const char *name)
> {
> struct blk_major_name **n, *p;
> --
> To unsubscribe from this list: send the line "unsubscribe linux-kernel" in
> the body of a message to majordomo@vger.kernel.org
> More majordomo info at http://vger.kernel.org/majordomo-info.html
> Please read the FAQ at http://www.tux.org/lkml/
--
Jens Axboe
^ permalink raw reply [flat|nested] 2+ messages in thread
end of thread, other threads:[~2009-02-20 7:14 UTC | newest]
Thread overview: 2+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2009-02-20 6:04 [PATCH] block: add documentation for register_blkdev() Németh Márton
2009-02-20 7:12 ` Jens Axboe
This is an external index of several public inboxes,
see mirroring instructions on how to clone and mirror
all data and code used by this external index.