Skip to content

Commit

Permalink
---
Browse files Browse the repository at this point in the history
yaml
---
r: 131799
b: refs/heads/master
c: 9e8c0bc
h: refs/heads/master
i:
  131797: 2f20e8e
  131795: 0a126af
  131791: 6cf492a
v: v3
  • Loading branch information
Márton Németh authored and Jens Axboe committed Feb 26, 2009
1 parent 1e8763f commit cbbcdf7
Show file tree
Hide file tree
Showing 2 changed files with 17 additions and 1 deletion.
2 changes: 1 addition & 1 deletion [refs]
Original file line number Diff line number Diff line change
@@ -1,2 +1,2 @@
---
refs/heads/master: b2bf96833c5782befc3e7700f791fde754a47b01
refs/heads/master: 9e8c0bccdc944bd09361672d47660810c027bcaa
16 changes: 16 additions & 0 deletions trunk/block/genhd.c
Original file line number Diff line number Diff line change
Expand Up @@ -256,6 +256,22 @@ void blkdev_show(struct seq_file *seqf, off_t offset)
}
#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;
Expand Down

0 comments on commit cbbcdf7

Please sign in to comment.