Re: [PATCH v10] staging: fbtft: add tearing signal detect

2021-01-28 Thread Kari Argillander
On Thu, Jan 28, 2021 at 10:42:54AM +0100, Geert Uytterhoeven wrote: > Hi Kari, > > On Thu, Jan 28, 2021 at 7:53 AM Kari Argillander > wrote: > > On Thu, Jan 28, 2021 at 09:42:58AM +0800, carlis wrote: > > > On Thu, 28 Jan 2021 00:32:22 +0200 > > > Kari Ar

Re: [PATCH v18 01/10] fs/ntfs3: Add headers and misc files

2021-01-27 Thread Kari Argillander
On Fri, Jan 22, 2021 at 02:55:30PM +, Mark Harmstone wrote: > On 22/1/21 2:01 pm, Konstantin Komarov wrote: > > diff --git a/fs/ntfs3/upcase.c b/fs/ntfs3/upcase.c > > +static inline u16 upcase_unicode_char(const u16 *upcase, u16 chr) > > +{ > > + if (chr < 'a') > > + return chr; >

Re: [PATCH v10] staging: fbtft: add tearing signal detect

2021-01-27 Thread Kari Argillander
On Thu, Jan 28, 2021 at 09:42:58AM +0800, carlis wrote: > On Thu, 28 Jan 2021 00:32:22 +0200 > Kari Argillander wrote: > > > #include "fbtft.h" > > > > > > #define DRVNAME "fb_st7789v" > > > @@ -66,6 +69,32 @@ enum st7789v_c

Re: [PATCH v10] staging: fbtft: add tearing signal detect

2021-01-27 Thread Kari Argillander
On Wed, Jan 27, 2021 at 09:42:52PM +0800, Carlis wrote: > For st7789v ic,when we need continuous full screen refresh, it is best to > wait for the TE signal arrive to avoid screen tearing > diff --git a/drivers/staging/fbtft/fb_st7789v.c > b/drivers/staging/fbtft/fb_st7789v.c > index

Re: [PATCH 1/2] fs/efs/inode.c: follow style guide

2021-01-27 Thread Kari Argillander
On Tue, Jan 26, 2021 at 12:58:05PM -0800, Amy Parker wrote: > This patch updates inode.c for EFS to follow the kernel style guide. > +++ b/fs/efs/inode.c > @@ -109,9 +109,9 @@ struct inode *efs_iget(struct super_block *super, > unsigned long ino) >/* this is the number of blocks in the

Re: [PATCH v17 02/10] fs/ntfs3: Add initialization of super block

2021-01-19 Thread Kari Argillander
On Tue, Jan 19, 2021 at 06:03:06AM +0200, Kari Argillander wrote: > On Thu, Dec 31, 2020 at 06:23:53PM +0300, Konstantin Komarov wrote: > > diff --git a/fs/ntfs3/index.c b/fs/ntfs3/index.c > > +struct ntfs_fnd *fnd_get(struct ntfs_index *indx) > > +{ > > + struct

Re: [PATCH v17 01/10] fs/ntfs3: Add headers and misc files

2021-01-19 Thread Kari Argillander
On Tue, Jan 19, 2021 at 01:43:39PM +0300, Dan Carpenter wrote: > On Mon, Jan 04, 2021 at 01:17:55AM +0200, Kari Argillander wrote: > > On Thu, Dec 31, 2020 at 06:23:52PM +0300, Konstantin Komarov wrote: > > > > > +int ntfs_cmp_names(const __le16 *s1, size_t l1, const __le

Re: [PATCH v17 02/10] fs/ntfs3: Add initialization of super block

2021-01-18 Thread Kari Argillander
On Thu, Dec 31, 2020 at 06:23:53PM +0300, Konstantin Komarov wrote: > diff --git a/fs/ntfs3/index.c b/fs/ntfs3/index.c > +void fnd_clear(struct ntfs_fnd *fnd) > +{ > + int i; > + > + for (i = 0; i < fnd->level; i++) { > + struct indx_node *n = fnd->nodes[i]; > + > +

Re: [PATCH v17 04/10] fs/ntfs3: Add file operations and implementation

2021-01-18 Thread Kari Argillander
On Mon, Jan 18, 2021 at 10:00:53AM +, Konstantin Komarov wrote: > From: Kari Argillander > Sent: Monday, January 4, 2021 12:58 AM > > On Thu, Dec 31, 2020 at 06:23:55PM +0300, Konstantin Komarov wrote: > > > +static long ntfs_fallocate(struct file *file, int mode, loff

Re: [PATCH v17 02/10] fs/ntfs3: Add initialization of super block

2021-01-18 Thread Kari Argillander
On Mon, Jan 18, 2021 at 09:35:05AM +, Konstantin Komarov wrote: > From: Kari Argillander > Sent: Sunday, January 3, 2021 10:50 PM > > On Thu, Dec 31, 2020 at 06:23:53PM +0300, Konstantin Komarov wrote: > > > diff --git a/fs/ntfs3/inode.c b/fs/ntfs3/inode.c > > &

Re: [PATCH v17 05/10] fs/ntfs3: Add attrib operations

2021-01-03 Thread Kari Argillander
On Thu, Dec 31, 2020 at 06:23:56PM +0300, Konstantin Komarov wrote: > This adds attrib operations > > Signed-off-by: Konstantin Komarov > --- > fs/ntfs3/attrib.c | 2081 +++ > fs/ntfs3/attrlist.c | 463 ++ > fs/ntfs3/xattr.c| 1072

Re: [PATCH v17 01/10] fs/ntfs3: Add headers and misc files

2021-01-03 Thread Kari Argillander
On Thu, Dec 31, 2020 at 06:23:52PM +0300, Konstantin Komarov wrote: > diff --git a/fs/ntfs3/debug.h b/fs/ntfs3/debug.h > +/* > + * Logging macros ( thanks Joe Perches for implementation > ) > + */ > + > +#define ntfs_err(sb, fmt, ...) ntfs_printk(sb, KERN_ERR fmt, ##__VA_ARGS__) > +#define

Re: [PATCH v17 07/10] fs/ntfs3: Add NTFS journal

2021-01-03 Thread Kari Argillander
On Thu, Dec 31, 2020 at 06:23:58PM +0300, Konstantin Komarov wrote: > This adds NTFS journal > > Signed-off-by: Konstantin Komarov > --- > fs/ntfs3/fslog.c | 5220 ++ > 1 file changed, 5220 insertions(+) > create mode 100644 fs/ntfs3/fslog.c > >

Re: [PATCH v17 08/10] fs/ntfs3: Add Kconfig, Makefile and doc

2021-01-03 Thread Kari Argillander
On Thu, Dec 31, 2020 at 06:23:59PM +0300, Konstantin Komarov wrote: > This adds Kconfig, Makefile and doc > > Signed-off-by: Konstantin Komarov > --- > Documentation/filesystems/ntfs3.rst | 107 > fs/ntfs3/Kconfig| 41 +++ >

Re: [PATCH v17 04/10] fs/ntfs3: Add file operations and implementation

2021-01-03 Thread Kari Argillander
On Thu, Dec 31, 2020 at 06:23:55PM +0300, Konstantin Komarov wrote: > This adds file operations and implementation > > Signed-off-by: Konstantin Komarov > --- > fs/ntfs3/dir.c | 570 > fs/ntfs3/file.c| 1140 > fs/ntfs3/frecord.c | 3088

Re: [PATCH v17 10/10] fs/ntfs3: Add MAINTAINERS

2021-01-03 Thread Kari Argillander
On Thu, Dec 31, 2020 at 06:24:01PM +0300, Konstantin Komarov wrote: > This adds MAINTAINERS > > Signed-off-by: Konstantin Komarov > --- > MAINTAINERS | 7 +++ > 1 file changed, 7 insertions(+) > > diff --git a/MAINTAINERS b/MAINTAINERS > index 546aa66428c9..1a990aa2985d 100644 > ---

Re: [PATCH v17 02/10] fs/ntfs3: Add initialization of super block

2021-01-03 Thread Kari Argillander
On Thu, Dec 31, 2020 at 06:23:53PM +0300, Konstantin Komarov wrote: > diff --git a/fs/ntfs3/fsntfs.c b/fs/ntfs3/fsntfs.c > +int ntfs_loadlog_and_replay(struct ntfs_inode *ni, struct ntfs_sb_info *sbi) > +{ > + int err = 0; > + struct super_block *sb = sbi->sb; > + struct inode

Re: [PATCH] ide: pci: Fix memleak in ide_pci_init_two

2020-12-20 Thread Kari Argillander
On Sun, Dec 20, 2020 at 03:05:40PM +0800, Dinghao Liu wrote: > When do_ide_setup_pci_device() fails, host allocated > by ide_host_alloc() may not have been freed, which > leads to memleak. > > Signed-off-by: Dinghao Liu > --- > drivers/ide/setup-pci.c | 8 > 1 file changed, 4

Re: [PATCH] staging: rtl8192e: fix bool comparison in expressions

2020-12-20 Thread Kari Argillander
On Thu, Dec 17, 2020 at 05:12:04PM +0530, Aditya Srivastava wrote: > There are certain conditional expressions in rtl8192e, where a boolean > variable is compared with true/false, in forms such as (foo == true) or > (false != bar), which does not comply with checkpatch.pl (CHECK: >

Re: [PATCH 8455/8455] staging: rtl8188eu: core: fixed a comment format issue.

2020-12-20 Thread Kari Argillander
Good thing is that you really didn't send so many patches or atleast I won't see them. And it seems that you are new so welcome a board :) -- Kari Argillander

Re: [PATCH] staging: qlge: Removed duplicate word in comment.

2020-12-20 Thread Kari Argillander
t for reading. That way if someone needs to send you email it wont be lost because you do not read that email anymore. Many does that they still send messages from they real email so that email do get so many emails. This is ofcourse your decission I'm just telling you options. -- Kari Argillander

Re: [PATCH] irqdomain: Add documentation for irq_create_of_mapping()

2020-12-15 Thread Kari Argillander
On Tue, Dec 15, 2020 at 09:07:47PM +0100, Christophe JAILLET wrote: > +++ b/kernel/irq/irqdomain.c > @@ -858,6 +858,15 @@ unsigned int irq_create_fwspec_mapping(struct irq_fwspec > *fwspec) > } > EXPORT_SYMBOL_GPL(irq_create_fwspec_mapping) > +/** > + * irq_create_of_mapping() - Map an

[PATCH] staging: pi433: Fix disordered switch case

2017-12-12 Thread Kari Argillander
Case: SHAPING_0_5 is writing DATAMODUL_MODLATION_SHAPE_0_3 value and vice versa Signed-off-by: Kari Argillander <kari.argillan...@gmail.com> --- I have checked that defines are correct accounting to the datasheet. My first patch. Hopefully everything goes like needs to. I do no

[PATCH] staging: pi433: Fix disordered switch case

2017-12-12 Thread Kari Argillander
Case: SHAPING_0_5 is writing DATAMODUL_MODLATION_SHAPE_0_3 value and vice versa Signed-off-by: Kari Argillander --- I have checked that defines are correct accounting to the datasheet. My first patch. Hopefully everything goes like needs to. I do not know if this should go to stable because