From nobody Fri Dec 19 17:49:37 2025 Received: from out-180.mta0.migadu.com (out-180.mta0.migadu.com [91.218.175.180]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (No client certificate requested) by smtp.subspace.kernel.org (Postfix) with ESMTPS id A4E012D5924 for ; Fri, 5 Dec 2025 04:31:24 +0000 (UTC) Authentication-Results: smtp.subspace.kernel.org; arc=none smtp.client-ip=91.218.175.180 ARC-Seal: i=1; a=rsa-sha256; d=subspace.kernel.org; s=arc-20240116; t=1764909086; cv=none; b=JrGffzjqBm5WplpeEjVfqxhaFEeBmxnfS/KfeFmzRue+Him8esTRBbyzjo1G3/UxgSGtMvFsHxHA2yANqoBSZ7QKHV04SjPP95nn7vmPT8nt43/H/Jng+ovYlGV4KMGPBrck7nYPQTd+2LTSw2kSo6uQu+i2FtAD+xvVn+/Asw8= ARC-Message-Signature: i=1; a=rsa-sha256; d=subspace.kernel.org; s=arc-20240116; t=1764909086; c=relaxed/simple; bh=j3TQkQqNjc21JofRmx5Cs1kYMv81xgaBLuCylqL/OV8=; h=From:To:Cc:Subject:Date:Message-ID:In-Reply-To:References: MIME-Version; b=RIuk7gch6T7En8ybXc+DfbuFabiZfosRFdMovreQIgAB4YpldQ8rnApO2cmLh7hX70dM0+VR6X4W02Lx6TcL/7qUgjRhJzxFtEdvyMJ9qIZCBDX7MguCbc7fT3D0jlkz12qevnpyElLbUpxEPvcdp0EUGiYryGlQI2OnMqv6fTs= ARC-Authentication-Results: i=1; smtp.subspace.kernel.org; dmarc=pass (p=none dis=none) header.from=linux.dev; spf=pass smtp.mailfrom=linux.dev; dkim=pass (1024-bit key) header.d=linux.dev header.i=@linux.dev header.b=HC2GT+Cj; arc=none smtp.client-ip=91.218.175.180 Authentication-Results: smtp.subspace.kernel.org; dmarc=pass (p=none dis=none) header.from=linux.dev Authentication-Results: smtp.subspace.kernel.org; spf=pass smtp.mailfrom=linux.dev Authentication-Results: smtp.subspace.kernel.org; dkim=pass (1024-bit key) header.d=linux.dev header.i=@linux.dev header.b="HC2GT+Cj" X-Report-Abuse: Please report any abuse attempt to abuse@migadu.com and include these headers. DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=linux.dev; s=key1; t=1764909081; h=from:from:reply-to:subject:subject:date:date:message-id:message-id: to:to:cc:cc:mime-version:mime-version: content-transfer-encoding:content-transfer-encoding: in-reply-to:in-reply-to:references:references; bh=LhTKXZUsKs6yApgm9M0oyCa/GcapnLfnpclZk/b8UoI=; b=HC2GT+Cj4J9Tf8xykcaT1MJ1tIUg2CqtZzCnlSXIDriRLFIaqcf0JXT6VdCla2lgYoAjHu /iy413jBIRSMFUuL9X+SwUflZY0qgYeWqPRHWaSdSiBnHiJDSY4iUxIeGy74E64qIUDDWE 4zFseiUPw8JxCrEGfwY7sxvWf01Uvvs= From: chenxiaosong.chenxiaosong@linux.dev To: sfrench@samba.org, smfrench@gmail.com, linkinjeon@kernel.org, linkinjeon@samba.org Cc: linux-cifs@vger.kernel.org, linux-kernel@vger.kernel.org, chenxiaosong@chenxiaosong.com, ChenXiaoSong Subject: [PATCH v2 9/9] smb/server: rename include guard in smb_common.h Date: Fri, 5 Dec 2025 12:29:57 +0800 Message-ID: <20251205042958.2658496-10-chenxiaosong.chenxiaosong@linux.dev> In-Reply-To: <20251205042958.2658496-1-chenxiaosong.chenxiaosong@linux.dev> References: <20251205042958.2658496-1-chenxiaosong.chenxiaosong@linux.dev> Precedence: bulk X-Mailing-List: linux-kernel@vger.kernel.org List-Id: List-Subscribe: List-Unsubscribe: MIME-Version: 1.0 Content-Transfer-Encoding: quoted-printable X-Migadu-Flow: FLOW_OUT Content-Type: text/plain; charset="utf-8" From: ChenXiaoSong Make the include guard more descriptive to avoid conflicts with include guards that may be used in the future. Signed-off-by: ChenXiaoSong --- fs/smb/server/smb_common.h | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/fs/smb/server/smb_common.h b/fs/smb/server/smb_common.h index f47ce4a6719c..302c82480799 100644 --- a/fs/smb/server/smb_common.h +++ b/fs/smb/server/smb_common.h @@ -3,8 +3,8 @@ * Copyright (C) 2018 Samsung Electronics Co., Ltd. */ =20 -#ifndef __SMB_COMMON_H__ -#define __SMB_COMMON_H__ +#ifndef __SMB_SERVER_COMMON_H__ +#define __SMB_SERVER_COMMON_H__ =20 #include =20 @@ -196,4 +196,4 @@ unsigned int ksmbd_server_side_copy_max_chunk_size(void= ); unsigned int ksmbd_server_side_copy_max_total_size(void); bool is_asterisk(char *p); __le32 smb_map_generic_desired_access(__le32 daccess); -#endif /* __SMB_COMMON_H__ */ +#endif /* __SMB_SERVER_COMMON_H__ */ --=20 2.43.0