linux-fsdevel.vger.kernel.org archive mirror
 help / color / mirror / Atom feed
* [PATCH v1 1/1] isofs: Use *-y instead of *-objs in Makefile
@ 2024-05-08 15:21 Andy Shevchenko
  2024-05-09 16:10 ` Jan Kara
  0 siblings, 1 reply; 2+ messages in thread
From: Andy Shevchenko @ 2024-05-08 15:21 UTC (permalink / raw)
  To: Andy Shevchenko, linux-fsdevel, linux-kernel; +Cc: Jan Kara

*-objs suffix is reserved rather for (user-space) host programs while
usually *-y suffix is used for kernel drivers (although *-objs works
for that purpose for now).

Let's correct the old usages of *-objs in Makefiles.

Signed-off-by: Andy Shevchenko <andriy.shevchenko@linux.intel.com>
---

Note, the original approach is weirdest from the existing.
Only a few drivers use this (-objs-y) one most likely by mistake.

 fs/isofs/Makefile | 7 +++----
 1 file changed, 3 insertions(+), 4 deletions(-)

diff --git a/fs/isofs/Makefile b/fs/isofs/Makefile
index 6498fd2b0f60..b25bc542a22b 100644
--- a/fs/isofs/Makefile
+++ b/fs/isofs/Makefile
@@ -5,7 +5,6 @@
 
 obj-$(CONFIG_ISO9660_FS) += isofs.o
 
-isofs-objs-y 			:= namei.o inode.o dir.o util.o rock.o export.o
-isofs-objs-$(CONFIG_JOLIET)	+= joliet.o
-isofs-objs-$(CONFIG_ZISOFS)	+= compress.o
-isofs-objs			:= $(isofs-objs-y)
+isofs-y 		:= namei.o inode.o dir.o util.o rock.o export.o
+isofs-$(CONFIG_JOLIET)	+= joliet.o
+isofs-$(CONFIG_ZISOFS)	+= compress.o
-- 
2.43.0.rc1.1336.g36b5255a03ac


^ permalink raw reply related	[flat|nested] 2+ messages in thread

* Re: [PATCH v1 1/1] isofs: Use *-y instead of *-objs in Makefile
  2024-05-08 15:21 [PATCH v1 1/1] isofs: Use *-y instead of *-objs in Makefile Andy Shevchenko
@ 2024-05-09 16:10 ` Jan Kara
  0 siblings, 0 replies; 2+ messages in thread
From: Jan Kara @ 2024-05-09 16:10 UTC (permalink / raw)
  To: Andy Shevchenko; +Cc: linux-fsdevel, linux-kernel, Jan Kara

On Wed 08-05-24 18:21:11, Andy Shevchenko wrote:
> *-objs suffix is reserved rather for (user-space) host programs while
> usually *-y suffix is used for kernel drivers (although *-objs works
> for that purpose for now).
> 
> Let's correct the old usages of *-objs in Makefiles.
> 
> Signed-off-by: Andy Shevchenko <andriy.shevchenko@linux.intel.com>

Thanks! Added to my tree.

								Honza

> ---
> 
> Note, the original approach is weirdest from the existing.
> Only a few drivers use this (-objs-y) one most likely by mistake.
> 
>  fs/isofs/Makefile | 7 +++----
>  1 file changed, 3 insertions(+), 4 deletions(-)
> 
> diff --git a/fs/isofs/Makefile b/fs/isofs/Makefile
> index 6498fd2b0f60..b25bc542a22b 100644
> --- a/fs/isofs/Makefile
> +++ b/fs/isofs/Makefile
> @@ -5,7 +5,6 @@
>  
>  obj-$(CONFIG_ISO9660_FS) += isofs.o
>  
> -isofs-objs-y 			:= namei.o inode.o dir.o util.o rock.o export.o
> -isofs-objs-$(CONFIG_JOLIET)	+= joliet.o
> -isofs-objs-$(CONFIG_ZISOFS)	+= compress.o
> -isofs-objs			:= $(isofs-objs-y)
> +isofs-y 		:= namei.o inode.o dir.o util.o rock.o export.o
> +isofs-$(CONFIG_JOLIET)	+= joliet.o
> +isofs-$(CONFIG_ZISOFS)	+= compress.o
> -- 
> 2.43.0.rc1.1336.g36b5255a03ac
> 
-- 
Jan Kara <jack@suse.com>
SUSE Labs, CR

^ permalink raw reply	[flat|nested] 2+ messages in thread

end of thread, other threads:[~2024-05-09 16:10 UTC | newest]

Thread overview: 2+ messages (download: mbox.gz / follow: Atom feed)
-- links below jump to the message on this page --
2024-05-08 15:21 [PATCH v1 1/1] isofs: Use *-y instead of *-objs in Makefile Andy Shevchenko
2024-05-09 16:10 ` Jan Kara

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).