diff options
-rw-r--r-- | drivers/block/aoe/aoechr.c | 7 |
1 files changed, 7 insertions, 0 deletions
diff --git a/drivers/block/aoe/aoechr.c b/drivers/block/aoe/aoechr.c index 200efc4d2c1e..19888354188f 100644 --- a/drivers/block/aoe/aoechr.c +++ b/drivers/block/aoe/aoechr.c | |||
@@ -266,6 +266,11 @@ static const struct file_operations aoe_fops = { | |||
266 | .owner = THIS_MODULE, | 266 | .owner = THIS_MODULE, |
267 | }; | 267 | }; |
268 | 268 | ||
269 | static char *aoe_nodename(struct device *dev) | ||
270 | { | ||
271 | return kasprintf(GFP_KERNEL, "etherd/%s", dev_name(dev)); | ||
272 | } | ||
273 | |||
269 | int __init | 274 | int __init |
270 | aoechr_init(void) | 275 | aoechr_init(void) |
271 | { | 276 | { |
@@ -283,6 +288,8 @@ aoechr_init(void) | |||
283 | unregister_chrdev(AOE_MAJOR, "aoechr"); | 288 | unregister_chrdev(AOE_MAJOR, "aoechr"); |
284 | return PTR_ERR(aoe_class); | 289 | return PTR_ERR(aoe_class); |
285 | } | 290 | } |
291 | aoe_class->nodename = aoe_nodename; | ||
292 | |||
286 | for (i = 0; i < ARRAY_SIZE(chardevs); ++i) | 293 | for (i = 0; i < ARRAY_SIZE(chardevs); ++i) |
287 | device_create(aoe_class, NULL, | 294 | device_create(aoe_class, NULL, |
288 | MKDEV(AOE_MAJOR, chardevs[i].minor), NULL, | 295 | MKDEV(AOE_MAJOR, chardevs[i].minor), NULL, |