* [PATCH][IBMVETH]: Use single_open instead of manual manipulations.
@ 2008-02-18 10:55 Pavel Emelyanov
2008-03-05 11:16 ` Jeff Garzik
2008-03-26 4:36 ` Jeff Garzik
0 siblings, 2 replies; 6+ messages in thread
From: Pavel Emelyanov @ 2008-02-18 10:55 UTC (permalink / raw)
To: Jeff Garzik; +Cc: Linux Netdev List, Brian King
The code opening proc entry for each device makes the
same thing, as the single_open does, so remove the
unneeded code.
Signed-off-by: Pavel Emelyanov <xemul@openvz.org>
---
diff --git a/drivers/net/ibmveth.c b/drivers/net/ibmveth.c
index 57772be..bb31e09 100644
--- a/drivers/net/ibmveth.c
+++ b/drivers/net/ibmveth.c
@@ -1259,26 +1259,7 @@ static void ibmveth_proc_unregister_driver(void)
remove_proc_entry(IBMVETH_PROC_DIR, init_net.proc_net);
}
-static void *ibmveth_seq_start(struct seq_file *seq, loff_t *pos)
-{
- if (*pos == 0) {
- return (void *)1;
- } else {
- return NULL;
- }
-}
-
-static void *ibmveth_seq_next(struct seq_file *seq, void *v, loff_t *pos)
-{
- ++*pos;
- return NULL;
-}
-
-static void ibmveth_seq_stop(struct seq_file *seq, void *v)
-{
-}
-
-static int ibmveth_seq_show(struct seq_file *seq, void *v)
+static int ibmveth_show(struct seq_file *seq, void *v)
{
struct ibmveth_adapter *adapter = seq->private;
char *current_mac = ((char*) &adapter->netdev->dev_addr);
@@ -1302,27 +1283,10 @@ static int ibmveth_seq_show(struct seq_file *seq, void *v)
return 0;
}
-static struct seq_operations ibmveth_seq_ops = {
- .start = ibmveth_seq_start,
- .next = ibmveth_seq_next,
- .stop = ibmveth_seq_stop,
- .show = ibmveth_seq_show,
-};
static int ibmveth_proc_open(struct inode *inode, struct file *file)
{
- struct seq_file *seq;
- struct proc_dir_entry *proc;
- int rc;
-
- rc = seq_open(file, &ibmveth_seq_ops);
- if (!rc) {
- /* recover the pointer buried in proc_dir_entry data */
- seq = file->private_data;
- proc = PDE(inode);
- seq->private = proc->data;
- }
- return rc;
+ return single_open(file, ibmveth_show, PDE(inode)->data);
}
static const struct file_operations ibmveth_proc_fops = {
@@ -1330,7 +1294,7 @@ static const struct file_operations ibmveth_proc_fops = {
.open = ibmveth_proc_open,
.read = seq_read,
.llseek = seq_lseek,
- .release = seq_release,
+ .release = single_release,
};
static void ibmveth_proc_register_adapter(struct ibmveth_adapter *adapter)
^ permalink raw reply related [flat|nested] 6+ messages in thread
* Re: [PATCH][IBMVETH]: Use single_open instead of manual manipulations.
2008-02-18 10:55 [PATCH][IBMVETH]: Use single_open instead of manual manipulations Pavel Emelyanov
@ 2008-03-05 11:16 ` Jeff Garzik
2008-03-05 11:25 ` Pavel Emelyanov
2008-03-26 4:36 ` Jeff Garzik
1 sibling, 1 reply; 6+ messages in thread
From: Jeff Garzik @ 2008-03-05 11:16 UTC (permalink / raw)
To: Pavel Emelyanov; +Cc: Linux Netdev List, Brian King
Pavel Emelyanov wrote:
> The code opening proc entry for each device makes the
> same thing, as the single_open does, so remove the
> unneeded code.
>
> Signed-off-by: Pavel Emelyanov <xemul@openvz.org>
ACK from ibmveth maintainer?
^ permalink raw reply [flat|nested] 6+ messages in thread
* Re: [PATCH][IBMVETH]: Use single_open instead of manual manipulations.
2008-03-05 11:16 ` Jeff Garzik
@ 2008-03-05 11:25 ` Pavel Emelyanov
2008-03-05 14:59 ` Brian King
0 siblings, 1 reply; 6+ messages in thread
From: Pavel Emelyanov @ 2008-03-05 11:25 UTC (permalink / raw)
To: Jeff Garzik; +Cc: Linux Netdev List, Brian King
Jeff Garzik wrote:
> Pavel Emelyanov wrote:
>> The code opening proc entry for each device makes the
>> same thing, as the single_open does, so remove the
>> unneeded code.
>>
>> Signed-off-by: Pavel Emelyanov <xemul@openvz.org>
>
> ACK from ibmveth maintainer?
>
There's no such in MAINTAINERS file. Git log since 2.6.22 shows
Brian King as main contributor, he is in Cc and no reply from him.
^ permalink raw reply [flat|nested] 6+ messages in thread
* Re: [PATCH][IBMVETH]: Use single_open instead of manual manipulations.
2008-03-05 11:25 ` Pavel Emelyanov
@ 2008-03-05 14:59 ` Brian King
2008-03-13 9:52 ` Pavel Emelyanov
0 siblings, 1 reply; 6+ messages in thread
From: Brian King @ 2008-03-05 14:59 UTC (permalink / raw)
To: Pavel Emelyanov; +Cc: Jeff Garzik, Linux Netdev List
Pavel Emelyanov wrote:
> Jeff Garzik wrote:
>> Pavel Emelyanov wrote:
>>> The code opening proc entry for each device makes the
>>> same thing, as the single_open does, so remove the
>>> unneeded code.
>>>
>>> Signed-off-by: Pavel Emelyanov <xemul@openvz.org>
>> ACK from ibmveth maintainer?
>>
>
> There's no such in MAINTAINERS file. Git log since 2.6.22 shows
> Brian King as main contributor, he is in Cc and no reply from him.
Acked-by: Brian King <brking@linux.vnet.ibm.com>
--
Brian King
Linux on Power Virtualization
IBM Linux Technology Center
^ permalink raw reply [flat|nested] 6+ messages in thread
* Re: [PATCH][IBMVETH]: Use single_open instead of manual manipulations.
2008-03-05 14:59 ` Brian King
@ 2008-03-13 9:52 ` Pavel Emelyanov
0 siblings, 0 replies; 6+ messages in thread
From: Pavel Emelyanov @ 2008-03-13 9:52 UTC (permalink / raw)
To: Jeff Garzik; +Cc: brking, Linux Netdev List
Brian King wrote:
> Pavel Emelyanov wrote:
>> Jeff Garzik wrote:
>>> Pavel Emelyanov wrote:
>>>> The code opening proc entry for each device makes the
>>>> same thing, as the single_open does, so remove the
>>>> unneeded code.
>>>>
>>>> Signed-off-by: Pavel Emelyanov <xemul@openvz.org>
>>> ACK from ibmveth maintainer?
>>>
>> There's no such in MAINTAINERS file. Git log since 2.6.22 shows
>> Brian King as main contributor, he is in Cc and no reply from him.
>
> Acked-by: Brian King <brking@linux.vnet.ibm.com>
>
Jeff, what are your plans about this patch?
Thanks,
Pavel
^ permalink raw reply [flat|nested] 6+ messages in thread
* Re: [PATCH][IBMVETH]: Use single_open instead of manual manipulations.
2008-02-18 10:55 [PATCH][IBMVETH]: Use single_open instead of manual manipulations Pavel Emelyanov
2008-03-05 11:16 ` Jeff Garzik
@ 2008-03-26 4:36 ` Jeff Garzik
1 sibling, 0 replies; 6+ messages in thread
From: Jeff Garzik @ 2008-03-26 4:36 UTC (permalink / raw)
To: Pavel Emelyanov; +Cc: Linux Netdev List, Brian King
Pavel Emelyanov wrote:
> The code opening proc entry for each device makes the
> same thing, as the single_open does, so remove the
> unneeded code.
>
> Signed-off-by: Pavel Emelyanov <xemul@openvz.org>
>
> ---
applied
^ permalink raw reply [flat|nested] 6+ messages in thread
end of thread, other threads:[~2008-03-26 4:36 UTC | newest]
Thread overview: 6+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2008-02-18 10:55 [PATCH][IBMVETH]: Use single_open instead of manual manipulations Pavel Emelyanov
2008-03-05 11:16 ` Jeff Garzik
2008-03-05 11:25 ` Pavel Emelyanov
2008-03-05 14:59 ` Brian King
2008-03-13 9:52 ` Pavel Emelyanov
2008-03-26 4:36 ` Jeff Garzik
This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox;
as well as URLs for NNTP newsgroup(s).