All of lore.kernel.org
 help / color / mirror / Atom feed
From: Brian Gerst <bgerst@didntduck.org>
To: root@chaos.analogic.com
Cc: Linux kernel <linux-kernel@vger.kernel.org>
Subject: Re: Module open() problems, Linux 2.4.0
Date: Thu, 09 Nov 2000 14:27:01 -0500	[thread overview]
Message-ID: <3A0AFA85.27F38728@didntduck.org> (raw)
In-Reply-To: <Pine.LNX.3.95.1001109135504.14703A-100000@chaos.analogic.com>

"Richard B. Johnson" wrote:
> 
> `lsmod` shows that a device is open twice when using Linux-2.4.0-test9
> when, in fact, it has been opened only once.
> 
> lsmod is version 2.3.15, the latest-and-greatest.
> 
> Here are the open/close routines for a module.
> 
> /*-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=*/
> /*
>  *  Open the device.
>  */
> static int device_open(struct inode *inp, struct file *fp)
> {
>     DEB(printk("%s open\n", info->dev));
>     MOD_INC_USE_COUNT;                         /* Increment usage count */
>     return 0;
> }
> /*-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=*/
> /*
>  *  Close the device.
>  */
> static int device_close(struct inode *inp, struct file *fp)
> {
>     DEB(printk("%s close\n", info->dev));
>     MOD_DEC_USE_COUNT;                         /* Decrement usage count */
>     return 0;
> }
> 
> When the module is closed, the use-count goes to zero as expected.
> However, a single open() causes the use-count to be 2.

This is harmless.  It is caused by a try_inc_mod_count(module) in the
function calling device_open(), which is the proper way for module
locking to be handled when not holding the BKL.  You can keep the
MOD_INC_USE_COUNT in the device driver for compatability with 2.2.

--

				Brian Gerst
-
To unsubscribe from this list: send the line "unsubscribe linux-kernel" in
the body of a message to majordomo@vger.kernel.org
Please read the FAQ at http://www.tux.org/lkml/

  reply	other threads:[~2000-11-09 19:29 UTC|newest]

Thread overview: 10+ messages / expand[flat|nested]  mbox.gz  Atom feed  top
2000-11-09 19:00 Module open() problems, Linux 2.4.0 Richard B. Johnson
2000-11-09 19:27 ` Brian Gerst [this message]
2000-11-09 20:12   ` Richard B. Johnson
2000-11-09 20:22     ` Christoph Hellwig
2000-11-09 20:27     ` Jeff Garzik
2000-11-09 20:57       ` Richard B. Johnson
2000-11-09 21:02         ` Jeff Garzik
2000-11-09 21:05         ` Christoph Hellwig
2000-11-10  0:01           ` Olaf Titz
2000-11-09 20:27     ` Brian Gerst

Reply instructions:

You may reply publicly to this message via plain-text email
using any one of the following methods:

* Save the following mbox file, import it into your mail client,
  and reply-to-all from there: mbox

  Avoid top-posting and favor interleaved quoting:
  https://en.wikipedia.org/wiki/Posting_style#Interleaved_style

* Reply using the --to, --cc, and --in-reply-to
  switches of git-send-email(1):

  git send-email \
    --in-reply-to=3A0AFA85.27F38728@didntduck.org \
    --to=bgerst@didntduck.org \
    --cc=linux-kernel@vger.kernel.org \
    --cc=root@chaos.analogic.com \
    /path/to/YOUR_REPLY

  https://kernel.org/pub/software/scm/git/docs/git-send-email.html

* If your mail client supports setting the In-Reply-To header
  via mailto: links, try the mailto: link
Be sure your reply has a Subject: header at the top and a blank line before the message body.
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.