Skip to content

Commit

Permalink
---
Browse files Browse the repository at this point in the history
yaml
---
r: 42966
b: refs/heads/master
c: 6b39bb6
h: refs/heads/master
v: v3
  • Loading branch information
Paul Clements authored and Linus Torvalds committed Dec 7, 2006
1 parent fd150b6 commit 9265077
Show file tree
Hide file tree
Showing 3 changed files with 18 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: 792908225064b1d841a8990b9d1d1cfc4e0e5bb2
refs/heads/master: 6b39bb6548d60b9a18826134b5ccd5c3cef85fe2
16 changes: 16 additions & 0 deletions trunk/drivers/block/nbd.c
Original file line number Diff line number Diff line change
Expand Up @@ -355,14 +355,30 @@ static struct request *nbd_read_stat(struct nbd_device *lo)
return NULL;
}

static ssize_t pid_show(struct gendisk *disk, char *page)
{
return sprintf(page, "%ld\n",
(long) ((struct nbd_device *)disk->private_data)->pid);
}

static struct disk_attribute pid_attr = {
.attr = { .name = "pid", .mode = S_IRUGO },
.show = pid_show,
};

static void nbd_do_it(struct nbd_device *lo)
{
struct request *req;

BUG_ON(lo->magic != LO_MAGIC);

lo->pid = current->pid;
sysfs_create_file(&lo->disk->kobj, &pid_attr.attr);

while ((req = nbd_read_stat(lo)) != NULL)
nbd_end_request(req);

sysfs_remove_file(&lo->disk->kobj, &pid_attr.attr);
return;
}

Expand Down
1 change: 1 addition & 0 deletions trunk/include/linux/nbd.h
Original file line number Diff line number Diff line change
Expand Up @@ -64,6 +64,7 @@ struct nbd_device {
struct gendisk *disk;
int blksize;
u64 bytesize;
pid_t pid; /* pid of nbd-client, if attached */
};

#endif
Expand Down

0 comments on commit 9265077

Please sign in to comment.